diff --git a/.Rbuildignore b/.Rbuildignore new file mode 100644 index 0000000..c0a8dc7 --- /dev/null +++ b/.Rbuildignore @@ -0,0 +1,6 @@ +^ShinyApp$ +^output_data$ +^figs$ +^LICENSE\.md$ +^\.vscode$ +^inst/extdata/ProtectedAreas$ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ecc39eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +output_data +.vscode +NOTES.md \ No newline at end of file diff --git a/Analysis/.Rhistory b/Analysis/.Rhistory deleted file mode 100644 index b95652a..0000000 --- a/Analysis/.Rhistory +++ /dev/null @@ -1,512 +0,0 @@ -axis.ticks = element_blank(), -legend.title=element_text(hjust = 0.5)) -ggplot(data)+ -geom_tile(aes(x=pressure, y=response, fill=value), -color="grey")+ -scale_fill_gradient(name="studies",low = "white", high = "grey25", breaks=c(1,3,5))+ -scale_y_discrete(limits=rev)+ -scale_x_discrete(position = "top") + -guides(fill = guide_colorsteps(title.position = "top"))+ -# coord_fixed()+ -theme_minimal()+ -theme(axis.title = element_blank(), -axis.text.x = element_text(angle = 90, hjust=0, vjust=0.5), -legend.position = "bottom", -axis.ticks = element_blank(), -legend.title=element_text(hjust = 0.5)) -ggplot(data)+ -geom_tile(aes(x=pressure, y=response, fill=value), -color="grey")+ -scale_fill_gradient(name="studies",low = "white", high = "grey25", breaks=c(1,3,5))+ -scale_y_discrete(limits=rev)+ -scale_x_discrete(position = "top") + -guides(fill = guide_colorsteps(title.position = "top"))+ -# coord_fixed()+ -theme_minimal()+ -theme(axis.title = element_blank(), -axis.text.x = element_text(angle = 90, hjust=0, vjust=0.3), -legend.position = "bottom", -axis.ticks = element_blank(), -legend.title=element_text(hjust = 0.5)) -?runif -P = runif(1000,0.1, 3) -Hp = runif(1000, 0.01, 1) -R = P/Hp -Rlog = log(P/Hp) -plot(R~Rlog) -plot(Rlog~Hp) -plot(Hp~Rlog) -require(terra) -require(tidyverse) -require(GGally) -require(readxl) -#AES Roads and Rail density and crossing -AES_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="ES_MainStats") -#LGL Roads and Rail density and crossing -LGL_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="LGL_MainStats") -#AES Roads and Rail density and crossing -AES_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="ES_MainStats") -#LGL Roads and Rail density and crossing -LGL_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="LGL_MainStats") -newtheme <- theme_classic()+ -theme(axis.title = element_blank(), axis.line = element_line(color="black"), -axis.ticks = element_line(color="black"), axis.text = element_text(face="bold"), -axis.line.y = element_blank(), -axis.ticks.y =element_blank(), -axis.text.y = element_blank(), -panel.background = element_rect(fill = "transparent", colour = NA), -plot.background = element_rect(fill = "white", colour = "black") ) -AES_roads -require(terra) -require(tidyverse) -require(GGally) -require(readxl) -#LGL Roads and Rail density and crossing -LGL_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="LGL_MainStats") -#AES Roads and Rail density and crossing -AES_road = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", sheet ="ES_MainStats") -newtheme <- theme_classic()+ -theme(axis.title = element_blank(), axis.line = element_line(color="black"), -axis.ticks = element_line(color="black"), axis.text = element_text(face="bold"), -axis.line.y = element_blank(), -axis.ticks.y =element_blank(), -axis.text.y = element_blank(), -panel.background = element_rect(fill = "transparent", colour = NA), -plot.background = element_rect(fill = "white", colour = "black") ) -AES_roads -AES_road -AES_road$ALL_CROSSINGS -AES_road = AES_road %>% mutate(crossing_dens = ALL_CROSSINGS/STREAMS_KM) -ggplot(AES_road)+ -geom_histogram(aes(x=crossing_dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -AES_road = AES_road %>% mutate(crossing_dens = (ALL_CROSSINGS*10)/STREAMS_KM) -ggplot(AES_road)+ -geom_histogram(aes(x=crossing_dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -ggplot(LGL_road)+ -geom_histogram(aes(x=crossing_dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -LGL_road = LGL_road %>% mutate(crossing_dens = (ALL_CROSSINGS*10)/STREAMS_KM) -ggplot(LGL_road)+ -geom_histogram(aes(x=crossing_dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -LGL_road$ALL_CROSSINGS -LGL_road$STREAMS_KM -range(AES_road$crossing_dens) -median(AES_road$crossing_dens) -range(LGL_road$crossing_dens) -range(LGL_road$crossing_dens, na.rm = T) -median(AES_road$crossing_dens, na.rm = T) -median(LGL_road$crossing_dens, na.rm = T) -quantile(LGL_road$crossing_dens, na.rm = T) -range(AES_road$crossing_dens) -median(AES_road$crossing_dens) -quantile(AES_road$crossing_dens) -#FFHPP Land use summaries -LGLlanduse = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\LandUseSummaries_SOF.xlsx", sheet ="LGL Sentinel 2021" ) -#FFHPP Land use summaries -ESlanduse = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\LandUseSummaries_SOF.xlsx", sheet ="ES Sentinel 2021" ) -#LGL land use summary update for two AUs -LGL_LU_update = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\LGL_LandUseUpdates.xlsx", sheet ="Sheet1" ) -######LGL Riparian Buffer -names(LGLlanduse)[3:6]<-c("WatershedArea_m2", "BufferArea_m2","WatershedArea_km2","BufferArea_km2") -LGLlanduse = LGLlanduse %>% select(UNIQUE_UNIT, TYPE, BufferArea_km2) -LGLlanduse = LGLlanduse %>% filter(!UNIQUE_UNIT %in% c("029C-02", "LO12")) -LGL_LU_update = LGL_LU_update %>% select(UNIQUE_UNIT, TYPE, "Buffer (sqkm)") -names(LGL_LU_update)<-names(LGLlanduse) -LGLlanduse <- bind_rows(LGLlanduse, LGL_LU_update) -LGLlanduse = LGLlanduse %>% filter(TYPE!="Clouds") %>% filter(TYPE!="Water") %>% -mutate(disturbed = ifelse(TYPE %in% c("Built Area", "Crops"), "Yes", "No")) -tmp = LGLlanduse %>% group_by(UNIQUE_UNIT) %>% summarize(total_buffer = sum(BufferArea_km2, na.rm = T)) %>% arrange(UNIQUE_UNIT) -tmp2 = LGLlanduse %>% arrange(UNIQUE_UNIT) %>% group_by(UNIQUE_UNIT) %>% -summarize(total_disturbed = sum(BufferArea_km2[disturbed =="Yes"]), -total_undisturbed= sum(BufferArea_km2[disturbed == "No"])) -tmp3 = left_join(tmp,tmp2, by="UNIQUE_UNIT") %>% -mutate(prop_buffer_disturbed = total_disturbed/total_buffer, -prop_buffer_natural = total_undisturbed/total_buffer) -ggplot(tmp3)+ -geom_histogram(aes(x=as.numeric(prop_buffer_natural)*100), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -ggplot(tmp3)+ -geom_histogram(aes(x=prop_buffer_natural*100), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -range(tmp3$prop_buffer_natural) -quantile(tmp3$prop_buffer_natural) -?quantile -length(which(tmp3$prop_buffer_natural>0.75))/195 -length(which(tmp3$prop_buffer_natural<0.25))/195 -######AES Riparian Buffer -names(ESlanduse)[3:6]<-c("WatershedArea_m2", "BufferArea_m2","WatershedArea_km2","BufferArea_km2") -ESlanduse = ESlanduse %>% select(HUC_8, TYPE, BufferArea_km2) -ESlanduse = ESlanduse %>% filter(TYPE!="Clouds") %>% filter(TYPE!="Water") %>% -mutate(disturbed = ifelse(TYPE %in% c("Built Area", "Crops"), "Yes", "No")) -etmp = ESlanduse %>% group_by(HUC_8) %>% -summarize(total_buffer = sum(BufferArea_km2, na.rm = T)) %>% -arrange(HUC_8) -etmp2 = ESlanduse %>% arrange(HUC_8) %>% group_by(HUC_8) %>% -summarize(total_disturbed = sum(BufferArea_km2[disturbed =="Yes"]), -total_undisturbed= sum(BufferArea_km2[disturbed == "No"])) -etmp3 = left_join(etmp,etmp2, by="HUC_8") %>% -mutate(prop_buffer_disturbed = total_disturbed/total_buffer, -prop_buffer_natural = total_undisturbed/total_buffer) -range(etmp3$prop_buffer_natural) -quantile(etmp3$prop_buffer_natural) -length(which(etmp3$prop_buffer_natural>0.75))/195 -length(which(etmp3$prop_buffer_natural>0.75))/107 -#QWS summary data for LGL -LGL_AU = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", -sheet ="LGL_MainStats" ) -require(tidyverse) -require(readxl) -require(scales) -#QWS summary data for LGL -LGL_AU = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", -sheet ="LGL_MainStats" ) -#HUC8 summary data for AES -AES_AU = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", -sheet ="ES_MainStats" ) -#LGL_Biodiversity and PAs -LGL_Biod_PA = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="LGLA_AUmetrics" ) -#LGL temp data -LGL_temp = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="LGLA_Tempsitedata" ) -#AES Biodiversity and PAs -AES_Biod_PA = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="AESA_HUCmetrics" ) -#AES barrier data CABD -AES_CABD = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="AESA_damwffwaydata" ) -#LGL Rip Buffer -LGL_Rip = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\LGL_Proportion_riparian_buffer_disturbed.csv") -#AES Rip Buffer -AES_Rip = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\ES_Proportion_riparian_buffer_disturbed.csv") -#LGL EPT -LGL_EPT = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\EPT.xlsx", -sheet = "LGL_ept") -#AES EPT -AES_EPT = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\EPT.xlsx", -sheet = "ES_ept") -#LGL SAR old -LGL_SAR = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Older versions of datasets\\LGL_Biodiversity.csv") -newtheme <- theme_classic()+ -theme(axis.title = element_blank(), axis.line = element_line(color="black"), -axis.ticks = element_line(color="black"), axis.text = element_text(face="bold"), -axis.line.y = element_blank(), -axis.ticks.y =element_blank(), -axis.text.y = element_blank(), -panel.background = element_rect(fill = "transparent", colour = NA), -plot.background = element_rect(fill = "white", colour = "black") ) -######LGL Fish Richness -ggplot(LGL_Biod_PA)+ -geom_histogram(aes(x=Fishspprichness), bins=20, fill="grey30")+ -newtheme -ggsave("LGL_FishRichness_histogram.png", -path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Histograms", -device="png", width=1.5, height=0.75) -######LGL SAR Richness -ggplot(LGL_SAR)+ -geom_histogram(aes(x=DIST_Total), bins=20, fill="grey30")+ -newtheme -ggsave("LGL_SARARichness_histogram.png", -path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Histograms", -device="png", width=1.5, height=0.75) -quantile(LGL_SAR$DIST_Total) -quantile(LGL_SAR$DIST_Total, na/rm = F) -quantile(LGL_SAR$DIST_Total, na.rm = F) -quantile(LGL_SAR$DIST_Total, na.rm = FALSE) -quantile(LGL_SAR$DIST_Total, na.rm = TRUE) -quantile(LGL_Biod_PA$Invasive, na.rm = TRUE) -######LGL EPT -names(LGL_EPT)[2]<-"pEPT" -quantile(LGL_EPT$pEPT, na.rm = TRUE) -quantile(AES_Biod_PA$SppRichness, na.rm = TRUE) -quantile(AES_Biod_PA$SARA, na.rm = TRUE) -quantile(AES_Biod_PA$Invasive, na.rm = TRUE) -######AES EPT -names(AES_EPT)[2]<-"pEPT" -quantile(AES_EPT$pEPT, na.rm = TRUE) -source('C:/Users/DeyC/Desktop/Cody Work/GLLFAS Round 2/Projects/SoFFH/Res Doc 2 - SOFFH metrics/SOFFH_Data/SOFFH_histograms_v4.R', echo=TRUE) -#AES Temp data -AES_temp = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\ES_JAmeanwatertempupdate.xls", -sheet ="Sheet1" ) -names(AES_temp) -ggplot(AES_temp)+ -geom_histogram(aes(x=AvgOfAvgOfWatertemp), bins=20, fill="grey30")+ -newtheme -ggplot(AES_temp)+ -geom_histogram(aes(x=AvgOfAvgOfWatertemp), bins=15, fill="grey30")+ -newtheme -ggsave("AES_JAAvgTemp_histogram.png", -path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Histograms", -device="png", width=1.5, height=0.75) -quantile(AES_temp$AvgOfAvgOfWatertemp) -######LGL Water Temp -LGL_temp = LGL_temp %>% filter(Longitude_DD >-100) ##removes 4 records -quantile(LGL_temp$JAAvgTemp) -###LGL Stream Crossings -LGL_AU = LGL_AU %>% mutate(Cross_Dens = ALL_CROSSINGS/STREAMS_KM) -quantile(LGL_AU$Cross_Dens) -quantile(LGL_AU$Cross_Dens, na.rm = T) -###LGL Stream Crossings -LGL_AU = LGL_AU %>% mutate(Cross_Dens = 10*ALL_CROSSINGS/STREAMS_KM) -ggplot(LGL_AU)+ -geom_histogram(aes(x=Cross_Dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -quantile(LGL_AU$Cross_Dens, na.rm = T) -###AES Stream Crossings -AES_AU = AES_AU %>% mutate(Cross_Dens = 10*ALL_CROSSINGS/STREAMS_KM) -quantile(AES_AU$Cross_Dens, na.rm = T) -#AES CABD metrics -AES_CABD = AES_CABD %>% select(starts_with("Num"), "HUC8") -AES_CABD$HUC8 <- as.character(as.numeric(AES_CABD$HUC8)) -AES_AU$HUC_8 <- as.character(AES_AU$HUC_8) -AES_CABD = left_join(AES_CABD, AES_AU, by =c("HUC8" = "HUC_8")) -AES_CABD = AES_CABD %>% mutate(waterfall_dens = NumWaterfalls*10/STREAMS_KM) -quantile(AES_CABD$waterfall_dens, na.rm = T) -AES_CABD = AES_CABD %>% mutate(dam_dens = NumDams*10/STREAMS_KM) -quantile(AES_CABD$dam_dens, na.rm = T) -AES_CABD = AES_CABD %>% mutate(fish_dens = NumFishways/STREAMS_KM) -AES_CABD = AES_CABD %>% mutate(fish_dens = NumFishways*10/STREAMS_KM) -quantile(AES_CABD$fish_dens, na.rm = T) -LGL_AU$ROADS_KM[is.na(LGL_AU$ROADS_KM)]<-0 -LGL_AU = LGL_AU %>% mutate(road_dens = ROADS_KM/WATERSHED_AREA_KM2) -quantile(LGL_AU$road_dens, na.rm = T) -quantile(LGL_Rip$prop_buffer_disturbed, na.rm = T) -quantile(LGL_Biod_PA$PropPA_LGLA, na.rm = T) -quantile(LGL_Biod_PA$PropPA_LGLA*100, na.rm = T) -quantile(AES_Rip$prop_buffer_disturbed*100, na.rm = T) -AES_AU$ROADS_KM[is.na(AES_AU$ROADS_KM)]<-0 -AES_AU = AES_AU %>% mutate(road_dens = ROADS_KM/WATERSHED_AREA_KM2) -quantile(AES_AU$road_dens, na.rm = T) -require(tidyverse) -require(readxl) -require(scales) -#QWS summary data for LGL -LGL_AU = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", -sheet ="LGL_MainStats" ) -#HUC8 summary data for AES -AES_AU = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\CSAS_Update_20220922.xlsx", -sheet ="ES_MainStats" ) -#LGL_Biodiversity and PAs -LGL_Biod_PA = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="LGLA_AUmetrics" ) -#AES Biodiversity and PAs -AES_Biod_PA = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="AESA_HUCmetrics" ) -#LGL temp data -LGL_temp = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="LGLA_Tempsitedata" ) -#AES Temp data -AES_temp = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\ES_JAmeanwatertempupdate.xls", -sheet ="Sheet1" ) -#AES barrier data CABD -AES_CABD = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Summaryofupdatestometrics_Sep182022.xlsx", -sheet ="AESA_damwffwaydata" ) -#LGL Rip Buffer -LGL_Rip = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\LGL_Proportion_riparian_buffer_disturbed.csv") -#AES Rip Buffer -AES_Rip = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\ES_Proportion_riparian_buffer_disturbed.csv") -#LGL EPT -LGL_EPT = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\EPT.xlsx", -sheet = "LGL_ept") -#AES EPT -AES_EPT = read_excel(path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\EPT.xlsx", -sheet = "ES_ept") -#LGL SAR old -LGL_SAR = read_csv(file="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Older versions of datasets\\LGL_Biodiversity.csv") -newtheme <- theme_classic()+ -theme(axis.title = element_blank(), axis.line = element_line(color="black"), -axis.ticks = element_line(color="black"), axis.text = element_text(face="bold"), -axis.line.y = element_blank(), -axis.ticks.y =element_blank(), -axis.text.y = element_blank(), -panel.background = element_rect(fill = "transparent", colour = NA), -plot.background = element_rect(fill = "white", colour = "black") ) -###LGL Stream Crossings -LGL_AU = LGL_AU %>% mutate(Cross_Dens = 10*ALL_CROSSINGS/STREAMS_KM) -ggplot(LGL_AU)+ -geom_histogram(aes(x=Cross_Dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -ggsave("LGL_stream_crossings_histogram.png", -path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Histograms", -device="png", width=1.5, height=0.75) -###AES Stream Crossings -AES_AU = AES_AU %>% mutate(Cross_Dens = 10*ALL_CROSSINGS/STREAMS_KM) -ggplot(AES_AU)+ -geom_histogram(aes(x=Cross_Dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -ggsave("AES_stream_crossings_histogram.png", -path="C:\\Users\\DeyC\\Desktop\\Cody Work\\GLLFAS Round 2\\Projects\\SoFFH\\Res Doc 2 - SOFFH metrics\\SOFFH_Data\\Histograms", -device="png", width=1.5, height=0.75) -AES_AU$ROADS_KM[is.na(AES_AU$ROADS_KM)]<-0 -AES_AU = AES_AU %>% mutate(road_dens = ROADS_KM/WATERSHED_AREA_KM2) -ggplot(AES_AU)+ -geom_histogram(aes(x=road_dens), bins=20, fill="grey30")+ -ylab("assessment units")+ -newtheme -length(which(AES_AU$road_dens == 0))/107 -sort(AES_AU$road_dens) -sessionInfo() -install.packages("tidyverse") -#load data -###################### -weights = read_csv("Co_author_weightings.csv") -require(tidyverse) -require(viridis) -require(ggmap) -require(ggspatial) -require(sf) -require(GGally) -require(ggbeeswarm) -require(ggpubr) -#load data -###################### -weights = read_csv("Co_author_weightings.csv") -setwd("C:/Users/DeyC/Desktop/Cody Work/GLLFAS Round 2/Projects/KBA - Watershed prioritization/Analysis") -#load data -###################### -weights = read_csv("Co_author_weightings.csv") -# -# data5 = read_csv("watershed_prioritization_level5.csv") -# map5 = read_sf("Hybas5_map/hyC_5_join_shp_Lamb_up.shp") -# map5 = left_join(map5, data5, by="HYBAS_ID") -# data6 = read_csv("watershed_prioritization_level6.csv") -# map6 = read_sf("Hydrobasin Level 6/hyC_6_join_shp_Lamb_up.shp") -# map6 = left_join(map6, data6, by="HYBAS_ID") -# map6 = map6 %>% filter(HYBAS_ID %in% data6$HYBAS_ID) -feow = read_sf("FEOW_CAN_Extent/FEOW__CAN_Extent.shp") -########### -#Identify which hy5 each hy6 belongs to -############## -# max_overlap = c() -# for(i in 1:nrow(map6)){ -# sub6 = map6[i,] -# intersects <- which(st_intersects(sub6, map5, sparse = FALSE)) -# overlaps <- st_intersection(sub6, map5[intersects,]) -# area = st_area(overlaps) -# max_overlap[i]<-map5$HYBAS_ID[intersects[which.max(area)]] -# print(i) -# } -# -# map6$corresponding.HYBAS5<-max_overlap -#st_write(map6, "map6.gpkg") -map6<-read_sf("map6.gpkg") -# st_write(map5, "map5.gpkg") -map5<-read_sf("map5.gpkg") -############ -#Scale ranks within FEOW to number of FEOW -########### -# -maxrank = max(map6$Prot_rank_feow-1) -map6 = map6 %>% group_by(FEOW_ID) %>% -mutate(Prot_rank_feow_scaled = ( (Prot_rank_feow-1)* maxrank/max(Prot_rank_feow-1) )+1) -maxrank = max(map6$Rest_rank_feow-1) -map6 = map6 %>% group_by(FEOW_ID) %>% -mutate(Rest_rank_feow_scaled = ( (Rest_rank_feow-1)* maxrank/max(Rest_rank_feow-1) )+1) -maxrank = max(map6$SAR_rank_feow-1) -map6 = map6 %>% group_by(FEOW_ID) %>% -mutate(SAR_rank_feow_scaled = ( (SAR_rank_feow-1)* maxrank/max(SAR_rank_feow-1) ) +1 ) -maxrank = max(map6$AIS_rank_feow-1) -map6 = map6 %>% group_by(FEOW_ID) %>% -mutate(AIS_rank_feow_scaled = ( (AIS_rank_feow-1)* maxrank/max(AIS_rank_feow-1) ) +1 ) -############ -d5 = map5 %>% st_drop_geometry() -map6 = map6 %>% mutate( -protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -) -#Investigating scale -####### -d5 = map5 %>% st_drop_geometry() -map6 = map6 %>% mutate( -protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -) -colnames(d5) -d5$protection_score -d5$HYBAS_ID -#Investigating scale -####### -d5 = map5 %>% st_drop_geometry() %>%ungroup() -map6 = map6 %>% mutate( -protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -) -colnames(map6) -match(map6$corresponding.HYBAS5, d5$HYBAS_ID) -d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)] -#Investigating scale -####### -d5 = map5 %>% st_drop_geometry() %>%ungroup() -map6 = map6 %>% mutate( -protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -) -map6 = map6 %>% ungroup() %>% mutate( -protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], -) -obj=c("protection", "restoration", "SAR", "AIS") -threshold = seq(0.05,0.5,0.01) -df = tibble(objective = c(), threshold = c(), ratio=c()) -for(i in 1:length(obj)){ -for(j in 1:length(threshold)){ -var = paste0(obj[i],"_score") -tmp = map6 %>% ungroup() %>% -group_by(FEOW_ID) %>% -arrange(FEOW_ID, desc(!!var)) %>% -relocate(!!var, .after = last_col()) %>% -top_frac(n = threshold[j]) -map6$level6 = ifelse(map6$HYBAS_ID %in% tmp$HYBAS_ID, 1, 0) -var2 = paste0(obj[i],"_score5") -tmp = map6 %>% ungroup() %>% -group_by(FEOW_ID) %>% -arrange(FEOW_ID, desc(!!var2)) %>% -relocate(!!var2, .after = last_col()) %>% -top_frac(n = threshold[j]) -map6$level5 = ifelse(map6$HYBAS_ID %in% tmp$HYBAS_ID, 1, 0) -ratio = length(which(map6$level6 == 1 & map6$level5 == 0)) / length(which(map6$level6 == 1)) -to_add = tibble(objective = obj[i], threshold = threshold[j], ratio=ratio) -df = bind_rows(df, to_add) -} -} -mylabels = df %>% filter(threshold == 0.5) -mylabels$ratio[which(mylabels$objective == "SAR")]<-0.24 #nudge -df -df %>% filter(threshold == 0.1) -map6$SARI_n -##Priorities within ecoregions -############### -data = map6 -map6 %>% st_drop_geometry %>% ungroup() %>% group_by(FEOW_ID) %>% summarise(SAR_p = max(SARI_n)) -map6 %>% st_drop_geometry %>% ungroup() %>% group_by(FEOW_ID) %>% summarise(SAR_p = max(SARI_n)) %>% print(n=Inf) -colnames(map6) -#two ecoregions with no SAR (111, 112) -map6 %>% st_drop_geometry %>% ungroup() %>% group_by(FEOW_ID) %>% summarise(SAR_p = max(FBCI_n)) %>% print(n=Inf) -sessionInfo() -citation() -citation(package="sf") -citation(package="shiny") -citation(package="leaflet") -citation(package="tidyverse") diff --git a/Analysis/.Rproj.user/E8595228/pcs/debug-breakpoints.pper b/Analysis/.Rproj.user/E8595228/pcs/debug-breakpoints.pper deleted file mode 100644 index 4893a8a..0000000 --- a/Analysis/.Rproj.user/E8595228/pcs/debug-breakpoints.pper +++ /dev/null @@ -1,5 +0,0 @@ -{ - "debugBreakpointsState": { - "breakpoints": [] - } -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/pcs/files-pane.pper b/Analysis/.Rproj.user/E8595228/pcs/files-pane.pper deleted file mode 100644 index 280b85e..0000000 --- a/Analysis/.Rproj.user/E8595228/pcs/files-pane.pper +++ /dev/null @@ -1,9 +0,0 @@ -{ - "sortOrder": [ - { - "columnIndex": 2, - "ascending": true - } - ], - "path": "/cloud/project" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/pcs/source-pane.pper b/Analysis/.Rproj.user/E8595228/pcs/source-pane.pper deleted file mode 100644 index ddca97d..0000000 --- a/Analysis/.Rproj.user/E8595228/pcs/source-pane.pper +++ /dev/null @@ -1,3 +0,0 @@ -{ - "activeTab": 2 -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/pcs/windowlayoutstate.pper b/Analysis/.Rproj.user/E8595228/pcs/windowlayoutstate.pper deleted file mode 100644 index 877bbd7..0000000 --- a/Analysis/.Rproj.user/E8595228/pcs/windowlayoutstate.pper +++ /dev/null @@ -1,14 +0,0 @@ -{ - "left": { - "splitterpos": 182, - "topwindowstate": "NORMAL", - "panelheight": 458, - "windowheight": 532 - }, - "right": { - "splitterpos": 251, - "topwindowstate": "NORMAL", - "panelheight": 458, - "windowheight": 532 - } -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/pcs/workbench-pane.pper b/Analysis/.Rproj.user/E8595228/pcs/workbench-pane.pper deleted file mode 100644 index 75e70e9..0000000 --- a/Analysis/.Rproj.user/E8595228/pcs/workbench-pane.pper +++ /dev/null @@ -1,5 +0,0 @@ -{ - "TabSet1": 0, - "TabSet2": 0, - "TabZoom": {} -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/persistent-state b/Analysis/.Rproj.user/E8595228/persistent-state deleted file mode 100644 index 2a4574f..0000000 --- a/Analysis/.Rproj.user/E8595228/persistent-state +++ /dev/null @@ -1,11 +0,0 @@ -activeClientUrl="https://fc14cc3caea24daca1d4cdbf66fac50f.app.posit.cloud/" -build-last-errors="[]" -build-last-errors-base-dir="" -build-last-outputs="[]" -compile_pdf_state="{\"tab_visible\":false,\"running\":false,\"target_file\":\"\",\"output\":\"\",\"errors\":[]}" -displayName="freshwater.fish.habitat@gmail.com" -files.monitored-path="" -find-in-files-state="{\"handle\":\"\",\"input\":\"\",\"path\":\"\",\"regex\":false,\"ignoreCase\":false,\"results\":{\"file\":[],\"line\":[],\"lineValue\":[],\"matchOn\":[],\"matchOff\":[],\"replaceMatchOn\":[],\"replaceMatchOff\":[]},\"running\":false,\"replace\":false,\"preview\":false,\"gitFlag\":false,\"replacePattern\":\"\"}" -imageDirtyState="1" -portToken="104e59115aca" -saveActionState="-1" diff --git a/Analysis/.Rproj.user/E8595228/saved_source_markers b/Analysis/.Rproj.user/E8595228/saved_source_markers deleted file mode 100644 index 2b1bef1..0000000 --- a/Analysis/.Rproj.user/E8595228/saved_source_markers +++ /dev/null @@ -1 +0,0 @@ -{"active_set":"","sets":[]} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/1CE0461A b/Analysis/.Rproj.user/E8595228/sources/prop/1CE0461A deleted file mode 100644 index bb27690..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/1CE0461A +++ /dev/null @@ -1,4 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/4F6A4D66 b/Analysis/.Rproj.user/E8595228/sources/prop/4F6A4D66 deleted file mode 100644 index bb27690..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/4F6A4D66 +++ /dev/null @@ -1,4 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/597B43C7 b/Analysis/.Rproj.user/E8595228/sources/prop/597B43C7 deleted file mode 100644 index 0f4ed8a..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/597B43C7 +++ /dev/null @@ -1,6 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source", - "cursorPosition": "71,0", - "scrollLine": "0" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/5BA6F148 b/Analysis/.Rproj.user/E8595228/sources/prop/5BA6F148 deleted file mode 100644 index 73d73f5..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/5BA6F148 +++ /dev/null @@ -1,6 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source", - "cursorPosition": "74,26", - "scrollLine": "0" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/5C31E014 b/Analysis/.Rproj.user/E8595228/sources/prop/5C31E014 deleted file mode 100644 index 6dbe7bd..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/5C31E014 +++ /dev/null @@ -1,6 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source", - "cursorPosition": "10,0", - "scrollLine": "0" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/6EE7B400 b/Analysis/.Rproj.user/E8595228/sources/prop/6EE7B400 deleted file mode 100644 index efc9123..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/6EE7B400 +++ /dev/null @@ -1,6 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source", - "cursorPosition": "8,50", - "scrollLine": "0" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/C3F1A500 b/Analysis/.Rproj.user/E8595228/sources/prop/C3F1A500 deleted file mode 100644 index de1ab9e..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/C3F1A500 +++ /dev/null @@ -1,6 +0,0 @@ -{ - "source_window_id": "", - "Source": "Source", - "cursorPosition": "164,0", - "scrollLine": "150" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/EB7B1BC7 b/Analysis/.Rproj.user/E8595228/sources/prop/EB7B1BC7 deleted file mode 100644 index 9fc5e93..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/EB7B1BC7 +++ /dev/null @@ -1,7 +0,0 @@ -{ - "tempName": "Untitled1", - "source_window_id": "", - "Source": "Source", - "cursorPosition": "0,0", - "scrollLine": "0" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/F051E403 b/Analysis/.Rproj.user/E8595228/sources/prop/F051E403 deleted file mode 100644 index 169b6bc..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/F051E403 +++ /dev/null @@ -1,7 +0,0 @@ -{ - "tempName": "Untitled1", - "source_window_id": "", - "Source": "Source", - "cursorPosition": "149,0", - "scrollLine": "139" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/prop/INDEX b/Analysis/.Rproj.user/E8595228/sources/prop/INDEX deleted file mode 100644 index 9136562..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/prop/INDEX +++ /dev/null @@ -1,9 +0,0 @@ -%2Fcloud%2Fproject%2FAnalysis_v5.R="5C31E014" -%2Fcloud%2Fproject%2FRes%20Doc%20Figures.R="C3F1A500" -%2Fcloud%2Fproject%2FResults_plots.R="F051E403" -%2Fcloud%2Fproject%2FSpp_dist_HYBAS5_20230125.csv="1CE0461A" -%2Fcloud%2Fproject%2Fcalculate%20I%20and%20Q.R="6EE7B400" -%2Fcloud%2Fproject%2Fdata%20carpentry_lvl5.R="597B43C7" -%2Fcloud%2Fproject%2Fdata%20carpentry_lvl6.R="EB7B1BC7" -%2Fcloud%2Fproject%2Ffixing%20stuff.R="5BA6F148" -%2Fcloud%2Fproject%2FhyC_5_join_shp_Lamb_up.cpg="4F6A4D66" diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/1506E9AD-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/1506E9AD-contents deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/284BA0CF-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/284BA0CF-contents deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/3CC9B65B-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/3CC9B65B-contents deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/46446539-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/46446539-contents deleted file mode 100644 index abe8df3..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/46446539-contents +++ /dev/null @@ -1,36 +0,0 @@ -library(dplyr) -set.seed(123) - -var2 <- c(rep(NA, 5), rnorm(10, mean=2, sd=1)) -#var2 <- c(rnorm(15, mean=2, sd=1)) -var1 <- c(rep("A", 5), rep("B", 5), rep("C", 5)) -var3 <- rnorm(15, mean=25, sd=1) -date <- rep(1:5, 3) -df <- data.frame(var1, date, var2, var3) - - -df2 = df %>% group_by(var1) %>% - summarize( - across(c(var2, var3), - list(sd=sd,var=var, count = ~sum(!is.na(.)) ), na.rm = TRUE)) - - -custom_lm <- function(Y, X){ - if(sum(!is.na(Y)) == 0 | sum(!is.na(X)) == 0) { - NA} else {lm(Y~X, cur_data())$coef[2]} - } - -df %>% dplyr::group_by(var1) %>% - dplyr::summarize( - across(c(var2, var3), - list(slope = ~custom_lm(., date) - ) - ) - ) - - - - - -lm(rep(NA,5)~c(1:5), ) - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5 b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5 deleted file mode 100644 index d6c57b9..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5 +++ /dev/null @@ -1,27 +0,0 @@ -{ - "id": "923DFAD5", - "path": null, - "project_path": null, - "type": "r_source", - "hash": "41099", - "contents": "", - "dirty": true, - "created": 1676922502018.0, - "source_on_save": false, - "relative_order": 4, - "properties": { - "tempName": "Untitled1", - "source_window_id": "", - "Source": "Source", - "cursorPosition": "3,1", - "scrollLine": "0" - }, - "folds": "", - "lastKnownWriteTime": 2, - "encoding": "", - "collab_server": "", - "source_window": "", - "last_content_update": 1676922601906, - "read_only": false, - "read_only_alternatives": [] -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5-contents deleted file mode 100644 index 12dafb0..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/923DFAD5-contents +++ /dev/null @@ -1,4 +0,0 @@ -# What climate metric to use -# Used HStress as WSI metric -#Some discussion about using Jaccard similarity rather than dissimilarity... -# \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/973D161C-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/973D161C-contents deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/9F022EAB-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/9F022EAB-contents deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/9F68A8CA-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/9F68A8CA-contents deleted file mode 100644 index 3ad133c..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/9F68A8CA-contents +++ /dev/null @@ -1 +0,0 @@ -UTF-8 \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/A1FEEE97-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/A1FEEE97-contents deleted file mode 100644 index 2c9a63e..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/A1FEEE97-contents +++ /dev/null @@ -1,11 +0,0 @@ -ggplot() + - layer_spatial(feow, aes(fill=as.numeric(FEOW_ID)), color ="black")+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.5, 0.2), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for area-based protection", - subtitle = "rank within freshwater ecoregions") - -map5_test = map5 %>% filter(FEOW_ID == 115) -feow_test = feow %>% filter(FEOW_ID == 115) diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/ADEF23C2-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/ADEF23C2-contents deleted file mode 100644 index 7e4b8a3..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/ADEF23C2-contents +++ /dev/null @@ -1,4 +0,0 @@ -require(tidyverse) -require(readxl) -rm() - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0 b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0 deleted file mode 100644 index b7d3959..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0 +++ /dev/null @@ -1,27 +0,0 @@ -{ - "id": "B60690C0", - "path": "/cloud/project/Results_plots.R", - "project_path": "Results_plots.R", - "type": "r_source", - "hash": "949482095", - "contents": "", - "dirty": false, - "created": 1676902843260.0, - "source_on_save": false, - "relative_order": 3, - "properties": { - "tempName": "Untitled1", - "source_window_id": "", - "Source": "Source", - "cursorPosition": "149,0", - "scrollLine": "139" - }, - "folds": "", - "lastKnownWriteTime": 1676922499, - "encoding": "UTF-8", - "collab_server": "", - "source_window": "", - "last_content_update": 1676922499973, - "read_only": false, - "read_only_alternatives": [] -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0-contents deleted file mode 100644 index 149da81..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B60690C0-contents +++ /dev/null @@ -1,259 +0,0 @@ -require(tidyverse) -require(viridis) -require(ggmap) -require(ggspatial) -require(sf) -require(GGally) -require(ggbeeswarm) -require(gridExtra) - -#pairwise rankings -#co-author scores - - - -#load data -###################### -data5 = read_csv("watershed_prioritization_level5.csv") -weights = read_csv("Co_author_weightings.csv") - -map5 = read_sf("hyC_5_join_shp_Lamb_up.shp") -map5 = left_join(map5, data5, by="HYBAS_ID") - -feow = read_sf("FEOW_CAN_Extent/FEOW__CAN_Extent.shp") - -########### -#data exploration -#pairwise correlations - -#Input data -ggpairs(data5, - columns = c("WSI_n", "FBCI_n", "CCI_n","SARI_n", "Fish_richness_n", "Priority_n"), - columnLabels = c("WSI_n", "FBCI_n", "CCI_n","SARI_n", "Fish_richness_n", "FishPriority_n")) - -#Scores -ggpairs(data5, - columns = c("protection_score", "restoration_score", "SAR_score", "AIS_score")) - -ggpairs(data5, - columns = c("Prot_rank_feow", "Rest_rank_feow", "SAR_rank_feow", "AIS_rank_feow")) - -#### -#weightings plot -########## - -pdata1 = weights[,c(1:6)] -pdata1 = pivot_longer(pdata1, cols = starts_with("Weight for")) -pdata1$name<- rep(c("Watershed stress", "Fish biodiversity change", "Climate change", - "Species at risk density", "Fish richness", "Fish rarity"), 8) -sumpdata1 = pdata1 %>% group_by(name) %>% summarize (med = median(value)) - -p1<-ggplot()+ - geom_hline(aes(yintercept = 0), color = "black", linetype=2 )+ - geom_beeswarm(data=pdata1, aes(x=reorder(name, value, median), y = value), size=2)+ - geom_point(data = sumpdata1, aes(x=name, y = med), color="black", alpha = 0.2, size=6)+ - scale_y_continuous(breaks = c(-4,-2,0,2,4), limits = c(-6,6))+ - ylab("Weight")+xlab("")+ - coord_flip()+ - theme_minimal()+ - ggtitle("Area-based protection")+ - theme(legend.position = "bottom", legend.title = element_blank())+ - theme(plot.title = element_text(hjust=0.5)) - -p1 - -########### -pdata2 = weights[,c(7:12)] -pdata2 = pivot_longer(pdata2, cols = starts_with("Weight for")) -pdata2$name<- rep(c("Watershed stress", "Fish biodiversity change", "Climate change", - "Species at risk density", "Fish richness", "Fish rarity"), 8) -sumpdata2 = pdata2 %>% group_by(name) %>% summarize (med = median(value)) - -p2<-ggplot()+ - geom_hline(aes(yintercept = 0), color = "black", linetype=2 )+ - geom_beeswarm(data=pdata2, aes(x=reorder(name, value, median), y = value), size=2)+ - geom_point(data = sumpdata2, aes(x=name, y = med), color="black", alpha = 0.2, size=6)+ - scale_y_continuous(breaks = c(-4,-2,0,2,4), limits = c(-6,6))+ - ylab("Weight")+xlab("")+ - coord_flip()+ - theme_minimal()+ - ggtitle("Restoration")+ - theme(legend.position = "bottom", legend.title = element_blank())+ - theme(plot.title = element_text(hjust=0.5)) -p2 - -########### -pdata3 = weights[,c(13:18)] -pdata3 = pivot_longer(pdata3, cols = starts_with("Weight for")) -pdata3$name<- rep(c("Watershed stress", "Fish biodiversity change", "Climate change", - "Species at risk density", "Fish richness", "Fish rarity"), 8) -sumpdata3 = pdata3 %>% group_by(name) %>% summarize (med = median(value)) - -p3<-ggplot()+ - geom_hline(aes(yintercept = 0), color = "black", linetype=2 )+ - geom_beeswarm(data=pdata3, aes(x=reorder(name, value, median), y = value), size=2)+ - geom_point(data = sumpdata3, aes(x=name, y = med), color="black", alpha = 0.2, size=6)+ - scale_y_continuous(breaks = c(-4,-2,0,2,4), limits = c(-6,6))+ - ylab("Weight")+xlab("")+ - coord_flip()+ - theme_minimal()+ - ggtitle("Species at risk management")+ - theme(legend.position = "bottom", legend.title = element_blank())+ - theme(plot.title = element_text(hjust=0.5)) -p3 - -########### -pdata4 = weights[,c(19:24)] -pdata4 = pivot_longer(pdata4, cols = starts_with("Weight for")) -pdata4$name<- rep(c("Watershed stress", "Fish biodiversity change", "Climate change", - "Species at risk density", "Fish richness", "Fish rarity"), 8) -sumpdata4 = pdata4 %>% group_by(name) %>% summarize (med = median(value)) - -p4<-ggplot()+ - geom_hline(aes(yintercept = 0), color = "black", linetype=2 )+ - geom_beeswarm(data=pdata4, aes(x=reorder(name, value, median), y = value), size=2)+ - geom_point(data = sumpdata4, aes(x=name, y = med), color="black", alpha = 0.2, size=6)+ - scale_y_continuous(breaks = c(-4,-2,0,2,4), limits = c(-6,6))+ - ylab("Weight")+xlab("")+ - coord_flip()+ - theme_minimal()+ - ggtitle("Invasive species management")+ - theme(legend.position = "bottom", legend.title = element_blank())+ - theme(plot.title = element_text(hjust=0.5)) -p4 - -grid.arrange(p1,p2,p3,p4, nrow=2) - - - -#Maps -map5_test = map5 %>% filter(FEOW_ID %in% c(113:115, 117:119)) -feow_test = feow %>% filter(FEOW_ID %in% c(113:115, 117:119)) - -##plotting area-based protection priorities -#1.1 regional priorities for area-based protection - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = Prot_rank_feow), col = "white", alpha=1)+ - layer_spatial(feow_test, fill="transparent", color ="black", linewidth = 0.8)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(map5_test$Prot_rank_feow)), - labels=c("high", "low"))+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for area-based protection", - subtitle = "rank within freshwater ecoregions") - - -#1.2 national priorities for area-based protection - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = rank(-protection_score)), col = "white", alpha=1)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(rank(-map5_test$protection_score))), - labels=c("high", "low") )+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for area-based protection", - subtitle = "national ranks") - -#################################### -##2. plotting restoration priorities -#2.1 regional priorities for restoration - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = Rest_rank_feow), col = "white", alpha=1)+ - layer_spatial(feow_test, fill="transparent", color ="black", linewidth = 0.8)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(map5_test$Rest_rank_feow)), - labels=c("high", "low"))+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for restoration", - subtitle = "rank within freshwater ecoregions") - -#2.2 national priorities for area-based protection - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = rank(-restoration_score)), col = "white", alpha=1)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(rank(-map5_test$restoration_score))), - labels=c("high", "low") )+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for restoration", - subtitle = "national ranks") - - -#################################### -##3. plotting SAR priorities -#3.1 regional priorities for SAR - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = SAR_rank_feow), col = "white", alpha=1)+ - layer_spatial(feow_test, fill="transparent", color ="black", linewidth = 0.8)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(map5_test$SAR_rank_feow)), - labels=c("high", "low"))+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for species at risk management", - subtitle = "rank within freshwater ecoregions") - -#3.2 national priorities for SAR - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = rank(-SAR_score)), col = "white", alpha=1)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(rank(-map5_test$SAR_score))), - labels=c("high", "low") )+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for species at risk management", - subtitle = "national ranks") - - -#################################### -##4. plotting AIS priorities -#4.1 regional priorities for AIS - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = AIS_rank_feow), col = "white", alpha=1)+ - layer_spatial(feow_test, fill="transparent", color ="black", linewidth = 0.8)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(map5_test$AIS_rank_feow)), - labels=c("high", "low"))+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for aquatic invasive species management", - subtitle = "rank within freshwater ecoregions") - -#4.2 national priorities for AIS - level 5 -ggplot() + - layer_spatial(map5_test, aes(fill = rank(-AIS_score)), col = "white", alpha=1)+ - scale_fill_viridis(option = "magma", direction = -1, end =0.9, - name="Priority", - breaks = c(1, max(rank(-map5_test$AIS_score))), - labels=c("high", "low") )+ - annotation_north_arrow(location = "br", which_north = "true")+ - theme_minimal()+ - theme(legend.position = c(0.75, 0.06), legend.direction = "horizontal")+ - guides(fill = guide_colourbar(reverse = TRUE, title.position = "top", title.hjust =0.5))+ - ggtitle("Priority watersheds for aquatic invasive species management", - subtitle = "national ranks") - - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B deleted file mode 100644 index 320d04d..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B +++ /dev/null @@ -1,26 +0,0 @@ -{ - "id": "B749795B", - "path": "/cloud/project/Analysis_v5.R", - "project_path": "Analysis_v5.R", - "type": "r_source", - "hash": "0", - "contents": "", - "dirty": false, - "created": 1676648989695.0, - "source_on_save": false, - "relative_order": 3, - "properties": { - "source_window_id": "", - "Source": "Source", - "cursorPosition": "10,0", - "scrollLine": "0" - }, - "folds": "", - "lastKnownWriteTime": 1676919114, - "encoding": "UTF-8", - "collab_server": "", - "source_window": "", - "last_content_update": 1676919114011, - "read_only": false, - "read_only_alternatives": [] -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B-contents deleted file mode 100644 index 43be596..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/B749795B-contents +++ /dev/null @@ -1,77 +0,0 @@ -require(tidyverse) - -###read weightings -weights = read_csv("Co_author_weightings.csv") - -med_weights = weights %>% select(-Co_author) %>% - summarise_all(median) %>% - pivot_longer(cols = everything(), names_to="Variable", values_to="Weight") - -### -data5 = read_csv("Hybas5_data.csv") - -#priorities for Protected areas -data5 = data5 %>% - mutate(protection_score = WSI_n*med_weights$Weight[1]+ - FBCI_n*med_weights$Weight[2]+ - CCI_n*med_weights$Weight[3]+ - SARI_n*med_weights$Weight[4]+ - Fish_richness_n*med_weights$Weight[5]+ - Priority_n*med_weights$Weight[6]) -#ranked within FEOW -data5 = data5 %>% - arrange(FEOW_ID, -protection_score) %>% - group_by(FEOW_ID) %>% - mutate(Prot_rank_feow=row_number()) - -#priorities for restoration -data5 = data5 %>% - mutate(restoration_score = WSI_n*med_weights$Weight[7]+ - FBCI_n*med_weights$Weight[8]+ - CCI_n*med_weights$Weight[9]+ - SARI_n*med_weights$Weight[10]+ - Fish_richness_n*med_weights$Weight[11]+ - Priority_n*med_weights$Weight[12]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -restoration_score) %>% - group_by(FEOW_ID) %>% - mutate(Rest_rank_feow=row_number()) - - -#priorities for SAR -data5 = data5 %>% - mutate(SAR_score = WSI_n*med_weights$Weight[13]+ - FBCI_n*med_weights$Weight[14]+ - CCI_n*med_weights$Weight[15]+ - SARI_n*med_weights$Weight[16]+ - Fish_richness_n*med_weights$Weight[17]+ - Priority_n*med_weights$Weight[18]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -SAR_score) %>% - group_by(FEOW_ID) %>% - mutate(SAR_rank_feow=row_number()) - -#priorities for AIS -data5 = data5 %>% - mutate(AIS_score = WSI_n*med_weights$Weight[19]+ - FBCI_n*med_weights$Weight[20]+ - CCI_n*med_weights$Weight[21]+ - SARI_n*med_weights$Weight[22]+ - Fish_richness_n*med_weights$Weight[23]+ - Priority_n*med_weights$Weight[24]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -AIS_score) %>% - group_by(FEOW_ID) %>% - mutate(AIS_rank_feow=row_number()) - -write_csv(data5, "watershed_prioritization_level5.csv") -rm(list=ls()) - -########################################################################## - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/C7A851C6-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/C7A851C6-contents deleted file mode 100644 index dde32a1..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/C7A851C6-contents +++ /dev/null @@ -1,439 +0,0 @@ -HYBAS_ID,Acipenser_brevirostrum,Acipenser_medirostris,Acrocheilus_alutaceus,Alosa_aestivalis,Alosa_pseudoharengus,Alosa_sapidissima,Ambloplites_rupestris,Ameiurus_melas,Ameiurus_natalis,Ameiurus_nebulosus,Amia_calva,Ammocrypta_pellucida,Anguilla_rostrata,Apeltes_quadracus,Aplodinotus_grunniens,Campostoma_anomalum,Carassius_auratus,Carassius_gibelio,Carpiodes_cyprinus,Catostomus_catostomus,Catostomus_columbianus,Catostomus_commersonii,Catostomus_macrocheilus,Chrosomus_eos,Chrosomus_neogaeus,Clinostomus_elongatus,Coregonus_artedi,Coregonus_autumnalis,Coregonus_laurettae,Coregonus_nasus,Coregonus_sardinella,Cottus_asper,Cottus_bairdi,Cottus_cognatus,Cottus_confusus,Cottus_hubbsi,Cottus_rhotheus,Cottus_ricei,Cottus_spp,Culaea_inconstans,Cyprinella_spiloptera,Cyprinus_carpio,Dorosoma_cepedianum,Entosphenus_macrostomus,Entosphenus_tridentatus,Erimystax_x_punctatus,Erimyzon_sucetta,Esox_americanus,Esox_lucius,Esox_masquinongy,Esox_niger,Etheostoma_blennioides,Etheostoma_caeruleum,Etheostoma_exile,Etheostoma_flabellare,Etheostoma_microperca,Etheostoma_nigrum,Etheostoma_olmstedi,Exoglossum_maxillingua,Fundulus_heteroclitus,Gasterosteus_wheatlandi,Hiodon_alosoides,Hiodon_tergisus,Hybognathus_argyritis,Hybognathus_hankinsoni,Hybognathus_placitus,Hybognathus_regius,Hypentelium_nigricans,Hypomesus_olidus,Ichthyomyzon_castaneus,Ictalurus_punctatus,Labidesthes_sicculus,Lampetra_ayresi,Lepisosteus_oculatus,Lepisosteus_osseus,Lepomis_auritus,Lepomis_cyanellus,Lepomis_gibbosus,Lepomis_humilis,Lepomis_macrochirus,Lethenteron_alaskense,Lethenteron_appendix,Lethenteron_camtschaticum,Lota_lota,Luxilus_chrysocephalus,Luxilus_cornutus,Lythrurus_umbratilis,Margariscus_margarita,Microgadus_tomcod,Micropterus_dolomieu,Micropterus_salmoides,Minytrema_melanops,Morone_americana,Morone_chrysops,Moxostoma_anisurum,Moxostoma_carinatum,Moxostoma_duquesnei,Moxostoma_erythrurum,Moxostoma_macrolepidotum,Moxostoma_valenciennesi,Mylocheilus_caurinus,Myoxocephalus_quadricornis,Neogobius_melanostomus,Nocomis_biguttatus,Nocomis_micropogon,Notemigonus_crysoleucas,Notropis_anogenus,Notropis_atherinoides,Notropis_bifrenatus,Notropis_blennius,Notropis_buchanani,Notropis_dorsalis,Notropis_heterodon,Notropis_heterolepis,Notropis_hudsonius,Notropis_percobromus,Notropis_photogenis,Notropis_rubellus,Notropis_stramineus,Notropis_texanus,Notropis_volucellus,Noturus_flavus,Noturus_gyrinus,Noturus_insignis,Noturus_miurus,Noturus_stigmosus,Oncorhynchus_clarkii,Oncorhynchus_gorbuscha,Oncorhynchus_keta,Opsopoeodus_emiliae,Osmerus_dentex,Pantosteus_bondi,Pantosteus_jordani,Perca_flavescens,Percina_caprodes,Percina_maculata,Percopsis_omiscomaycus,Petromyzon_marinus,Pimephales_notatus,Pimephales_promelas,Platygobio_gracilis,Pomoxis_annularis,Pomoxis_nigromaculatus,Prosopium_cylindraceum,Prosopium_williamsoni,Proterorhinus_marmoratus,Ptychocheilus_oregonensis,Pungitius_pungitius,Pylodictis_olivaris,Rhinichthys_atratulus,Rhinichthys_cataractae,Rhinichthys_falcatus,Rhinichthys_obtusus,Rhinichthys_osculus,Rhinichthys_umatilla,Richardsonius_balteatus,Salmo_trutta,Salvelinus_alpinus,Salvelinus_fontinalis,Salvelinus_namaycush,Sander_canadensis,Sander_vitreus,Scardinius_erythrophthalmus,Semotilus_atromaculatus,Semotilus_corporalis,Spirinchus_thaleichthys,Stenodus_leucichthys,Thaleichthys_pacificus,Thymallus_arcticus,Tinca_tinca,Umbra_limi,Moxostoma_hubbsi,Gasterosteus_aculeatus,Ichthyomyzon_fossor,Ichthyomyzon_unicuspis,Ictiobus_cyprinellus,Lampetra_richardsoni,Lepomis_peltastes,Macrhybopsis_storeriana,Morone_saxatilis,Myoxocephalus_thompsoni,Oncorhynchus_kisutch,Oncorhynchus_mykiss,Oncorhynchus_nerka,Acipenser_fulvescens,Acipenser_oxyrhynchus,Acipenser_transmontanus,Coregonus_clupeaformis,Coregonus_huntsmani,Cottus_aleuticus,Couesius_plumbeus,Fundulus_diaphanus,Fundulus_notatus,Salvelinus_malma,Salvelinus_confluentus,Prosopium_coulterii,Percina_copelandi,Osmerus_mordax,Salmo_salar,Oncorhynchus_tshawytscha,Percina_shumardi -7050374800,0,0,0,0,0,0,1,0,0,1,0,2,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,2,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,2,2,0,0,0,0,1,2,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050034330,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050038340,2,0,0,1,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,2,2,0,0 -7050034530,0,0,0,1,0,1,1,0,0,1,0,0,2,1,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,0,1,0,1,1,0,0,0,0,0,1,0,1,0,2,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050374950,0,0,0,1,1,1,1,0,0,1,1,2,2,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,1,1,2,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,1,1,1,0,1,1,1,2,0,0,1,1,0,0,1,0,0,1,0,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,0,0,2,0,2,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050034520,0,0,0,1,1,1,1,0,0,1,1,2,2,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,1,1,2,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,1,1,1,0,0,0,1,1,0,0,1,0,0,1,0,1,2,0,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,2,2,0,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050038320,2,0,0,1,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,0,1,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050035860,0,0,0,1,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050035870,2,0,0,1,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,2,0,1,1,0,0,0,0,0,1,2,0,0 -7050035480,0,0,0,0,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050034340,0,0,0,1,1,1,1,0,0,1,0,0,2,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,0,1,0,1,1,0,0,0,0,0,1,0,1,0,2,0,0,0,0,2,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050038330,2,0,0,1,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050014940,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,0,0,0,1,1,0 -7050016260,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,2,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,2,1,2,0,0,1,1,0,2,0,0,0,1,2,0,0,0,1,2,0 -7050016270,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,0,0,0,1,1,0 -7050016850,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,1,0 -7050016860,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0,1,1,0 -7050017140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0 -7050017150,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0 -7050017930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0 -7050017940,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0 -7050018020,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0 -7050018030,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0 -7050019010,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,0,0,1,1,1,0,0,1,2,0 -7050019020,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0 -7050019190,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,1,0 -7050019200,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0 -7050020090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,1,0,0,1,1,1,0,0,1,1,0 -7050020100,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,1,0,0,1,1,1,0,0,1,1,0 -7050021430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050021630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0 -7050021740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050021750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050022240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050022250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050022270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050022280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050022840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050022850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050023220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050023230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050023960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050023970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050024040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024600,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024830,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050024900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050025870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050026040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050026050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050026200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050026210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050026740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050026750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050027430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050028070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050028080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050028410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050028420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050028670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050028680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050029000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050029010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050029460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050030610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050030620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050030660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050030670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050030870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050030880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050030940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050030950,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0 -7050031660,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0 -7050031670,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0 -7050031710,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0 -7050031720,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050032940,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050032950,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050033110,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050033120,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050033480,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050033690,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050033700,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050034000,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050034010,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050034100,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,2,0,0 -7050034110,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050035360,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050035370,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050035470,0,0,0,0,0,1,0,0,0,1,0,0,2,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050038810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -7050038980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 -7050039620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0 -7050055790,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,2,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,2,0 -7050057510,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0 -7050059430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050059690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050059780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050059960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -7050059990,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0 -7050060310,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0 -7050060320,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0 -7050061510,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0 -7050061520,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0 -7050061620,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0 -7050061630,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,2,0,0 -7050063050,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0 -7050063060,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,2,0,0 -7050063860,0,0,0,0,1,1,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0 -7050073760,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050073860,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -7050073880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050074540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050112130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050112210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050121880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050121890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050129240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050129300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050132870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050132960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050134090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050134100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050136230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050136320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050137410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050137520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050142610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050142810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050143720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050143810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050144640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050144740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050145540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050145630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050146310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050146370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050146980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050147190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050151610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050151690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050156430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050156440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0 -7050159850,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050159950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050161120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050161180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050163620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050163780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050177760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,2,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,2,0 -7050177910,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,2,0 -7050184430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050184580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050191640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050191700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050192420,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,0,2,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050192440,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050192560,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050192750,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,1,0 -7050192890,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,2,0 -7050194860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050194980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050202930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -7050203140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0 -7050206680,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1 -7050206690,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,2,0,1,1,0,1,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,1 -7050208410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050208540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050217780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050217900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050220180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050220300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050234040,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,1,0,0,0,1,0,0,1,1,1,0,0,0,2,0 -7050234050,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,2,0 -7050237270,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050237380,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1 -7050241270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050241310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050250980,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,1 -7050250990,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,1,1,2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,2,2,2,0,1,1,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,2,0,1,0,0,1 -7050251360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050251370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050252580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050252700,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050256540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -7050256690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -7050262150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050262320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050274850,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,2,0,0,1,1,0,1,1,0,0,1,2,0,0,0,0,2,0 -7050274860,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,1,0,1,1,0,0,0,1,1,0,0,0,2,0 -7050282720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -7050282770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,2,2,0,0,0,0,0 -7050284070,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -7050284240,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,2,2,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -7050284470,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050284520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050287970,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050287980,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050289200,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1 -7050289500,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -7050298200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,0,0 -7050298300,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,0,0 -7050305280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,0,0 -7050305410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,2,2,1,0,2,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,0,0 -7050329370,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,1,0 -7050332670,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050334780,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0,1,1,0,0,0,0,0 -7050335180,0,0,0,0,1,0,1,0,0,0,0,0,2,1,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,2,0,0,2,1,1,0,1,0,0,1,0,0,1,0,0,0,0,2,0,1,0,1,0 -7050337870,0,0,0,0,1,0,1,1,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,0,0,0,0,2,0,1,0,1,0 -7050337970,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,0,0,0,0,2,0,1,0,1,0 -7050343590,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,0,0,0,0,2,0,1,0,1,0 -7050343600,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,0,0,0,0,2,0,1,0,1,0 -7050354130,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050354140,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -7050392520,0,0,0,0,1,0,1,0,0,1,1,0,2,0,1,0,0,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,2,0,1,2,1,0 -7050398520,0,0,0,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,1,0,1,0,1,1,0,2,0,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,2,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050398580,0,0,0,0,1,0,1,0,1,1,0,0,2,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,0,1,1,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,1,2,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050400520,0,0,0,0,0,0,1,0,0,1,0,0,2,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,1,1,2,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,0,0,0 -7050400540,0,0,0,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,0,0,0,2,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,0,0,0 -7050400660,0,0,0,0,0,0,1,0,1,1,0,0,2,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,1,2,0,0,1,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,0,0,0 -7050400760,0,0,0,0,1,0,1,0,1,1,0,0,2,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,2,0,0,1,1,0,0,0,0,0,1,2,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,0,0 -7050402320,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,1,1,2,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,2,0,0,1,1,0,0,1,0,0,1,2,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,0,1,1,0,0,0,0,1,1,2,1,2,2,0,0,2,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050402430,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,1,1,0,1,1,2,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,2,0,0,1,1,0,0,1,0,0,1,2,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,1,1,0,0,0,0,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,0,0,2,0,0,0,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050426310,0,0,0,0,1,0,1,1,0,1,1,0,2,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,1,1,0,0,1,0,1,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,0,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,1,2,1,0 -7050426320,0,0,0,0,1,0,1,1,1,1,1,0,2,0,1,1,1,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,1,0,1,0,1,1,1,0,1,1,0,1,1,1,0,0,0,1,1,0,0,1,1,1,1,0,1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,2,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,1,2,1,0 -7050431350,0,0,0,0,1,0,1,1,1,1,1,0,2,0,1,1,1,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,0,1,1,1,0,2,1,1,1,0,0,1,1,1,1,2,1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,0,0,2,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,1,2,1,0 -7050434140,0,0,0,0,1,0,1,0,1,1,1,0,2,0,1,0,1,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,0,1,1,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,2,0,0,1,1,0,0,1,1,1,1,2,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,1,0,0,0,0,0,1,0,1,2,2,1,0,2,0,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050434190,0,0,0,0,1,0,1,0,1,1,1,0,2,0,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,1,1,0,0,1,0,0,1,2,1,2,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050439770,0,0,0,0,1,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,2,1,0,1,1,0,1,0,1,0,1,1,1,1,1,0,1,1,0,1,1,1,2,2,1,1,1,0,0,1,1,1,1,2,1,2,0,0,0,1,1,1,0,2,1,1,0,1,1,1,0,1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,0,1,0,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,1,0,1,2,2,1,0,2,2,0,2,1,1,0,1,0,0,1,0,0,1,1,0,0,0,0,2,1,2,1,0 -7050494360,0,0,0,0,1,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,0,1,0,1,1,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,2,2,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,1,1,0,2,1,0,1,1,0,1,0,1,0,1,1,1,1,1,0,1,1,2,1,1,1,2,2,1,1,1,0,0,1,1,1,1,2,1,0,0,1,0,1,1,1,0,2,1,1,0,1,1,1,0,1,2,0,1,0,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,1,0,1,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,2,2,1,0,2,2,0,2,1,1,0,1,0,0,1,0,0,1,1,2,0,0,0,2,1,2,1,2 -8050000010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,0 -8050000810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,1,1,0,0,1,0,1,0,0,0,1,0 -8050008900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050009560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050009570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050009890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,0,0 -8050009900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,0,0 -8050010040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050010050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0 -8050010200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050010210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050010430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -8050010440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -8050010700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -8050011270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050011280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050011800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050011810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050012600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050012610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050013480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050013490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050014730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050014740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050014810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050014820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050016080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050016090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050016570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050016580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050016860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050018740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050018970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050018980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050022890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050024130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050024230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050024240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050025160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050025170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050025650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050025660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -8050026850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050026860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050028930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050030130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050030970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050032840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050033310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050033320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050034090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050034100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050034170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050034180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050035010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050035020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050038870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050039130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050039140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -8050041980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050041990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050042220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050042230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050042910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050042920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050043200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050043890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050044560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050047650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050047690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050047730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050048550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050048860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050049370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050049390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050049610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050049710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050051550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050053140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050056830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050056840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050056990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050057000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050057510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050057520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050057550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050057560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050112340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,2,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050112350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050122010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050122100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050129330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050129410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050141350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050141480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0 -8050148430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,0,0 -8050148510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,2,0,0,0,0,0,1,0 -8050150880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050150960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050155470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050155560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050155650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050156300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050156310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050159820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -8050160010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050164230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,0,0 -8050164290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,1,0 -8050170460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050170630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050177260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050177370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050183070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050183170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,1,0 -8050190480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050190630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050194580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,0,0 -8050194590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,0 -8050196780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0 -8050196880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050201080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050201110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050219130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050219290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0 -8050221500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0 -8050221510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0 -8050224890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0 -8050226940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050227070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050231190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0 -8050231240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0 -8050231560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050231700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0 -8050243400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0 -8050243490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050246110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050246160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050251780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0 -8050251940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0 -8050252610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,2,0,0,0,0,1,0 -8050252760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050252780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050252880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050258460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050258570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050259520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0 -8050259590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0 -8050261040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050261050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050262310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050264770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050266590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050269310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,2,0,0,0,0,0,0 -8050269450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,2,0,0,0,0,1,0 -8050270510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050270520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050271000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050271080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0 -8050272020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0 -8050272130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,1,0,0,1,2,0,0,0,0,1,0 -8050286860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0 -8050286910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,1,0 -8050297770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050297840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050298770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,1,0 -8050298780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050307300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050307380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050311060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050311100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050311240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050311330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050315160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0 -8050315230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050327990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050328000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0 -8050331970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050331980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050332600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050332620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 -8050333190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,1,0 -8050333260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0,2,1,0,0,0,1,0 -8050338740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0 -8050338780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,1,0,0,0,2,1,0,0,0,0,0 diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/D3637904-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/D3637904-contents deleted file mode 100644 index 303a3f2..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/D3637904-contents +++ /dev/null @@ -1,79 +0,0 @@ -require(tidyverse) -require(sf) -require(leaflet) - -atlas = read_csv("Spp_dist_HYBAS6.csv") - -###10 species to deal with - -new_atlas = atlas %>% select(-c(Coregonus_kiyi, Coregonus_reighardi, Coregonus_zenithicus, Lepomis_gulosus)) - -#### -new_atlas = new_atlas %>% - mutate(Catostomus_catostomus = ifelse(Catostomus_sp. == 2, 2, Catostomus_catostomus) ) - -table(new_atlas$Catostomus_catostomus) - -new_atlas <- new_atlas %>% select(-Catostomus_sp.) - -#### -new_atlas = new_atlas %>% - mutate(Coregonus_artedi = ifelse(Coregonus_sp. == 2, 2, Coregonus_artedi) ) - -table(new_atlas$Coregonus_artedi) - -new_atlas <- new_atlas %>% select(-Coregonus_sp.) - -### -new_atlas = new_atlas %>% - mutate(Cottus_spp = ifelse(Cottus_bondi == 2, 2, Cottus_spp) ) - -table(new_atlas$Cottus_spp) - -new_atlas <- new_atlas %>% select(-Cottus_bondi) - -### -new_atlas = new_atlas %>% - mutate(Esox_americanus = ifelse(Esox_americanus_vermiculatus == 2, 2, Esox_americanus) ) - -table(new_atlas$Esox_americanus) - -new_atlas <- new_atlas %>% select(-Esox_americanus_vermiculatus) - -###### -new_atlas = new_atlas %>% - mutate(Oncorhynchus_clarkii = ifelse(Oncorhynchus_clarkii_lewisi == 2, 2, Oncorhynchus_clarkii) ) - -table(new_atlas$Oncorhynchus_clarkii) - -new_atlas <- new_atlas %>% select(-Oncorhynchus_clarkii_lewisi) - -########## - -new_atlas = new_atlas %>% - mutate(Pantosteus_bondi = ifelse( - (Pantosteus_bondi == 1 & Catostomus_platyrhynchus == 2), 2, Pantosteus_bondi) ) - -table(new_atlas$Pantosteus_bondi) - -new_atlas = new_atlas %>% - mutate(Pantosteus_jordani = ifelse( - (Pantosteus_jordani == 1 & Catostomus_platyrhynchus == 2), 2, Pantosteus_jordani) ) - -table(new_atlas$Pantosteus_jordani) - -table(new_atlas$Catostomus_platyrhynchus) - -new_atlas$Pantosteus_bondi[which(new_atlas$HYBAS_ID == 7060334780)] <- 2 - -new_atlas <- new_atlas %>% select(-Catostomus_platyrhynchus) - -### -write_csv(new_atlas, "Spp_dist_HYBAS6_20230125.csv") - -### -old_sp = colnames(old)[-1] -new_sp = colnames(new_atlas)[-1] - -new_sp[!new_sp %in% old_sp] - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/DB95DAD6-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/DB95DAD6-contents deleted file mode 100644 index f536ace..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/DB95DAD6-contents +++ /dev/null @@ -1,60 +0,0 @@ -require(readxl) -require(tidyverse) -setwd("C:/Users/DeyC/Desktop/Cody Work/GLLFAS Round 2/Projects/KBA - Watershed prioritization/Data") - -fishPA5 = read_csv("Spp_dist_HYBAS5_20230125.csv") - -fishPA5[fishPA5 == 2]<-1 #change the SAR indicator of '2' to a presence indicator of '1' - -Pvals = fishPA5 %>% summarize_all(.funs = "mean") -Pvals = as_vector(Pvals) -Pvals = Pvals[-1] -Qvals = 1-Pvals -TotalQ = sum(Qvals) - -# -Ivals = fishPA5 -for(i in 2:ncol(Ivals)){ - Ivals[i] <- Ivals[i]*Qvals[i-1] -} - -Ivals = Ivals %>% rowwise() %>% - mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% - mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) - -Ivals = Ivals %>% mutate(Ii = QijSij / TotalQ) %>% mutate(Qi = QijSij / richness) - -towrite = Ivals %>% select(HYBAS_ID, Ii, Qi) - -write_csv(towrite, "H5_importance_priority.csv") - -####################Hydrobasin lvl 6 -#fishPA6 = read_excel(path = "NEM_spp_x_hyB.xlsx", - # sheet = "Hybas_level6") - -fishPA6 = read_csv("Spp_dist_HYBAS6_20230125.csv") - -fishPA6[fishPA6 == 2]<-1 #change the SAR indicator of '2' to a presence indicator of '1' - - -Pvals = fishPA6 %>% summarize_all(.funs = "mean") -Pvals = as_vector(Pvals) -Pvals = Pvals[-1] -Qvals = 1-Pvals -TotalQ = sum(Qvals) - -# -Ivals = fishPA6 -for(i in 2:ncol(Ivals)){ - Ivals[i] <- Ivals[i]*Qvals[i-1] -} - -Ivals = Ivals %>% rowwise() %>% - mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% - mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) - -Ivals = Ivals %>% mutate(Ii = QijSij / TotalQ) %>% mutate(Qi = QijSij / richness) - -towrite = Ivals %>% select(HYBAS_ID, Ii, Qi) - -write_csv(towrite, "H6_importance_priority.csv") diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3 b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3 deleted file mode 100644 index 6fa9120..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3 +++ /dev/null @@ -1,26 +0,0 @@ -{ - "id": "F83C14F3", - "path": "/cloud/project/data carpentry_lvl5.R", - "project_path": "data carpentry_lvl5.R", - "type": "r_source", - "hash": "0", - "contents": "", - "dirty": false, - "created": 1674843264660.0, - "source_on_save": false, - "relative_order": 2, - "properties": { - "source_window_id": "", - "Source": "Source", - "cursorPosition": "71,0", - "scrollLine": "0" - }, - "folds": "", - "lastKnownWriteTime": 1676662583, - "encoding": "UTF-8", - "collab_server": "", - "source_window": "", - "last_content_update": 1676662583428, - "read_only": false, - "read_only_alternatives": [] -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3-contents deleted file mode 100644 index b21aa94..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/F83C14F3-contents +++ /dev/null @@ -1,74 +0,0 @@ -require(tidyverse) -require(readxl) -require(viridis) -require(ggmap) - -###bring in WSI and CCI -data5 = read_csv("HyC_5_df.csv") -data5 = data5 %>% select(HYBAS_ID, - MEAN_INT_1, #WSI measures - rcp45_55) ##Climate measure - -##Bring in fish community importance and priority data -IQ5 = read_csv("H5_importance_priority.csv") -data5 = left_join(data5, IQ5, by = "HYBAS_ID") -data5 = data5 %>% select(-Ii) - -##Bring in FCBI -FBCI5 = read_csv("FBCI_level5_270123.csv") -tmp5 = FBCI5 %>% select(HYBAS_ID, Jaccard.D) -data5 = left_join(data5, tmp5, by = "HYBAS_ID") - -########### -#Calculate SARI and Richness -fishPA5 = read_csv("Spp_dist_HYBAS5_20230125.csv") -fishPA5$SAR_count = NA -fishPA5$pSAR = NA -fishPA5$total_richness = NA - -for(i in 1:nrow(fishPA5)){ - fishPA5$SAR_count[i] = length(which(fishPA5[i,] == 2)) - fishPA5$total_richness[i] = length(which(fishPA5[i,] > 0)) - fishPA5$pSAR[i] = length(which(fishPA5[i,] == 2)) / length(which(fishPA5[i,] %in% c(1,2))) -} - - -### -tmp = fishPA5 %>% select(HYBAS_ID, SAR_count, total_richness) -data5 = left_join(data5, tmp, by="HYBAS_ID") - -colnames(data5)<- c("HYBAS_ID", - "WSI", #is just HStress - "CCI", #is rcp45_55 - "Fish_priority", - "FBCI", - "SARI", #is count of SAR - "Fish_richness") #Is total richness - -#Standardize -data5 = data5 %>% - mutate(FBCI_n = (100* (FBCI-min(FBCI)) / ( max(FBCI)-min(FBCI) ) ) ) %>% - mutate(WSI_n = (100* (WSI-min(WSI)) / ( max(WSI)-min(WSI) ) ) ) %>% - mutate(CCI_n = (100* (CCI-min(CCI)) / ( max(CCI)-min(CCI) ) ) ) %>% - mutate(Priority_n = (100* (Fish_priority-min(Fish_priority)) / ( max(Fish_priority)-min(Fish_priority) ) ) ) %>% - mutate(SARI_n = (100* (SARI-min(SARI)) / ( max(SARI)-min(SARI) ) ) ) %>% - mutate(Fish_richness_n = (100* (Fish_richness-min(Fish_richness)) / ( max(Fish_richness)-min(Fish_richness) ) ) ) - -#join with feow -feow5 = read_csv("hyc_5_feow_join.csv") -data5 = left_join(data5, feow5, by = "HYBAS_ID") - -#drop unneeded columns -data5 = data5 %>% select(c(HYBAS_ID, FEOW_ID, - WSI_n, - FBCI_n, - CCI_n, - SARI_n, - Fish_richness_n, - Priority_n - )) - - -write_csv(data5, "Hybas5_data.csv") - - diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/FD8A18BA-contents b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/FD8A18BA-contents deleted file mode 100644 index ee6364a..0000000 --- a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/FD8A18BA-contents +++ /dev/null @@ -1,265 +0,0 @@ -require(tidyverse) -require(gridExtra) - - - -#Figure 2 - -x = seq(0,1,0.01) -y_lin = -1*x+1 - -L=1 -k=12 -xo=0.7 -y_sig1 = L/ (1+exp(-k*(xo-x))) - - -A<-ggplot()+ - annotate("rect", fill = "green", alpha = 0.1, - xmin = 0, xmax = 0.56, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "red", alpha = 0.1, - xmin = 0.56, xmax = Inf, - ymin = -Inf, ymax = Inf) + - geom_hline(aes(yintercept=0.85), linetype="dashed", color="grey")+ - geom_vline(aes(xintercept=0.56), linetype="dashed", color="black")+ - geom_line(aes(x=x, y=y_sig1), linewidth=1.2)+ - geom_text(aes(x=0.99, y=0.88, label = "objectif de gestion"), hjust=1, angle=0, size=3, color="grey")+ - geom_text(aes(x=0.53, y=0, hjust=0, label = "seuil de déclaration"), angle =90, size=3)+ - scale_y_continuous(expand = c(0.01,0), limits = c(0,1.05)) + scale_x_continuous(expand = c(0,0))+ - ylab("Variable de gestion")+ - xlab(" ")+ - theme_bw()+ - theme(panel.grid = element_blank(), - axis.text = element_blank(), - axis.ticks = element_blank(), - axis.title.x = element_blank())+ - ggtitle("A") - -A - -B<-ggplot()+ - annotate("rect", fill = "green", alpha = 0.1, - xmin = 0, xmax = 0.36, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "yellow", alpha = 0.1, - xmin = 0.36, xmax = 0.56, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "red", alpha = 0.1, - xmin = 0.56, xmax = Inf, - ymin = -Inf, ymax = Inf) + - geom_hline(aes(yintercept=0.85), linetype="dashed", color="grey")+ - geom_vline(aes(xintercept=0.56), linetype="dashed", color="black")+ - geom_vline(aes(xintercept=0.36), linetype="dashed", color="black")+ - geom_line(aes(x=x, y=y_sig1), size=1.2)+ - geom_text(aes(x=0.99, y=0.88, label = "objectif de gestion"), hjust=1, angle=0, size=3, color="grey")+ - geom_text(aes(x=0.53, y=0, hjust=0, label = "seuil de déclaration principal"), angle =90, size=3)+ - geom_text(aes(x=0.33, y=0, hjust=0, label = "seuil de déclaration préventif"), angle =90, size=3)+ - - scale_y_continuous(expand = c(0.01,0), limits = c(0,1.05)) + scale_x_continuous(expand = c(0,0))+ - ylab(" ")+ - xlab(" ")+ - theme_bw()+ - theme(panel.grid = element_blank(), - axis.text = element_blank(), - axis.ticks = element_blank(), - axis.title.x = element_blank())+ - ggtitle("B") - -B - - -grid.arrange(A,B, nrow=1, -bottom = "Mesure de l’état du poisson et de son habitat (p. ex., niveau de perturbation)") - - - - - -#FIGURE 3 - -x = seq(0,1,0.01) -y_lin = -1*x+1 - -L=1 -k=12 -xo=0.5 -y_sig1 = L/ (1+exp(-k*(xo-x))) - -##A - -A<-ggplot()+ - geom_hline(aes(yintercept=0.75), linetype="dashed", color="grey")+ - geom_line(aes(x=x, y=y_sig1), size=1.2)+ - geom_segment(aes( - x=0.4, xend=0.40, - y=0, yend=0.75), - linetype="dashed")+ - geom_text(aes(x=0.99, y=0.78, label = "objectif de gestion"), hjust=1, angle=0, size=3, color="grey")+ - geom_text(aes(x=0.37, y=0, hjust=0, label = "seuil écologique/de déclaration"), angle =90, size=3)+ - scale_y_continuous(expand = c(0.01,0), limits = c(0,1.05)) + scale_x_continuous(expand = c(0,0))+ - ylab("Variable de gestion")+ - xlab("")+ - theme_bw()+ - theme(panel.grid = element_blank(), - axis.text = element_blank(), - axis.ticks = element_blank(), - axis.title.x = element_blank())+ - ggtitle("A") - - -####B - -B<-ggplot()+ - geom_hline(aes(yintercept=0.75), linetype="dashed", color="grey")+ - geom_line(aes(x=x, y=y_lin), size=1.2)+ - geom_text(aes(x=0.99, y=0.78, label = "objectif de gestion"), - angle=0, size=3, color="grey", hjust=1)+ - geom_segment(aes( - x=0.25, xend=0.25, - y=0, yend=0.75), - linetype="dashed")+ - geom_text(aes(x=0.22, y=0, hjust=0,label = "seuil de déclaration"), angle =90, size=3)+ - scale_y_continuous(expand = c(0.01,0), limits = c(0,1.05)) + scale_x_continuous(expand = c(0,0))+ - ylab("")+ - xlab("")+ - theme_bw()+ - theme(panel.grid = element_blank(), - axis.text = element_blank(), - axis.ticks = element_blank(), - axis.title.x = element_blank())+ - ggtitle("B") - - -#####################C -L=0.15 -k=50 -xo=0.5 -y_sig2 = 0.85+ L/ (1+exp(-k*(xo-x))) - -C<-ggplot()+ - geom_hline(aes(yintercept=0.75), linetype="dashed", color="grey")+ - geom_text(aes(x=0.99, y=0.78, label = "objectif de gestion"), - angle=0, size=3, color="grey", hjust=1)+ - geom_line(aes(x=x, y=y_sig2), size=1.2)+ - scale_y_continuous(expand = c(0.01,0), limits = c(0,1.05)) + scale_x_continuous(expand = c(0,0))+ - ylab("")+ - geom_segment(aes(x=0.47, xend=0.47, y=0, yend=0.97), linetype="dashed")+ - geom_text(aes(x=0.44, y=0, label = "seuil écologique"), - angle =90, size=3, hjust=0)+ - - xlab("")+ - theme_bw()+ - theme(panel.grid = element_blank(), - axis.text = element_blank(), - axis.ticks = element_blank(), - axis.title.x = element_blank())+ - ggtitle("C") - - - - - -grid.arrange(A,B,C, nrow=1, - bottom = "Mesure de l’état du poisson et de son habitat (p. ex., niveau de perturbation)") -############################### - -##################### -#Example of Metrics - -mydata = tibble(data = runif(27, 0, 0.9)) - -ggplot()+ - annotate("rect", fill = "green", alpha = 0.1, - xmin = 0, xmax = 0.25, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "yellow", alpha = 0.1, - xmin = 0.25, xmax = 0.5, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "red", alpha = 0.1, - xmin = 0.5, xmax = 1, - ymin = -Inf, ymax = Inf) + - geom_vline(aes(xintercept = 0.25), linetype = "dashed")+ - geom_vline(aes(xintercept = 0.5), linetype = "dashed")+ - geom_point(data=mydata, aes(x=data, y=1.5), - position = position_jitter(w=0,h=0.1), color ="grey", size=4)+ - geom_point(aes(x=0.21, y=1.5), - position = position_jitter(w=0,h=0.1), color ="black", size=6.5)+ - xlab("Proportion of samples with chloride below guidelines")+ - scale_y_continuous(limits = c(1.4,1.6))+ - scale_x_continuous(limits = c(0,1), expand=c(0,0),breaks = c(0,1), - labels = c("0","1"))+ - theme_classic()+ - theme(axis.text.y = element_blank(), - axis.title.y=element_blank(), - panel.grid = element_blank(), - axis.title.x=element_text(margin = margin(t=-3)), - axis.line.y.left = element_blank(), - axis.ticks.y = element_blank()) -ggsave("chloride.jpg", device="jpg", height = 3, width = 6, units = "in" ) - -### -mydata = tibble(data = abs(rnorm(27, mean =0, sd = 0.5))) - -ggplot()+ - annotate("rect", fill = "green", alpha = 0.1, - xmin = 0, xmax = 0.15, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "yellow", alpha = 0.1, - xmin = 0.15, xmax = 0.35, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "red", alpha = 0.1, - xmin = 0.35, xmax = 1, - ymin = -Inf, ymax = Inf) + - geom_vline(aes(xintercept = 0.15), linetype = "dashed")+ - geom_vline(aes(xintercept = 0.35), linetype = "dashed")+ - geom_point(data=mydata, aes(x=data, y=1.5), - position = position_jitter(w=0,h=0.1), color ="grey", size=4)+ - geom_point(aes(x=0.31, y=1.5), - position = position_jitter(w=0,h=0.1), color ="black", size=6.5)+ - xlab("Mean change in water temperature")+ - scale_y_continuous(limits = c(1.4,1.6))+ - scale_x_continuous(limits = c(0,1), expand=c(0,0), breaks = c(0,1), labels = c(" 0?C","5?C "))+ - theme_classic()+ - theme(axis.text.y = element_blank(), - axis.title.y=element_blank(), - panel.grid = element_blank(), - axis.title.x=element_text(margin = margin(t=-3)), - axis.line.y.left = element_blank(), - axis.ticks.y = element_blank()) -ggsave("water_temp.jpg", device="jpg", height = 3, width = 6, units = "in" ) - - -### -mydata = tibble(data = abs(runif(27, 0.1, 0.9))) - -ggplot()+ - annotate("rect", fill = "green", alpha = 0.1, - xmin = 0, xmax = 0.25, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "yellow", alpha = 0.1, - xmin = 0.25, xmax = 0.5, - ymin = -Inf, ymax = Inf) + - annotate("rect", fill = "red", alpha = 0.1, - xmin = 0.5, xmax = 1, - ymin = -Inf, ymax = Inf) + - geom_vline(aes(xintercept = 0.25), linetype = "dashed")+ - geom_vline(aes(xintercept = 0.5), linetype = "dashed")+ - geom_point(data=mydata, aes(x=data, y=1.5), - position = position_jitter(w=0,h=0.1), color ="grey", size=4)+ - geom_point(aes(x=0.31, y=1.5), - position = position_jitter(w=0,h=0.1), color ="black", size=6.5)+ - xlab("Proportion of samples with dissolved oxygen below guidelines")+ - scale_y_continuous(limits = c(1.4,1.6))+ - scale_x_continuous(limits = c(0,1), expand=c(0,0), breaks = c(0,1), - labels = c("0","1"))+ - theme_classic()+ - theme(axis.text.y = element_blank(), - axis.title.y=element_blank(), - axis.title.x=element_text(margin = margin(t=-3)), - panel.grid = element_blank(), - axis.line.y.left = element_blank(), - axis.ticks.y = element_blank()) -ggsave("oxygen.jpg", device="jpg", height = 3, width = 6, units = "in" ) - - \ No newline at end of file diff --git a/Analysis/.Rproj.user/E8595228/sources/session-998ca583/suspend_file b/Analysis/.Rproj.user/E8595228/sources/session-998ca583/suspend_file deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/pcs/files-pane.pper b/Analysis/.Rproj.user/pcs/files-pane.pper deleted file mode 100644 index 280b85e..0000000 --- a/Analysis/.Rproj.user/pcs/files-pane.pper +++ /dev/null @@ -1,9 +0,0 @@ -{ - "sortOrder": [ - { - "columnIndex": 2, - "ascending": true - } - ], - "path": "/cloud/project" -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/pcs/source-pane.pper b/Analysis/.Rproj.user/pcs/source-pane.pper deleted file mode 100644 index 902cc6f..0000000 --- a/Analysis/.Rproj.user/pcs/source-pane.pper +++ /dev/null @@ -1,3 +0,0 @@ -{ - "activeTab": 0 -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/pcs/windowlayoutstate.pper b/Analysis/.Rproj.user/pcs/windowlayoutstate.pper deleted file mode 100644 index 31eb331..0000000 --- a/Analysis/.Rproj.user/pcs/windowlayoutstate.pper +++ /dev/null @@ -1,14 +0,0 @@ -{ - "left": { - "splitterpos": 277, - "topwindowstate": "NORMAL", - "panelheight": 598, - "windowheight": 672 - }, - "right": { - "splitterpos": 416, - "topwindowstate": "NORMAL", - "panelheight": 598, - "windowheight": 672 - } -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/pcs/workbench-pane.pper b/Analysis/.Rproj.user/pcs/workbench-pane.pper deleted file mode 100644 index d3c7634..0000000 --- a/Analysis/.Rproj.user/pcs/workbench-pane.pper +++ /dev/null @@ -1,5 +0,0 @@ -{ - "TabSet1": 0, - "TabSet2": 1, - "TabZoom": {} -} \ No newline at end of file diff --git a/Analysis/.Rproj.user/persistent-state b/Analysis/.Rproj.user/persistent-state deleted file mode 100644 index e6274ed..0000000 --- a/Analysis/.Rproj.user/persistent-state +++ /dev/null @@ -1,11 +0,0 @@ -activeClientUrl="https://fc14cc3caea24daca1d4cdbf66fac50f.app.posit.cloud/" -build-last-errors="[]" -build-last-errors-base-dir="" -build-last-outputs="[]" -compile_pdf_state="{\"tab_visible\":false,\"running\":false,\"target_file\":\"\",\"output\":\"\",\"errors\":[]}" -displayName="freshwater.fish.habitat@gmail.com" -files.monitored-path="" -find-in-files-state="{\"handle\":\"\",\"input\":\"\",\"path\":\"\",\"regex\":false,\"ignoreCase\":false,\"results\":{\"file\":[],\"line\":[],\"lineValue\":[],\"matchOn\":[],\"matchOff\":[],\"replaceMatchOn\":[],\"replaceMatchOff\":[]},\"running\":false,\"replace\":false,\"preview\":false,\"gitFlag\":false,\"replacePattern\":\"\"}" -imageDirtyState="1" -portToken="84eb62163447" -saveActionState="-1" diff --git a/Analysis/.Rproj.user/shared/RVersion b/Analysis/.Rproj.user/shared/RVersion deleted file mode 100644 index 078bf8b..0000000 --- a/Analysis/.Rproj.user/shared/RVersion +++ /dev/null @@ -1 +0,0 @@ -4.2.2 \ No newline at end of file diff --git a/Analysis/.Rproj.user/shared/notebooks/patch-chunk-names b/Analysis/.Rproj.user/shared/notebooks/patch-chunk-names deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/.Rproj.user/shared/notebooks/paths b/Analysis/.Rproj.user/shared/notebooks/paths deleted file mode 100644 index 3916fca..0000000 --- a/Analysis/.Rproj.user/shared/notebooks/paths +++ /dev/null @@ -1,4 +0,0 @@ -/cloud/project/Results_plots.R="A46562BF" -/cloud/project/calculate I and Q.R="EA6EB908" -/cloud/project/data carpentry_lvl6.R="F52F9DE0" -/cloud/project/hyC_5_join_shp_Lamb_up.cpg="17A16603" diff --git a/Analysis/Applying weights.R b/Analysis/Applying weights.R deleted file mode 100644 index 877c033..0000000 --- a/Analysis/Applying weights.R +++ /dev/null @@ -1,153 +0,0 @@ -require(tidyverse) - -###read weightings -weights = read_csv("Co_author_weightings.csv") - -med_weights = weights %>% select(-Co_author) %>% - summarise_all(median) %>% - pivot_longer(cols = everything(), names_to="Variable", values_to="Weight") - -### -data5 = read_csv("Hybas5_data.csv") - -#priorities for Protected areas -data5 = data5 %>% - mutate(protection_score = WSI_n*med_weights$Weight[1]+ - FBCI_n*med_weights$Weight[2]+ - CCI_n*med_weights$Weight[3]+ - SARI_n*med_weights$Weight[4]+ - Fish_richness_n*med_weights$Weight[5]+ - Priority_n*med_weights$Weight[6]) -#ranked within FEOW -data5 = data5 %>% - arrange(FEOW_ID, -protection_score) %>% - group_by(FEOW_ID) %>% - mutate(Prot_rank_feow=row_number()) - -#priorities for restoration -data5 = data5 %>% - mutate(restoration_score = WSI_n*med_weights$Weight[7]+ - FBCI_n*med_weights$Weight[8]+ - CCI_n*med_weights$Weight[9]+ - SARI_n*med_weights$Weight[10]+ - Fish_richness_n*med_weights$Weight[11]+ - Priority_n*med_weights$Weight[12]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -restoration_score) %>% - group_by(FEOW_ID) %>% - mutate(Rest_rank_feow=row_number()) - - -#priorities for SAR -data5 = data5 %>% - mutate(SAR_score = WSI_n*med_weights$Weight[13]+ - FBCI_n*med_weights$Weight[14]+ - CCI_n*med_weights$Weight[15]+ - SARI_n*med_weights$Weight[16]+ - Fish_richness_n*med_weights$Weight[17]+ - Priority_n*med_weights$Weight[18]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -SAR_score) %>% - group_by(FEOW_ID) %>% - mutate(SAR_rank_feow=row_number()) - -#priorities for AIS -data5 = data5 %>% - mutate(AIS_score = WSI_n*med_weights$Weight[19]+ - FBCI_n*med_weights$Weight[20]+ - CCI_n*med_weights$Weight[21]+ - SARI_n*med_weights$Weight[22]+ - Fish_richness_n*med_weights$Weight[23]+ - Priority_n*med_weights$Weight[24]) - -#ranked within FEOW -data5 = data5 %>% ungroup() %>% - arrange(FEOW_ID, -AIS_score) %>% - group_by(FEOW_ID) %>% - mutate(AIS_rank_feow=row_number()) - -write_csv(data5, "watershed_prioritization_level5.csv") -rm(list=ls()) - -########################################################################## -#Level 6 -###read weightings -weights = read_csv("Co_author_weightings.csv") - -med_weights = weights %>% select(-Co_author) %>% - summarise_all(median) %>% - pivot_longer(cols = everything(), names_to="Variable", values_to="Weight") - - -data6 = read_csv("Hybas6_data.csv") - -#priorities for Protected areas -data6 = data6 %>% - mutate(protection_score = WSI_n*med_weights$Weight[1]+ - FBCI_n*med_weights$Weight[2]+ - CCI_n*med_weights$Weight[3]+ - SARI_n*med_weights$Weight[4]+ - Fish_richness_n*med_weights$Weight[5]+ - Priority_n*med_weights$Weight[6]) -#ranked within FEOW -data6 = data6 %>% - arrange(FEOW_ID, -protection_score) %>% - group_by(FEOW_ID) %>% - mutate(Prot_rank_feow=row_number()) - -#priorities for restoration -data6 = data6 %>% - mutate(restoration_score = WSI_n*med_weights$Weight[7]+ - FBCI_n*med_weights$Weight[8]+ - CCI_n*med_weights$Weight[9]+ - SARI_n*med_weights$Weight[10]+ - Fish_richness_n*med_weights$Weight[11]+ - Priority_n*med_weights$Weight[12]) - -#ranked within FEOW -data6 = data6 %>% ungroup() %>% - arrange(FEOW_ID, -restoration_score) %>% - group_by(FEOW_ID) %>% - mutate(Rest_rank_feow=row_number()) - - -#priorities for SAR -data6 = data6 %>% - mutate(SAR_score = WSI_n*med_weights$Weight[13]+ - FBCI_n*med_weights$Weight[14]+ - CCI_n*med_weights$Weight[15]+ - SARI_n*med_weights$Weight[16]+ - Fish_richness_n*med_weights$Weight[17]+ - Priority_n*med_weights$Weight[18]) - -#ranked within FEOW -data6 = data6 %>% ungroup() %>% - arrange(FEOW_ID, -SAR_score) %>% - group_by(FEOW_ID) %>% - mutate(SAR_rank_feow=row_number()) - -#priorities for AIS -data6 = data6 %>% - mutate(AIS_score = WSI_n*med_weights$Weight[19]+ - FBCI_n*med_weights$Weight[20]+ - CCI_n*med_weights$Weight[21]+ - SARI_n*med_weights$Weight[22]+ - Fish_richness_n*med_weights$Weight[23]+ - Priority_n*med_weights$Weight[24]) - -#ranked within FEOW -data6 = data6 %>% ungroup() %>% - arrange(FEOW_ID, -AIS_score) %>% - group_by(FEOW_ID) %>% - mutate(AIS_rank_feow=row_number()) - -write_csv(data6, "watershed_prioritization_level6.csv") -rm(list=ls()) - - - - diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.13564.14144.sr.lock b/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.13564.14144.sr.lock deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.4148.14144.sr.lock b/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.4148.14144.sr.lock deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.6096.14144.sr.lock b/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.WLONBUR9070240.6096.14144.sr.lock deleted file mode 100644 index e69de29..0000000 diff --git a/Analysis/ProtectedAreas_shp/temp b/Analysis/ProtectedAreas_shp/temp deleted file mode 100644 index 8b13789..0000000 --- a/Analysis/ProtectedAreas_shp/temp +++ /dev/null @@ -1 +0,0 @@ - diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..3b9efa9 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,41 @@ +Package: watershedPrioritization +Type: Package +Title: Priortize Watersheds Within Canada +Date: 2025-02-03 +Version: 0.0.0.9002 +Authors@R: c( + person("Cindy", "Chu", email = "Cindy.Chu@dfo-mpo.gc.ca", role = c("aut", "cre")), + person("inSileco Inc", comment = "https://insileco.io/", role = c("aut")) + ) +Maintainer: Cindy Chu +Description: Priortize watersheds within Canada for four freshwater fish conservation objectives. +Encoding: UTF-8 +License: MIT + file LICENSE +Roxygen: list(markdown = TRUE) +Depends: + R (>= 4.2) +Imports: + cli (>= 3.6.3), + dplyr (>= 1.1.4), + fs (>= 1.6.5), + ggbeeswarm (>= 0.7.2), + ggplot2 (>= 3.5.1), + ggpubr (>= 0.6.0), + purrr (>= 1.0.2), + readr (>= 2.1.5), + readxl (>= 1.4.3), + sf (>= 1.0-18), + tidyr (>= 1.3.1), + viridis (>= 0.6.5) +Suggests: + htmltools (>= 0.5.8.1), + leaflet (>= 2.2.2), + rsconnect (>= 1.3.2), + shiny (>= 1.9.1), + shinyWidgets (>= 0.8.7), + shinybusy (>= 0.3.3), + shinythemes (>= 1.2.0), + testthat (>= 3.0.0) +RoxygenNote: 7.3.2 +LazyLoad: yes +Config/testthat/edition: 3 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..77e6a75 --- /dev/null +++ b/LICENSE @@ -0,0 +1,2 @@ +YEAR: 2024 +COPYRIGHT HOLDER: watershedPrioritization authors diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..726002c --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2024 watershedPrioritization authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 0000000..d727685 --- /dev/null +++ b/NAMESPACE @@ -0,0 +1,9 @@ +# Generated by roxygen2: do not edit by hand + +export(apply_weight) +export(compute_fish_priority_index) +export(feow_scaling) +export(generate_priorization_data) +export(get_results) +export(run_pipeline) +import(ggplot2) diff --git a/R/apply_weight.R b/R/apply_weight.R new file mode 100644 index 0000000..c21a62b --- /dev/null +++ b/R/apply_weight.R @@ -0,0 +1,93 @@ +#' Applying expert weight +#' +#' Median values of expert weights used to generate weighted-scores for: +#' * Area-based protection +#' * Restoration +#' * SAR management +#' * Invasive species management +#' +#' @return +#' write `watershed_prioritization_level6.csv` +#' +#' @export + +apply_weight <- function() { + ### read weightings data + weights <- path_input_data("Co_author_weightings.csv") |> + readr::read_csv(show_col_types = FALSE) + + med_weights <- weights |> + dplyr::select(-Co_author) |> + dplyr::summarise_all(stats::median) |> + tidyr::pivot_longer( + cols = dplyr::everything(), + names_to = "Variable", + values_to = "Weight" + ) + + # require to execute generate_priorization_data() + df_prio_w <- path_output_data("watershed_prioritization_no_weight.csv") |> + readr::read_csv(show_col_types = FALSE) |> + # priorities for Protected areas + dplyr::mutate( + protection_score = + WSI_n * med_weights$Weight[1] + + FBCI_n * med_weights$Weight[2] + + CCI_n * med_weights$Weight[3] + + SARI_n * med_weights$Weight[4] + + Fish_richness_n * med_weights$Weight[5] + + Priority_n * med_weights$Weight[6] + ) |> + # ranked within FEOW + dplyr::arrange(FEOW_ID, -protection_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Prot_rank_feow = dplyr::row_number()) |> + # priorities for restoration + dplyr::mutate( + restoration_score = WSI_n * med_weights$Weight[7] + + FBCI_n * med_weights$Weight[8] + + CCI_n * med_weights$Weight[9] + + SARI_n * med_weights$Weight[10] + + Fish_richness_n * med_weights$Weight[11] + + Priority_n * med_weights$Weight[12] + ) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -restoration_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Rest_rank_feow = dplyr::row_number()) |> + # priorities for SAR + dplyr::mutate(SAR_score = WSI_n * med_weights$Weight[13] + + FBCI_n * med_weights$Weight[14] + + CCI_n * med_weights$Weight[15] + + SARI_n * med_weights$Weight[16] + + Fish_richness_n * med_weights$Weight[17] + + Priority_n * med_weights$Weight[18]) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -SAR_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(SAR_rank_feow = dplyr::row_number()) |> + # priorities for AIS + dplyr::mutate( + AIS_score = WSI_n * med_weights$Weight[19] + + FBCI_n * med_weights$Weight[20] + + CCI_n * med_weights$Weight[21] + + SARI_n * med_weights$Weight[22] + + Fish_richness_n * med_weights$Weight[23] + + Priority_n * med_weights$Weight[24] + ) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -AIS_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(AIS_rank_feow = dplyr::row_number()) + + # write csv file + readr::write_csv( + df_prio_w, + path_output_data("watershed_prioritization_level6.csv") + ) + + df_prio_w +} \ No newline at end of file diff --git a/R/compute_priority.R b/R/compute_priority.R new file mode 100644 index 0000000..2758877 --- /dev/null +++ b/R/compute_priority.R @@ -0,0 +1,55 @@ +#' Calculate rarity indices +#' +#' @details +#' Calculation based on Q index in Minns (1987). +#' +#' @references +#' * Minns, C. K. 'A Method of Ranking Species and Sites for Conservation Using +#' Presence-Absence Data and Its Application to Native Freshwater Fish in New +#' Zealand. New Zealand Journal of Zoology 14, no. 1 (January 1987): 43–49. +#' https://doi.org/10.1080/03014223.1987.10422680. +#' +#' @export + +compute_fish_priority_index <- function() { + fishPA6 <- path_input_data("Spp_dist_HYBAS6_20230125.csv") |> + readr::read_csv() + + fishPA6[fishPA6 == 2] <- 1 # change the SAR indicator of '2' to a presence indicator of '1' + + Pvals <- fishPA6 |> + dplyr::summarize_all(.funs = "mean") + Pvals <- purrr::as_vector(Pvals) + Pvals <- Pvals[-1] + Qvals <- 1 - Pvals + TotalQ <- sum(Qvals) + + # + Ivals <- fishPA6 + for (i in 2:ncol(Ivals)) { + Ivals[i] <- Ivals[i] * Qvals[i - 1] + } + + Ivals <- Ivals |> + dplyr::rowwise() |> + dplyr::mutate( + QijSij = sum( + dplyr::c_across(Acipenser_brevirostrum:Percina_shumardi) + ), + richness = sum( + dplyr::c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 + ) + ) + + Ivals <- Ivals |> + dplyr::mutate(Ii = QijSij / TotalQ) |> + dplyr::mutate(Qi = QijSij / richness) + + hb_lvl6 <- Ivals |> dplyr::select(HYBAS_ID, Ii, Qi) + readr::write_csv( + hb_lvl6, + path_output_data("H6_importance_priority.csv") + ) + + hb_lvl6 +} \ No newline at end of file diff --git a/R/feow_scaling.R b/R/feow_scaling.R new file mode 100644 index 0000000..50b8669 --- /dev/null +++ b/R/feow_scaling.R @@ -0,0 +1,30 @@ +#' FEOW scaling +#' +#' Scaling ranks level 6 hydrobasins within canadian FEOWs (Freshwater +#' Ecoregions of the World). +#' +#' @details +#' The scaling enables comparison between regions, considering that regions +#' have varying numbers of watersheds and, consequently, different value ranges +#' for ranking. +#' +#' @export + +feow_scaling <- function() { + + hyb6r <- path_input_data("level6ranks.csv") |> + readr::read_csv() + + hyb6r <- hyb6r |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate( + Prot_feow_scaled = scale_rank(Prot_rank_feow), + Rest_feow_scaled = scale_rank(Rest_rank_feow), + SAR_feow_scaled = scale_rank(SAR_rank_feow), + AIS_feow_scaled = scale_rank(AIS_rank_feow) + ) + + readr::write_csv(hyb6r, file = path_output_data("hyb6feowscaled.csv")) + hyb6r +} + diff --git a/R/generate_priorization.R b/R/generate_priorization.R new file mode 100644 index 0000000..892d16e --- /dev/null +++ b/R/generate_priorization.R @@ -0,0 +1,142 @@ +#' Generate prirization main data frame. +#' +#' @details +#' Note that raw data are embeded in the R package in `extdata` folder. +#' +#' @return +#' A data frame with the following columns: +#' * HYBAS_ID: Hydrobassin identifier , +#' * FEOW_ID: Freshwater Ecoregions of the World identifier, +#' * WSI_n: Watershed stress index from Hirsh-Pearson (2022), +#' * FBCI_n: Fish biodiversity change index. Calculate Jaccard dissimilarity +#' for native spp pool vs. current native + non-native spp pool. +#' * CCI_n: Climate change velocities based on CMIP6 SSP2-4.5 forward +#' velocities for 2040-2070 period. +#' * SARI_n: Species at risk management +#' * Fish_richness_n: Species richness. +#' * Priority_n: Index of priority based on Minns rarity index (1987). +#' Bote that columns ending with `_n` are normalized. +#' +#' +#' @references +#' * Hirsh-Pearson, Kristen, Chris J. Johnson, Richard Schuster, Roger D. +#' Wheate, and Oscar Venter. 'Canada’s Human Footprint Reveals Large Intact +#' Areas Juxtaposed against Areas under Immense Anthropogenic Pressure.' Edited +#' by Raymond Bradley. FACETS 7 (January 1, 2022): 398–419. +#' https://doi.org/10.1139/facets-2021-0063. +#' * Minns, C. K. 'A Method of Ranking Species and Sites for Conservation Using +#' Presence-Absence Data and Its Application to Native Freshwater Fish in New +#' Zealand. New Zealand Journal of Zoology 14, no. 1 (January 1987): 43–49. +#' https://doi.org/10.1080/03014223.1987.10422680. +#' +#' @export + +generate_priorization_data <- function() { + #------------ Climate and stress data + ws_data <- path_input_data("Variable_data_20241018.xlsx") + df_prio <- ws_data |> + readxl::read_xlsx(sheet = "H6_climate") |> + dplyr::select(HYBAS6_ID, Stress, Climate) |> + dplyr::rename( + HYBAS_ID = HYBAS6_ID, + CCI = Climate, + WSI = Stress + ) |> + #------------ Fish community importance and priority data + dplyr::left_join( + path_input_data("H6_importance_priority.csv") |> + readr::read_csv(show_col_types = FALSE) |> + dplyr::select(-Ii) |> + dplyr::rename(Fish_priority = Qi), + by = "HYBAS_ID" + ) |> + #------------ Fish biodiversity + dplyr::left_join( + ws_data |> + readxl::read_xlsx(sheet = "H6FishChange") |> + dplyr::select(HYBAS6_ID, Jaccard.D) |> + dplyr::rename( + HYBAS_ID = HYBAS6_ID, + FBCI = Jaccard.D + ), + by = "HYBAS_ID" + ) |> + #------------ Protected Area overlap + dplyr::left_join( + path_input_data("protected_area_overlap.csv") |> + readr::read_csv(show_col_types = FALSE) |> + dplyr::select(HYBAS_ID, perc_overlap) |> + dplyr::rename( + Protected_area = perc_overlap + ), + by = "HYBAS_ID" + ) + + #------------ Calculate SARI and Richness + fishPA6 <- path_input_data("Spp_dist_HYBAS6_20230125.csv") |> + readr::read_csv(show_col_types = FALSE) + # remove hydrobasin id name + fishPA6_nohbid <- fishPA6 |> + dplyr::select(-c(HYBAS_ID)) + fishPA6 <- fishPA6 |> + dplyr::mutate( + SARI = rowSums(fishPA6_nohbid == 2), + Fish_richness = rowSums(fishPA6_nohbid > 0) + ) + # join with df_prio + df_prio <- df_prio |> + dplyr::left_join( + fishPA6 |> + dplyr::select(HYBAS_ID, SARI, Fish_richness), + by = "HYBAS_ID" + ) + + + + df_prio <- df_prio |> + # check and remove NA + dplyr::filter( + !is.na(FBCI), + !is.na(WSI), + !is.na(CCI), + !is.na(Fish_priority), + !is.na(Protected_area), + !is.na(SARI), + !is.na(Fish_richness) + ) |> + # Normalizing indices + dplyr::mutate( + FBCI_n = scale_min_max(FBCI), + WSI_n = scale_min_max(WSI), + CCI_n = scale_min_max(CCI), + Priority_n = scale_min_max(Fish_priority), + Protected_area_n = scale_min_max(Protected_area), + SARI_n = scale_min_max(SARI), + Fish_richness_n = scale_min_max(Fish_richness) + ) |> + # join with feow + dplyr::left_join( + path_input_data("hyc_6_feow_join.csv") |> + readr::read_csv(show_col_types = FALSE), + by = "HYBAS_ID" + ) + + # write csv file + readr::write_csv( + df_prio, + path_output_data("watershed_prioritization_no_weight.csv") + ) + + # select final columns + df_prio |> dplyr::select( + HYBAS_ID, + FEOW_ID, + WSI_n, + FBCI_n, + CCI_n, + SARI_n, + Protected_area_n, + Fish_richness_n, + Priority_n + ) +} diff --git a/R/pipeline.R b/R/pipeline.R new file mode 100644 index 0000000..782408b --- /dev/null +++ b/R/pipeline.R @@ -0,0 +1,28 @@ +#' Pipeline +#' +#' This function runs all the steps the reproduce the analysis. +#' +#' @export + +run_pipeline <- function() { + #------------------------ (not used - data are in extdata) + cli::cli_progress_step("Compute fish priority index") + suppressMessages(compute_fish_priority_index()) + cli::cli_progress_done() + #------------------------ + cli::cli_progress_step("Generate Priorization data set") + suppressMessages(generate_priorization_data()) + cli::cli_progress_done() + #------------------------ + cli::cli_progress_step("Applying co-author weight") + suppressMessages(apply_weight()) + cli::cli_progress_done() + #------------------------ + cli::cli_progress_step("Scaling") + suppressMessages(feow_scaling()) + cli::cli_progress_done() + #------------------------ + cli::cli_progress_step("Results") + get_results() + cli::cli_progress_done() +} \ No newline at end of file diff --git a/R/results.R b/R/results.R new file mode 100644 index 0000000..118679c --- /dev/null +++ b/R/results.R @@ -0,0 +1,787 @@ +#' Results +#' +#' @import ggplot2 +#' +#' @export + +get_results <- function() { + cli::cli_progress_step("now loading data", "loading done", "loading failed") + suppressMessages({ + weights <- path_input_data("Co_author_weightings.csv") |> + readr::read_csv(show_col_types = FALSE) + data6 <- path_output_data("watershed_prioritization_level6.csv") |> + readr::read_csv(show_col_types = FALSE) + feow <- path_input_data("FEOW_CAN_Extent/FEOW__CAN_Extent.shp") |> + sf::read_sf() + map5 <- path_input_data("map5.gpkg") |> + sf::read_sf() + map6 <- path_input_data("map6.gpkg") |> + sf::read_sf() + }) + cli::cli_progress_done() + + + ############ + # Scale ranks within FEOW to number of FEOW + ########### + cli::cli_progress_step("now scaling", "scaling done", "scaling failed") + maxrank <- max(map6$Prot_rank_feow - 1) + map6 <- map6 |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Prot_rank_feow_scaled = scale_rank(Prot_rank_feow)) + + maxrank <- max(map6$Rest_rank_feow - 1) + map6 <- map6 |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Rest_rank_feow_scaled = scale_rank(Rest_rank_feow)) + + maxrank <- max(map6$SAR_rank_feow - 1) + map6 <- map6 |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(SAR_rank_feow_scaled = scale_rank(SAR_rank_feow)) + + maxrank <- max(map6$AIS_rank_feow - 1) + map6 <- map6 |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(AIS_rank_feow_scaled = scale_rank(AIS_rank_feow)) + cli::cli_progress_done() + + + ############ + # Coauthor weightings plot + ########## + cli::cli_progress_step("now drawing fig 1", "fig 1 done", "fig 1 failed") + pdata1 <- weights[, c(1:6)] + pdata1 <- tidyr::pivot_longer(pdata1, cols = starts_with("Weight for")) + pdata1$name <- rep(c( + "Watershed stress", "Community change", "Climate change", + "Species at risk", "Species richness", "Species rarity" + ), 8) + sumpdata1 <- pdata1 |> + dplyr::group_by(name) |> + dplyr::summarize(med = median(value)) + + p1 <- ggplot() + + geom_hline(aes(yintercept = 0), color = "black", linetype = 2) + + ggbeeswarm::geom_beeswarm(data = pdata1, aes(x = name, y = value), size = 2) + + # geom_beeswarm(data=pdata1, aes(x=reorder(name, value, median), y = value), size=2)+ + geom_point(data = sumpdata1, aes(x = name, y = med), color = "red", alpha = 0.7, size = 6) + + scale_y_continuous(breaks = c(-4, -2, 0, 2, 4), limits = c(-5.5, 5.5)) + + ylab("Weight") + + xlab("") + + coord_flip() + + theme_minimal() + + ggtitle("Area-based protection") + + theme(legend.position = "bottom", legend.title = element_blank()) + + theme( + plot.title = element_text(hjust = 0.5), + panel.grid.major.x = element_blank(), + panel.grid.minor.x = element_blank() + ) + + pdata2 <- weights[, c(7:12)] + pdata2 <- tidyr::pivot_longer(pdata2, cols = starts_with("Weight for")) + pdata2$name <- rep(c( + "Watershed stress", "Community change", "Climate change", + "Species at risk", "Species richness", "Species rarity" + ), 8) + sumpdata2 <- pdata2 |> + dplyr::group_by(name) |> + dplyr::summarize(med = median(value)) + + p2 <- ggplot() + + geom_hline(aes(yintercept = 0), color = "black", linetype = 2) + + ggbeeswarm::geom_beeswarm(data = pdata2, aes(x = name, y = value), size = 2) + + geom_point(data = sumpdata2, aes(x = name, y = med), color = "red", alpha = 0.7, size = 6) + + scale_y_continuous(breaks = c(-4, -2, 0, 2, 4), limits = c(-5.5, 5.5)) + + ylab("Weight") + + xlab("") + + coord_flip() + + theme_minimal() + + ggtitle("Habitat restoration") + + theme(legend.position = "bottom", legend.title = element_blank()) + + theme( + plot.title = element_text(hjust = 0.5), + panel.grid.major.x = element_blank(), + panel.grid.minor.x = element_blank() + ) + + pdata3 <- weights[, c(13:18)] + pdata3 <- tidyr::pivot_longer(pdata3, cols = starts_with("Weight for")) + pdata3$name <- rep(c( + "Watershed stress", "Community change", "Climate change", + "Species at risk", "Species richness", "Species rarity" + ), 8) + sumpdata3 <- pdata3 |> + dplyr::group_by(name) |> + dplyr::summarize(med = median(value)) + + p3 <- ggplot() + + geom_hline(aes(yintercept = 0), color = "black", linetype = 2) + + ggbeeswarm::geom_beeswarm(data = pdata3, aes(x = name, y = value), size = 2) + + geom_point(data = sumpdata3, aes(x = name, y = med), color = "red", alpha = 0.7, size = 6) + + scale_y_continuous(breaks = c(-4, -2, 0, 2, 4), limits = c(-5.5, 5.5)) + + ylab("Weight") + + xlab("") + + coord_flip() + + theme_minimal() + + ggtitle("Species at risk management") + + theme(legend.position = "bottom", legend.title = element_blank()) + + theme( + plot.title = element_text(hjust = 0.5), + panel.grid.major.x = element_blank(), + panel.grid.minor.x = element_blank() + ) + + pdata4 <- weights[, c(19:24)] + pdata4 <- tidyr::pivot_longer(pdata4, cols = starts_with("Weight for")) + pdata4$name <- rep(c( + "Watershed stress", "Community change", "Climate change", + "Species at risk", "Species richness", "Species rarity" + ), 8) + sumpdata4 <- pdata4 |> + dplyr::group_by(name) |> + dplyr::summarize(med = median(value)) + + p4 <- ggplot() + + geom_hline(aes(yintercept = 0), color = "black", linetype = 2) + + ggbeeswarm::geom_beeswarm(data = pdata4, aes(x = name, y = value), size = 2) + + geom_point(data = sumpdata4, aes(x = name, y = med), color = "red", alpha = 0.7, size = 6) + + scale_y_continuous(breaks = c(-4, -2, 0, 2, 4), limits = c(-5.5, 5.5)) + + ylab("Weight") + + xlab("") + + coord_flip() + + theme_minimal() + + ggtitle("Invasive species management") + + theme(legend.position = "bottom", legend.title = element_blank()) + + theme( + plot.title = element_text(hjust = 0.5), + panel.grid.major.x = element_blank(), + panel.grid.minor.x = element_blank() + ) + + ggpubr::ggarrange(p1, p2, p3, p4, ncol = 2, nrow = 2) # Write the grid.arrange in the file + ggsave(path_output_fig("coauthor_weightings.png"), width = 12, height = 8.5, units = "in", dpi = 100) + cli::cli_progress_done() + + + + ########### + # Hydrobasin 6 index values + ############ + cli::cli_progress_step("now drawing fig 2", "fig 2 done", "fig 2 failed") + S2_A <- ggplot() + + geom_sf(data = map6, aes(fill = WSI_n, col = WSI_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Watershed stress")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + S2_B <- ggplot() + + geom_sf(data = map6, aes(fill = SARI_n, col = SARI_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Fish species at risk richness")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + S2_C <- ggplot() + + geom_sf(data = map6, aes(fill = Fish_richness_n, col = Fish_richness_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Fish species richness")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + S2_D <- ggplot() + + geom_sf(data = map6, aes(fill = Priority_n, col = Priority_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Fish rarity")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + S2_E <- ggplot() + + geom_sf(data = map6, aes(fill = FBCI_n, col = FBCI_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Fish biodiversity change")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + S2_F <- ggplot() + + geom_sf(data = map6, aes(fill = CCI_n, col = CCI_n), alpha = 1) + + viridis::scale_color_viridis(option = "viridis") + + viridis::scale_fill_viridis( + option = "viridis", + breaks = c(0, 25, 50, 75, 100) + ) + + theme_minimal() + + # ggtitle("Climate change")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + + ggpubr::ggarrange( + S2_A, S2_B, + S2_C, S2_D, + S2_E, S2_F, + labels = c("Watershed stress", "Species at risk", "Species richness", "Species rarity", "Community change", "Climate change"), + font.label = list(size = 10, face = "plain", color = "black"), + hjust = -0.15, vjust = 1.8, + ncol = 2, nrow = 3, common.legend = TRUE, + legend = "bottom" + ) # Write the grid.arrange in the file + ggsave(path_output_fig("normalized_index_values.png"), width = 7.5, height = 9, units = "in", dpi = 100) # Open a new png file + cli::cli_progress_done() + + + + ## ------------------------------ + ## Priorities within ecoregions + ## ------------------------------ + cli::cli_progress_step("now drawing fig 3", "fig 3 done", "fig 3 failed") + data <- map6 + + # + A1 <- ggplot() + + geom_sf(data = data, aes(fill = Prot_rank_feow_scaled, col = Prot_rank_feow_scaled), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$Prot_rank_feow_scaled), max(data$Prot_rank_feow_scaled)), + labels = c("High", "Medium", "Low") + ) + + # geom_sf(data=feow, fill = "transparent", color ="black", linewidth =0.1)+ + theme_minimal() + + # ggtitle("Area-based protection")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + # + B1 <- ggplot() + + geom_sf(data = data, aes(fill = Rest_rank_feow_scaled, col = Rest_rank_feow_scaled), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$Rest_rank_feow_scaled), max(data$Rest_rank_feow_scaled)), + labels = c("High", "Medium", "Low") + ) + + # geom_sf(data=feow, fill = "transparent", color ="black", linewidth =0.1)+ + theme_minimal() + + # ggtitle("Area-based protection")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + # + C1 <- ggplot() + + geom_sf(data = data, aes(fill = SAR_rank_feow_scaled, col = SAR_rank_feow_scaled), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$SAR_rank_feow_scaled), max(data$SAR_rank_feow_scaled)), + labels = c("High", "Medium", "Low") + ) + + # geom_sf(data=feow, fill = "transparent", color ="black", linewidth =0.1)+ + theme_minimal() + + # ggtitle("Area-based protection")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + # + D1 <- ggplot() + + geom_sf(data = data, aes(fill = AIS_rank_feow_scaled, col = AIS_rank_feow_scaled), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$AIS_rank_feow_scaled), max(data$AIS_rank_feow_scaled)), + labels = c("High", "Medium", "Low") + ) + + # geom_sf(data=feow, fill = "transparent", color ="black", linewidth =0.1)+ + theme_minimal() + + # ggtitle("Area-based protection")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + ggpubr::ggarrange(A1, B1, C1, D1, + ncol = 2, nrow = 2, common.legend = TRUE, + labels = c("Area-based protection", "Habitat restoration", "Species at risk\n management", "Invasive species\n management"), + font.label = list(size = 10, face = "plain", color = "black"), + hjust = -0.25, vjust = 1.8, + legend = "bottom" + ) # Write the grid.arrange in the file + ggsave(path_output_fig("priorities_by_feow.png"), width = 8.5, height = 6, units = "in", dpi = 300) # Open a new png file + cli::cli_progress_done() + + + ## ----------------------------------- + ## Analysis of priorities within FEOW + ## ----------------------------------- + + # map6 |> + # st_drop_geometry() |> + # ungroup() |> + # dplyr::group_by(FEOW_ID) |> + # summarise(SAR_p = max(SARI_n)) |> + # print(n = Inf) + # # two ecoregions with no SAR (111, 112) + + # map6 |> + # st_drop_geometry() |> + # ungroup() |> + # dplyr::group_by(FEOW_ID) |> + # summarise(SAR_p = max(FBCI_n)) |> + # print(n = Inf) + + + + + ################### + # Hydrobasin 6 national priorities + ################# + cli::cli_progress_step("now drawing fig 4", "fig 4 done", "fig 4 failed") + data <- map6 + # + data$rank <- rank(-data$protection_score) + A <- ggplot() + + geom_sf(data = data, aes(fill = rank, col = rank), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$rank), max(data$rank)), + labels = c("High", "Medium", "Low") + ) + + theme_minimal() + + # ggtitle("Area-based protection")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + # + data$rank <- rank(-data$restoration_score) + B <- ggplot() + + geom_sf(data = data, aes(fill = rank, col = rank), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$rank), max(data$rank)), + labels = c("High", "Medium", "Low") + ) + + theme_minimal() + + # ggtitle("Restoration")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + # + data$rank <- rank(-data$SAR_score) + C <- ggplot() + + geom_sf(data = data, aes(fill = rank, col = rank), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$rank), max(data$rank)), + labels = c("High", "Medium", "Low") + ) + + theme_minimal() + + # ggtitle("Species at risk management")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + # + data$rank <- rank(-data$AIS_score) + D <- ggplot() + + geom_sf(data = data, aes(fill = rank, col = rank), alpha = 1) + + viridis::scale_color_viridis(guide = "none", end = 0.9, direction = -1, option = "magma") + + viridis::scale_fill_viridis( + alpha = 1, end = 0.9, direction = -1, option = "magma", + breaks = c(1, median(data$rank), max(data$rank)), + labels = c("High", "Medium", "Low") + ) + + theme_minimal() + + # ggtitle("Invasive species management")+ + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + ggpubr::ggarrange(A, B, C, D, + ncol = 2, nrow = 2, + common.legend = TRUE, + labels = c("Area-based protection", "Habitat restoration", "Species at risk\n management", "Invasive species\n management"), + font.label = list(size = 10, face = "plain", color = "black"), + hjust = -0.25, vjust = 1.8, + legend = "bottom" + ) + ggsave(path_output_fig("national_priorities.png"), width = 8.5, height = 6, units = "in", dpi = 100) # Open a new png file + cli::cli_progress_done() + + + + + ############## + ### Comparison plots + ############## + cli::cli_progress_step("now drawing fig 5", "fig 5 done", "fig 5 failed") + pal <- c( + viridis::viridis_pal(option = "magma")(20)[20], + viridis::viridis_pal(option = "viridis")(20)[17], + viridis::viridis_pal(option = "magma")(20)[17], + "grey90" + ) + + # + data <- map6 + perc1 <- stats::quantile(data$Prot_rank_feow_scaled) + perc2 <- stats::quantile(data$Rest_rank_feow_scaled) + + rects <- dplyr::tibble( + xmins = c(1, 1, perc1[2], perc1[2]), + xmaxs = c(perc1[2], perc1[2], perc1[5], perc1[5]), + ymins = c(1, perc2[2], 1, perc2[2]), + ymaxs = c(perc2[2], perc2[5], perc2[2], perc2[5]), + fills = c("a", "b", "c", "d") + ) + + p1 <- ggplot() + + geom_rect(data = rects, aes(xmin = xmins, ymin = ymins, xmax = xmaxs, ymax = ymaxs, fill = fills)) + + geom_point(data = data, aes( + x = Prot_rank_feow_scaled, + y = Rest_rank_feow_scaled + )) + + scale_fill_manual(values = pal) + + xlab("Priority for area-based protection") + + ylab("Priority for habitat restoration") + + scale_y_reverse( + breaks = c(11, perc2[5] - 10), labels = c("high", "low") + ) + + scale_x_reverse( + breaks = c(11, perc1[5] - 10), labels = c("high", "low") + ) + + theme_minimal() + + theme( + legend.position = "none", + panel.grid = element_blank(), + axis.text.y = element_text(angle = 90), + axis.ticks = element_blank() + ) + p1 + + cor(data$Prot_rank_feow_scaled, data$Rest_rank_feow_scaled, method = "spearman") + + data <- data |> + dplyr::mutate(wsh_fill = ifelse( + Prot_rank_feow_scaled < perc1[2] & Rest_rank_feow_scaled < perc2[2], "a", + ifelse(Prot_rank_feow_scaled < perc1[2], "b", + ifelse(Rest_rank_feow_scaled < perc2[2], "c", "d") + ) + )) + + length(which(data$wsh_fill == "a")) / length(which(data$wsh_fill %in% c("a", "b", "c"))) + + m1 <- ggplot() + + geom_sf(data = data, aes(fill = wsh_fill, col = wsh_fill), alpha = 1) + + scale_color_manual( + guide = "none", + values = pal + ) + + scale_fill_manual( + values = pal, + guide = "none" + ) + + geom_sf(data = feow, fill = "transparent", color = "black", linewidth = 0.1) + + theme_minimal() + + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + ggpubr::ggarrange(p1, m1, ncol = 2, nrow = 1) + ggsave(path_output_fig("protection_vs_restoration.png"), width = 8.5, height = 4, units = "in", dpi = 100) # Open a new png file + cli::cli_progress_done() + + + + ## + cli::cli_progress_step("now drawing fig 6", "fig 6 done", "fig 6 failed") + perc1 <- stats::quantile(data$SAR_rank_feow_scaled) + perc2 <- stats::quantile(data$AIS_rank_feow_scaled) + + rects <- dplyr::tibble( + xmins = c(1, 1, perc1[2], perc1[2]), + xmaxs = c(perc1[2], perc1[2], perc1[5], perc1[5]), + ymins = c(1, perc2[2], 1, perc2[2]), + ymaxs = c(perc2[2], perc2[5], perc2[2], perc2[5]), + fills = c("a", "b", "c", "d") + ) + + stats::cor(data$SAR_rank_feow_scaled, data$AIS_rank_feow_scaled, method = "spearman") + + p2 <- ggplot() + + geom_rect(data = rects, aes(xmin = xmins, ymin = ymins, xmax = xmaxs, ymax = ymaxs, fill = fills)) + + geom_point(data = data, aes( + x = SAR_rank_feow_scaled, + y = AIS_rank_feow_scaled + )) + + scale_fill_manual(values = pal) + + xlab("Priority for species at risk management") + + ylab("Priority for invasive species management") + + scale_y_reverse( + breaks = c(11, perc2[5] - 10), labels = c("high", "low") + ) + + scale_x_reverse( + breaks = c(11, perc1[5] - 10), labels = c("high", "low") + ) + + theme_minimal() + + theme( + legend.position = "none", + panel.grid = element_blank(), + axis.text.y = element_text(angle = 90), + axis.ticks = element_blank() + ) + p2 + + data <- data |> + dplyr::mutate(wsh_fill = ifelse( + SAR_rank_feow_scaled < perc1[2] & AIS_rank_feow_scaled < perc2[2], "a", + ifelse(SAR_rank_feow_scaled < perc1[2], "b", + ifelse(AIS_rank_feow_scaled < perc2[2], "c", "d") + ) + )) + + length(which(data$wsh_fill == "a")) / length(which(data$wsh_fill %in% c("a", "b", "c"))) + + + m2 <- ggplot() + + geom_sf(data = data, aes(fill = wsh_fill, col = wsh_fill), alpha = 1) + + scale_color_manual( + guide = "none", + values = pal + ) + + scale_fill_manual( + values = pal, + guide = "none" + ) + + geom_sf(data = feow, fill = "transparent", color = "black", linewidth = 0.1) + + theme_minimal() + + theme( + legend.title = element_blank(), + plot.title = element_text(hjust = 0.5), + axis.title = element_blank(), + axis.text = element_blank(), + panel.grid = element_blank(), + plot.margin = unit(c(-0.5, -1, -0.2, -1), "lines") + ) + + ggpubr::ggarrange(p2, m2, ncol = 2, nrow = 1) + ggsave(path_output_fig("SAR_vs_AIS.png"), width = 8.5, height = 4, units = "in", dpi = 100) + cli::cli_process_done() + + + ## ------------------------- + ## Comparison analysis + ## -------------------------- + + newdata <- data |> + dplyr::select(ends_with("scaled")) |> + sf::st_drop_geometry() + pca1 <- prcomp(newdata, scale. = FALSE) + head(pca1$rotation) + scores <- dplyr::as_tibble(pca1$x) + + p_comp <- ggplot() + + geom_point(data = scores, aes(x = PC1, y = PC2)) + + + + ## ------------------------- + ## Investigating scale + ## -------------------------- + + cli::cli_progress_step("now drawing fig 7", "fig 7 done", "fig 7 failed") + + d5 <- map5 |> + sf::st_drop_geometry() |> + dplyr::ungroup() + + map6 <- map6 |> + dplyr::ungroup() |> + dplyr::mutate( + protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], + restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], + SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], + AIS_score5 = d5$AIS_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], + ) + + obj <- c("protection", "restoration", "SAR", "AIS") + threshold <- seq(0.05, 0.5, 0.01) + df <- dplyr::tibble(objective = c(), threshold = c(), ratio = c()) + + suppressMessages({ + for (i in seq_len(length(obj))) { + for (j in 1:length(threshold)) { + var <- paste0(obj[i], "_score") + tmp <- map6 |> + dplyr::ungroup() |> + dplyr::group_by(FEOW_ID) |> + dplyr::arrange(FEOW_ID, desc(!!var)) |> + dplyr::relocate(!!var, .after = last_col()) |> + dplyr::top_frac(n = threshold[j]) + map6$level6 <- ifelse(map6$HYBAS_ID %in% tmp$HYBAS_ID, 1, 0) + + var2 <- paste0(obj[i], "_score5") + tmp <- map6 |> + dplyr::ungroup() |> + dplyr::group_by(FEOW_ID) |> + dplyr::arrange(FEOW_ID, desc(!!var2)) |> + dplyr::relocate(!!var2, .after = last_col()) |> + dplyr::top_frac(n = threshold[j]) + map6$level5 <- ifelse(map6$HYBAS_ID %in% tmp$HYBAS_ID, 1, 0) + + ratio <- length(which(map6$level6 == 1 & map6$level5 == 0)) / length(which(map6$level6 == 1)) + + to_add <- dplyr::tibble(objective = obj[i], threshold = threshold[j], ratio = ratio) + df <- dplyr::bind_rows(df, to_add) + } + } + }) + + mylabels <- df |> + dplyr::filter(threshold == 0.5) + mylabels$ratio[which(mylabels$objective == "SAR")] <- 0.24 # nudge + + + s1 <- ggplot(data = df, aes(x = threshold * 100, y = 100 - (ratio * 100), group = objective, color = objective)) + + geom_line(linewidth = 1.5) + + theme_minimal() + + ylab("Percentage of priority watersheds covered by\nprioritization at larger watershed scale") + + scale_x_continuous( + name = "Percentage of watersheds prioritized", + limits = c(0, 59), + breaks = c(10, 20, 30, 40, 50) + ) + + theme( + legend.position = "none", + panel.grid.minor = element_blank() + ) + + geom_text( + data = mylabels, + aes( + x = 50.5, + y = 100 - (ratio * 100), + label = objective, + color = objective + ), + hjust = 0 + ) + + scale_color_viridis_d(option = "viridis") + + ggpubr::ggarrange(s1, ncol = 1, nrow = 1) # Write the grid.arrange in the file + ggsave(path_output_fig("scale_dependency.png"), width = 5, height = 4, units = "in", dpi = 300) # Open a new png file + cli::cli_process_done() + + + invisible(TRUE) +} \ No newline at end of file diff --git a/R/zzz.R b/R/zzz.R new file mode 100644 index 0000000..88737d5 --- /dev/null +++ b/R/zzz.R @@ -0,0 +1,30 @@ +# path helpers + +path_input_data <- function(filename) { + fs::path_package("watershedPrioritization", "extdata", filename) +} + +path_output_data <- function(filename) { + fs::dir_create("output_data") + fs::path("output_data", filename) +} + +path_output_fig <- function(filename) { + fs::dir_create("figs/v2") + fs::path("figs/v2", filename) +} + + +# scaling helper +scale_rank <- function(x, mx) { + stopifnot(length(x) > 1) + ((x - min(x)) / (max(x) - min(x))) * 99 + 1 +} +# NB: min(x) = 1 as we use rank; scale between 1 and 100 + +# helper function +scale_min_max <- function(x) { + stopifnot(length(x) > 1) + 100 * (x - min(x)) / (max(x) - min(x)) +} +# NB: scale between 0 and 100 \ No newline at end of file diff --git a/README.md b/README.md index 162884b..5944ae3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,37 @@ # Watershed_prioritization -This folder includes the data, analyses, and Shiny app built to visualize the results of efforts to priortiize watersheds within Canada for four freshwater fish conservation objectives including: i) area-based protection; ii) habitat restoration; iii) species at risk management; or iv) invasive species management. The prioritizations were based on national spatial data of the richness, rarity, and at-risk status of fishes, the amount of climate change and other watershed stressors, and the degree of fish community change (native vs. current species present within watershed). + + +This folder includes the data, analyses, and Shiny app built to visualize the results of efforts to priortize watersheds within Canada for four freshwater fish conservation objectives including: +- i) area-based protection; +- ii) habitat restoration; +- iii) species at risk management; or +- iv) invasive species management. + +The prioritizations were based on national spatial data of the richness, rarity, and at-risk status of fishes, the amount of climate change and other watershed stressors, and the degree of fish community change (native vs. current species present within watershed). + + +## Data + +### Inputs + + +### Outputs + +Data are stored in `output_data/`, the folder is created if missing. + + +## Analysis + +Install the package + +```R +install.packages("remotes") +remotes::install_github("DFOChuLab/Watershed_prioritization") +``` + +Once installed run: + +```R +library(watershedPrioritization) +run_pipeline() +``` \ No newline at end of file diff --git a/ShinyApp/App.R b/ShinyApp/App.R index 2208b43..edaf1f4 100644 --- a/ShinyApp/App.R +++ b/ShinyApp/App.R @@ -1,380 +1,374 @@ -require(shiny) +library(shiny) library(shinythemes) -library(tidyverse) -require(leaflet) -require(sf) -require(shinybusy) -require(viridis) -library(shinyWidgets) -require(htmltools) +library(shinybusy) +library(leaflet) + ############ ui <- navbarPage( theme = shinytheme("simplex"), title = "Watershed prioritization in Canada", -# -#tags$style(type='text/css', ".selectize-input { font-size: 11px; line-height: 11px;} .selectize-dropdown { font-size: 11px; line-height: 11px; }"), + # + # tags$style(type='text/css', ".selectize-input { font-size: 11px; line-height: 11px;} .selectize-dropdown { font-size: 11px; line-height: 11px; }"), tabPanel( "Map", - #sidebar - sidebarLayout( + # sidebar + sidebarLayout( sidebarPanel( width = 4, p(strong("Prioritizing watersheds for conservation")), splitLayout( - selectInput(inputId = "scale", label = "Watershed scale", - choices = c("Hydrobasin level 5", "Hydrobasin level 6")), - selectInput(inputId = "objective", label = "Weighting schema", choices = c( - "Custom","Area-based protection", "Restoration", "SAR management", "AIS management" )), - tags$head(tags$style(HTML(".shiny-split-layout > div {overflow: visible;}"))), - cellWidths = c("45%", "55%") + selectInput( + inputId = "scale", label = "Watershed scale", + choices = c("Hydrobasin level 5", "Hydrobasin level 6") + ), + selectInput(inputId = "objective", label = "Weighting schema", choices = c( + "Custom", "Area-based protection", "Restoration", "SAR management", "AIS management" + )), + tags$head(tags$style(HTML(".shiny-split-layout > div {overflow: visible;}"))), + cellWidths = c("45%", "55%") ), splitLayout( - actionButton(inputId = "go", label = "Generate map"), - actionButton(inputId = "reset", label = "Reset sliders") + actionButton(inputId = "go", label = "Generate map"), + actionButton(inputId = "reset", label = "Reset sliders") ), - checkboxInput("regional", label = "Watersheds ranked within ecoregions?", value = TRUE), p(strong("Weight watersheds according to:")), - sliderInput(inputId = "WSI", - label ="Watershed stress", - min = -5, max = 5, value = 0, step=0.1), - sliderInput(inputId = "SARI", - label ="Fish species at risk (SAR) richness", - min = -5, max = 5, value = 0, step=0.1), - sliderInput(inputId = "Richness", - label ="Fish species richness", - min = -5, max = 5, value = 0, step=0.1), - sliderInput(inputId = "Q", - label ="Fish species rarity", - min = -5, max = 5, value = 0, step=0.1), - sliderInput(inputId = "FBCI", label="Fish biodiversity change", - min = -5, max = 5, value = 0, step=0.1), - sliderInput(inputId = "CCI", - label ="Climate change", - min = -5, max = 5, value = 0, step=0.1) - + sliderInput( + inputId = "WSI", + label = "Watershed stress", + min = -5, max = 5, value = 0, step = 0.1 + ), + sliderInput( + inputId = "SARI", + label = "Fish species at risk (SAR) richness", + min = -5, max = 5, value = 0, step = 0.1 + ), + sliderInput( + inputId = "Richness", + label = "Fish species richness", + min = -5, max = 5, value = 0, step = 0.1 + ), + sliderInput( + inputId = "Q", + label = "Fish species rarity", + min = -5, max = 5, value = 0, step = 0.1 + ), + sliderInput( + inputId = "FBCI", label = "Fish biodiversity change", + min = -5, max = 5, value = 0, step = 0.1 ), - - mainPanel( # main section of Interactive map tab (i.e. the map) + sliderInput( + inputId = "CCI", + label = "Climate change", + min = -5, max = 5, value = 0, step = 0.1 + ) + ), + mainPanel( # main section of Interactive map tab (i.e. the map) width = 8, - leafletOutput("map", height="90vh") - ) # end of main panel + leafletOutput("map", height = "90vh") + ) # end of main panel ) # end of sideBarLayout - ), #end of Tab - + ), # end of Tab + tabPanel( "Details", - p("This app ranks watersheds for conservation objectives based on the methods outlined in [PAPER REFERENCE]"), + p("This app ranks watersheds for conservation objectives based on the methods outlined in [PAPER REFERENCE]"), hr(), - p(strong("Watershed scale"), + p( + strong("Watershed scale"), br(), "The unit of watersheds at which the prioritization is done. Options include Hydrobasin level 5 and 6 from SOURCE. Level 5 watersheds are larger than level 6. " ), - - br(), - p(strong("Weighting schema"), - br(), - "Create a custom weighting scheme, or select one of the schemes meant to select watersheds for area-based protection, restoration, species at risk management or invasive species management from PAPER REFERENCE" - ), - hr(), - - p(em("Select weights for the 6 variables below to help identify priority watersheds for conservation. Positive weight vales (i.e. > 0) will select watersheds with large values of the variable, + br(), + p( + strong("Weighting schema"), + br(), + "Create a custom weighting scheme, or select one of the schemes meant to select watersheds for area-based protection, restoration, species at risk management or invasive species management from PAPER REFERENCE" + ), + hr(), + p(em("Select weights for the 6 variables below to help identify priority watersheds for conservation. Positive weight vales (i.e. > 0) will select watersheds with large values of the variable, while negative weight values (i.e. < 0) will select watersheds with low values of the variable. Weight values of 0 indicate that the variable should be ignored when selecting watersheds.")), - - p(strong("Watershed stress"), - br(), - "Intensity of human impact in a watershed based on the Global Human Modification dataset (Theobald et al. 2017. Earth Sci Syst Data). Normalized range of 0-100" - ), - - br(), - p(strong("Fish species at risk (SAR) richness"), - br(), - "Number of COSEWIC listed fish species at risk with a watershed. Normalized range of 0-100" - ), - - br(), - p(strong("Fish species richness"), - br(), - "Number of fish species (including native, foreign and translocated species) within a watershed. Normalized range of 0-100" - ), - - br(), - p(strong("Fish biodiversity change"), - br(), - "Index of the relative rarity of fish species within in the amount, from Minns (1987) NZ J Zool. Normalized range of 0-100" - ), - - br(), - p(strong("Fish biodiversity change"), - br(), - "Index of the amount of change in a fish community between historical (ie 1960s) and current periods. Most of this change is driven by invasive species. Normalized range of 0-100" - ), - - br(), - p(strong("Climate change"), - br(), - "Index of the amount of climate change predicted in a watershed by 2055 under an RCP 4.5 scenario. Normalized range of 0-100" - ), - hr(), - - p(strong("Watersheds ranked within ecoregions?"), - br(), - "Select whether you want watersheds to be ranked within their freshwater ecoregion (i.e. high rankings = high for that ecoregion). Default (unchecked) value is that rankings are conducted at a national scale." - ) + p( + strong("Watershed stress"), + br(), + "Intensity of human impact in a watershed based on the Global Human Modification dataset (Theobald et al. 2017. Earth Sci Syst Data). Normalized range of 0-100" + ), + br(), + p( + strong("Fish species at risk (SAR) richness"), + br(), + "Number of COSEWIC listed fish species at risk with a watershed. Normalized range of 0-100" + ), + br(), + p( + strong("Fish species richness"), + br(), + "Number of fish species (including native, foreign and translocated species) within a watershed. Normalized range of 0-100" + ), + br(), + p( + strong("Fish biodiversity change"), + br(), + "Index of the relative rarity of fish species within in the amount, from Minns (1987) NZ J Zool. Normalized range of 0-100" + ), + br(), + p( + strong("Fish biodiversity change"), + br(), + "Index of the amount of change in a fish community between historical (ie 1960s) and current periods. Most of this change is driven by invasive species. Normalized range of 0-100" + ), + br(), + p( + strong("Climate change"), + br(), + "Index of the amount of climate change predicted in a watershed by 2055 under an RCP 4.5 scenario. Normalized range of 0-100" + ), + hr(), + p( + strong("Watersheds ranked within ecoregions?"), + br(), + "Select whether you want watersheds to be ranked within their freshwater ecoregion (i.e. high rankings = high for that ecoregion). Default (unchecked) value is that rankings are conducted at a national scale." ) + ) ) ############ server <- function(input, output, session) { - - - # load initial map + # load initial map output$map <- renderLeaflet({ - leaflet(options = leafletOptions(preferCanvas = TRUE)) %>% + leaflet(options = leafletOptions(preferCanvas = TRUE)) |> addProviderTiles(providers$Esri.WorldTopoMap, - options = providerTileOptions( - updateWhenZooming = FALSE, # map won't update tiles until zoom is done - updateWhenIdle = TRUE # map won't load new tiles when panning - )) %>% - fitBounds(lat1 = 43, lng1=-143, lat2=75, lng2=-50) - - }) - -#Reset sliders buttons + options = providerTileOptions( + updateWhenZooming = FALSE, # map won't update tiles until zoom is done + updateWhenIdle = TRUE # map won't load new tiles when panning + ) + ) |> + fitBounds(lat1 = 43, lng1 = -143, lat2 = 75, lng2 = -50) + }) + + # Reset sliders buttons observeEvent(input$reset, { - - if(input$objective == "Area-based protection"){ - updateSliderInput(inputId = "WSI", value = -1) - updateSliderInput(inputId = "SARI", value = 1.1) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1.7) - updateSliderInput(inputId = "FBCI", value = -1.1 ) - updateSliderInput(inputId = "CCI", value = -0.5) - } - if(input$objective == "Restoration"){ - updateSliderInput(inputId = "WSI", value = 2.5) - updateSliderInput(inputId = "SARI", value = 1.4) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1.2) - updateSliderInput(inputId = "FBCI", value = 0.1 ) - updateSliderInput(inputId = "CCI", value = -1) - } - if(input$objective == "SAR management"){ - updateSliderInput(inputId = "WSI", value = 1.5) - updateSliderInput(inputId = "SARI", value = 2.1) - updateSliderInput(inputId = "Richness", value = 0 ) - updateSliderInput(inputId = "Q", value = 1.3) - updateSliderInput(inputId = "FBCI", value = 1.3 ) - updateSliderInput(inputId = "CCI", value = 1) - } - if(input$objective == "AIS management"){ - updateSliderInput(inputId = "WSI", value = 1.4) - updateSliderInput(inputId = "SARI", value = 1) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1) - updateSliderInput(inputId = "FBCI", value = 1.8) - updateSliderInput(inputId = "CCI", value = 0.5) - } - if(input$objective == "Custom"){ - updateSliderInput(inputId = "WSI", value = 0) - updateSliderInput(inputId = "SARI", value = 0) - updateSliderInput(inputId = "Richness", value = 0) - updateSliderInput(inputId = "Q", value = 0) - updateSliderInput(inputId = "FBCI", value = 0) - updateSliderInput(inputId = "CCI", value = 0) - } - - - }) - - -#update sliders based on objective - observeEvent(input$objective, { - if(input$objective == "Area-based protection"){ - updateSliderInput(inputId = "WSI", value = -1) - updateSliderInput(inputId = "SARI", value = 1.1) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1.7) - updateSliderInput(inputId = "FBCI", value = -1.1 ) - updateSliderInput(inputId = "CCI", value = -0.5) - } - if(input$objective == "Restoration"){ - updateSliderInput(inputId = "WSI", value = 2.5) - updateSliderInput(inputId = "SARI", value = 1.4) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1.2) - updateSliderInput(inputId = "FBCI", value = 0.1 ) - updateSliderInput(inputId = "CCI", value = -1) - } - if(input$objective == "SAR management"){ - updateSliderInput(inputId = "WSI", value = 1.5) - updateSliderInput(inputId = "SARI", value = 2.1) - updateSliderInput(inputId = "Richness", value = 0 ) - updateSliderInput(inputId = "Q", value = 1.3) - updateSliderInput(inputId = "FBCI", value = 1.3 ) - updateSliderInput(inputId = "CCI", value = 1) - } - if(input$objective == "AIS management"){ - updateSliderInput(inputId = "WSI", value = 1.4) - updateSliderInput(inputId = "SARI", value = 1) - updateSliderInput(inputId = "Richness", value = 1) - updateSliderInput(inputId = "Q", value = 1) - updateSliderInput(inputId = "FBCI", value = 1.8) - updateSliderInput(inputId = "CCI", value = 0.5) - } - if(input$objective == "Custom"){ - updateSliderInput(inputId = "WSI", value = 0) - updateSliderInput(inputId = "SARI", value = 0) - updateSliderInput(inputId = "Richness", value = 0) - updateSliderInput(inputId = "Q", value = 0) - updateSliderInput(inputId = "FBCI", value = 0) - updateSliderInput(inputId = "CCI", value = 0) - } - - }) - - - - # data = read_csv("watershed_prioritization_level5.csv") - # data = data[,1:8] - # map = read_sf("Hybas5_map/hyC_5_join_shp_Lamb_up.shp") - # map <- st_transform(map, crs = 4326) - # feow = read_sf("FEOW_CAN_Extent/FEOW__CAN_Extent.shp") - # feow <- st_transform(feow, crs = 4326) - - - - data5 = read_csv("watershed_prioritization_level5.csv") - data5 = data5[,1:8] - data6 = read_csv("watershed_prioritization_level6.csv") - data6 = data6[,1:8] - - map5 = read_sf("s_map5.gpkg") - map6 = read_sf("s_map6.gpkg") - - feow = read_sf("s_feow.gpkg") - - - + if (input$objective == "Area-based protection") { + updateSliderInput(inputId = "WSI", value = -1) + updateSliderInput(inputId = "SARI", value = 1.1) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1.7) + updateSliderInput(inputId = "FBCI", value = -1.1) + updateSliderInput(inputId = "CCI", value = -0.5) + } + if (input$objective == "Restoration") { + updateSliderInput(inputId = "WSI", value = 2.5) + updateSliderInput(inputId = "SARI", value = 1.4) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1.2) + updateSliderInput(inputId = "FBCI", value = 0.1) + updateSliderInput(inputId = "CCI", value = -1) + } + if (input$objective == "SAR management") { + updateSliderInput(inputId = "WSI", value = 1.5) + updateSliderInput(inputId = "SARI", value = 2.1) + updateSliderInput(inputId = "Richness", value = 0) + updateSliderInput(inputId = "Q", value = 1.3) + updateSliderInput(inputId = "FBCI", value = 1.3) + updateSliderInput(inputId = "CCI", value = 1) + } + if (input$objective == "AIS management") { + updateSliderInput(inputId = "WSI", value = 1.4) + updateSliderInput(inputId = "SARI", value = 1) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1) + updateSliderInput(inputId = "FBCI", value = 1.8) + updateSliderInput(inputId = "CCI", value = 0.5) + } + if (input$objective == "Custom") { + updateSliderInput(inputId = "WSI", value = 0) + updateSliderInput(inputId = "SARI", value = 0) + updateSliderInput(inputId = "Richness", value = 0) + updateSliderInput(inputId = "Q", value = 0) + updateSliderInput(inputId = "FBCI", value = 0) + updateSliderInput(inputId = "CCI", value = 0) + } + }) + + + # update sliders based on objective + observeEvent(input$objective, { + if (input$objective == "Area-based protection") { + updateSliderInput(inputId = "WSI", value = -1) + updateSliderInput(inputId = "SARI", value = 1.1) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1.7) + updateSliderInput(inputId = "FBCI", value = -1.1) + updateSliderInput(inputId = "CCI", value = -0.5) + } + if (input$objective == "Restoration") { + updateSliderInput(inputId = "WSI", value = 2.5) + updateSliderInput(inputId = "SARI", value = 1.4) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1.2) + updateSliderInput(inputId = "FBCI", value = 0.1) + updateSliderInput(inputId = "CCI", value = -1) + } + if (input$objective == "SAR management") { + updateSliderInput(inputId = "WSI", value = 1.5) + updateSliderInput(inputId = "SARI", value = 2.1) + updateSliderInput(inputId = "Richness", value = 0) + updateSliderInput(inputId = "Q", value = 1.3) + updateSliderInput(inputId = "FBCI", value = 1.3) + updateSliderInput(inputId = "CCI", value = 1) + } + if (input$objective == "AIS management") { + updateSliderInput(inputId = "WSI", value = 1.4) + updateSliderInput(inputId = "SARI", value = 1) + updateSliderInput(inputId = "Richness", value = 1) + updateSliderInput(inputId = "Q", value = 1) + updateSliderInput(inputId = "FBCI", value = 1.8) + updateSliderInput(inputId = "CCI", value = 0.5) + } + if (input$objective == "Custom") { + updateSliderInput(inputId = "WSI", value = 0) + updateSliderInput(inputId = "SARI", value = 0) + updateSliderInput(inputId = "Richness", value = 0) + updateSliderInput(inputId = "Q", value = 0) + updateSliderInput(inputId = "FBCI", value = 0) + updateSliderInput(inputId = "CCI", value = 0) + } + }) + + data5 <- readr::read_csv( + "watershed_prioritization_level5.csv", + show_col_types = FALSE + ) |> + dplyr::select( + HYBAS_ID, FEOW_ID, WSI_n, FBCI_n, CCI_n, SARI_n, Fish_richness_n, Priority_n + ) + data6 <- readr::read_csv( + "watershed_prioritization_level6.csv", + show_col_types = FALSE + ) |> + dplyr::select( + HYBAS_ID, FEOW_ID, WSI_n, FBCI_n, CCI_n, SARI_n, Fish_richness_n, Priority_n + ) + # + map5 <- sf::read_sf("s_map5.gpkg") + map6 <- sf::read_sf("s_map6.gpkg") + feow <- sf::read_sf("s_feow.gpkg") - - - #Generate map button + + # Generate map button observeEvent(input$go, { - show_modal_spinner() # show the modal window - if(input$scale == "Hydrobasin level 5"){ - map<-map5 - data<-data5}else{ - map<-map6 - data<-data6 - } - - #calculate the ranks based on user input weightings - data = data %>% - mutate( score = - WSI_n * input$WSI+ - FBCI_n * input$FBCI+ - CCI_n * input$CCI+ - SARI_n * input$SARI+ - Fish_richness_n * input$Richness+ - Priority_n * input$Q) - - if(input$regional == FALSE){ - - data = data %>% mutate(watershed_rank = rank(-score)) - } else{ - - data = data %>% arrange(FEOW_ID, -score) %>% - group_by(FEOW_ID) %>% - mutate(watershed_rank=row_number()) - - #convert to relative ranks - maxrank = max(data$watershed_rank-1) - - data = data %>% group_by(FEOW_ID) %>% - mutate(watershed_rank = ( (watershed_rank-1)* maxrank/max(watershed_rank-1) )+1) - - data$watershed_rank[which(is.nan(data$watershed_rank))]<-(maxrank+1)/2 #if there is only 1 watershed in feow - } - - pal = viridis(max(data$watershed_rank), - option = "magma", - direction = -1, - end = 0.9) - - data$wsh_fill = pal[data$watershed_rank] - - #join the data with the map - #map = map %>% select(HYBAS_ID, geometry) - map = map %>% select(HYBAS_ID, geom) - map = left_join(map, data, by="HYBAS_ID") - -#popup labels for watersheds - - wsh_labels <- lapply(seq(nrow(map)), function(i) { - paste0( - "Watershed stress: ", round(map$WSI_n[i],2), "
", - "SAR richness: ", round(map$SARI_n[i],2), "
", - "Fish species richness: ", round(map$Fish_richness_n[i],2), "
", - "Biodiversity change: ", round(map$FBCI_n[i],2), "
", - "Fish rarity: ", round(map$Priority_n[i],2), "
", - "Climate change: ", round(map$CCI_n[i],2), "
" - ) - }) - + if (input$scale == "Hydrobasin level 5") { + map <- map5 + data <- data5 + } else { + map <- map6 + data <- data6 + } + + # calculate the ranks based on user input weightings + data <- data |> + dplyr::mutate( + score = + WSI_n * input$WSI + + FBCI_n * input$FBCI + + CCI_n * input$CCI + + SARI_n * input$SARI + + Fish_richness_n * input$Richness + + Priority_n * input$Q + ) + + if (!input$regional) { + data <- data |> + dplyr::mutate(watershed_rank = rank(-score)) + } else { + data <- data |> + dplyr::arrange(FEOW_ID, -score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(watershed_rank = dplyr::row_number()) + + # convert to relative ranks + maxrank <- max(data$watershed_rank - 1) + data <- data |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(watershed_rank = ((watershed_rank - 1) * maxrank / max(watershed_rank - 1)) + 1) + + data$watershed_rank[which(is.nan(data$watershed_rank))] <- (maxrank + 1) / 2 # if there is only 1 watershed in feow + } + + pal <- viridis::viridis(max(data$watershed_rank), + option = "magma", + direction = -1, + end = 0.9 + ) + + data$wsh_fill <- pal[data$watershed_rank] + + # join the data with the map + # map = map |> select(HYBAS_ID, geometry) + map <- map |> + dplyr::select(HYBAS_ID, geom) |> + dplyr::left_join(data, by = "HYBAS_ID") + + # popup labels for watersheds + wsh_labels <- lapply(seq(nrow(map)), function(i) { + paste0( + "Watershed stress: ", round(map$WSI_n[i], 2), "
", + "SAR richness: ", round(map$SARI_n[i], 2), "
", + "Fish species richness: ", round(map$Fish_richness_n[i], 2), "
", + "Biodiversity change: ", round(map$FBCI_n[i], 2), "
", + "Fish rarity: ", round(map$Priority_n[i], 2), "
", + "Climate change: ", round(map$CCI_n[i], 2), "
" + ) + }) - #map it - leafletProxy("map") %>% - clearGroup(group ="watersheds") %>% - clearShapes() %>% - clearControls() %>% - addPolygons( - data = map, - fillColor = map$wsh_fill, - color = map$wsh_fill, - opacity = 0.6, - weight=2, - group ="Watersheds", - label = lapply(wsh_labels, htmltools::HTML), - fillOpacity = 0.8, - highlightOptions = highlightOptions(color = "white", weight = 2, - bringToFront = TRUE) - ) %>% - addPolygons( - data = feow, - color = "black", - weight = 3, - fillColor = "transparent", - fillOpacity = 0, - group = "Ecoregions", - opacity = 1 - ) %>% - hideGroup(group = "Ecoregions") %>% - addLegend( - colors = viridis(9, alpha = 1, end = 0.9, direction = -1, option = "magma"), - labels = c("high", rep("",7), "low"), - title = "Priority", group="watersheds" - ) %>% - addLayersControl( - overlayGroups = c("Watersheds", "Ecoregions"), - position = "bottomright", - options = layersControlOptions(collapsed = FALSE) - ) - + # map it + leafletProxy("map") |> + clearGroup(group = "watersheds") |> + clearShapes() |> + clearControls() |> + addPolygons( + data = map, + fillColor = map$wsh_fill, + color = map$wsh_fill, + opacity = 0.6, + weight = 2, + group = "Watersheds", + label = lapply(wsh_labels, htmltools::HTML), + fillOpacity = 0.8, + highlightOptions = highlightOptions( + color = "white", weight = 2, + bringToFront = TRUE + ) + ) |> + addPolygons( + data = feow, + color = "black", + weight = 3, + fillColor = "transparent", + fillOpacity = 0, + group = "Ecoregions", + opacity = 1 + ) |> + hideGroup(group = "Ecoregions") |> + addLegend( + colors = viridis::viridis(9, alpha = 1, end = 0.9, direction = -1, option = "magma"), + labels = c("high", rep("", 7), "low"), + title = "Priority", group = "watersheds" + ) |> + addLayersControl( + overlayGroups = c("Watersheds", "Ecoregions"), + position = "bottomright", + options = layersControlOptions(collapsed = FALSE) + ) - remove_modal_spinner() # remove it when done - - }) #end of 'go' button - - - - - } #end of server + remove_modal_spinner() # remove it when done + }) # end of 'go' button +} # end of server shinyApp(ui = ui, server = server) diff --git a/ShinyApp/watershed_prioritization_level6.csv b/ShinyApp/watershed_prioritization_level6.csv index fde6b0a..f18d7fc 100644 --- a/ShinyApp/watershed_prioritization_level6.csv +++ b/ShinyApp/watershed_prioritization_level6.csv @@ -1,1379 +1,940 @@ -HYBAS_ID,FEOW_ID,WSI_n,FBCI_n,CCI_n,SARI_n,Fish_richness_n,Priority_n,protection_score,Prot_rank_feow,restoration_score,Rest_rank_feow,SAR_score,SAR_rank_feow,AIS_score,AIS_rank_feow -8060008980,101,0.01368128154643143,0,57.57368068905068,5,19.327731092436977,56.600053856814995,93.25880789058755,4,35.07212702754396,4,141.42425546448334,1,109.73350670043641,1 -8060009140,101,0.0120559225716284,0,56.326078663361045,5,17.647058823529413,52.02243633972709,84.34991459068856,5,29.29438291838425,5,134.25568761423102,2,102.8491727591196,2 -8060009130,101,0.00445266625626361,0,29.050011187563843,5,17.647058823529413,56.113577881860174,105.01457032706818,2,61.3241754893435,3,112.25780938836841,3,93.29178738156136,3 -8060009250,101,0.00732424096516361,0,15.51404602365439,5,26.050420168067227,50.40902250677733,110.39595008352899,1,76.61546650151048,1,91.35055071644187,5,89.22657380203091,4 -8060009240,101,0.00259573282152831,0,19.96153359483011,5,17.647058823529413,52.02243633972709,102.54164731470412,3,65.63494750592075,2,97.8769987865983,4,84.65384430687322,5 -8060252130,102,0.1155571314726225,0,12.423598854717122,0,21.008403361344534,60.55413987682867,118.5715229285423,4,79.52422492100153,8,90.8885874930543,5,87.93382196462295,1 -8060287740,102,0.47225879547178623,0,5.435160132415409,0,21.84873949579832,61.6247135253897,124.38611998370308,2,89.5061996090451,3,85.8176230267354,8,86.84279296349932,2 -8060298170,102,0.4739197610576501,0,3.848217784244469,0,21.84873949579832,62.205554608532054,126.17445754448546,1,91.77500024217343,2,84.98415040919157,9,86.63245515537832,3 -8060287840,102,0.1344190712021019,0,4.447853844295614,0,21.008403361344534,60.29713226713056,122.09959513714392,3,87.247940544074,4,82.60874996150457,13,83.71497303350363,4 -8060202510,102,0.28906996910397986,0,18.560976040041066,5,16.80672268907563,51.51429058469231,101.24330902838709,14,66.32851109006708,19,96.24774716478417,2,83.00044401133016,5 -8060274780,102,8.637889995834573,0,3.309759440759448,0,16.80672268907563,51.15875090305456,94.28511114870433,22,95.07821936884034,1,82.36876064053443,14,81.54142321626351,6 -8060221500,102,0.7536043917109075,0,21.74973342232412,5,15.966386554621849,48.59845505575975,93.34146966789572,23,60.07515020192027,29,96.3610524167357,1,81.47975058159717,7 -8060231240,102,0.38504253152425144,0,10.961479407236071,5,17.647058823529413,52.30167298466634,107.13830349220022,9,75.93023594343066,12,89.80976714906434,6,80.96086505079522,8 -8060274770,102,0.4953387608577396,0,3.7370796172880865,0,19.327731092436977,58.49764191147225,117.32607189876228,5,85.09352653311055,5,80.11096646093895,20,80.37752512957414,9 -8060219290,102,0.5041609585159619,0,20.132716056834504,5,15.966386554621849,48.59845505575975,94.39942178383548,21,61.059857469311076,26,94.3710966724366,3,80.32698738697698,10 -8060194110,102,0.213805695204536,0,16.73008563337252,5,15.966386554621849,49.165472918616786,97.3639036284061,17,64.3879919025184,22,91.2674753352143,4,78.79197349823885,11 -8060259520,102,0.424192843175246,0,4.562234110237002,5,17.647058823529413,52.30167298466634,110.29877582904876,6,82.42872272810318,6,83.46905477702545,11,77.81527337538868,12 -8060259590,102,0.11313564703449,0,6.905809797242197,5,18.48739495798319,50.46361105228088,107.12488710925287,10,77.99258376499333,9,82.97109034470935,12,77.56004834031286,13 -8060280670,102,0.4438225570211783,0,7.284586450081186,0,18.48739495798319,53.48722877040938,106.16731986153943,11,74.72961398148755,13,77.10334242659869,25,76.22943224705968,14 -8060153970,102,0.01002151128509102,0,7.661278085665378,5,18.48739495798319,48.01512482630727,102.6494907323733,13,74.11916586882532,14,80.40667498331366,19,75.34698941962068,15 -8060194180,102,0.14618493654895043,0,9.935143948932492,5,15.966386554621849,48.59845505575975,99.85618385975349,16,70.35000198664555,17,83.63832106939702,10,74.73416202669142,16 -8060298100,102,0.22144760578932005,0,4.736908681049156,0,18.48739495798319,53.48722877040938,107.6635336972873,7,76.7135971066993,11,74.22319587802001,30,74.64869580541372,17 -8060251940,102,0.06715827202404114,0,3.480989860296518,5,16.80672268907563,50.70969941473947,107.6248067960467,8,79.90728722312136,7,79.79570531595745,21,74.34960152702821,18 -8060202520,102,0.44344876929189597,0,7.926567679720549,5,15.966386554621849,48.59845505575975,100.56320816161652,15,73.11210750629891,15,82.0741785960237,15,74.14012488297503,19 -8060224890,102,0.5888977471499163,0,13.855519699072,0,15.966386554621849,49.19597704415025,92.85342933247804,26,60.99896071960127,27,78.34288991602718,23,72.90285563328875,20 -8060146840,102,0.00235438563204011,0,3.764165051362866,5,17.647058823529413,47.82739279017476,103.44329339800976,12,76.93748678784854,10,76.25537471896993,28,72.3597834046244,21 -8060234860,102,0.12024556199773848,0,12.615831677578647,0,15.966386554621849,49.59145405988977,94.62043067345289,20,61.512059797870094,24,76.91385228194767,26,72.03170621080913,22 -8060221510,102,0.04579636257732614,0,20.68250523936651,5,14.285714285714286,42.17084526861487,81.87460947514958,32,50.168616980373535,35,85.92514823585319,7,71.86101529883632,23 -8060219130,102,0.24773322986950597,0,7.647420179137374,5,15.126050420168069,45.97988522075117,95.5655788529584,18,68.99980459677006,18,78.11679467648312,24,70.27154000700466,24 -8060231190,102,0.7186272490575673,0,15.623947705047405,5,14.285714285714286,42.17084526861487,83.73105735582888,31,56.93272257577046,32,81.8725280268947,16,70.26030404469249,25 -8060129130,102,0.01706273192374043,0,9.769911105163413,5,15.126050420168069,45.16165691232456,93.331200139458,24,65.33799108743806,20,78.83650295239362,22,70.19621099926773,26 -8060239840,102,0.13362865422727097,0,24.64707400336838,0,14.285714285714286,43.30549084228271,76.12616183391195,37,40.50044603192625,49,80.83779744927509,17,70.0991617656057,27 -8060130480,102,0.03322252736482082,0,10.380169032791962,0,16.80672268907563,46.78837271598225,91.8564791965904,27,61.09720373538153,25,70.9238970873475,32,68.83103001578087,28 -8060222000,102,0.28596284245828096,0,18.568043237503968,0,14.285714285714286,44.4343428603898,80.95007227413663,33,48.28262027280351,37,76.4460446228179,27,68.39873336643876,29 -8060234870,102,0.022137356243082,0,27.95459220879116,0,13.445378151260504,40.75900034427089,69.37463925717816,43,33.099068634750395,52,80.68619486653492,18,68.21222615492309,30 -8060214100,102,0.11432007890499174,0,3.963348388857032,5,15.126050420168069,44.76769513419322,95.4613186421251,19,70.9314677948615,16,72.66598321849737,31,67.03319180338718,31 -8060251780,102,0.04957679465163545,0,9.02106253994664,5,14.285714285714286,42.50776280737875,88.27958723037527,28,62.232713097407846,23,74.70496814742535,29,66.37242882627336,32 -8060119620,102,0.02571092318055957,0,10.230239323249242,0,15.966386554621849,44.53207568611853,87.22757497828991,29,57.755409732464706,31,67.84550439038388,35,65.64906530313455,33 -8060280610,102,0.03485471628079736,0,5.062858147919109,0,15.126050420168069,47.07683749973832,93.32773843670768,25,65.07452200817482,21,65.98199102758673,37,64.78241965660641,34 -8060222130,102,0.01213004912984369,0,17.369653911119517,0,13.445378151260504,40.75900034427089,74.67711571312722,39,43.65863957253034,47,70.08629482445792,33,62.90594601663234,35 -8060240040,102,1.77169815475449e-4,0,16.550446982370765,0,13.445378151260504,40.75900034427089,75.09867205681596,38,44.44754734208686,45,69.24921736138998,34,62.4798464970956,36 -8060119700,102,0.00580894671045424,0,8.860930801344338,0,15.966386554621849,40.011364282061486,80.1761155056194,34,53.80010575346799,34,60.60148058316176,39,60.41623310951246,37 -8060212940,102,0.5127076537124557,0,6.266283740456436,5,13.445378151260504,37.664071822262635,80.04336992238247,35,59.670165821769174,30,66.38005798322273,36,59.95017480475724,38 -8060252250,102,0.03898040841777647,0,4.5888099726243,0,14.285714285714286,43.16911945754494,86.01597480368795,30,60.159687816292504,28,60.46170797494807,40,59.80303522082667,39 -8060129020,102,0.19960329313867117,0,7.3151160628258,0,14.285714285714286,39.75983483910071,78.64301658872827,36,53.863043340260596,33,59.02019449249773,44,57.9785777644057,40 -8060236470,102,0.7076700087008508,0,10.475309690604062,0,12.605042016806722,37.681118245354845,71.30780436929216,40,47.88489813062965,38,60.25235592910197,42,56.500463762005495,41 -8060230650,102,0.04240108233866422,0,11.055589944818715,0,12.605042016806722,37.323143360418214,71.06876902860753,41,45.200601139179355,42,59.37516839329773,43,55.51449768046368,42 -8060213590,102,0.00750057195459386,0,8.311264451889873,5,11.764705882352942,33.23565462323347,70.24774438985638,42,49.497384901980816,36,61.94408237907493,38,54.166344199613484,43 -8060249210,102,0.07525029938353978,0,16.65093082810014,0,11.764705882352942,33.64736632763226,61.09151986837516,51,34.559786528726235,51,60.26710174865434,41,53.841389847166404,44 -8060230530,102,0.03637038360530149,0,11.75020453035371,0,11.764705882352942,33.64736632763226,63.58076293302661,49,39.36195676089527,50,55.308246789941094,45,51.337368895974805,45 -8060212970,102,0.2824337877318016,0,8.006216809436266,0,11.764705882352942,33.64736632763226,65.20669338935883,48,43.72968659924965,46,51.932144027324256,47,49.804964801392025,46 -8060214160,102,0.2890220279771276,0,7.12219207975136,0,11.764705882352942,33.64736632763226,65.64211751395597,47,44.630411751882015,43,51.05796925682581,48,49.372044804308956,47 -8060228740,102,0.02440472416508505,0,4.87268800538763,0,11.764705882352942,33.64736632763226,67.03148685494988,46,46.209141730536146,41,48.412840623320136,50,47.88209694059916,48 -8060236260,102,0.03746150899740178,0,4.805432272864035,0,11.764705882352942,33.64736632763226,67.05205793637936,45,46.30949489437887,40,48.36510585434912,51,47.86648861901544,49 -8060228670,102,0.0089192677985027,0,4.657416032713541,0,11.764705882352942,33.64736632763226,67.1546082976535,44,46.38515987195541,39,48.174416624078304,52,47.753089623077464,50 -8060216240,102,0.00168244335565108,0,6.707218403257177,5,10.92436974789916,28.39671834501087,61.91326716712634,50,44.60092087876162,44,54.07493529055878,46,47.67701921862674,51 -8060216310,102,0.01897838901703021,0,18.847243049461845,0,10.084033613445378,24.86155244834716,43.295470671319535,53,20.290043096423968,54,51.01984672481399,49,44.395399480868235,52 -8060213720,102,0.0033036114190756,0,3.142283616641317,0,10.92436974789916,29.953000576331444,60.739168690443734,52,42.73562774111768,48,41.87433464276757,54,42.45307141527895,53 -8060249330,102,0.16495764279539615,0,16.24732137054658,0,10.92436974789916,22.735057998425237,41.64144128700822,54,21.619431152213764,53,45.888769030254366,53,42.0107449069488,54 -7060016100,103,99.16871923122343,80.13937283718269,4.068449084182075,20,34.45378151260504,85.89734172811927,14.968388607355678,103,417.65835085238984,1,409.203810675375,1,426.1693384014654,1 -7060056770,103,17.305194271526677,85.18518512433863,3.5907284338789176,25,22.689075630252105,97.96516216199151,106.0849832865507,89,220.6064570588196,3,319.08489576359136,3,327.5051755794402,2 -7060016260,103,10.87333748974741,78.23129250806608,1.3436046967529054,45,35.294117647058826,83.6183874083755,131.7805002302149,56,230.8372188306906,2,322.317492905647,2,323.0145334168925,3 -7060016270,103,4.797989659136845,88.15331015375808,1.7643137867822634,15,34.45378151260504,88.88753379834499,101.18101563292299,93,177.650045550176,8,269.3445336332379,6,307.4595340897155,4 -7060055790,103,3.158797021084324,92.00000002628572,1.3068084803767992,15,21.008403361344534,96.14728109551682,97.827501203706845,94,169.29727264106404,9,280.77671120304586,4,305.8351811649871,5 -7060055920,103,6.403171531992186,82.14285716632654,1.0102715802976985,15,20.168067226890756,98.96016819137448,109.55988148506432,86,179.43785857916137,7,276.2728390546159,5,294.06556553336543,6 -7060055930,103,1.6417826706966838,78.85714287967348,1.8182644450455632,10,21.008403361344534,99.77475992954146,114.1444603844204,76,160.82718223932451,11,256.1335205559425,7,278.52953278932216,7 -7060257410,103,5.1200255317620265,82.14285716632654,2.593690584976855,15,26.89075630252101,73.00130689243709,72.23735827582992,101,151.0391645604587,17,242.37487742856462,8,273.8502452102703,8 -7060269970,103,6.400433594970943,74.19354853548387,5.627850779113658,5,26.050420168067227,71.88971514143948,64.1866570251214,102,133.95105435871008,35,214.34789207756685,13,250.60874393327026,9 -7060056710,103,6.675782208999787,59.74025981706864,1.0114139853789363,5,18.48739495798319,99.4395342710588,121.8213148996723,69,162.63945758633113,10,227.14900824341763,9,242.16962947796333,10 -7060056700,103,3.1173733525588307,57.14285700204081,2.7558633995882578,5,19.327731092436977,99.6874822433093,128.63037335527576,61,152.78801402367606,15,220.54878395178474,10,234.45730688104862,11 -7060016090,103,0.8624795488888533,61.6071428747449,1.5850254490564106,5,26.89075630252101,75.3622364907097,92.3890812798612,96,127.79855403363493,47,190.305331224648,17,222.18223395137238,12 -7060056760,103,6.172515670657288,46.938775570553936,4.556562894336776,5,17.647058823529413,99.71995162062782,134.27440509348477,52,156.23861360820717,12,213.81753221725046,14,219.2183439948848,13 -7060056630,103,1.855311223354434,46.938775570553936,2.0350953734070627,10,17.647058823529413,99.17446608167673,144.54147413563038,41,154.4300700602983,14,214.78646847145933,11,216.45399186095585,14 -7060056620,103,1.91865432337704,46.938775570553936,1.5263985731300536,10,17.647058823529413,99.17446608167673,144.73247943574628,40,155.0993342536559,13,214.3724747977735,12,216.2870626712558,15 -7060016860,103,0.8197935649892988,41.07142858316327,0.980801283220544,5,20.168067226890756,100,150.87056663905256,31,148.60463302134855,19,195.0446633373897,15,202.08747624678182,16 -7060177760,103,32.8665497934122,22.66009844933146,1.1045251876198905,10,24.369747899159663,68.18569236888462,94.25847292043397,95,202.51642071381292,4,188.8859553053027,18,190.01002974893498,17 -7060274850,103,1.2895819946748317,31.797235180513496,4.636235233922446,20,26.050420168067227,79.54850807138968,146.4441660670939,38,149.1394876875815,18,192.96685711691208,16,187.99171687759707,18 -7060263330,103,15.65910422014199,36.50793648185941,1.7868460084167068,0,21.84873949579832,68.94331117298333,83.42094612974992,99,143.2320929346716,20,161.35511390196422,32,180.22767149369895,19 -7060261890,103,7.991616211913176,33.9901478382829,4.97271335387501,5,24.369747899159663,72.20629698787745,106.0092592686044,90,133.97804452383275,34,164.70391407381442,31,177.40682619645338,20 -7060019450,103,2.001949099589615,26.28571429322449,1.1428672386102794,10,21.008403361344534,93.94897437354396,161.9554813149951,22,151.23785726565157,16,180.75864515789482,20,176.48215848773643,21 -7060234050,103,4.120955255819189,31.797235180513496,4.327037037548829,15,26.050420168067227,69.2854616006408,120.53446639287563,72,137.4023336556334,26,172.97114808374644,22,176.4816226419149,22 -7060057190,103,0.589247634561564,31.292516937512143,3.127983380014703,5,17.647058823529413,93.72610456762968,147.49942786083525,34,135.2175814203221,30,176.14140430872519,21,176.11998452787813,23 -7060274860,103,1.8762862430822935,32.857142866530616,2.958215950962764,10,25.210084033613445,76.01340985283252,127.37520089130405,66,132.92844226989416,41,167.6599043111051,28,175.53014193234705,24 -7060019020,103,0.8524077754292374,28.57142866530612,1.377130885436037,5,19.327731092436977,93.88280460599292,153.0544077387589,26,139.2722458962981,24,171.48216799933013,24,172.45645356527663,25 -7060234040,103,1.0682718672933775,25.274725307221352,22.76352646137204,15,21.84873949579832,75.50778671865098,128.01739606271758,62,113.74180294771725,62,186.48844992743585,19,171.54959769475974,26 -7060017150,103,0.1010122528139892,26.28571429322449,1.159638832903577,5,21.008403361344534,96.5618501051196,162.70584566795387,20,142.20078682412185,22,170.6613713986486,25,171.4799551374245,27 -7060174770,103,0.6032970507608778,41.07142858316327,4.951560377005267,10,20.168067226890756,59.04880959145407,84.46825572473873,98,103.55869162803779,79,156.39500126250542,33,167.8228806030483,28 -7060177910,103,32.43790558622887,11.734693974781342,1.6280072280712234,10,23.529411764705884,66.44695721347804,102.61990192952256,92,197.1270645951942,6,172.44992083440366,23,167.07122347871447,29 -7060269780,103,5.90877375263709,26.28571429322449,9.455948660114144,10,21.008403361344534,71.64407068583444,115.62442576890852,75,126.80573442202552,51,166.07408631342736,30,163.72556709077648,30 -7060057510,103,0.38219956647516945,19.327730962665065,5.6560060915894494,5,14.285714285714286,98.4681616268304,164.37815479114713,17,133.33870579818688,39,169.08182360942521,26,156.54352237982383,31 -7060171730,103,0.11922574671029572,39.42857143983674,3.155062659189631,5,21.008403361344534,54.5049150519916,75.07726473017809,100,92.28034595391651,92,135.23378952144805,50,154.54110636941886,32 -7060016850,103,0.12719838425051164,16.428571433265308,7.511988046047525,10,16.80672268907563,91.79839763622934,163.5971839148367,19,132.584345951633,42,168.84951111901003,27,152.6557072574135,33 -7060163190,103,26.47398920587172,0,0.5751879445097667,5,20.168067226890756,90.1358031706347,153.67411503067237,25,199.10980058083504,5,167.34544459267838,29,152.12796531001055,34 -7060174580,103,4.272426879986332,23.469387620991252,2.4088637909099906,10,23.529411764705884,62.44348299010496,110.61817814582412,85,121.25716577760971,57,141.05773201793755,42,146.10087302809745,35 -7060018950,103,0.1780826904921289,16.428571433265308,2.42658330000773,5,16.80672268907563,92.71208591397236,162.03158283403192,21,131.61470615458236,44,154.37126439529376,34,146.09691810966464,36 -7060018790,103,1.1080205011356248,14.935064789981448,1.350592289994499,5,18.48739495798319,92.968092195321,165.40239052014434,16,136.90286875914728,27,153.0931491314915,35,146.0409039781831,37 -7060019010,103,1.1748416590209896,14.28571433265306,1.141557566259872,5,19.327731092436977,93.11200982269249,167.24162245968586,14,138.23541484316237,25,152.33380815224444,36,145.82238378475108,38 -7060173970,103,2.4780744895553446,21.90476202054422,2.4558798363698338,10,25.210084033613445,65.24916188419799,120.60438143110338,71,121.48525391334627,56,140.03454046857678,43,145.26588326271525,39 -7060018960,103,0.2567191379823763,15.64625863304179,1.4836689193006043,5,17.647058823529413,92.40784784849788,163.6033139057688,18,133.1771537772859,40,152.145035581425,37,144.8358442685044,40 -7060176450,103,14.252776996204515,13.142857146612243,6.879594484319277,10,21.008403361344534,66.0092050684698,113.3582139936358,78,142.86391860485207,21,151.760811171804,38,144.22276587293072,41 -7060018030,103,0.1976764966683091,13.142857146612243,1.1100028282968242,5,21.008403361344534,92.11068810727885,169.45444989620023,12,136.20719502050574,28,148.0748116960777,40,143.04214243957222,42 -7060257320,103,1.6393441463894194,24.33862432123961,2.363914737014234,0,21.84873949579832,69.61506651261752,111.69092076243862,82,106.88616783995928,73,126.16742532119694,64,139.52901791148264,43 -7060261880,103,3.280499197025471,13.690476303911565,6.684503585991729,10,20.168067226890756,74.60651173362123,137.73539797567108,46,124.48105103318099,53,146.98224232086346,41,137.7434230803296,44 -7060263190,103,2.4726501169813253,12.169312160619803,3.4194185661622796,20,22.689075630252105,65.5996868508943,140.1674054748012,44,132.08461493261035,43,150.205598999546,39,135.72135832270612,45 -7060020090,103,0.04276627812630693,16.428571433265308,2.6376887626848107,0,15.966386554621849,87.9118131712029,147.36036172313106,35,117.36993498667299,61,137.52339496154553,47,135.37511306888592,46 -7060174590,103,13.001221006695252,11.734693974781342,1.7074146693293584,5,23.529411764705884,66.44695721347804,116.39188278842711,74,140.52792182442064,23,132.81963913313933,55,135.2865435036071,47 -7060178710,103,7.872806686852147,13.142857146612243,2.8500290955294316,10,21.008403361344534,66.0092050684698,121.7529669973831,70,130.7210011164464,45,138.19266722214633,46,133.40304677875082,48 -7060123580,103,0.6587276997569088,15.64625863304179,3.537240259935841,0,16.80672268907563,82.84236929046294,139.2980492420641,45,112.89256627673963,63,131.78190271961165,58,131.01162344244747,49 -7060192890,103,2.822826766398596,13.142857146612243,20.258820776754337,5,21.008403361344534,66.72924597988522,113.70889837584537,77,94.1011452738239,89,138.3320344507368,45,130.8580542287953,50 -7060176340,103,1.7412318439717018,12.169312160619803,6.196352233566475,15,22.689075630252105,64.46830943677355,131.94429494096661,55,118.88368067528894,60,139.7759588711555,44,129.96902433383525,51 -7060020100,103,0.00752412674722575,14.935064789981448,7.478338955153322,0,17.647058823529413,81.04179473007248,136.51217430639846,48,105.98114190569818,74,131.5054516380581,59,129.81935912197216,52 -7060178720,103,5.638743957849321,12.637362489324962,3.754884070601361,5,21.84873949579832,68.04407593088769,122.79713443376923,68,120.07528448392229,58,127.08709107105274,63,127.72073231448536,53 -7060192750,103,11.434349648342184,11.734693974781342,2.4796165697040764,0,22.689075630252105,66.44695721347804,111.10731706213903,83,127.69354709051112,48,120.59898739544515,69,127.66988404650047,54 -7060123570,103,0.07540110188157109,14.935064789981448,3.265363075481127,0,17.647058823529413,78.63050069993646,134.4138181639753,51,107.5530016561724,71,124.27632471446984,66,125.39525352039813,55 -7060163080,103,1.0105393109587075,0,2.2777412221167057,5,18.48739495798319,93.25323236340908,181.95407284981496,4,134.81669114188634,31,135.00866863133712,51,119.274133633095,56 -7060017940,103,0.03766396384618832,0,0.6408150515635607,5,18.48739495798319,94.98886816916249,186.72317680918337,1,136.01239987259527,29,134.16126844808534,53,118.84865033153872,57 -7060019840,103,0.8673101272651694,0,1.696903727405927,5,20.168067226890756,91.4995170180124,181.05960913188608,6,134.66913034310167,32,131.94626182538448,57,118.71300257383632,58 -7060019440,103,0.7721545926160023,0,2.0014918342834642,5,18.48739495798319,92.6271637334766,181.2564596969853,5,133.75824958628624,37,133.5665520788267,54,118.18094782465529,59 -7060019200,103,0.1760158655315651,0,1.2593918745136463,5,18.48739495798319,93.30282195785918,183.38284998410018,3,133.7774751198,36,132.8067541685484,56,117.66283067657037,60 -7060018590,103,0.01237766004098264,0,1.1392434325456875,5,14.285714285714286,97.09642593329164,185.91342639013214,2,133.70701037094994,38,137.346814902014,48,116.96884422628555,61 -7060018780,103,2.3407040677895297,0,1.3006413889462096,5,19.327731092436977,88.39237407263754,173.61320112467536,11,134.33493875852272,33,129.73552806661004,61,116.60080930151959,62 -7060017140,103,0.24106583857391725,0,5.119758894872528,5,15.966386554621849,91.83536145893456,176.34894092827767,8,125.84895656504638,52,134.86705356529433,52,115.69432013413767,63 -7060174110,103,2.402560835321382,13.690476303911565,4.0039817213014715,5,20.168067226890756,59.98636286152621,109.2453539036199,87,100.62926088602987,81,113.43605937429344,74,115.57137888530235,64 -7060019190,103,0.3113715666686203,0,3.610707216856982,5,20.168067226890756,87.83453605318485,174.37077499123367,10,127.07027612092492,49,128.29033035055542,62,115.23767782892912,65 -7060174100,103,3.922142596003985,0,9.56772930321462,15,21.008403361344534,68.7420876186147,147.11562836542882,36,123.33195169762459,54,136.2610702863152,49,114.94726735908336,66 -7060171990,103,0.940729027313027,14.935064789981448,2.4954840365090285,10,18.48739495798319,55.30479521047169,106.00472418525734,91,98.64339942999857,85,115.94219899747068,73,113.71917549321599,67 -7060174890,103,0.4356288331228038,13.690476303911565,4.717265432152475,5,20.168067226890756,59.98636286152621,110.85564405039298,84,94.93003326262897,87,111.20861851792296,75,113.21347657479768,68 -7060019800,103,0.21663082948353493,0,0.6737824766335575,5,15.126050420168069,91.54308009924806,177.25457179975237,7,129.05166202243333,46,130.00664567387975,60,112.30499190702014,69 -7060018620,103,1.0925202408099657,0,1.142124168185266,5,17.647058823529413,86.06333152045978,169.26411997469273,13,126.93156653576318,50,124.6995863741755,65,110.78922923100961,70 -7060018020,103,0.9205751132927316,0,13.100562266463092,0,20.168067226890756,81.22279674981533,152.04812974149542,29,104.16098537045812,77,119.49223068929062,70,109.21162207624661,71 -7060017930,103,0.7109550036301066,0,2.370051469624361,0,16.80672268907563,88.45957156656628,166.677524975682,15,119.44169297879444,59,117.80495879344039,72,107.43250223528298,72 -7060018600,103,0.00975484808072023,0,0.9988646887729836,0,11.764705882352942,95.10540371612024,174.42430771609682,9,121.74687293465351,55,123.97801136666965,67,107.38300451600274,73 -7060140470,103,0.10519911580768362,0,8.961639256853227,5,19.327731092436977,76.48655926596619,151.59184535390852,30,107.11707850532812,72,118.66088607345671,71,105.44029428692636,74 -7060174230,103,3.4360352746341514,0,9.458493763204086,10,19.327731092436977,66.11640483525495,135.84589530415627,49,110.21499285257582,66,121.37998974619589,68,104.91542244170762,75 -7060108050,103,0.02165345409168748,14.935064789981448,7.225132432589657,0,17.647058823529413,54.381189013838586,90.88404277055625,97,75.16612462786215,100,96.80309152025904,92,103.05164989486394,76 -7060162570,103,0.7820921379813585,0,2.93936202853016,0,17.647058823529413,81.20915961134156,154.72280770327137,23,111.43422897040087,65,109.10635519639918,79,101.40525737711937,77 -7060148370,103,0.5011511671319019,0,3.6683351198384098,0,17.647058823529413,81.20915961134156,154.6392621284667,24,109.99310318554399,67,109.41529850833906,76,101.382019958479,78 -7060020790,103,0.01649005197689507,0,2.325497610015255,5,20.168067226890756,74.44741178476049,152.34047220303748,28,111.98968373007625,64,109.25564359390313,77,100.80098558069938,79 -7060140620,103,0.7387308637448191,0,6.292782366697824,5,21.008403361344534,68.98210125575318,141.0982959988201,42,104.3173359670142,76,107.23647748633684,81,99.1564112458863,80 -7060148380,103,2.758112054150598,0,9.005026488585651,0,21.84873949579832,68.64531444337115,132.3603163267049,54,99.92140653771347,82,101.88216795047616,84,98.80301142109094,81 -7060020780,103,0.228048789816439,0,2.7923384167526337,5,19.327731092436977,72.59701020561938,147.88049204942735,33,109.05998174712381,68,107.64634364923661,80,98.63563847427889,82 -7060020690,103,0.3305356734550559,0,5.070486949634169,5,24.369747899159663,66.0037502130803,140.3691377911602,43,104.39150569594709,75,101.55309949346956,85,98.36491072915564,83 -7060018610,103,0.3386691469551049,0,1.6349529667122693,0,18.48739495798319,77.6961141566838,150.63157048323546,32,108.35639541479983,69,102.5968730411311,83,97.46837966961276,84 -7060020500,103,0.07394780716683994,0,3.875340394451665,0,20.168067226890756,75.08608443661572,146.97883987037855,37,104.08060776774315,78,101.0668964869245,86,97.2938765267318,85 -7060020440,103,0.0748605645398353,0,1.667256222473244,0,15.966386554621849,80.32956417978293,152.87633088126813,27,108.2067180349537,70,105.63962551885714,82,97.2328931994181,86 -7060111430,103,0.00373741942521125,0,16.107336145277834,0,13.445378151260504,72.02013483386423,128.9502280850068,60,81.3710065691502,97,109.22986590108479,78,93.52433903479844,87 -7060020430,103,0.02607736675798005,0,2.0647864695255578,0,16.80672268907563,75.62117977482485,145.4886858217122,39,103.03274904932526,80,99.87661276706105,89,93.49628482473197,88 -7060162660,103,0.5166992783257177,0,3.7778628801394505,0,20.168067226890756,69.68032274561054,137.31036372506085,47,98.99368680587452,84,94.64210107220342,94,92.4504131767762,89 -7060190200,103,1.8203768530883255,0,8.077865733579802,0,15.966386554621849,69.35166770839251,129.09114287902185,59,93.41324346501844,91,100.46628103384352,88,91.86927192705286,90 -8060000060,103,0.12533756314552205,0,3.643571273293592,0,23.529411764705884,65.42064498178776,133.82204573848676,53,96.52764245193666,86,88.41522946304804,96,90.94481956304716,91 -7060190090,103,2.2814726228704405,0,8.251652060160293,0,16.80672268907563,65.69853806628625,123.115951995633,67,90.9866328510449,96,96.606205005836,93,89.7797254731139,92 -8060000290,103,0.01876627745790581,0,0.20304712186885557,0,23.529411764705884,65.42064498178776,135.64887909988676,50,99.69802078615325,83,84.81537250416902,99,89.07747946862563,93 -7060020680,103,0.0455863996619316,0,3.6035198071971033,0,22.689075630252105,64.17734773891375,130.94840785736895,57,94.07468440751988,90,86.64844804543293,97,88.73109662976391,94 -8060000070,103,1.618687332570378e-4,0,0.6387657614336014,0,17.647058823529413,66.15871769573687,130.8335550364038,58,94.193874025539,88,86.17755185991551,98,84.12538279348374,95 -7060108080,103,0.2509539588546906,0,9.798405713623549,0,15.126050420168069,63.19737066400304,118.40126206900801,73,79.69404958621847,98,91.88333421970782,95,83.56896311496786,96 -7060108990,103,0.02235425026180965,0,15.664105217269736,0,10.92436974789916,64.0555875739693,112.96774205205342,80,70.0484487920092,102,98.51687220390927,90,82.8428608188737,97 -7060111530,103,0.00637150765619094,0,15.19417067798449,0,10.92436974789916,64.0555875739693,113.21869206430166,79,70.47786893724765,101,98.02304215436776,91,82.58583591803328,98 -7060108980,103,0.09182979193715872,0,15.767379193775144,0,8.403361344537815,65.58223866025448,112.94483936800509,81,69.38137176573746,103,100.69786971947627,87,81.99602302494155,99 -8060000410,103,0,0,0.19396342429231517,0,16.80672268907563,64.6335424902389,127.5990958035562,65,92.01855883672869,95,83.7605638157123,100,81.53724689146068,100 -8060000400,103,0.00148945917325455,0,0.09490961466955462,0,16.80672268907563,64.6335424902389,127.64713324919433,64,92.12138825216272,94,83.66373686964037,101,81.48977557510108,101 -8060267770,103,0.00189853384494886,0,0,0,16.80672268907563,64.6335424902389,127.69417898185742,63,92.21733482355819,93,83.56943885513572,102,81.44288532783358,102 -8060267640,103,0.00479298675867932,0,0.7759092458303288,0,13.445378151260504,54.89349328003263,107.231346723233,88,76.72402739624411,99,71.7564806068738,103,68.73344080968974,103 -8060331980,104,51.98836809894892,30.80357143737245,12.538822414279796,5,26.89075630252101,46.87766350360816,20.80030483597072,89,210.6439735673193,2,201.19671716210672,1,213.25969812136026,1 -8060332200,104,51.02466471010998,28.16326540804665,9.944354632460984,5,29.41176470588235,51.07303174693368,35.68442375193581,88,217.99114450176234,1,199.18535418963637,2,212.50828193379968,2 -8060331970,104,27.972807773231096,36.50793648185941,8.953515109942273,5,30.252100840336137,52.62420213269694,53.554183498908344,64,163.8936313117694,4,176.48257754788037,4,197.88928361428862,3 -8060332620,104,39.62584927667008,28.16326540804665,8.933978216626295,5,29.41176470588235,51.07303174693368,47.588427393293045,75,190.10684923748192,3,181.13281437167512,3,196.27169686072773,4 -8060338970,104,15.07610884059094,42.39631335497038,8.307114708306896,5,26.050420168067227,49.86353696782624,51.358817285487426,70,124.91664091012481,7,160.56872594576294,7,183.60048352791603,5 -8060340710,104,28.19035528451504,30.80357143737245,9.723713052606485,5,26.89075630252101,46.681629638047625,45.66954434984582,76,152.90518147870785,5,162.5481700588773,5,178.81269822472626,6 -8060335660,104,27.100138306771868,33.9901478382829,8.549836513230533,5,24.369747899159663,44.55112065536638,37.66522246455497,87,146.5744305658406,6,161.09365645585808,6,177.9117012125427,7 -8060338830,104,15.55260716408531,33.9901478382829,9.737167831325804,5,24.369747899159663,44.55112065536638,48.6190879481939,73,116.11545053721431,8,145.01648219669084,8,162.56872886924012,8 -8060328330,104,16.134884672298313,31.797235180513496,14.2039987722764,5,26.050420168067227,41.2017544985144,44.149888743456835,79,110.7149610706628,10,143.19916642753242,9,159.91670623532482,9 -8060335620,104,14.77633109863592,32.857142866530616,9.713965039454624,5,25.210084033613445,42.316040684129774,47.658963785200015,74,112.30920952152843,9,139.48370962125477,10,158.01387663342803,10 -8060333260,104,1.3886813187334677,37.91208779654632,4.229677155376415,5,21.84873949579832,56.41054780210417,79.04839298726766,8,97.36085442767302,17,138.71714543937196,11,156.79612606162866,11 -8060341350,104,6.435738531927675,37.91208779654632,7.913887609867892,5,21.84873949579832,43.953546311634845,50.78721835113095,71,91.9371787359635,21,133.8410979917113,15,153.1466254998722,12 -8060342750,104,6.207340638688208,32.857142866530616,10.286384134423844,10,25.210084033613445,42.72970055116769,62.27644548159323,49,97.7479991830422,15,138.42987108699003,12,151.88776373897295,13 -8060341320,104,3.869064202903951,37.91208779654632,10.096857354943578,5,21.84873949579832,43.953546311634845,52.26240780761683,69,83.24798801731605,30,132.1866792317548,17,150.69586752013748,14 -8060338810,104,6.845126084196777,37.91208779654632,9.32366513199904,5,21.84873949579832,40.06696184660843,43.0048742327389,82,87.03080251309996,25,130.8378645565649,18,150.52992166668997,15 -8060342280,104,8.740875158620181,33.9901478382829,10.35206015643246,5,24.369747899159663,40.96784495984293,48.975681513484744,72,94.05312132867061,20,130.8143547235543,19,149.8920927223928,16 -8060339000,104,5.666768473880992,37.91208779654632,9.48567469305842,5,21.84873949579832,40.17186291179134,44.28220190206772,78,84.00417800426357,28,129.3737625635473,21,149.089587371469,17 -8060332270,104,3.642502864349006,31.797235180513496,7.18322478725725,5,26.050420168067227,51.04248958426891,77.03603918501742,11,97.54985737511319,16,130.22463233023615,20,149.0064369013094,18 -8060271000,104,0.4806407834080992,36.50793648185941,10.819784570033892,0,29.41176470588235,44.320700039774984,59.40187121420661,54,74.56016005321723,40,115.85971028678495,37,146.73690169208984,19 -8060266590,104,0.20263717871762857,34.58646620988185,10.939331947750082,0,31.092436974789916,46.22989942610375,66.68993277779917,37,77.48385489390424,36,115.55745849611569,38,146.48018140438865,20 -8060264770,104,0.14430632625891013,34.58646620988185,8.505286681451656,0,31.092436974789916,46.22989942610375,67.96528626340711,28,79.77003823187708,35,113.03620382417407,41,145.18265691603622,21 -8060340700,104,10.13063165658575,33.9901478382829,8.580257951440174,0,23.529411764705884,40.96784495984293,42.006489983561536,85,91.25745852195905,22,120.47009987223505,30,145.08384522245416,22 -8060323980,104,15.8388134850456,21.90476202054422,16.84893604641375,5,25.210084033613445,41.62054662196716,53.88338163972766,63,106.14339967663238,12,133.20261527027233,16,142.27282503593412,23 -8060272130,104,0.9184715046154662,26.640926621897407,15.083715059719928,5,31.092436974789916,46.1672423033864,78.15950195745894,10,81.66880028603362,33,121.10842200251182,28,139.9108094108107,24 -8060332850,104,0.38987860939488544,31.292516937512143,18.676920408754498,5,17.647058823529413,49.84049418392279,64.63142573741688,42,67.96338831423819,49,134.65127709994084,13,139.73369536136542,25 -8060332260,104,0.5134556854924816,31.292516937512143,18.32409231754413,5,17.647058823529413,49.84049418392279,64.68426270692447,41,68.62946992392851,48,134.48320686676493,14,139.72782886422073,26 -8060331810,104,10.144098850835826,21.90476202054422,11.232062660139324,5,25.210084033613445,48.64821864878687,74.44364738417256,16,105.52378433926164,13,128.1579597505412,23,138.6328388156167,27 -8060332820,104,2.63621375564102,31.292516937512143,5.873490024606156,5,17.647058823529413,49.84049418392279,68.78680578324492,27,86.4610170923593,26,125.20630188526214,24,136.43212595935944,28 -8060332210,104,0.11703179974129484,31.292516937512143,12.816499983642547,5,17.647058823529413,49.84049418392279,67.83448275962644,29,73.1321738032515,41,128.3829283299042,22,136.4269318594685,29 -8060338740,104,5.037584854977402,33.9901478382829,9.453304179168429,0,23.529411764705884,37.10242157175858,40.03125113560442,86,72.96447024746627,42,108.73090454067798,47,134.6260794528016,30 -8060271080,104,0.06268017678118146,28.991596608283313,18.857281745178625,0,27.73109243697479,43.4182423466574,60.84007186745666,52,62.10328010666771,57,112.42537342322902,43,133.81574042111313,31 -8060332600,104,7.792418677614742,19.913420048546698,8.773913620481155,5,27.73109243697479,49.0936985055969,83.50017980170603,5,104.8954873296272,14,120.19522296237889,31,133.47392747984998,32 -8060333190,104,0.6758532649765661,31.292516937512143,4.4062005579544214,5,17.647058823529413,49.84049418392279,71.48081100723523,21,82.95902066407089,31,120.80811279978091,29,132.99300634072742,33 -8060332890,104,0.39152258518766664,28.57142866530612,12.616345991959076,5,19.327731092436977,47.08370287837502,67.60421445992222,33,72.26578840825967,43,121.52439246255237,27,130.6408961193199,34 -8060331740,104,1.817974499241888,21.19815667748519,13.841394714855785,5,26.050420168067227,49.54680342908048,84.6243760661765,4,83.63849647345698,29,118.5708379823101,33,128.8901775281647,35 -8060343130,104,2.2881639622357595,24.33862432123961,19.1629016752909,10,22.689075630252105,38.48198445618755,61.31907752955077,51,70.75027075930728,45,124.9840823466914,25,128.53119552123815,36 -8060331910,104,3.499837848589681,21.19815667748519,6.663784143003296,5,26.050420168067227,50.334238199017925,87.88229042732233,1,95.99810896866074,19,114.9258484557073,39,128.40993063910386,37 -8060342780,104,7.701009545479671,22.66009844933146,7.475138501205746,10,24.369747899159663,37.5632628029414,63.70094783458185,47,96.62792127039458,18,118.03938699255676,34,127.842183873181,38 -8060342260,104,8.178760102174058,23.469387620991252,10.04391477938306,5,23.529411764705884,39.08988335376199,57.202420776204214,57,89.02834904018911,24,113.68826577440578,40,126.95589224692884,39 -8060332940,104,0.40364358701329806,28.57142866530612,2.9468941558993595,5,19.327731092436977,47.08370287837502,72.42681937612645,20,81.96596557452854,32,111.8730625177467,44,125.82289828073266,40 -8060331800,104,2.893072944235805,22.66009844933146,5.318597917617177,5,24.369747899159663,47.39610988868883,80.8320032217216,7,90.81855656559745,23,110.75751060174932,46,124.96137305003288,41 -8060343100,104,3.2822647284242574,26.28571429322449,11.64318487228368,10,21.008403361344534,35.16199784078642,54.56638689023132,62,75.39818492227985,38,117.16573559863089,35,124.71229220527516,42 -8060324030,104,4.859602880872777,24.33862432123961,13.286502090121154,5,22.689075630252105,38.05771792589225,55.3329401635703,59,75.3999913800186,37,111.75339556828507,45,123.71754761548146,43 -8060315580,104,18.83574080109737,11.734693974781342,12.51843277837939,5,23.529411764705884,36.02639760375997,52.960436006682464,66,109.01608008364133,11,113.02210994744175,42,118.32365827553008,44 -8060327690,104,0.06815466564037685,15.64625863304179,24.389176102919087,5,17.647058823529413,53.03548091206482,84.78942536765015,3,63.859229489876654,54,123.86293687871283,26,116.65599488739049,45 -8060331570,104,4.699938597054385,24.33862432123961,15.38316550345215,0,21.84873949579832,35.1535125101805,42.99629984485552,83,61.42002178670488,59,99.20616301016105,49,115.80098661105558,46 -8060327650,104,0.14715556792897078,17.293233104940924,22.770229913414408,5,15.966386554621849,49.08652106429492,75.25247045256988,15,59.52788956188398,61,119.37748113636687,32,113.3453712690036,47 -8060322730,104,0.33741486343383065,18.25396840521542,16.38097704750596,5,15.126050420168069,50.41953141276968,78.64668869300817,9,67.19433149917965,51,116.23348025357318,36,112.66734214640613,48 -8060328820,104,4.173392217991381,23.469387620991252,12.670945863165407,0,22.689075630252105,33.39637804096014,43.66080256786142,80,61.51541711106606,58,92.31539123886947,53,111.20779618466068,49 -8060331230,104,0.5886516282107137,25.274725307221352,14.890338271330394,0,21.008403361344534,33.237902503201674,42.19741266863258,84,48.49400854900161,84,91.29546108018974,55,108.84086391535524,50 -8060331290,104,0.5487488076933216,25.274725307221352,13.351272746053576,0,21.008403361344534,33.237902503201674,43.00684825178838,81,49.93192506412969,81,89.69673756751644,57,108.01626164928786,51 -8060331600,104,1.1341260755606168,25.274725307221352,9.282380423791045,0,21.008403361344534,33.237902503201674,44.455917145052354,77,55.484680693311645,71,86.50303224245877,59,106.78968909313181,52 -8060322700,104,0.03571365776574135,13.142857146612243,17.014711140069522,5,21.008403361344534,47.52815500880733,85.17547167292314,2,67.87897446345316,50,106.09530929204496,48,106.18844012203103,53 -8060311060,104,0.05308547449608167,21.90476202054422,9.217415236288147,0,24.369747899159663,34.72470026706063,55.18858788548031,61,57.62444531460558,67,82.40404289519232,62,103.93514891428202,54 -8060325760,104,0.02034498139244404,21.90476202054422,10.961577571895786,0,24.369747899159663,33.76555486107166,52.70367726122795,68,54.67828666236049,72,82.85914831838133,61,103.80289983267332,55 -8060314150,104,7.6510433751042,11.734693974781342,12.521019098432308,5,23.529411764705884,36.02639760375997,64.14384027264919,45,80.66158633490804,34,96.30265683715734,51,102.88905679787365,56 -8060328000,104,11.757166968819448,11.330049388951444,11.044645811473538,0,23.529411764705884,35.82335203214915,55.24765466324331,60,85.02589859333804,27,89.53136561900251,58,101.87279832965106,57 -8060320050,104,5.244474910991539,12.169312160619803,13.646292270758192,5,22.689075630252105,37.774873572362075,67.66915092652931,31,74.67171261733412,39,96.65030423608093,50,101.83535095607868,58 -8060328340,104,1.3786155227687982,12.169312160619803,16.884446632469015,5,22.689075630252105,37.436470506531315,69.33534763300146,25,61.23925064820962,60,93.67115070204873,52,97.78078926382761,59 -8060320060,104,0.21581595533400028,11.734693974781342,14.872550266561356,5,23.529411764705884,39.133717013141975,75.73441396252349,14,63.08782419660177,56,91.55545785473721,54,96.91085508077761,60 -8060325250,104,1.6902348530637932,12.169312160619803,14.007831915173128,5,22.689075630252105,37.436470506531315,70.4620356613544,23,64.90578413299747,52,91.26043242611192,56,96.77254478183113,61 -8060327990,104,6.108302535524673,11.330049388951444,12.21259845936626,0,23.529411764705884,35.82335203214915,60.31254277259172,53,69.53873145174461,46,82.25380291744469,63,94.66083052619965,62 -8060308720,104,0.5100736055559042,12.637362489324962,10.98065368640367,5,21.84873949579832,36.9618903171946,70.98637502165676,22,63.58638199943194,55,86.45800985915139,60,93.17340228946496,63 -8060338780,104,3.7666287134232377,11.734693974781342,6.291597222964286,0,22.689075630252105,37.76513275916651,67.66071270303075,32,70.98265693265881,44,75.86352573765045,66,90.31190111723407,64 -8060325210,104,0.4674173976889202,12.169312160619803,14.70898492512388,0,21.84873949579832,36.9667468479901,64.06305314023663,46,52.466583992329085,76,78.87580110637589,64,89.12546274318103,65 -8060311330,104,0.06553099206641709,11.330049388951444,13.962866833996696,0,23.529411764705884,35.22143695468591,64.44749691149661,44,51.768505605260934,78,74.19139888995409,68,86.59447804892596,66 -8060315650,104,0.6295571048039564,12.637362489324962,13.45112289676049,0,21.008403361344534,34.50720539191475,58.95490953747709,55,50.46465435229185,80,75.2831301245547,67,86.2785138768584,67 -8060328010,104,0.28377376152077455,11.330049388951444,11.133264210753545,0,23.529411764705884,35.82335203214915,66.67673867090198,38,55.853562529045114,69,72.46632073130482,70,86.08278658709153,68 -8060328810,104,0.5173242262128777,11.330049388951444,9.75511819537877,0,23.529411764705884,35.82335203214915,67.13226121389727,35,57.82373181538359,66,71.43735180412546,72,85.7160343564679,69 -8060328070,104,0.0883307016247631,11.330049388951444,10.50816811569379,0,23.529411764705884,35.82335203214915,67.18472977832786,34,55.98323319320568,68,71.5490212417776,71,85.50050942975041,70 -8060307380,104,0.1530782769257064,11.734693974781342,16.000331989512024,0,22.689075630252105,32.87524453499794,58.03049716442786,56,46.4091223950098,86,73.8474266847981,69,85.28935365583372,71 -8060311240,104,0.70765579418808,11.330049388951444,8.546083453097518,0,23.529411764705884,35.22143695468591,66.51376379982455,39,58.81300069386386,63,69.7346447214073,77,84.7722766962461,72 -8060327190,104,0.5285183617093498,11.330049388951444,10.1470993845067,0,23.529411764705884,34.41261356934466,64.5047251934349,43,55.81426491815698,70,70.02208406015072,76,84.51673540825644,73 -8060307300,104,0.4206948243149187,11.330049388951444,8.53127344439528,0,23.529411764705884,35.22143695468591,66.80812977404882,36,58.100398011492274,65,69.29080454135371,79,84.36883958415147,74 -8060325830,104,0.00381251729050581,11.330049388951444,10.31642853030366,0,23.529411764705884,34.41261356934466,64.94476646495525,40,54.314867469065746,74,69.40693495986574,78,83.8772584311651,75 -8060327140,104,0.10835639151649344,11.734693974781342,11.197287949927237,0,22.689075630252105,33.92238195352009,62.273275628636135,50,52.32046197691065,77,70.33139440292787,74,83.87324880546932,76 -8060315230,104,1.3014549432922935,12.637362489324962,12.53465304603705,0,21.008403361344534,31.16086141258027,53.00004924293807,65,49.180239120037356,82,71.04461646086551,73,83.40121479451037,77 -8060303080,104,0.00549777985299295,11.734693974781342,8.514541308149022,0,22.689075630252105,33.805492195173436,63.51696416855545,48,54.60610261368781,73,67.34373551306916,81,82.27303153366628,78 -8060302950,104,0.3634925388366651,13.142857146612243,10.421882301667631,0,20.168067226890756,30.66174214444004,52.74169647556441,67,47.53486684199751,85,67.53520496373304,80,80.63764122313404,79 -8060314130,104,4.921276519736399,0,14.721208676549336,5,22.689075630252105,35.431306071683366,76.82036326149057,12,69.02925444007602,47,78.539346488952,65,77.2727930018373,80 -8060311100,104,4.8435591376262055,0,12.717702608883432,0,23.529411764705884,35.22143695468591,72.75510520634006,17,64.18124481228756,53,65.49804811045439,82,71.79424996490135,81 -8060298910,104,0.13605111228406103,0,13.482235621491146,5,22.689075630252105,35.431306071683366,82.225075196472,6,58.13823750880153,64,70.14606921816178,75,70.0492623599509,82 -8060308670,104,1.1745698543381191,0,10.027187383259918,5,21.008403361344534,32.58730609693733,76.35406376964002,13,59.22713776070192,62,64.56660074734913,83,65.23031584481285,83 -8060294970,104,0.03657912367461094,0,20.44823673947518,0,21.008403361344534,33.18545197061021,67.6827463572684,30,39.369251079376596,89,63.409368479557614,84,64.46845620269123,84 -8060315160,104,4.7374938375700895,0,16.537272886124953,0,19.327731092436977,29.08119779532928,56.21512570403199,58,48.72751830772657,83,61.22014699551124,85,63.215735559149444,85 -8060298840,104,0.7539169409631781,0,15.8342597182498,0,21.008403361344534,33.18545197061021,69.27239705059253,26,45.801596056054386,87,59.86787029336039,86,63.15145879738629,86 -8060294870,104,0.00780561724733505,0,16.565350272547203,0,21.008403361344534,33.18545197061021,69.65296309715967,24,43.17920005326799,88,59.48346326203673,87,62.48730292642037,87 -8060306950,104,0.8255412750284993,0,9.3250816921668,0,21.008403361344534,33.18545197061021,72.45536172956871,19,52.492333440582044,75,53.4657765175521,88,59.995717847195124,88 -8060306940,104,0.4060789435988943,0,9.844442789441205,0,21.008403361344534,33.18545197061021,72.6151435123611,18,50.90968410782329,79,53.358007047180934,89,59.676502418067486,89 -8060258570,105,0.01433548863249701,36.50793648185941,8.448257610125482,0,29.41176470588235,44.320700039774984,61.05393998893642,84,75.7496573124154,30,112.79101868944154,8,144.90759470577115,1 -8060261430,105,0.00206784073908313,36.50793648185941,8.165953344803693,0,29.41176470588235,44.320700039774984,61.20735976949072,83,76.00086451679806,28,112.4903732849742,9,144.74951210882293,2 -8060261410,105,0.22480289028177677,25.93984949312567,13.544647462074805,5,31.932773109243698,47.529016301763555,83.57057013429507,54,83.82014797731352,12,119.39003809839387,1,139.10075221218355,3 -8060261290,105,0.01045615303111503,26.640926621897407,13.420178906219824,5,31.092436974789916,46.50632790868032,80.48104189415302,60,81.42622297929071,20,118.52574218280043,3,138.16498358083322,4 -8060229150,105,0.41649148429385746,35.20408159577259,24.401933697435933,0,22.689075630252105,37.86254089112206,36.30647480569501,120,46.449537255548854,90,119.31680076191593,2,137.86819556887113,5 -8060269310,105,0.11064213462413974,27.3809522792517,12.684765848456555,5,30.252100840336137,45.0783188438737,76.64421626668775,64,79.97091794557758,21,117.04686397562006,5,137.02391127904374,6 -8060229140,105,0.01805910557651306,29.87012990853432,17.98668242862862,0,26.89075630252101,44.779403788438394,61.84856367931023,81,63.68166685218884,62,114.37939185008612,6,135.45032933759043,7 -8060245940,105,0.4605618104506689,31.797235180513496,14.123241958153766,0,25.210084033613445,41.29413511398192,53.5577478495093,95,63.080573275941596,65,109.1532012329694,12,132.49638826917078,8 -8060245770,105,0.4670033750985234,31.797235180513496,13.299499598105598,0,25.210084033613445,41.29413511398192,53.96317746488553,94,63.92064425335293,61,108.33908954006687,13,132.09340703130775,9 -8060246110,105,0.00959921480804385,32.857142866530616,10.838619080359583,0,24.369747899159663,41.147792488209575,53.393712717747704,96,64.29931485393942,60,106.37017426880819,14,131.1881929679975,10 -8060246160,105,0.0130984344005491,31.797235180513496,10.869855109471692,0,25.210084033613445,41.29413511398192,55.63190464990046,93,65.19969249696175,57,105.23081995976648,16,130.2521548914574,11 -8060252780,105,0.04702249617668442,31.797235180513496,10.475449489866511,0,25.210084033613445,41.29413511398192,55.79518339792692,92,65.68009166851108,55,104.88713359317742,18,130.1017703569567,12 -8060272020,105,0.16518159793579384,28.16326540804665,11.924411569451188,0,28.571428571428573,43.685599019424814,66.41419984673627,73,70.37920411891491,41,104.92463436564168,17,130.0798521773768,13 -8060252880,105,0.1371917896444914,31.797235180513496,9.078229967607946,0,25.210084033613445,41.29413511398192,56.403623865588386,91,67.30587986490897,51,103.62472455557892,19,129.52760238093006,14 -8060262310,105,0.14398745150707748,29.87012990853432,10.684682659572296,0,26.89075630252101,41.787498256615805,60.240534642829076,87,67.81232388155519,48,103.39734297642093,20,128.98121643485425,15 -8060258460,105,0.03910881762257473,30.80357143737245,9.350471969791965,0,26.050420168067227,41.27791351781351,58.271121301747925,89,67.52361456064168,49,102.4496326410625,21,128.53075768020489,16 -8060316110,105,0.7972808080920266,21.19815667748519,13.36460324146165,5,26.050420168067227,50.8137375840636,88.05709710450051,42,83.00603797257945,17,118.20608205841991,4,128.51006628219417,17 -8060261310,105,0.00218477420824664,30.80357143737245,8.024381609335723,0,26.050420168067227,41.27791351781351,58.97109052539038,88,68.75610676453601,45,101.0683378091409,22,127.8167539785226,18 -8060275110,105,0.00232604702087595,31.797235180513496,8.02233268285805,0,25.210084033613445,37.57251603371893,50.68139539481044,102,63.6780192471976,63,97.55540160504106,31,125.09190772842695,19 -8060226210,105,0.6275584608285112,24.33862432123961,22.61735936670011,0,21.84873949579832,35.63838854480367,44.28346675223259,116,44.42850651775868,94,100.97872519670452,23,114.28270644812224,20 -8060226220,105,0.05035976862724017,23.469387620991252,19.781622431196485,0,22.689075630252105,36.07997207633551,48.83263878908294,104,47.08419241421265,87,96.73149368028884,34,111.75657059882053,21 -8060279900,105,0.07843239096872423,19.327730962665065,7.907418786760245,0,27.73109243697479,42.25507465330583,74.93389997478774,66,70.93072198368702,39,87.54928015896058,49,109.48229371270415,22 -8060203090,105,0.4140280085962464,25.274725307221352,9.036807462297308,0,21.008403361344534,36.437384991280105,50.78803429881623,101,57.637618356808915,75,89.31755827747247,45,108.87258460080665,23 -8060260870,105,0.00291254232966421,8.880308873965802,16.155064669604428,5,31.092436974789916,48.29389876267541,101.72469069539177,28,79.2776628906086,24,100.68702949298986,24,108.74845391319828,24 -8060201890,105,0.00469592909572888,26.28571429322449,9.605046257871994,0,20.168067226890756,34.4965054832661,45.630928480252955,113,53.011323858150654,83,88.06642336227912,48,107.66405285046082,25 -8060279860,105,0.00947675624770132,20.53571429158163,7.725888713009122,0,26.050420168067227,39.85879879538609,67.9729657256954,71,66.56179538244653,53,85.72217661397947,53,107.43405163577103,26 -8060275180,105,0.00253503739185191,21.19815667748519,7.81771225861636,0,25.210084033613445,39.090197573542504,65.04631250327552,78,64.77054135893698,58,85.66302018359805,54,107.07592355953622,27 -8060254850,105,0.00716789079415308,8.880308873965802,12.043301396163658,5,31.092436974789916,48.29389876267541,103.77631698364766,24,83.40021297759888,13,96.58162831430258,35,106.69844504245829,28 -8060269450,105,0.02098996053326688,9.12698420260771,14.622102393192634,5,30.252100840336137,47.328446692046896,99.7050253609101,29,78.9103087140076,25,98.25052109876415,29,106.65337114550667,29 -8060231560,105,0.00767565026647958,9.12698420260771,12.123755222884968,5,30.252100840336137,48.366384453662135,102.74826430758384,27,82.58583304451568,18,97.07424807950053,33,106.42376036888496,30 -8060264660,105,0.11837163838950196,8.880308873965802,11.78114405438283,5,31.092436974789916,47.8000132071386,102.94885090563619,26,83.36805907407265,14,95.84717058812987,36,106.22695205140022,31 -8060009570,105,0.0512533048607821,0,30.169753729486303,5,30.252100840336137,55.72286304146069,116.34260557559969,8,72.47227516068943,37,112.94235605878785,7,106.13057494555599,32 -8060009560,105,2.3805547630320603,0,14.306352956707684,5,31.932773109243698,55.144281523172666,122.63302607146969,5,95.245844778497,3,99.81338689898223,26,102.51561211857464,33 -8060148430,105,0.00945750091823057,0,9.80897605308346,10,33.61344537815126,53.6791863174044,132.04487493018993,1,100.95416036049123,1,100.5270132530477,25,102.210171929247,34 -8060164290,105,0.1364727652190345,0,19.76397975859792,10,31.092436974789916,49.86769825681129,117.88012170099394,7,84.35338110670922,9,105.743930626588,15,101.03046987737892,35 -8060183170,105,0.02581330629616192,0,9.697586322227547,10,31.932773109243698,52.59987858161797,128.55181375053735,2,98.1671455288173,2,99.04460820418811,28,99.41706955070997,36 -8060297380,105,0.01263860772637995,14.935064789981448,12.914467928858404,5,18.48739495798319,40.595281756711394,70.86175981751913,68,61.46071521210069,69,95.30499828519606,37,97.93830521651759,37 -8060122100,105,0.00765188478367321,0,21.32800646809589,5,29.41176470588235,51.87957107952563,113.37295201746579,11,75.87932113540559,29,99.06631634162974,27,96.96589931293566,38 -8060122010,105,0.01367449669247698,0,10.639220142481722,5,32.773109243697476,52.6883083391976,123.46018741674894,3,90.88824542267062,4,89.43217440778919,44,95.79989969708257,39 -8060112350,105,0.2047159559022374,0,11.087810574575563,5,31.092436974789916,53.487068522013686,122.73458148503059,4,90.1751374865949,5,91.19912791892611,40,95.40593732956732,40 -8060148510,105,0.02877214978586822,0,13.632291397103378,5,31.932773109243698,51.41201204613901,118.918524120788,6,85.6040964867442,7,90.79765702754551,42,95.20063902445335,41 -8060231700,105,0.01309179516186595,0,25.18613543794713,5,29.41176470588235,47.881941344069865,104.57986359410293,22,67.37108034778363,50,97.76392583613473,30,94.90484163102701,42 -8060292670,105,0.33610252414614133,18.25396840521542,8.38188499783122,5,15.126050420168069,35.752031365418496,57.48306504818373,90,58.07801353278132,74,89.2683856838324,46,93.99848492723682,43 -8060009470,105,0.0153280740506949,0,20.029648254080325,5,26.89075630252101,51.46315131541565,110.77901069558905,17,74.19030613514326,34,97.24103334859171,32,93.3898858743228,44 -8060297840,105,0.00939381627033713,18.25396840521542,13.344168234413749,5,15.126050420168069,32.077580165539715,49.02451345267504,103,48.000701977926354,86,88.99140703097586,47,92.35428776238179,45 -8060292590,105,1.1986660797528346,19.327730962665065,9.204354821577049,5,14.285714285714286,29.015017564500667,42.62934867822804,117,50.83133666867349,85,84.05285225602333,57,89.99135035918331,46 -8060170630,105,0.00276678286871585,0,11.945012518095842,5,30.252100840336137,48.404265393867085,112.947218064524,12,82.03574475460513,19,85.18269424097699,55,89.63269090399757,47 -8060196780,105,0.06123065503631305,0,13.309330081379413,5,29.41176470588235,47.881941344069865,110.47012741251234,19,79.36991211659122,23,85.9590920208875,52,89.03287493582778,48 -8060194580,105,0.00729126013059635,0,38.37656908727928,10,20.168067226890756,39.149951701801236,79.39060133078914,62,41.98492428832303,101,110.30609454134968,10,88.51636607115441,49 -8060252610,105,0.04662824335109169,0,10.10950218000627,5,30.252100840336137,47.820898914711066,112.82025169318499,13,83.3018445691657,15,82.65850877209641,58,88.19210204062537,50 -8060009460,105,0.03543904153445814,0,12.3575232054567,5,26.89075630252101,49.392010909710784,111.04158401419573,16,79.49707967453128,22,86.92113774449099,50,87.51043789943077,51 -8060112340,105,0.11314955975589457,0,9.019746933462626,5,27.73109243697479,50.04003326635293,114.5848855204714,9,84.62820529131288,8,84.53739215432827,56,87.43715580230133,52 -8060194590,105,0.05469861191412224,0,9.457636475459488,5,29.41176470588235,47.881941344069865,112.4025062585945,14,83.20504775273629,16,82.09763247508653,60,87.09801332222408,53 -8060243400,105,0.2097049836227204,0,6.839501821566529,5,29.41176470588235,47.881941344069865,113.55656721383238,10,86.21610553491384,6,79.71124505233823,66,86.0028688159614,54 -8060164230,105,0.00106176819084619,0,41.64488930254123,10,18.48739495798319,36.497941515272046,71.53204362014509,67,33.92612888216172,111,110.13623950023714,11,85.80924646071684,55 -8060252760,105,0.16778494081603887,0,7.452061989682756,5,29.41176470588235,46.74811068810728,111.34693626403791,15,84.17448050074991,10,78.79516845207412,68,85.11746479131469,56 -8060261020,105,0.01522336214179695,0,12.70641876468554,5,28.571428571428573,44.653606655458375,104.43852098040512,23,75.2494736909822,31,81.11338754394119,62,84.59925422666524,57 -8060254970,105,0.19393659122108212,0,7.1534209975240515,5,29.41176470588235,46.226003100825544,110.5743446226168,18,83.93028736730045,11,77.86057812719167,70,84.48212835217774,58 -8060009900,105,0.00779551948308709,0,26.494821522189465,5,22.689075630252105,43.39640509877456,89.51246074805375,41,54.09315412540016,80,93.26521234807797,38,84.34365001248494,59 -8060264760,105,0.04529044263025787,0,11.334814020739744,5,28.571428571428573,44.866185578726075,105.45896999084522,21,76.9453037316064,27,80.0615850667926,65,84.16752607003687,60 -8060009890,105,0.05291160277717899,0,19.86042226874773,5,22.689075630252105,46.39152477097814,97.92315924716476,31,64.33622368817373,59,90.5707432972213,43,84.08383433581696,61 -8060287650,105,0.07690943963559145,20.53571429158163,8.319020106622647,0,12.605042016806722,28.28001590999489,34.298303858340155,123,39.185639815994705,103,71.44557782753638,85,82.79951950150667,62 -8060125380,105,0.00275080944694391,0,10.722923142764577,0,26.050420168067227,51.03272913233707,108.2411551178982,20,74.87265399511566,32,76.70874622168863,72,82.4484072377654,63 -8060109640,105,0.00898772758610639,0,12.690437668477356,0,25.210084033613445,49.49401450595617,103.77090958803153,25,70.28544613309779,42,76.69613623733565,73,81.06172125124613,64 -8060283050,105,0.01290988467921934,14.28571433265306,9.015950988117078,0,18.48739495798319,30.819932950735843,51.12883167097506,100,46.65123366329145,88,67.28151490074274,96,80.02359648848086,65 -8060306980,105,3.513044455136954,0,10.08887579375767,5,22.689075630252105,42.39634827736424,92.49442453964195,39,78.21776536031693,26,80.80689833494007,63,79.9781810751593,66 -8060282950,105,0.00444007722965618,13.690476303911565,10.098061118036911,0,19.327731092436977,30.37104380930734,51.32120204532427,99,45.81468252340705,92,67.00398562309321,97,79.85313972632784,67 -8060243490,105,0.00418442847352491,0,22.15346638581462,5,21.008403361344534,41.675095175862275,87.05288999349126,45,54.736488386988164,78,86.69292631310961,51,78.76600662008889,68 -8060286910,105,0.41942931928244126,0,11.3642385074884,5,26.050420168067227,41.399712960230495,96.60181286656857,35,71.29905133437764,38,76.16847384966707,74,78.71110280005615,69 -8060197650,105,0.10413395599143074,19.327730962665065,10.84525632797562,0,13.445378151260504,24.02542925233052,27.877643605263742,127,32.50440100106465,113,66.95590110793582,98,78.47132328228706,70 -8060197790,105,0.03097591379579848,18.25396840521542,9.94294145464621,0,14.285714285714286,25.3575013731841,32.70882041742969,126,35.52620880650605,108,66.28360800935127,100,78.12304469340475,71 -8060303200,105,0.01835982126134639,13.690476303911565,10.473432546549155,0,19.327731092436977,28.22887664071823,47.44436038454141,109,42.97540099741963,99,64.6304975272752,104,77.91786877846393,72 -8060202910,105,0.01437548351563394,18.25396840521542,8.500168636932043,0,14.285714285714286,25.3575013731841,33.44680725656694,125,36.92690146374259,107,64.81601618767726,103,77.37874818845967,73 -8060270520,105,0.09559394991264832,0,8.087099166004057,5,26.050420168067227,41.86161603756811,99.35668776466699,30,74.29419259334563,33,73.00438210627614,80,77.08751409055301,74 -8060309340,105,1.398509745135267,0,9.359780668787124,5,22.689075630252105,42.39634827736424,94.9735068121289,36,73.58676087156226,35,76.9164004959998,71,76.69538425226446,75 -8060270510,105,0.05490128238253235,0,9.829355394369497,5,23.529411764705884,42.61605773055288,97.29961134936426,32,70.80795875628442,40,75.66123922588667,75,76.13591593057325,76 -8060010040,105,0.00491130620728764,0,25.938219607170364,5,15.966386554621849,42.188999973084606,80.99945696491669,59,46.51111650620354,89,91.1432088423631,41,76.1312743783198,77 -8060196880,105,0.00496908002831658,0,35.90168074359991,5,18.48739495798319,34.64453042269964,65.59491240003959,76,30.266929080937963,114,91.35229067408483,39,76.08962353261236,78 -8060297330,105,0.04541015954120633,0,11.03192046327289,5,20.168067226890756,44.75822489914199,97.02171160243383,33,68.7191852868027,46,79.61928497080167,67,75.50492248735276,79 -8060309320,105,0.35102685187033755,0,17.312558791236583,5,19.327731092436977,41.735572920398155,87.5495885059688,43,58.84648629408041,72,82.44877001869736,59,75.2040322311704,80 -8060298780,105,0.7771185097873691,0,11.205139929454075,5,22.689075630252105,39.78003800721,90.1835126042522,40,67.1138851022366,52,74.45002473843965,78,74.14417747316267,81 -8060286860,105,0.2545795760377861,0,6.6130082552741145,5,23.529411764705884,41.59814275161739,96.96170791440834,34,73.34289967596489,36,71.42733540890195,86,73.78540149776813,82 -8060298770,105,0.19529299227814015,0,13.564359829134302,5,21.84873949579832,38.86059959700509,87.16794589754971,44,61.36679089010756,70,74.75059894522911,77,72.76104101028835,83 -8060104840,105,0.00404705256525946,0,15.995246275877934,0,21.84873949579832,41.921573826795715,85.77034777439903,50,54.77225482551414,77,70.20292775755075,91,71.77352175932216,84 -8060299220,105,0.3287222134112228,0,9.06737552905711,5,19.327731092436977,42.43521741600931,92.89483870533726,38,67.85138180287498,47,75.07483035678486,76,71.75030267609893,85 -8060302220,105,0.04566518318648289,0,17.73360745091645,5,17.647058823529413,40.05422386012194,83.07912579056378,55,54.00913513889459,81,80.23941250237964,64,71.63110849450268,86 -8060155680,105,0.0058719902758984,0,17.391223487430647,5,18.48739495798319,39.07040172737086,82.44254021167401,56,53.94319163171171,82,78.565521999289345,69,71.26151230705194,87 -8060296400,105,0.1099349368170408,0,7.421659951356528,5,21.84873949579832,40.43411557474858,93.02427648504033,37,69.12888666334747,43,70.51472667849191,89,71.14540520789575,88 -8060159800,105,0.11944369545973024,0,18.89716838345718,5,15.966386554621849,40.42334941279559,81.37618946721776,58,51.78256836528146,84,81.99053159800839,61,71.00316326826466,89 -8060303960,105,1.2131961925364614,0,10.26261349642106,5,21.008403361344534,38.12943917268027,85.70615509758152,51,65.555446845139,56,72.02536260115045,82,70.94346981944628,90 -8060306890,105,1.5119070103777117,0,7.513142074275118,5,21.008403361344534,38.12943917268027,86.78217999081323,46,69.06211545669649,44,69.72248833617044,92,69.98098206964744,91 -8060304100,105,0.9610715172137844,0,8.89858384087125,5,21.008403361344534,38.12943917268027,86.6402946006791,47,66.28036976556854,54,70.28438589003625,90,69.91350012301339,92 -8060155780,105,7.800686854082073e-4,0,11.226743262445826,5,19.327731092436977,38.66425216847795,85.6733927514595,52,60.461259409960604,71,71.86830627215316,84,68.60643145751816,93 -8060157910,105,2.184821935431244e-4,0,9.930102271098814,5,19.327731092436977,38.66425216847795,86.32227483362487,48,61.75647684485149,68,70.57082566296913,88,67.95733592166357,94 -8060299210,105,2.179176824273575,0,10.60669793339857,5,16.80672268907563,37.14756520256832,78.68188707696697,63,62.31281068221962,67,72.54417364339272,81,67.2650980864131,95 -8060302210,105,0.06951804023742066,0,11.917540319402066,5,16.80672268907563,37.14756520256832,80.13612466800137,61,55.65422858784541,76,70.70090322441102,87,65.00899923809799,96 -8060316070,105,0.17483904173289128,0,6.406345110658093,5,19.327731092436977,36.9032825481685,84.88830304789545,53,63.66841226198054,64,65.0313313461437,102,64.67547989606362,97 -8060296490,105,0.01284802755166929,0,9.634676055378474,5,17.647058823529413,37.0605472713547,82.0252695326368,57,58.53225617395154,73,68.22080461406301,94,64.54267556331209,98 -8060160210,105,0.0189693197095562,0,6.745936239543014,5,16.80672268907563,39.07722029660775,86.08311260184689,49,62.94896181530386,66,67.94863226035886,95,64.28309048333459,99 -8060105550,105,0.0083782071029009,0,21.362437931626165,0,14.285714285714286,39.09313029149384,70.66674064904797,69,38.553166141626654,105,71.91961734415715,83,64.071626227032,100 -8060259990,105,6.904543253342658e-4,0,21.455384432617624,5,15.966386554621849,31.810419850410177,65.43895312131794,77,38.874908835578765,104,73.23529288865592,79,63.50545151079435,101 -8060104850,105,0.00606288205588007,0,20.82988836459642,0,15.126050420168069,36.6910799357619,67.65455881186813,72,37.11779068165256,106,68.2779249083843,93,62.2404418641424,102 -8060265470,105,0.00750998307494956,0,9.235617954821036,5,16.80672268907563,33.67009489175521,75.57292797661356,65,54.12191904181016,79,63.430150501602256,105,60.10499101452127,103 -8060158000,105,0.00395091723754908,0,14.298630662599006,5,12.605042016806722,32.210921075061094,66.33984999825401,74,43.14583439090053,98,66.60123354314734,99,56.970731046504206,104 -8060125280,105,0.0018555020773368,0,11.09568135078903,0,16.80672268907563,34.31363795020821,70.12765354906944,70,45.74832242887283,93,55.46356313127943,111,56.67076207546382,105 -8060265410,105,0.02773241067232413,0,12.25176915832652,5,14.285714285714286,29.23962925700995,63.922437129592154,79,43.46714436358813,97,60.748257091463124,106,54.68950135833572,106 -8060241570,105,0.02463053586842354,0,24.357091732144585,5,13.445378151260504,23.933178021478497,47.92846139098892,108,24.322762988584813,121,65.98807586427787,101,54.59109440731749,107 -8060303240,105,0.15852485263860108,0,8.617305739748634,0,19.327731092436977,29.77441900107961,65.94341199346304,75,45.849089588931,91,47.35053189473008,118,53.629581606172685,108 -8060293820,105,0.07329711698517634,0,11.720530188791065,5,13.445378151260504,27.581112563213825,60.456700626646644,86,41.33861228818907,102,58.14079627645613,107,51.987912463532666,109 -8060293870,105,0.13515156450381322,0,9.672530671050025,5,13.445378151260504,27.581112563213825,61.418845937998526,82,43.54340563801224,96,56.18527422779213,110,51.04927743992542,110 -8060297770,105,0.09399050946280586,0,8.731539962490583,5,13.445378151260504,27.581112563213825,61.930502347319255,80,44.38005785821191,95,55.18274436808941,112,50.52197610470675,111 -8060305580,105,0.18953372125420623,0,8.200090812994693,0,18.48739495798319,27.1971974692238,60.85903172923729,85,42.49781380365754,100,43.64751255536253,119,50.04621152140811,112 -8060241560,105,0.0339844216464145,0,16.63483421582441,5,12.605042016806722,22.328541394397423,48.186885000045606,107,29.35631931830936,116,56.20512147424736,109,48.29790209650167,113 -8060258800,105,0.0017957306126216,0,22.635006281243815,5,12.605042016806722,19.001079606795848,39.510185748074946,118,19.392513911788505,125,57.854995991861,108,47.926103034979455,114 -8060105600,105,0.00514022084039818,0,19.553413428521008,0,11.764705882352942,26.10148303880903,46.76419852226898,111,22.676052527906112,123,53.30847048978026,114,47.64998960536058,115 -8060109650,105,0.00396383552168979,0,15.016183386357609,0,10.92436974789916,28.43343371782487,52.194494477250004,97,29.090573561140268,117,51.78452899770631,116,46.87136561064091,116 -8060160330,105,0.00107343494857103,0,11.236883944776222,5,11.764705882352942,23.543545493656296,52.16297214124104,98,35.24801271295234,109,52.32888097142501,115,45.92817478576981,117 -8060260060,105,0.05371898997786081,0,13.041094517164318,5,12.605042016806722,19.47383374055344,45.06630498095525,114,29.669591590154443,115,48.94995142442601,117,43.673560083558826,118 -8060304890,105,0.00595003324710666,0,12.291730164742402,0,15.966386554621849,21.485311665435542,46.67611819994356,112,28.75593597530466,119,40.07961477211153,122,43.60577488677414,119 -8060258940,105,0.00281180773844782,0,21.36508248332625,5,10.92436974789916,16.61632872497127,34.37203128206275,122,16.2021317160353,127,53.5032770410816,113,43.22712026367485,120 -8060305050,105,0.3993048957792678,0,7.234613398664545,0,15.966386554621849,21.485311665435542,48.81132172045032,105,34.81016157896404,110,35.61059576772111,125,41.620081811754716,121 -8060305540,105,0.01347317982070605,0,8.078833606462977,0,15.966386554621849,21.485311665435542,48.77504333250967,106,32.98790283536368,112,35.877965934611,124,41.50970923073375,122 -8060159890,105,0.00417655558048335,0,10.072522861565808,0,10.92436974789916,23.95265964786961,46.97861530197712,110,28.807203558265087,118,41.04786245679531,120,39.919054851221574,123 -8060286130,105,0.4283851029734713,0,10.379857613904784,0,10.92436974789916,22.735057998425237,44.31174570515105,115,28.154652889306956,120,40.41515091899356,121,39.4405667632628,124 -8060285990,105,0.5427332569927695,0,12.972039854065878,0,10.92436974789916,18.65365726948772,35.89899963827166,121,21.09069573952737,124,37.90133046358673,123,36.813067955201696,125 -8060201750,105,0.00308994801969515,0,10.737426062201411,0,12.605042016806722,18.80220467071993,39.49147934022268,119,23.81135406271221,122,35.051966978191054,126,36.78022412652784,126 -8060287560,105,0.16403608851594983,0,10.931210339346482,0,10.084033613445378,16.952012133556543,33.538326425358015,124,19.345983173672348,126,33.09421079882691,127,32.72803556372206,127 -8060183070,106,0.03514064635991462,0,10.074226111106412,5,31.932773109243698,53.762624072540014,124.72404552696548,1,91.92068586850135,1,90.2882883111804,2,95.7810075094626,1 -8060155650,106,0.00649932750966767,0,13.109512924477857,5,30.252100840336137,49.07475803549444,113.51157449943582,2,81.66294733010304,2,87.21967468459707,3,90.89058499820729,2 -8060152450,106,0.00349366682612944,0,9.954334687288975,0,26.89075630252101,52.46165846199941,111.91660330396263,4,78.15054586006192,4,77.78877298673112,5,84.3344036845539,3 -8060152640,106,0.00143423964076858,0,9.378277164307516,0,26.89075630252101,52.46165846199941,112.20669149263873,3,78.72138297459676,3,77.20963645130205,7,84.04353272717388,4 -8060189330,106,0.00876481502379797,16.428571433265308,10.916720790134743,0,15.966386554621849,31.256321381896715,46.053135958084525,57,42.90663944972617,30,72.50004707494304,16,82.81221219716777,5 -8060010050,106,0.00110056873554304,0,28.64417113363755,5,15.966386554621849,42.188999973084606,79.65029193915484,21,43.795505203354494,29,93.8434630039545,1,77.47899097897925,6 -8060193730,106,0.00294917400802972,19.327730962665065,8.296866423103273,0,13.445378151260504,24.02542925233052,29.25302333968331,71,34.796299249281404,42,64.2562316601637,49,77.05748417371994,7 -8060148890,106,0.00534109318094896,0,12.584511514965955,0,20.168067226890756,43.273367804988936,88.11297128502713,6,58.08269053456824,6,68.54190172583957,26,69.74106198130923,8 -8060147910,106,0.00278662338254478,0,9.905310433208465,0,20.168067226890756,44.22796749815331,91.09289733554292,5,61.86911597444326,5,67.09311140866423,32,69.35253573409932,9 -8060011250,106,0.00551305798005254,0,14.333114470382723,0,17.647058823529413,44.506661018962866,86.83340454361478,8,55.252357169529546,12,71.88532270584427,17,69.32788559661539,10 -8060010730,106,0.00209502096534699,0,25.109796742525138,0,12.605042016806722,43.45985567361783,74.61049980437615,28,38.203720861375785,38,81.30344943749118,4,68.62268738021396,11 -8060148880,106,1.2666818313674528e-5,0,12.715472377452098,0,19.327731092436977,42.7581112563214,86.32847672966571,10,56.49675395627138,11,67.9987058690114,28,68.44359601884003,12 -8060170460,106,0.00448356149745133,0,12.111899568127042,0,19.327731092436977,42.7581112563214,86.62579223964909,9,57.11165996373658,9,67.40181741369844,30,68.14797985344055,13 -8060147790,106,0.01142375154898896,0,11.316650693916946,0,19.327731092436977,42.7581112563214,87.0164764867026,7,57.924501412728475,7,66.61694469248343,34,67.75993350667812,14 -8060150880,106,0.00413215820174672,0,11.015591743983457,0,19.327731092436977,41.57054378089664,85.13683239236015,11,56.82158163339084,10,64.76954343651747,47,66.41177349759472,15 -8060010440,106,0.0021276502065535,0,21.166406237463303,0,13.445378151260504,42.13875788397069,75.15594042662863,25,41.446249457635425,33,75.65202168476054,9,66.17027550379542,16 -8060150960,106,0.04897728236498632,0,14.50764698959187,0,18.48739495798319,39.921240584321744,79.6759756170562,20,50.67868036586243,19,66.19621340280617,35,65.73005211909779,17 -8060155560,106,0.01081368179305721,0,14.084648430583565,0,18.48739495798319,39.921240584321744,79.92563849713227,18,51.00493863504886,18,65.71615713277885,41,65.46588361708487,18 -8060011450,106,5.984933163775619e-4,0,24.7467159693462,0,11.764705882352942,40.66594692880279,69.15979570149017,38,34.463111774241426,43,77.32580477486815,6,64.80483677076772,19 -8060010430,106,0.0028675550303061,0,21.90638122116248,0,13.445378151260504,39.84450988191174,70.84905742160356,36,38.031527377560245,39,73.42680243971265,12,64.24703612920254,20 -8060010850,106,1.8492694441411123e-4,0,16.331259987679964,0,12.605042016806722,43.45985567361783,79.00167827581966,22,46.977415749981844,25,72.52205693551963,15,64.2307829001833,21 -8060162570,106,0.00284102449917816,0,10.937712840990011,0,18.48739495798319,39.921240584321744,81.50707894922293,16,54.13166446545561,15,62.557301767034446,55,63.881412833715096,22 -8060147850,106,0.00250098264015398,0,10.73264731866304,0,18.48739495798319,39.89159463111789,81.55908929759208,15,54.30128107580521,14,62.31339773294187,56,63.748764830809286,23 -8060011310,106,0.00174747845505017,0,28.37135565617116,0,13.445378151260504,36.05819849389839,61.12165724870939,45,27.146350392659173,53,74.99466936271753,10,63.69166615165529,24 -8060010740,106,2.0113790395279033e-4,0,14.516724207361117,0,12.605042016806722,43.45985567361783,79.90892995501954,19,48.79199262319813,22,70.70754539191405,18,63.32353738261509,25 -8060010700,106,0,0,14.435914695297155,0,12.605042016806722,43.45985567361783,79.94953584895548,17,48.872292274063696,21,70.62643516219697,19,63.28285503807313,26 -8060129850,106,0.01475452866843906,0,14.152201185767836,0,17.647058823529413,38.4443330974384,76.51371012457017,24,48.383980599304664,23,63.880064824323995,52,63.187855098665644,27 -8060010200,106,0.0035639573841543,0,18.86521970021323,0,14.285714285714286,39.19162073602667,72.08914039159939,32,41.15308632842068,34,69.54254259561418,21,62.91486345556778,28 -8060011460,106,0.01337827240464714,0,20.751994716433543,0,11.764705882352942,40.66594692880279,71.14437654885823,35,38.49022828112202,37,73.35019033921533,13,62.8251133959943,29 -8060011370,106,7.727599990868367e-5,0,20.351530662397792,0,11.764705882352942,40.66594692880279,71.35790957228085,34,38.85697585589925,36,72.92984020530889,14,62.60652479022781,30 -8060010210,106,0.03260426333373516,0,17.920919563037955,0,14.285714285714286,39.19162073602667,72.53225015423745,31,42.17100026439838,31,68.64166009618647,25,62.482791637272555,31 -8060010860,106,3.179867816802822e-4,0,11.159588489190744,0,12.605042016806722,43.45985567361783,81.587380965227,14,52.149424539686464,17,67.35058437239367,31,61.64513078555573,32 -8060011380,106,0.00190919696813552,0,17.537223831428516,0,11.764705882352942,40.66594692880279,72.76323106679726,30,41.67592639350892,32,70.11827224634456,20,61.20189959146402,33 -8060011680,106,0.00426039203264672,0,27.48327800566536,0,11.764705882352942,35.53838286266266,58.99068262776668,47,25.75367414820235,54,73.43826386743956,11,61.050607474409176,34 -8060010990,106,9.650694264433412e-4,0,9.81222964381744,0,12.605042016806722,43.45985567361783,82.2604133052689,13,53.498423664322075,16,66.00419296861385,38,60.972344395478366,35 -8060011280,106,0.02418309634141377,0,22.60784777326147,0,13.445378151260504,36.05819849389839,63.98097557227787,41,32.96672995811802,47,69.26470456753303,22,60.84087539325628,36 -8060011000,106,0.00277271461301764,0,8.690158188436191,0,12.605042016806722,43.45985567361783,82.81964138777295,12,54.62507729005999,13,64.88482409095417,46,60.41380338173301,37 -8060147670,106,2.237445577307163e-5,0,11.473159441473657,0,17.647058823529413,36.79547908197262,75.03908590029948,27,49.10201502766752,20,59.04714564556846,63,60.17914850501267,38 -8060011270,106,0.02292314400072811,0,13.540716914365037,0,14.285714285714286,38.79765895789533,74.05612708940205,29,46.067040326787115,27,63.73761865733581,53,59.88536771400581,39 -8060126470,106,0.00529443949466763,0,41.79897477029255,0,11.764705882352942,27.13790556281608,37.41941504741091,65,1.6400417238322973,75,76.89428344222125,8,59.809405635952736,40 -8060012110,106,0.0328669764655753,0,19.467637380397836,0,10.92436974789916,38.408026430073136,67.05290051066135,39,36.34941049951876,40,69.17563865927238,23,59.111574270080716,41 -8060011320,106,0.00243147871106983,0,12.942264784729598,0,11.764705882352942,40.66594692880279,75.06018830840378,26,46.27220936369574,26,65.52409405366132,42,58.90514086418513,42 -8060130010,106,0.0131286923026159,0,12.847704235432875,0,15.966386554621849,36.1588726632195,71.56583306077697,33,45.33731346800672,28,59.618198372124326,60,58.56723011905234,43 -8060011980,106,7.902760035482148e-5,0,27.03727198707751,0,12.605042016806722,32.19217000965965,54.31723072308368,50,23.125502033443112,56,68.65958974826654,24,58.31595708524544,44 -8060012100,106,6.988971192643984e-4,0,21.82588487765527,0,11.764705882352942,35.53838286266266,61.82294068668511,44,31.40203930073433,48,67.77554601260815,29,58.216995725116426,45 -8060162560,106,0.01165261756278001,0,15.42964106948448,0,16.80672268907563,33.592817773737146,66.71419231966422,40,40.59824038618393,35,58.88020081957397,64,58.13044266432718,46 -8060011990,106,0.00176631917217749,0,19.89213517654217,0,11.764705882352942,35.53838286266266,62.788748115188746,43,33.33849479263272,46,65.84339219495776,39,57.25159401359218,47 -8060011260,106,0.9421201775993224,0,4.761280555117166,0,14.285714285714286,38.79765895789533,77.5266482354274,23,57.176534282831426,8,56.33245720733699,65,56.764224625999844,48 -8060011690,106,0.00293601315471456,0,18.17558396447588,0,11.764705882352942,35.53838286266266,63.64585402723935,42,35.05801104293381,41,64.12858977127192,50,56.394932691109595,49 -8060011810,106,0.00212128355986979,0,22.788372610571397,0,12.605042016806722,32.19217000965965,56.439638155377224,49,27.379578291334973,52,64.41374371181794,48,56.19432589503605,50 -8060011890,106,2.806173531326396e-6,0,22.28422567253404,0,12.605042016806722,32.19217000965965,56.69383010178224,48,27.878355135532537,51,63.90642947644231,51,55.93932873550682,51 -8060011800,106,0.07017894255239436,0,31.629070978938454,0,12.605042016806722,26.52423433149611,42.22696576315915,59,12.098806550308552,67,66.02795379013877,36,55.04066512952989,52 -8060176270,106,0.00354027346261859,0,16.97839099687605,0,15.966386554621849,30.363088811864316,59.56646821416071,46,34.42057335315553,44,56.24101094456207,66,54.82355676268934,53 -8060152250,106,0.0086314871999834,0,7.230599364447301,0,15.966386554621849,33.813284845729875,70.35464528919742,37,48.20649932658338,24,50.96169061251653,71,53.406883316041416,54 -8060012760,106,0.00278184478221571,0,35.650897545351796,0,10.084033613445378,25.19723585693244,35.48575945414605,69,3.836962887567349,74,68.23330097159756,27,53.110557440603834,55 -8060012500,106,8.942999366731785e-4,0,26.484906670518946,0,11.764705882352942,27.13790556281608,45.080849236855705,58,16.942955981470522,63,61.57363677314126,58,52.14629899527323,56 -8060012680,106,0.00211194311562633,0,33.25776139188997,0,10.084033613445378,25.19723585693244,36.68299743254356,67,6.228400918199913,72,65.83916326023422,40,51.91306483894844,57 -8060012690,106,0.00157155122262711,0,32.77213335541448,0,10.084033613445378,25.19723585693244,36.92635184267429,66,6.712659124062913,70,65.35272729358427,43,51.66950503099412,58 -8060012600,106,0.00204306003588411,0,27.927372083827304,0,12.605042016806722,25.03267231092675,41.586933843483315,61,13.887633215353132,64,60.29590193714209,59,51.60421997738895,59 -8060154140,106,0.00538811277029547,0,24.34181430669828,0,11.764705882352942,27.13790556281608,46.14790160593242,56,19.097439638288044,60,59.437263027852175,61,51.080954681753184,60 -8060012610,106,0.00183199034855027,0,29.688409218207283,0,10.084033613445378,25.19723585693244,38.467953472151976,64,9.797043444170711,68,62.26939253421779,57,50.128002391953444,61 -8060012910,106,6.859333145582468e-4,0,42.174650224300855,0,9.243697478991596,19.13745099153361,20.989096327434872,79,-10.602187827327338,81,66.9190467297827,33,49.469420232725135,62 -8060013050,106,0.00122360615030464,0,41.26721989366843,0,9.243697478991596,19.13745099153361,21.442273819915336,78,-9.693394558576397,80,66.01242026411126,37,49.01644710458043,63 -8060126630,106,0.01617556032090395,0,20.085689749844786,0,11.764705882352942,27.13790556281608,48.26517643680855,53,23.380909120327964,55,55.19726658930385,67,48.96778005718588,64 -8060012510,106,6.471511972865443e-5,0,21.833927286510583,0,9.243697478991596,28.79709074379227,47.73276215574934,55,21.006540105542157,58,59.06662621471112,62,48.95784117876096,65 -8060012900,106,0.00107961832938051,0,40.42050701193875,0,9.243697478991596,19.13745099153361,21.8657742486011,76,-8.84704666922999,79,65.16549210878702,44,48.59289194749214,66 -8060013040,106,4.559970275305786e-7,0,40.30315793909707,0,9.243697478991596,19.13745099153361,21.925527947354293,75,-8.732433147416828,78,65.04652959980254,45,48.5327280693909,67 -8060012770,106,0.0020810553198251,0,38.517215022514065,0,9.243697478991596,19.13745099153361,22.816418806323,74,-6.941216153480681,77,63.26369734974805,54,47.64262802645439,68 -8060185510,106,0.00118322892119182,0,11.167426720156032,0,13.445378151260504,26.929337562628906,54.06214022392824,51,33.69851126856865,45,45.986925118283224,77,45.960062036958206,69 -8060191300,106,0.02236311054900152,0,20.60195827860044,0,12.605042016806722,22.4927552701858,40.871679893155786,63,18.301319438303075,62,49.71693512942599,72,45.42963954266128,70 -8060191160,106,0.00469370207479669,0,20.481830762513464,0,12.605042016806722,22.4927552701858,40.949413059673475,62,18.376657058490316,61,49.57039039935792,73,45.345190401881894,71 -8060154280,106,0.1353133634505022,0,24.14997539413518,0,11.764705882352942,21.092107506108302,35.7413458925556,68,12.565192887579105,65,51.62288360801422,69,45.118545772643785,72 -8060176280,106,0.00373304558229989,0,18.797930875680215,0,12.605042016806722,22.4927552701858,41.7923236595826,60,20.05812179281933,59,47.88505425232604,76,44.50191466556838,73 -8060152090,106,0.021332790534816,0,13.093296769349918,0,12.605042016806722,25.03267231092675,48.98468177022308,52,28.770605753653392,50,45.49066635088606,78,44.21380389391575,74 -8060011880,106,0.01136664271583276,0,22.781558804507412,0,11.764705882352942,20.05568498210127,34.7713494934222,70,12.410259341212335,66,48.72913547018044,74,43.22685726231121,75 -8060185500,106,7.015634331760259e-4,0,11.390042746361614,0,13.445378151260504,23.47994371337943,48.033317681938456,54,29.450381452234183,49,41.74899866455867,80,42.621311458848425,76 -8060129410,106,0.00124279227049001,0,37.503139297027225,0,8.403361344537815,13.64953587238945,13.06854779807007,81,-13.172169100806757,83,55.152882137641335,68,40.80618203124404,77 -8060156300,106,0.00131926135260585,0,35.70413508644732,0,8.403361344537815,11.81472087773584,10.820049877185449,84,-13.513588543757988,84,50.98170620091361,70,38.07197046555409,78 -8060159820,106,1.3290751414196956e-5,0,32.8028092107725,0,8.403361344537815,11.81472087773584,12.27201878562405,83,-10.615573151700145,82,48.07842779214323,75,36.61950517009964,79 -8060193680,106,1.810829698057487,0,12.455771526529784,0,11.764705882352942,14.755383828626648,29.041251351108087,72,21.11379154553718,57,34.240778334236076,83,35.24708433355459,80 -8060177260,106,0.01008296093845287,0,19.335535217409102,0,10.92436974789916,11.913014538163711,21.685233277467148,77,5.512910625222711,73,34.75329553396869,82,32.519067293347646,81 -8060160010,106,3.269399023173547e-5,0,25.926089128946938,0,10.084033613445378,9.136882777430538,12.79676487915166,82,-5.182276066368988,76,37.73948139814327,81,32.18400607601463,82 -8060177370,106,0.00595481835962318,0,16.651628780312993,0,11.764705882352942,11.818853343940004,23.710101928982084,73,8.916834108757522,69,31.941473419075855,84,31.917591804683312,83 -8060156310,106,0.0033655006980319,0,35.992558875903626,0,7.563025210084033,5.045741235297465,-1.7798299465614864,85,-22.534304405040327,85,42.52137722296522,79,30.60969057886679,84 -8060189340,106,0.04826091127283547,0,14.353936016676998,0,10.084033613445378,9.136882777430538,18.534613218004026,80,6.512129968780108,71,26.239433423843387,85,26.464488824274213,85 -7060282770,107,46.04064419935852,64.11149820403186,10.529270512382483,20,34.45378151260504,62.158742389742216,41.769286759117705,8,247.493348120686,3,284.8995149581737,1,302.9551614351807,1 -7060242880,107,77.51548168049837,42.39631335497038,10.416009209641022,0,25.210084033613445,53.444385586424445,-12.45681070715068,18,277.17161675300946,1,250.00913237141745,2,268.5674284037762,2 -7060256690,107,29.406297324994085,67.64705886218486,14.583228917566723,5,28.571428571428573,56.59813558925473,20.190059363463106,10,167.44815712846952,11,229.4969058954522,3,262.06413804534196,3 -7060184430,107,51.2583895780307,51.87969931482277,13.973998564059954,0,31.092436974789916,52.366611739303366,5.622818768144654,15,212.4701843519357,8,225.13058304884856,5,256.30004645926834,4 -7060224740,107,58.81988109567716,50.549450614442705,6.87523136666731,0,21.008403361344534,46.75440475201827,-16.63870310936771,19,221.99399081305273,6,220.3674795690579,7,245.05117556803842,5 -7060224750,107,72.99667466517724,35.20408159577259,9.06081816123912,0,22.689075630252105,51.00289789192568,-6.058730885229295,17,261.10339410003877,2,229.47856076236997,4,243.50521593356467,6 -7060242640,107,64.9257755202926,32.857142866530616,13.342034521437704,0,24.369747899159663,54.27126541280756,9.741281034648807,12,241.66157636670195,4,222.89631685382074,6,235.15357168178969,7 -7060224630,107,54.18686081719163,43.809523712517006,7.96370519011732,0,24.369747899159663,51.08472072276835,5.654705763649261,14,217.01306856879316,7,211.44779179779013,11,234.53655307263483,8 -7060208540,107,50.22670812575142,38.65546225390156,23.158402127264537,0,27.73109243697479,50.22477881430428,9.57295191476841,13,193.7084188981052,9,212.97208535090945,9,229.72082239738478,9 -7060184580,107,64.444495253044,29.87012990853432,20.20064376098493,0,26.89075630252101,48.91186999261321,3.405064787044026,16,229.6024402791362,5,218.25914268574616,8,229.6040885381587,10 -7060282720,107,35.758771412047615,35.52123549586321,18.448392887609835,10,31.092436974789916,56.325067609799696,54.920924864276714,3,186.4610534561332,10,211.78256779926534,10,221.11430674068004,11 -7060208410,107,33.228572737759414,38.65546225390156,34.23603564363192,0,27.73109243697479,47.140378965382375,15.740480924257696,11,135.9440222101399,14,194.64820225666506,13,208.7162741784223,12 -7060224620,107,15.78152104512782,48.67724864247922,25.624801678247277,10,23.529411764705884,50.584042924516794,39.42566953578982,9,115.48008500741383,15,198.6119610893682,12,207.9474052737844,13 -7060203140,107,5.321559388977282,37.91208779654632,32.31842642456364,10,21.84873949579832,50.93995725281595,57.31045240027791,2,80.10913811431409,18,176.26303554508425,16,175.79763780043797,14 -7060259190,107,30.184109875364783,21.90476202054422,28.53212900618154,0,24.369747899159663,53.62577419171544,47.82807318847027,7,136.73962770552316,13,171.20486004549107,17,174.0771201866209,15 -7060256540,107,18.636656335099595,21.19815667748519,54.81167165907246,0,25.210084033613445,55.10723666483983,50.3950472475173,5,83.69845829639313,16,181.22541733825074,15,172.30671608771706,16 -7060259200,107,12.410172144416713,21.19815667748519,67.75242893282973,0,25.210084033613445,55.10723666483983,50.151152801321544,6,54.97428760904437,19,184.8570703793805,14,170.18398305872114,17 -7060075830,107,27.07481283544719,22.66009844933146,17.333390597502877,0,23.529411764705884,52.916799739797135,53.649172239219894,4,138.45213137155196,12,155.41359562924606,18,164.02211254925228,18 -7060202930,107,3.4426131760985936,32.857142866530616,16.857359912251887,5,25.210084033613445,46.59810216489574,62.76755722147213,1,81.43189598350305,17,135.2186699291929,19,150.22607914166105,19 -7060073760,108,35.988679248975025,100,20.626477092579844,0,18.48739495798319,45.10928239499773,-60.42221183670736,45,150.0488644922405,10,261.54349384093024,5,306.91088349023937,1 -7060212920,108,69.2594077173343,39.82683976852196,87.20288190202547,0,26.89075630252101,48.21348320410767,-47.061543722466084,44,174.82038659660506,5,304.3801403149448,1,287.3058038362226,2 -7060269450,108,42.705810882386565,42.85714299795919,27.17014790708713,5,38.65546218487395,72.0129849275033,64.39670864970037,3,214.57615673792412,3,249.97159123801362,7,266.76283369247153,3 -7060217780,108,33.427747501719736,48.31932789951981,100,0,27.73109243697479,48.30354665873396,-25.975324860196068,43,72.84729383326666,29,274.6597303681797,2,260.75339026605553,4 -7060262850,108,45.254676152823926,43.809523712517006,71.32898850378731,5,25.210084033613445,52.08932325700326,-8.906856047676925,38,140.2681081814693,12,273.4078594614623,4,260.7369102188276,5 -7060074670,108,48.79136106303485,37.551020325014576,76.06138729054942,5,29.41176470588235,51.41590837141722,-4.879058720306958,35,147.39528242312048,11,274.49702049269473,3,260.03839775987757,6 -7060194860,108,33.37196961524082,53.281853243794814,51.71317089587423,0,30.252100840336137,46.83804208777218,-7.228213353681667,37,122.21752933023134,17,230.78584608829445,13,246.6864641464496,7 -7060263060,108,66.11160595467706,42.85714299795919,13.773601604881389,0,18.48739495798319,49.70440514159648,-16.37787762504223,40,233.85892830052603,1,232.07495826257323,12,244.8900288998317,8 -7060194980,108,48.04442543412538,45.63492068446712,27.219416573689596,0,29.41176470588235,47.37390382029282,-1.1631443702944608,33,183.0518445606508,4,219.07312497109322,15,240.36505307877337,9 -7060213040,108,57.015921793411025,30.80357143737245,63.896756255640774,0,26.050420168067227,46.79669299392011,-16.51046999289771,41,163.84550201306314,8,249.31631420216203,8,239.95583747849145,10 -7060264650,108,61.53595300030629,42.85714299795919,15.575198060363675,0,18.48739495798319,49.70440514159648,-12.703022898412598,39,220.45858365838296,2,227.03557849775038,14,239.47601196430097,11 -7060263970,108,38.87683006019346,52.99539185799869,19.441180610680178,0,25.210084033613445,51.70235112332263,7.0215253948974805,29,169.0528393625984,7,212.66435348598446,18,237.4447876168379,12 -7060264520,108,41.80416910967023,48.67724864247922,24.21630712446848,0,21.84873949579832,53.15453529556604,5.586694233896864,31,169.67120201281438,6,218.1324182292958,16,234.04658741888028,13 -7060217900,108,41.69241436129055,32.857142866530616,89.46630573000789,0,24.369747899159663,46.543553611000625,-18.345639923613845,42,97.62777240490998,23,254.29342379994577,6,233.4238545182243,14 -7060226990,108,35.8913892987079,39.82683976852196,69.20635788435743,0,26.89075630252101,48.986254384288365,-3.3694486437076847,34,109.13443030207438,19,237.49483217354054,11,233.0294278596912,15 -7060227100,108,46.34584538590883,29.87012990853432,71.13324326863618,0,26.89075630252101,47.85395864434446,-5.777604087519563,36,131.5576379461544,16,240.76497257464064,10,229.03470224020322,16 -7060076630,108,38.05171570753773,31.797235180513496,76.8742858449804,0,25.210084033613445,51.82992435420635,2.666932103080711,32,107.91048756741918,20,241.7281319708793,9,226.2868937451685,17 -7060263820,108,35.45385431463342,41.07142858316327,42.47174258873975,0,26.050420168067227,50.86652650718792,11.4519228118441,28,136.21697569937334,15,214.14000465359118,17,222.37996448655494,18 -7060074540,108,22.09540043980914,48.31932789951981,13.460901787918749,0,27.73109243697479,53.5939542019433,37.70312593610467,18,136.8323520919234,14,178.01796730178484,22,207.13458420601728,19 -7060260120,108,40.2567375440924,31.797235180513496,32.32241770677781,0,25.210084033613445,51.82992435420635,22.73784433562733,25,158.0518296633999,9,200.47295221782076,20,207.05408936000012,20 -7060073880,108,27.60763031265308,31.797235180513496,54.19894938302879,0,25.210084033613445,51.82992435420635,24.44868572894117,24,104.11128198187248,21,203.43803177100182,19,200.53544250315278,21 -7060260000,108,33.77897084441013,31.797235180513496,36.38877798762765,0,25.210084033613445,51.82992435420635,27.182430894884675,23,137.5650840275415,13,194.85452031816203,21,200.14736523163276,22 -7060170140,108,16.10235318949503,45.32019689866292,15.805564464621416,0,23.529411764705884,32.86080126025969,6.0501091454670615,30,90.65572481399599,25,140.73351513472758,23,169.60272753286108,23 -7060168960,108,16.52221369245923,42.39631335497038,13.534253139886369,0,25.210084033613445,35.76889449363875,16.652155416817777,27,98.82112443863195,22,139.08428101057513,25,168.2748296998601,24 -7060165930,108,9.43918434910887,34.58646620988185,21.717181349310607,0,31.092436974789916,46.59236021185414,52.68632133904762,8,90.54244946888147,26,140.61333917887632,24,164.97883787268097,25 -7060169010,108,9.78687123097257,36.50793648185941,18.776516598878207,0,29.41176470588235,44.83209273254163,46.99465209499073,10,90.79026489735713,24,138.39121423318053,26,164.0701006097183,26 -7060142810,108,0.3140259811156743,45.63492068446712,10.42560069052002,0,29.41176470588235,43.3661003466106,48.08812429354886,9,74.1788771575929,28,125.7366430664226,27,162.0880709251898,27 -7060166020,108,3.284840512885798,45.32019689866292,16.436002422958996,0,23.529411764705884,32.83728895254628,18.512063654734142,26,57.506951603239116,39,122.17032127435417,29,152.20510675469743,28 -7060145630,108,0.6935550089478786,39.82683976852196,14.238113789285883,0,26.89075630252101,39.427860054032,42.913527541437446,13,63.72879719206756,30,117.54461272393566,31,147.41071483766012,29 -7060170490,108,10.20465703023762,28.16326540804665,17.079597452276527,0,28.571428571428573,43.44013052689683,53.37599034849184,7,90.38654116816116,27,124.77228552309995,28,146.26736127265087,30 -7060144740,108,0.7915056313524432,41.07142858316327,12.048781701101772,0,26.050420168067227,37.736519120404566,38.7990886633061,17,63.456571229307634,31,114.91782014157636,33,146.20129860889062,31 -7060161180,108,0.4555523877920894,42.39631335497038,13.61804175720216,0,25.210084033613445,35.76889449363875,32.676922412827025,21,58.01021763041575,38,115.14709403796233,32,146.14327741157916,32 -7060140080,108,0.26288918257673,42.39631335497038,12.699876612627053,0,25.210084033613445,35.76889449363875,33.32866819032995,20,58.4400039524682,37,113.94088160952425,34,145.41830218051024,33 -7060145540,108,0.7216901730988728,42.39631335497038,11.152552536775175,0,25.210084033613445,35.76889449363875,33.643529237733745,19,61.15033519034132,32,113.07950262114156,35,145.27782702995648,34 -7060166920,108,15.676784687894209,18.25396840521542,13.268017025946078,0,29.41176470588235,45.915487622402786,65.79709345723182,2,110.97180690837885,18,119.58047276652285,30,137.06225116699355,35 -7060166730,108,4.116078013652523,33.9901478382829,15.671729448588197,0,23.529411764705884,33.138246491277904,31.042358216189918,22,59.78526136001878,33,108.44620346511562,36,132.4993541717182,36 -7060161120,108,1.911701211447453,31.797235180513496,14.70091147999912,0,25.210084033613445,35.76889449363875,42.33832471967577,14,59.73525934141641,34,104.75669765663297,37,129.2626861079585,37 -7060139370,108,0.02275556602599206,31.797235180513496,11.391936899264008,0,25.210084033613445,35.93605941686569,46.16855627073606,12,58.45100209961537,36,98.83972693037288,38,125.16844780482899,38 -7060137710,108,0.11992490254911332,31.797235180513496,10.739191362235772,0,25.210084033613445,35.93605941686569,46.39775970272706,11,59.35006060596966,35,98.33225751614643,39,124.9761775143219,39 -7060139360,108,0.04196071367412466,32.857142866530616,11.002488948242476,0,24.369747899159663,33.84283197908973,40.74656837531769,16,55.69502369541057,42,97.137629804145,40,124.00982918989672,40 -7060140020,108,0.09153815763359714,32.857142866530616,9.999393383303978,0,24.369747899159663,33.84283197908973,41.19853871382746,15,56.82379231596727,40,96.20865658165084,41,123.57670276673804,41 -7060144640,108,0.29936093832250915,21.90476202054422,12.33448016423758,0,24.369747899159663,35.79748849366442,55.22432265006927,6,56.38324631514538,41,87.27634915136139,42,106.9063520323133,42 -7060134520,108,0.14306012008152869,11.734693974781342,11.388455936810503,0,22.689075630252105,31.48717865463135,57.96500056010228,5,49.37619339125227,45,67.42590162921249,43,81.58152378605088,43 -7060137570,108,0.08617569455519047,11.734693974781342,10.374430144595587,0,22.689075630252105,31.48717865463135,58.52889788173607,4,50.24602377922601,44,66.32682895817786,44,80.99600523480527,44 -7060134420,108,0.03364682935370569,0,10.46000184875541,0,23.529411764705884,34.008201876674036,76.61236578493089,1,52.83093623872647,43,54.48050702278084,45,62.81405023522767,45 -7060289200,109,52.66906443462067,69.1729324197637,16.633782261509147,5,47.89915966386555,80.61462822349357,54.755485171996995,44,271.840142063358,4,299.34396988049457,1,341.3357971386276,1 -7060284070,109,46.789863850768555,66.74107144764031,12.39793515548684,10,53.78151260504202,81.52025683277459,78.48876249963294,29,275.15916388828407,3,295.0074601215649,3,338.4336144937802,2 -7060245400,109,27.17368704665759,83.44671205241335,14.306355506006655,10,52.94117647058823,75.84630079089992,68.19959386657561,36,217.45820149055763,10,281.7669044660751,5,336.4284410588356,3 -7060284240,109,60.16829423595202,51.33928572895408,12.148325316610917,10,53.78151260504202,83.51042672879142,85.59156148339164,27,310.3599218576224,2,297.4972161351086,2,330.5258169686695,4 -7060302170,109,62.49729944017827,44.552058012729155,12.35586892184766,10,49.57983193277311,83.40381435385869,86.24014342236143,25,311.16447154449804,1,292.30784455596114,4,317.0922828625412,5 -7060306430,109,46.674013457173665,65.71428573306123,13.222016675259445,0,36.97478991596638,79.18631740439798,47.261061024268784,47,239.9261975933278,6,270.01783656010014,6,307.6626686321266,6 -7060250980,109,39.005841029660075,48.84169897109763,15.553011663423268,10,62.18487394957983,78.78580324742039,108.09651824930992,18,255.994045769683,5,259.937107207746,8,302.1218883703531,7 -7060235660,109,27.168994379013206,75.82417592166405,11.658928795549004,0,42.857142857142854,69.45499525759769,45.613431827752535,48,187.4179647543354,19,239.73154804563995,13,294.6482626777937,8 -7060269280,109,40.31393273708282,59.1428571597551,28.42562090773235,0,41.1764705882353,71.64952554122391,44.51899942601695,49,203.46166606381803,12,257.50485635771497,9,291.1042535397554,9 -7060290770,109,42.20453996483745,62.58503387502429,12.4246744501051,0,34.45378151260504,77.02385687498479,49.340321505945326,46,224.08929421245008,9,255.7122594604391,10,290.67528895037736,10 -7060284140,109,40.094802073141075,52.80612255794461,15.55426065204026,0,46.21848739495798,75.17716103999416,69.23846755669828,35,224.40708590519802,8,240.70591499094814,12,281.31845880034746,11 -7060284060,109,30.358334919362925,55.7951483445129,21.80320039587604,0,43.69747899159664,73.48359201369718,67.13593494533724,39,189.22958062205095,18,234.0578761720543,15,272.2710260508526,12 -7060073860,109,46.397964165949794,52.99539185799869,41.82667184271955,5,26.050420168067227,54.90048004926966,0.2598921576337858,55,177.5540350862326,21,261.0797637887056,7,268.0558440048226,13 -7060289500,109,46.579975503604885,42.85714299795919,15.743655875289546,0,37.81512605042017,78.95310257252758,71.677354544282,34,235.8296733849931,7,242.6601217437894,11,267.4960669675576,14 -7060300390,109,45.561827135671415,58.67346954533528,12.399595295164527,0,22.689075630252105,64.0117539145893,16.20920973794307,54,205.35324959960383,11,238.84525000563121,14,263.3480993817063,15 -7060302030,109,17.11545148689416,47.69585244219881,16.59740176206374,10,52.10084033613445,80.51630499533515,123.61006752679846,9,191.29946145597742,17,229.01527560833762,17,261.97911431808336,16 -7060250990,109,5.067519631245399,42.12454206917844,13.703314381281702,25,65.54621848739495,78.73873952628428,170.50415995017002,1,196.31071841128144,14,230.5858612285828,16,260.3585780213275,17 -7060290680,109,34.99113758843975,50,15.477131109665802,0,37.81512605042017,74.1089538190164,67.23138704965277,38,201.66357277937271,13,228.00332658530493,18,259.62024858176926,18 -7060245390,109,3.0961908217334826,68.45238086241497,12.15207192331521,5,40.33613445378151,66.108869822148975,74.9118075491317,30,126.11392610574714,39,201.06384712120206,23,247.29009535093883,19 -7060206680,109,1.671486924421755,55.69007251591145,25.46871074391588,10,49.57983193277311,68.32437513302472,102.38648841036934,21,127.20075654817646,37,209.32887487280766,20,245.04383193841383,20 -7060192560,109,0.5109587669733062,51.87969931482277,22.28387108592073,5,47.89915966386555,66.56119815420136,99.00015776013615,22,116.13854909454884,45,186.57173598479255,33,226.42024477723794,21 -7060277090,109,4.554032855783293,39.82683976852196,13.506807937576273,10,55.46218487394958,72.87604151062303,136.62592684753074,6,156.3402724301835,25,187.13167633680135,32,224.39248073296883,22 -7060316050,109,6.841707545505484,61.6071428747449,12.322372328883327,0,26.050420168067227,69.22978578328315,64.05462707348525,41,116.97299290637702,43,191.40303637774292,28,223.8299962913425,23 -7060231030,109,2.6896518225114905,38.65546225390156,14.364973056057291,10,57.142857142857146,73.47609991209393,142.0599106441358,2,153.03924379192262,26,184.46967982347581,35,222.38175397093653,24 -7060224340,109,7.644678095649344,38.98305092542373,21.915366656778392,10,49.57983193277311,68.32437513302472,116.56769303224699,13,144.50319389805566,29,193.18932247746704,27,220.8811646888653,25 -7060318020,109,19.63194031303085,32.31850126637672,15.30226329161152,5,51.260504201680675,70.29385984114224,114.65263074595802,14,177.67563840670903,20,187.81117849895983,31,220.54993562181744,26 -7060316210,109,44.27555323282981,36.50793648185941,15.090899929138237,0,21.84873949579832,62.91771628438484,37.81458205867213,51,195.43754906367758,15,209.65243656843484,19,220.347392926863,27 -7060230950,109,0.1657168470180041,39.23240936835212,16.132236704548383,10,56.30252100840336,72.71240818465772,140.91499846169802,3,143.19086757110813,30,182.21909234894684,37,219.23583563319875,28 -7060179920,109,34.12286625414548,41.07142858316327,25.837541059850068,0,32.773109243697476,51.09153929200522,28.208746743226186,53,156.46248125223005,24,195.80679249766393,25,219.1736816076761,29 -7060201290,109,20.001668756898,41.94528861198437,18.97142588378822,0,38.65546218487395,64.71547585513198,74.05818785351101,32,149.38277003970467,28,186.56854205018323,34,217.36045976082715,30 -7060314300,109,40.78256481169617,33.9901478382829,13.070386611058767,0,23.529411764705884,65.7968419052023,51.7076752097162,45,193.43357933519076,16,202.88951851698806,22,214.46034818227747,31 -7060220090,109,1.2566569279542243,38.98305092542373,26.593589231802316,10,49.57983193277311,68.32437513302472,120.61660291243015,12,123.63208045608363,41,188.31692979849433,29,214.40422866349488,32 -7060192420,109,2.1342306760897443,46.115288170318664,14.353510593262438,5,47.89915966386555,66.48224629987946,107.54746360864749,19,127.6112370321855,36,173.54235804853505,43,214.04828771534523,33 -7060276840,109,1.91735324528521,32.857142866530616,33.53757898182369,15,50.42016806722689,68.7743621796693,130.45977268850768,7,126.46770772930782,38,199.59134161211526,24,213.84753598773852,34 -7060075500,109,47.6427811213987,32.857142866530616,38.95743822754074,0,24.369747899159663,42.652423433149615,-5.717439647259297,56,158.68047586698012,23,207.64988614927591,21,212.4903352128184,35 -7060159850,109,0.43384069464651126,45.32019689866292,14.592368573656074,5,48.739495798319325,67.39803006048541,112.41453712726883,17,124.90458108445463,40,171.39905609732642,45,212.11947721339496,36 -7060224350,109,1.343244213249819,38.98305092542373,20.72828111212451,10,49.57983193277311,68.32437513302472,123.46266968697347,10,129.7168772756968,35,182.5810767676519,36,211.5910728933173,37 -7060206690,109,0.4066733997181224,40.35087735438597,32.90445104445493,5,47.89915966386555,66.56119815420136,106.4758573046047,20,104.29288269285851,48,182.18867551922162,38,210.45043791796894,38 -7060235410,109,2.0922174287700153,50.549450614442705,12.189492277700104,0,42.857142857142854,64.37778370274535,89.5163426409965,24,115.29104701801816,46,163.65501637535573,48,208.89111488452963,39 -7060314820,109,2.0469744058585344,32.31850126637672,21.369992344880387,15,51.260504201680675,69.74390310924895,139.51019190213924,5,140.89044935502707,31,188.17739201235452,30,208.76499906503116,40 -7060214090,109,0.35363675165868635,39.65517236847291,26.98511339050829,5,48.739495798319325,67.47091821439696,112.65494712837696,16,111.9214794002158,47,176.47026374937323,40,207.8921707707857,41 -7060300250,109,37.91093190813516,35.20408159577259,15.452301306910227,0,22.689075630252105,59.906001152662895,41.1059920378806,50,176.16058660698928,22,194.9250656094908,26,207.18256058207942,42 -7060219980,109,0.17782210424551623,38.33333345380953,22.825184555699312,5,50.42016806722689,68.97437354395137,120.62484342399756,11,118.96028879122849,42,172.28897074264876,44,206.33032248403566,43 -7060317700,109,4.524242445140634,31.292516937512143,15.092057861579557,10,52.94117647058823,71.32872809331698,140.0751711680732,4,149.64210631973307,27,175.68064696951222,41,205.42941188813344,44 -7060179090,109,26.577676782635635,42.12454206917844,22.74351838650748,0,31.932773109243698,47.796421999501725,29.648876914234492,52,135.83344577770157,32,178.5280219550131,39,205.0088806084818,45 -7060192440,109,0.12147185067669786,40.35087735438597,20.06337131827306,5,47.89915966386555,66.56119815420136,113.18159871673706,15,116.4110096551912,44,168.92119610004667,46,203.63629410710587,46 -7060201280,109,17.573860272189624,34.95440739570126,24.456995664909392,0,38.65546218487395,60.5430917859211,74.27477727405659,31,132.29263320439028,34,174.02633393450435,42,199.7636495989185,47 -7060314930,109,1.0749086417946183,34.58646620988185,12.392582349467784,10,47.89915966386555,67.34114677568404,129.36753738824297,8,134.17822248775835,33,166.9106813918477,47,196.3285902015436,48 -7060192820,109,0.60908177135755,42.85714299795919,19.47782349749168,5,38.65546218487395,57.52204300145514,85.47803213095776,28,98.65206890583946,49,160.60544295753843,49,190.3284337296625,49 -7060199390,109,1.3128913556624993,34.95440739570126,24.581251520268612,0,38.65546218487395,58.044884078278145,86.18753660545403,26,88.03413629705716,51,146.6091024683176,50,174.8859611332503,50 -7060177100,109,1.1441917617728552,40.069686582877054,15.226163790901866,0,33.61344537815126,50.3143887055667,67.1020339697952,40,83.32693536285745,53,133.59467066125885,55,166.58109622578914,51 -7060177090,109,0.03442361662083858,41.07142858316327,18.052590514232527,0,32.773109243697476,49.10392635945224,62.779591381324124,42,75.5183117294772,55,134.48698309080174,54,166.24845763559483,52 -7060192810,109,4.409120338157098,31.292516937512143,27.77862679976676,0,34.45378151260504,52.95106053103667,72.5797360061882,33,82.23570911265722,54,143.13356914402704,51,164.74875491103603,53 -7060199540,109,0.13965592845193445,31.292516937512143,22.799051774750684,0,34.45378151260504,59.92548277905401,91.30474368885524,23,84.5295142644409,52,140.78822969612196,52,163.34114238428253,54 -7060179080,109,8.189033067947026,33.69963385248561,19.431637174750147,0,31.932773109243698,47.796421999501725,58.96086027316387,43,91.8301777023843,50,136.87335054181364,53,162.5292824817431,55 -7060179770,109,0.9414187391182952,25.93984949312567,31.755133826294102,0,31.092436974789916,47.87712220490998,67.88060726537766,37,59.74198688168755,56,128.47174768959485,56,143.70275988649325,56 -7060159950,110,0.38783645245801857,34.2261905954932,14.97841775390555,5,40.33613445378151,58.776066821978525,101.27518206510821,8,105.0150975181945,2,146.28100094059369,8,174.8846756471639,1 -7060134090,110,1.450456251890042,37.337662467810766,14.054010350586628,5,36.97478991596638,54.33469876904163,86.27091308396862,37,100.34947127575009,7,145.210121004526,12,173.7906359419052,2 -7060134100,110,0.6773564116668154,37.337662467810766,12.894347469678626,5,36.97478991596638,54.62913698608907,88.12900101654412,30,99.8929272102445,8,143.27529828942346,15,172.43829497520417,3 -7060132870,110,0.565575665811998,42.12454206917844,12.933837658899447,5,32.773109243697476,49.75457521624918,70.39068486744648,80,90.08032305774138,12,143.01012409754696,17,172.00347601836225,4 -7060237380,110,0.3390851491681983,23.469387620991252,47.68267367992649,15,35.294117647058826,53.91540103739659,94.67300912694873,16,75.07806890381329,25,180.07491917041528,1,171.54603435519357,5 -7060271090,110,1.1033799157534967,24.64285714989796,37.177882600840505,15,33.61344537815126,50.52900732996195,90.37971194512085,22,81.9865825445361,19,167.84573030725375,3,164.43272958713894,6 -7060022240,110,0.6680048688275565,32.857142866530616,18.58670762765177,5,33.61344537815126,49.4925848059549,78.04680877566327,57,84.44949659715087,15,136.54211219281288,27,158.5593864251495,7 -7060254310,110,0.4426046976288554,15.282392061509254,65.27096174311797,5,36.134453781512605,55.49998216072001,87.08998344691192,33,45.25895534052038,89,168.02236582711225,2,157.89847013067683,8 -7060252700,110,3.788844745616088,20.972644305992183,22.717132392326587,5,39.49579831932773,57.63286840524063,105.78203841091195,5,102.61901362540883,6,140.5574658974088,21,157.16602944587828,9 -7060287980,110,3.6043282862174912,21.90476202054422,25.038481583515463,5,37.81512605042017,56.19713241282648,99.63663990149075,10,96.55191554786869,9,141.94709736836927,19,156.66452884453756,10 -7060284520,110,2.825038824606829,24.64285714989796,23.551560481342165,10,33.61344537815126,50.49832376839592,89.7935714554504,25,92.69131231658756,10,146.10350517526115,10,154.96493006627742,11 -7060251010,110,0.28859328662295836,16.849816761957094,62.425840687774354,5,32.773109243697476,51.43648896134832,76.60946016414297,59,39.7422074985562,103,161.71182872264606,4,151.71213413176685,12 -7060255600,110,0.4745000089994566,28.16326540804665,39.89009457315876,5,29.41176470588235,44.38304124422654,59.78395164431795,98,52.1016260500524,75,144.90476975568203,13,151.02735943837035,13 -7060022250,110,0,25.274725307221352,26.616992547740487,10,32.773109243697476,48.2090328558878,85.62285222439486,40,79.00621547009453,24,142.79915095404715,18,150.627634770028,14 -7060171020,110,0.01489812239131863,22.40259734925789,12.512295756793288,10,36.97478991596638,56.22220270779848,113.76922015136225,1,106.45971210529831,1,135.37823743485097,30,150.54512973294737,15 -7060161960,110,0.02454814774891501,22.92358809226388,12.62224292195292,10,36.134453781512605,55.214553681036314,110.56238479153274,3,104.40171586189842,3,134.87076616181204,31,149.72058575812116,16 -7060162040,110,0.02084931178419054,22.40259734925789,13.315946391621598,10,36.97478991596638,54.61054088817029,110.59637565521723,2,103.79087492068263,4,134.10702080873102,33,149.34350641066465,17 -7060157540,110,0.05121357799395162,23.469387620991252,12.349903158052191,10,35.294117647058826,54.093982612648446,107.30865169780549,4,102.63946363732654,5,133.8923978781731,35,148.66094184956194,18 -7060022270,110,0.0054451409076305,25.274725307221352,18.425762825811606,10,32.773109243697476,48.2090328558878,89.71302194445167,26,87.21124799106833,14,134.6160621640982,32,146.53953469628902,19 -7060021750,110,0.08879103619373276,16.428571433265308,56.225039003186794,5,33.61344537815126,47.94817887379965,75.22860592195384,60,42.17207096604818,94,150.15965507810557,5,144.91573104653264,20 -7060262150,110,1.060537296767716,25.274725307221352,20.50475659787424,5,32.773109243697476,48.92585680130428,83.22326097276877,45,81.3930847519625,20,128.54905534378486,37,144.75197818627674,21 -7060287970,110,1.7573240019611516,16.02787463315082,26.00770970733778,10,34.45378151260504,51.83775685702763,102.24804389112035,6,89.21372302953336,13,137.60007225873852,24,141.10509620729744,22 -7060270660,110,0.5677943156170634,27.3809522792517,18.91513779647706,5,30.252100840336137,45.02149743356629,72.97439174026559,69,74.83308197378514,26,123.88724983986322,43,140.71318722375491,23 -7060022280,110,0.01447771660045308,19.327730962665065,40.92918294220763,10,28.571428571428573,44.930360348014446,75.16719645198859,62,56.2083429435866,64,145.23488712618948,11,139.42053438120868,24 -7060243020,110,0.06834882795781079,18.25396840521542,45.06547051076126,5,30.252100840336137,47.54815614523554,74.77324711465279,63,49.60389953078587,81,140.8032127448112,20,138.89292855184334,25 -7060243120,110,0.06693557763787703,18.775510162507288,41.96585094455774,5,29.41176470588235,45.890919126898446,72.06717842504298,73,49.96961916235372,80,136.23047253341355,28,135.79975509098162,26 -7060250850,110,0.6559347997588689,8.880308873965802,62.080493158292775,5,31.092436974789916,48.84307001472751,79.05114679954873,56,35.64826968574343,113,148.29881938156223,6,133.16156922188372,27 -7060233450,110,1.3086194763656334,8.880308873965802,58.93549905300218,5,31.092436974789916,48.84307001472751,79.97095917558727,51,40.44774355266513,101,146.12964236654273,9,132.48983608944232,28 -7060129300,110,0.05888935147884549,20.53571429158163,32.26572751879311,10,26.89075630252101,41.72538212398432,70.94639716313914,77,59.66522844440793,54,134.04975661358992,34,132.4790843548621,29 -7060245440,110,0.09835241246684824,9.12698420260771,57.62035959320051,5,30.252100840336137,49.40432221527738,81.69003641147886,46,38.530011111119634,108,144.04840177805693,14,130.33514245353632,30 -7060284470,110,0.8836649361966586,17.293233104940924,18.817039065895976,5,31.932773109243698,50.95983324411374,95.672914802517,13,83.49996344841392,17,118.94749235611795,52,130.224924160326,31 -7060237270,110,0.0476228392658819,19.327730962665065,32.77630349225549,5,28.571428571428573,44.08405557802417,72.13351756940027,72,56.207885860422934,65,125.38709759831676,40,129.54353315507925,32 -7060151610,110,0.03771931571063874,9.956709859987631,57.958567013320234,10,27.73109243697479,42.465222714100506,71.86770532871296,74,34.74062515779697,115,147.04303133612842,7,127.48162280357282,33 -7060262320,110,0.8058090345702689,18.25396840521542,17.06978607415322,5,30.252100840336137,49.00657234312557,90.53577932609784,21,81.1704454041747,21,115.79572078818127,57,127.37126435503477,34 -7060129240,110,0.0044735021386894,19.913420048546698,20.784893307080456,10,27.73109243697479,42.390838322425346,79.40778826540497,53,72.57296865118303,28,122.5465145035002,45,127.02848800640251,35 -7060233240,110,0.3673744040253557,9.956709859987631,61.55015171764241,5,27.73109243697479,44.46533635692112,67.54877816218482,86,27.068143686989643,123,143.06323041112776,16,126.73248265346851,36 -7060197330,110,0.03202906046653491,19.913420048546698,29.80937245518203,5,27.73109243697479,42.44042791687544,69.3280721480829,84,56.42619416616631,63,121.02605478399072,49,126.62834633911152,37 -7060133910,110,0.16407682173575583,19.327730962665065,16.878458598052156,10,28.571428571428573,43.89554219323959,85.26756066061851,42,79.43099577677796,23,120.06987900126958,51,126.56681435782336,38 -7060132960,110,2.793813209037205,18.25396840521542,10.44034847043588,5,30.252100840336137,48.66943197530162,91.28407481640366,20,92.44591199776168,11,111.70261371906531,59,126.46303085599655,39 -7060270960,110,1.038356015013017,18.25396840521542,22.385847194294488,5,30.252100840336137,45.02149743356629,80.80815760340083,48,71.79460977795675,31,116.3070386202256,56,126.36515588353271,40 -7060114090,110,0.01203340087491997,24.33862432123961,35.531301913488846,5,22.689075630252105,36.18892487578209,45.851891294104966,126,38.68690803726426,106,124.3344644003852,42,126.28106990058753,41 -7060130730,110,0.24124117780520152,31.797235180513496,9.671289045296897,0,25.210084033613445,37.11501203330834,48.83307955680105,124,62.100930293322165,49,98.97003534744672,89,125.78860641099695,42 -7060133990,110,0.07050439951263006,19.327730962665065,13.359165613965954,10,28.571428571428573,43.89554219323959,87.12077957488474,32,82.71309355104275,18,116.41068757608913,55,124.67802945501984,43 -7060191700,110,0.10106460768287708,9.663865645618248,56.659103689265194,5,28.571428571428573,43.99982619333318,70.62441834183234,78,31.55696460696446,120,136.79500783004818,25,123.75737193108185,44 -7060222910,110,0.05470913600443591,10.267857145790815,52.63658837454426,5,26.89075630252101,46.43445650321041,74.51397284245482,65,36.6720365754486,111,136.62885997176429,26,123.54341531902587,45 -7060151690,110,0.02969578235094742,9.956709859987631,59.50880963598665,5,27.73109243697479,42.44042791687544,65.43306804321114,89,25.891116547603495,126,137.8989676738584,23,123.22087611553297,46 -7060137410,110,0.02257226579926747,10.267857145790815,48.45169753262188,10,26.89075630252101,40.86879936360021,72.7147650531333,71,41.53219752536768,97,135.85017324976494,29,120.84096096925731,47 -7060223010,110,0.02566513406270519,9.663865645618248,50.45089540495187,5,28.571428571428573,44.08405557802417,73.94843116700675,66,37.67231160850413,109,130.5829737911804,36,120.63343907653856,48 -7060175330,110,0.087472755119045,9.663865645618248,47.560175050540835,5,28.571428571428573,43.99982619333318,75.18747451375836,61,40.62143947988747,100,127.67575825765462,38,119.18914962514967,49 -7060270810,110,0.00698733365225888,20.53571429158163,14.420090531533456,5,26.89075630252101,41.31200636399797,73.5869043225226,67,69.64702813161148,33,104.94180370108998,73,118.07126061963004,50 -7060254300,110,0.1671389506162917,0,64.9093988615391,5,30.252100840336137,49.40432221527738,88.0164128620286,31,30.654755701671238,121,139.6858332073265,22,117.34178936393045,51 -7060024680,110,2.282160661192118,8.42490854526426,20.805112261890855,5,32.773109243697476,49.98885426182433,102.21000325518833,7,84.02541457464363,16,110.34969703832544,61,116.75977354560675,52 -7060191640,110,0.11348142017815475,9.663865645618248,24.692809083017796,10,28.571428571428573,45.90501465658142,95.48880952121438,14,73.0274542628616,27,117.96080387418986,53,114.69654941614331,53 -7060245620,110,0.23884160722179865,0,49.795589864550514,5,31.932773109243698,51.44072181134695,100.67606170150333,9,50.00679439329196,79,127.31214624909781,39,113.60091288545706,54 -7060137520,110,0.01074014036303598,10.59907850302831,38.069624977310475,10,26.050420168067227,39.00221603500201,73.51052652769715,68,48.893862113811544,82,123.46362339392053,44,113.53391497960244,55 -7060146370,110,0.04192004149462083,10.952380845986395,53.2129356693118,5,25.210084033613445,36.31569975566795,54.44456692816844,115,22.634425580511884,128,124.98483306831181,41,113.26946995917717,56 -7060147190,110,0.04267945360026189,10.267857145790815,33.17668612312405,10,26.89075630252101,40.70685834422411,80.05432741153717,50,56.66924712862382,61,120.39584544648156,50,113.06926398395265,57 -7060168780,110,0.02182101675019532,10.952380845986395,49.19428498996178,5,25.210084033613445,36.6338996533894,57.01991497253407,105,26.97336078323904,124,121.34754266827902,46,111.55060604416005,58 -7060136230,110,0.02311172970979641,12.169312160619803,47.19987021531451,5,22.689075630252105,36.90613734366221,54.62326683472734,114,26.869060543332388,125,121.27430172611744,47,110.53744998793331,59 -7060021740,110,0.02932980048965154,11.330049388951444,63.9968067415404,0,23.529411764705884,32.79496679866215,35.30372392981017,130,-1.1880819621833751,130,121.03396070563791,48,109.1350169261722,60 -7060175260,110,0.0046223409438333404,10.59907850302831,32.05328453469307,5,26.050420168067227,42.591862807454234,77.05843744477683,58,51.8326158808009,76,111.42904327783249,60,109.10694841390045,61 -7060024660,110,0.12203225920492454,9.663865645618248,22.37427986499407,5,28.571428571428573,45.31139804066409,89.99607743449312,23,67.42510614496436,35,104.237302024658,74,107.95546912290264,62 -7060024580,110,0.1325039952278427,9.387755245539358,20.66782229733079,5,29.41176470588235,45.06100184263716,91.55329665203475,19,69.68330638255114,32,101.86715925404654,79,107.20042981873328,63 -7060171100,110,0.00856013776460864,9.956709859987631,13.576756314828309,10,27.73109243697479,44.26697797912072,97.17897406962638,12,81.15056853998804,22,104.94716743734486,72,107.05223041494192,64 -7060257090,110,0.2126575033938374,10.267857145790815,33.24766233429449,5,26.89075630252101,39.25791238138532,71.73795878497472,76,48.08870855214532,84,108.19731557024198,64,106.89039121804316,65 -7060146310,110,0.01288120081166951,13.142857146612243,46.21201144253043,5,21.008403361344534,33.00732996192965,45.686816789786725,127,21.68283398285991,129,116.48407313923713,54,106.23475436950147,66 -7060121920,110,0.5091331283660819,23.469387620991252,11.18805801780792,0,22.689075630252105,33.41585966735124,48.09992947893767,125,53.732562804984696,73,85.3793240708514,121,105.4288247375327,67 -7060136320,110,0.02479406241740144,12.169312160619803,42.122697129589255,5,22.689075630252105,34.31508103364459,52.71479250817743,122,28.927599118497447,122,112.8495912628351,58,105.41012890643687,68 -7060024610,110,0.03253604968768056,10.267857145790815,20.793054210237557,5,26.89075630252101,43.9584635490653,86.20994437634343,38,65.57070609770554,42,101.55089140644719,80,105.11505441699613,69 -7060123800,110,1.3250954391671022,24.33862432123961,10.135981584614877,0,21.84873949579832,31.506840666452003,42.73827628087304,129,53.857920239570994,71,84.19842309533689,122,104.87313383435361,70 -7060146980,110,0.22057641000184763,10.59907850302831,18.79352855527642,10,26.050420168067227,39.67967388176381,84.10102759412214,44,69.49223656770252,34,105.37715448949388,70,104.86291765715643,71 -7060130660,110,0.4684804072058266,21.90476202054422,9.327607033329288,0,24.369747899159663,35.01562588783453,55.21722727591509,113,58.90664459448349,56,83.51143042256172,123,104.85445303301755,72 -7060024730,110,0.00984859781512095,10.59907850302831,20.48451522845625,5,26.050420168067227,43.81480619316714,84.93575413169285,43,64.84140042383387,44,101.44926698098232,81,104.55271985394175,73 -7060024590,110,0.04723197935981863,10.267857145790815,19.531512364862948,5,26.89075630252101,43.9584635490653,86.82601936935859,34,66.86950041597,36,100.31132118051684,85,104.50456520720476,74 -7060123710,110,0.18933815680212912,22.66009844933146,9.24600274347701,0,23.529411764705884,34.50666280019829,52.992756505132405,121,56.90947403699981,60,83.32721406716615,124,104.46389355147878,75 -7060024740,110,0.01230195162316651,10.59907850302831,19.93193544644772,5,26.050420168067227,43.911585885561685,85.37563197246718,41,65.51310881359906,43,101.02548446326898,83,104.3765955056101,76 -7060022850,110,0.014297770080261,12.169312160619803,39.35714703906456,5,22.689075630252105,34.31508103364459,54.108063845776925,117,31.666542328446603,119,110.06834835491455,62,104.01286802785856,77 -7060149790,110,0.00339423865040514,12.169312160619803,38.86049271623591,5,22.689075630252105,34.31508103364459,54.3672945386211,116,32.13555746695306,118,109.55539235886619,63,103.7494930063261,78 -7060022840,110,0.249493754641038,12.637362489324962,36.638820222352216,5,21.84873949579832,34.124316503997164,53.549552194967035,120,33.9571730593332,117,108.057805855046,65,102.80528796809233,79 -7060150030,110,1.0334069399443964,12.637362489324962,34.00048032782,5,21.84873949579832,34.124316503997164,54.08480895692979,118,38.58264172591346,107,106.59148042772142,66,102.56798915891456,80 -7060023450,110,0.00301770620567837,12.169312160619803,33.70059752036203,5,22.689075630252105,35.668693296967646,59.26996067258354,99,38.873712504072635,105,106.14505916264282,68,102.52263802286316,81 -7060152640,110,0.01632468123504959,12.169312160619803,35.591783297751945,5,22.689075630252105,34.31508103364459,55.98871880527844,110,35.43704405384926,114,106.30601501191862,67,102.13298347802673,82 -7060023230,110,0.00229531233833628,12.169312160619803,32.6708758075461,5,22.689075630252105,35.668693296967646,59.78554392285884,97,39.90160303243414,102,105.1142574117826,71,102.00678019754325,83 -7060023220,110,0.00589133331430998,12.169312160619803,35.164635484142664,5,22.689075630252105,34.31508103364459,56.212726060003824,109,35.83774454365946,112,105.86326848797538,69,101.9050106068971,84 -7060023960,110,0.00551010351143337,11.330049388951444,29.45165638214726,5,24.369747899159663,36.55693603280753,65.5197250486773,88,45.775988476058906,87,101.96741069400602,78,101.43187377761615,85 -7060023470,110,0.00224473133030915,12.169312160619803,31.349277584103096,5,22.689075630252105,35.668693296967646,60.44639361558837,96,41.22307303890331,98,103.79258356558663,76,101.3459112794532,86 -7060024290,110,3.625288455790048,12.637362489324962,24.151477690253618,5,21.84873949579832,34.124316503997164,56.41742875986733,107,55.00176262457696,69,100.61755310564887,84,101.22051889141156,87 -7060024600,110,0.02227261178780935,10.952380845986395,19.590534939359383,5,25.210084033613445,41.00232967782262,79.31609063748792,55,61.67475726992283,51,97.39253893197537,93,101.1177842853123,88 -7060024620,110,0.00184842846904096,10.952380845986395,19.526875029839612,5,25.210084033613445,41.00232967782262,79.36834477556657,54,61.68664424963456,50,97.29834319428065,94,101.05776710923013,89 -7060024690,110,0.00292735415949129,10.952380845986395,18.95577906319517,5,25.210084033613445,41.00232967782262,79.65281383319834,52,62.26047516744782,48,96.72886030997996,95,100.77370814100107,90 -7060251360,110,0.01112460521454369,11.330049388951444,23.779171292406033,5,24.369747899159663,38.53667234227651,71.74691273604219,75,53.77239803581563,72,98.86297881130417,90,100.58311606266452,91 -7060152650,110,0.00734054365306632,12.637362489324962,32.72244859313337,5,21.84873949579832,34.124316503997164,55.74989122056443,112,37.25971445604765,110,103.77939532677628,77,100.51290880800175,92 -7060168790,110,0.00548546645807052,13.142857146612243,33.86725406650147,5,21.008403361344534,33.00732996192965,51.86659121215481,123,34.00884403227161,116,104.12825853414182,75,100.05216889878182,93 -7060023460,110,0,12.637362489324962,30.377578291731925,5,21.84873949579832,34.124316503997164,56.92966691491822,106,39.58597733284016,104,101.4235503109296,82,99.33034304275722,94 -7060024300,110,0.18790924699618763,11.734693974781342,21.45405150046609,5,23.529411764705884,37.90637455050206,70.36586443125924,81,55.0036831622802,68,96.5083692498387,96,98.93574945208991,95 -7060252580,110,0.09305791757576584,11.734693974781342,18.527239261803164,5,23.529411764705884,39.48925669477974,74.63981365525382,64,59.53675414507734,55,95.48630119058444,98,98.92432205860523,96 -7060023720,110,0.0036952207103872,12.637362489324962,28.82467245504911,5,21.84873949579832,34.124316503997164,57.70242461254924,103,41.14825012434698,99,99.87616913209575,86,98.55898986340526,97 -7060023480,110,0.00262828694777954,12.637362489324962,28.14181614635057,5,21.84873949579832,34.124316503997164,58.04491970066112,102,41.82840188001937,96,99.19171766996854,87,98.2160892439085,98 -7060255780,110,0.00259952117915811,10.952380845986395,14.701083045959694,5,25.210084033613445,40.37047559520428,80.69644122461747,49,65.77717706981021,41,91.65673150329312,107,98.01405361058399,99 -7060023730,110,0.00606739623726843,12.637362489324962,27.7080761282832,5,21.84873949579832,34.124316503997164,58.258350600405315,101,42.270859640239166,93,98.76311940218315,91,98.00396551692592,100 -7060197200,110,0.03289020513107379,13.142857146612243,27.171838154367364,5,21.008403361344534,34.174669015284955,57.18965444398013,104,42.13562333259211,95,98.98310180947732,88,97.90962101550565,101 -7060023850,110,0.00935703649687008,12.637362489324962,26.98736789824805,5,21.84873949579832,34.124316503997164,58.615415075163284,100,42.9999067258161,92,98.04732945397875,92,97.6481514031716,102 -7060023860,110,0.01058868554470554,12.169312160619803,25.562903395665096,5,22.689075630252105,34.31508103364459,61.00889475201221,94,45.45138387383733,88,96.2685593261111,97,97.11062733383599,103 -7060023970,110,0.0820127155009815,12.169312160619803,24.31901151058951,5,22.689075630252105,34.31508103364459,61.559416664593726,93,46.87632736973231,86,95.13145222024885,99,96.58725301635099,104 -7060024030,110,0.26426554521177203,12.169312160619803,23.474100432398167,5,22.689075630252105,34.31508103364459,61.79961937397861,92,48.183228179051014,83,94.55902406123167,101,96.41632287572496,105 -7060251370,110,0.00268427086136844,11.734693974781342,19.787539921445468,5,23.529411764705884,36.23095468086661,68.50988990249368,85,54.24601445001228,70,92.39873172171397,106,96.17144656343682,106 -7060257230,110,0.01144392413101855,11.330049388951444,17.115437113143546,5,24.369747899159663,37.17766095644149,72.74685543033641,70,58.851428367927085,57,90.44261640982498,112,95.89267827620063,107 -7060024110,110,0.0209184537496658,12.169312160619803,22.990060862469832,5,22.689075630252105,34.31508103364459,62.284986250404884,91,48.050411168296336,85,93.71116064308458,104,95.83846208218186,108 -7060024100,110,0.00764110807235295,11.330049388951444,19.350976989728363,5,24.369747899159663,35.860971724490625,69.37389377039418,83,55.07011135754546,67,90.970084687022,109,95.68851075223495,109 -7060220300,110,0.00982620089673775,11.734693974781342,17.656118526503775,5,23.529411764705884,36.38193728539772,69.82749388541387,82,56.571686179089625,62,90.47319792970029,111,95.2665749802744,110 -7060199890,110,0.01427282534386284,13.690476303911565,23.45370106980796,5,20.168067226890756,33.18938576055457,55.93420947815912,111,43.86236918900493,91,94.66849573076954,100,95.20320787015345,111 -7060200040,110,0.00863119972086291,13.690476303911565,22.684805057332262,5,20.168067226890756,33.18938576055457,56.324299110019965,108,44.61696433652931,90,93.89116502555912,103,94.81097391000151,112 -7060024040,110,0.04383609787863381,12.169312160619803,20.655505866410188,5,22.689075630252105,34.31508103364459,63.429346104305736,90,50.44305972738057,78,91.41086940349317,108,94.70281300704497,113 -7060241310,110,0.0053146119630868,11.734693974781342,15.866074745054616,5,23.529411764705884,36.23095468086661,70.4679921495874,79,58.17414723524238,58,88.48119912087192,113,94.21434408400168,114 -7060114060,110,0.4166494388763095,12.169312160619803,36.11271250736686,0,21.84873949579832,31.037117007910815,43.23871285940619,128,24.016264057654666,127,92.53703431241976,105,93.82763231667641,115 -7060220180,110,0.00965105030078138,12.169312160619803,16.487491147395698,5,22.689075630252105,34.921176076923565,66.58739313985983,87,55.23153020961621,66,87.97538327205133,114,93.17772223148978,116 -7060241270,110,0.00752077102811504,13.142857146612243,16.362287000814565,5,21.008403361344534,33.00732996192965,60.617039440428215,95,51.51897035838026,77,86.62633441561536,118,91.30249427043547,117 -7060319640,110,4.698051784399761,0,20.284350076939493,5,26.050420168067227,40.62547542107415,86.53480418810084,36,72.32147307074308,30,90.48444231716726,110,88.3018072531402,118 -7060163780,110,0.33885568647291237,0,21.050950213965752,10,26.050420168067227,39.67967388176381,94.51302384163755,17,66.65138257954408,38,94.16108498641788,102,86.72322066981951,119 -7060284340,110,2.144792901921596,0,19.100943323127467,5,24.369747899159663,41.78137080672687,89.9822207197455,24,66.70053779572797,37,86.97819525420763,116,83.66159867100723,120 -7060295550,110,2.298898011021961,0,19.36174210690839,5,24.369747899159663,41.367554190970885,88.98774650690343,28,66.34759149260242,40,86.93435818324815,117,83.59086044386393,121 -7060024830,110,0.04020850014245884,0,19.674625588409562,5,25.210084033613445,43.15699755667935,95.00041155940042,15,63.23721280045059,46,86.18393945306242,119,83.25988575347246,122 -7060163620,110,0.03156125466104313,0,14.500336557614846,10,26.050420168067227,39.67967388176381,98.09562510162488,11,72.42304058316256,29,87.15104096644006,115,83.02381971629285,123 -7060252480,110,0.07395084293442064,0,19.82285999288909,5,24.369747899159663,42.40209573036088,92.75705901162875,18,61.453456379595124,52,85.40658674124876,120,81.78533248159856,124 -7060121810,110,1.6320654175888052,12.637362489324962,9.125518100715716,0,21.008403361344534,30.720276938812095,53.61811191522284,119,52.91341795522574,74,67.56012670169196,130,81.71233522211064,125 -7060295390,110,1.9497331544175864,0,17.28888379773611,5,23.529411764705884,39.22138433190198,85.85090091458702,39,64.19115652081317,45,81.56462391498998,125,79.0860461950115,126 -7060252330,110,0.2997358772090586,0,19.770080010920747,5,24.369747899159663,38.94578649648981,86.62780330685345,35,58.04621439652634,59,81.22261043859712,126,78.61423703707709,127 -7060284350,110,1.257115993088822,0,14.290427349732353,5,25.210084033613445,38.79765895789535,88.9964487705295,27,66.62023500096089,39,76.98280109069066,127,77.88789050299077,128 -7060319800,110,1.535970204672414,0,16.37648788511577,5,24.369747899159663,35.48947726261876,81.15850438080781,47,60.54115602142376,53,75.20852650913855,128,75.16724698861272,129 -7060157640,110,0.11543872793994878,0,13.1656718912721,5,24.369747899159663,37.8454104955023,88.2264305094334,29,62.89967867152678,47,72.9199546095543,129,73.95731023179886,130 -7060135250,111,1.929357239976652,30.80357143737245,9.033219594856446,0,26.050420168067227,36.4196829365305,48.20441431053991,13,66.9644912117531,2,98.6771079655959,8,126.12261479750839,1 -7060135300,111,0.5732975358726671,31.797235180513496,11.246030933160188,0,25.210084033613445,35.17501910849039,44.38527885125886,18,59.104587583001205,5,98.53295502778244,9,125.0942522545929,2 -7060142610,111,0.6100770005091793,30.80357143737245,10.466478528957769,0,26.050420168067227,35.149724416160026,46.62824468174281,17,60.70539200151519,4,96.49596823217668,10,123.74855962184658,3 -7060021700,111,0.05179993769603856,12.169312160619803,68.39336424738605,0,21.84873949579832,33.102890947086635,31.007407682608637,35,-6.779169147790775,77,126.94310578100799,1,111.53020679617866,4 -7060118090,111,2.0821727989285668,21.19815667748519,7.858698288217408,0,25.210084033613445,35.540142493433464,56.85548481841384,7,65.85946430969327,3,84.22326492422268,11,106.41644980766073,5 -7060112520,111,0.00983090011131441,23.469387620991252,9.841765433368169,0,22.689075630252105,32.2128692377002,47.208452250227865,15,52.40969346460436,8,81.7311521631492,12,102.8636057549482,6 -7060021620,111,0.00572842773793513,18.25396840521542,69.55539000431399,0,14.285714285714286,20.21326969335379,-5.897922530476897,114,-30.15184281103291,114,119.20718166942902,2,102.75019347280814,7 -7060021560,111,0.0062152250356437,19.327730962665065,69.1569093798313,0,13.445378151260504,19.0037535555162,-9.795765626170471,119,-31.914086294148373,117,118.62848602288476,3,102.47033740125796,8 -7060021630,111,0.00174893045197314,18.25396840521542,68.88615345098464,0,14.285714285714286,20.21326969335379,-5.559324756526259,113,-29.49269382059123,112,118.53199544146884,4,102.41008312975332,9 -7060021430,111,0.01243601105219822,23.469387620991252,57.84183960822333,0,10.92436974789916,17.621131070758885,-13.593396010884423,120,-24.37217746738668,108,110.86903548160186,6,100.51079408193658,10 -7060021690,111,0.00289736604878505,17.293233104940924,69.17455540929448,0,15.126050420168069,18.173281376633255,-7.307460969184959,116,-31.397896138278565,115,114.94724313921861,5,99.59486882119266,11 -7060021550,111,0.00453015933895512,18.25396840521542,64.94538675130684,0,14.285714285714286,16.917627895524372,-9.245932177874451,117,-29.389792459884635,111,110.33435508753085,7,97.14789632964397,12 -7060114740,111,0.6908852555654117,11.734693974781342,8.80671842652099,0,22.689075630252105,32.54892729294684,60.52964666284902,3,54.58531066409769,6,67.03597351637688,36,82.10845193312471,13 -7060114730,111,0.32880511156654574,12.169312160619803,8.462623701437675,0,21.84873949579832,31.45633274617876,57.870834374371576,6,51.932762736289526,9,65.2976273448714,41,80.30057053057942,14 -8060239620,111,0.00646950343852569,18.25396840521542,11.094588044720568,0,14.285714285714286,22.683106994715615,27.569144984630363,45,31.192314540878705,16,63.94081267445201,44,75.99065254590572,15 -8060239530,111,0.00429914761193974,17.293233104940924,11.29605128927129,0,15.126050420168069,22.429504068712053,28.932631614709514,38,31.44975447576796,15,62.57382979335151,49,74.91377403867507,16 -7060112450,111,0.00726675958130149,15.64625863304179,10.256194142335866,0,16.80672268907563,23.79355969900887,35.28219606244866,24,35.63195680557015,13,61.18093346461628,52,74.42321573900988,17 -7060117980,111,12.941079692578286,0,6.75907346746943,0,21.008403361344534,31.564730513534425,58.84221615343276,5,83.87898107030944,1,66.9180130564788,37,73.81253172280543,18 -7060113260,111,0.12672345712150265,0,9.404073385765424,0,22.689075630252105,34.380200173711174,76.84514083851863,1,53.716465009000345,7,54.044703242694624,61,61.94620233585983,19 -7060108930,111,0.01221957573692701,0,11.325643845748688,0,21.008403361344534,31.590955779830136,69.53278479102013,2,46.56984979567654,10,52.1887852324563,66,58.27904518440993,20 -8060013770,111,0.0210525855803854,0,39.84251406916495,0,5.882352941176471,27.853855332689356,33.72786259059149,28,-1.4106307167130225,61,75.88705489087826,15,53.686519781760595,21 -8060013680,111,0.00205793562192522,0,40.68774800514712,0,7.563025210084033,25.74691743849083,31.39011788925113,32,-3.0814358226503806,64,73.97976854644197,16,53.65665678854519,22 -8060016090,111,0.00753237730968148,0,43.78735688513077,0,3.361344537815126,28.065230979032915,29.610602289196528,37,-7.664149171155032,80,80.08497765223504,13,53.330649321763886,23 -8060013490,111,0.00272723261127981,0,38.6384863856732,0,7.563025210084033,25.74691743849083,32.414079401998734,30,-1.030477613133673,60,71.93150758082754,20,52.63294966922341,24 -8060032440,111,0.00352350643385164,0,26.265865612035213,0,0,39.27495880447754,54.24612361233892,8,19.563851338955008,22,77.05087825986608,14,52.41275436824323,25 -8060013690,111,0.00572532579354233,0,36.600509551619304,0,5.882352941176471,27.853855332689356,35.36419210915116,23,1.7925209795124886,52,72.62213486361851,18,52.0443645173996,26 -8060261040,111,0.01137901544993473,0,11.193990999905427,0,18.48739495798319,27.1971974692238,59.540236341586194,4,39.052312153196446,11,46.37505685425114,75,51.29729199825577,27 -8060013760,111,0.00139613565284317,0,34.26837198168986,0,5.882352941176471,27.853855332689356,36.53459008425658,21,4.113684555829458,43,70.28352479957707,25,50.8723210582588,28 -7060099390,111,0.00550978984786937,0,54.68192714610586,0,11.764705882352942,9.673276890732438,1.0143123898171886,106,-31.617764881307302,116,67.1970277841945,35,48.78655035475189,29 -8060032260,111,0.014388089233838,0,22.16916205602493,0,1.680672268907563,35.86567418603331,52.11510079131359,11,21.391268896428972,20,68.56245419456152,28,48.65078434818555,30 -7060099500,111,0.00679324397812386,0,57.01297545161621,0,11.764705882352942,8.25501448945963,-2.58575504768568,111,-35.60019924798791,118,67.69628195516488,33,48.5355833890837,31 -7060059780,111,0.11040160415267856,0,34.01861346847561,0,3.361344537815126,27.956133871242685,34.20493093755667,26,2.238075814920517,50,70.32897731517814,24,48.47914934812171,32 -8060014810,111,0.00293385539071452,0,34.42912437333103,0,4.201680672268908,26.887891357463495,33.114735585668114,29,1.1491998649147739,53,69.19765308878502,26,48.30818320234438,33 -8060030970,111,0.01473929525494572,0,21.318165172042143,0,1.680672268907563,35.86567418603331,52.54024802728387,10,22.24315604683736,19,67.71198239236767,32,48.225770602286644,34 -8060129330,111,0.00484159057412125,0,46.223793994079664,0,7.563025210084033,16.81459173816695,13.294453652770967,77,-19.031472220337772,103,67.97111077576258,29,47.49619577843609,35 -8060014730,111,0.00321480852269314,0,39.527278801100664,0,5.882352941176471,21.802375134950857,23.5210194455613,51,-8.200672370024783,82,67.7210146707622,31,47.452804203371876,36 -8060014510,111,0,0,27.359389005517855,0,5.882352941176471,27.853855332689356,39.990477707995424,19,11.019128490462862,28,63.37245448616672,46,47.415902776624755,37 -8060016580,111,0.03382834103365938,0,32.40057295678627,0,4.201680672268908,26.887891357463495,34.098116808297554,27,3.2560652101823386,47,67.21529146061135,34,47.33654468014032,38 -7060108890,111,0.00711686109964235,0,12.139404321978803,0,16.80672268907563,24.07279634394812,52.03070124985661,12,32.770287850381905,14,43.27446816848375,79,46.95904310639049,39 -8060018980,111,0.00853798920790582,0,52.315264643515384,0,10.92436974789916,9.76029482194606,1.5035727218145105,105,-29.982241460159884,113,64.94740072013654,42,46.85408008937853,40 -8060016080,111,0.00546636623740484,0,44.04616186575968,0,2.5210084033613445,22.262628558440827,18.68762142619559,63,-15.538230208096202,97,72.83833913215979,17,46.814261974783406,41 -8060015220,111,0.02535832147521102,0,31.35780504341396,0,4.201680672268908,26.887891357463495,34.62797078454216,25,4.277362608859981,42,66.15986017373527,40,46.80347132994589,42 -8060014080,111,2.5368029845664394e-4,0,43.18452587859789,0,2.5210084033613445,22.262628558440827,19.123652105715436,62,-14.689807773663375,95,71.96890975224993,19,46.37625000287048,43 -8060014500,111,2.621962232591925e-4,0,42.965568356086706,0,2.5210084033613445,22.262628558440827,19.23312235104622,61,-14.470828664273043,94,71.74996496174435,21,46.26678299436179,44 -7060113180,111,0.452346892057378,0,8.778363094412795,0,16.80672268907563,24.07279634394812,53.26599183268188,9,37.25993543549194,12,40.57908233146439,81,45.892980227639654,45 -8060016030,111,0.04194282270162199,0,41.6502480612496,0,2.5210084033613445,22.262628558440827,19.849101871986413,59,-13.049852827897759,92,70.4969606199372,22,45.66664588348577,46 -8060017800,111,0.00948526553711711,0,55.79307708165959,0,5.882352941176471,11.233592817773742,-2.7506152356605504,112,-36.780821807881686,119,70.33149955005814,23,45.0255748246163,47 -8060016020,111,0.00568706031784533,0,40.068076710549995,0,2.5210084033613445,22.262628558440827,20.676443309719993,57,-11.559585619054701,87,68.86058393269005,27,44.82552397498189,48 -8060016910,111,0.01063624104137753,0,41.17515342654595,0,4.201680672268908,19.3874651968862,16.865817646106297,67,-14.327801723642132,93,66.25767714742719,38,44.191401557620935,49 -8060281800,111,0.00727258083240351,0,11.965565406968802,0,15.966386554621849,21.485311665435542,46.83787803124506,16,29.085453237422385,18,39.755427331383494,82,43.44451774324262,50 -8060017300,111,0.00700291555299441,0,47.83249137408451,0,5.042016806722689,14.24106889190134,5.55163820661841,101,-26.158142616842593,110,66.25565643980906,39,43.20899604287743,51 -8060016890,111,0.00439256319924308,0,46.78344901070203,0,3.361344537815126,16.36456616853232,8.041302437927545,95,-24.318975972652275,107,67.94824321810619,30,43.12369734643045,52 -7060059430,111,7.4752007430764e-4,0,24.02955144607108,0,3.361344537815126,27.656116824819595,38.79438799174516,20,11.599157597167668,26,59.78807262133823,53,43.03326873102168,53 -8060261050,111,0.00848493549656714,0,10.971052818245912,0,15.966386554621849,21.485311665435542,47.33392197094234,14,30.083039004247457,17,38.76272731225686,84,42.94893460803307,54 -8060015920,111,0.00165578559614402,0,35.49945019963859,0,2.5210084033613445,22.262628558440827,22.964787839897397,53,-7.001177920809937,78,64.28593033563733,43,42.53564719558899,55 -8060013480,111,0,0,35.91643989258884,0,7.563025210084033,16.81459173816695,18.4529722940905,64,-8.736390987976701,83,57.656518099511764,55,42.33583689454541,56 -8060032190,111,0.01061175388935482,0,35.04369667934592,0,2.5210084033613445,22.262628558440827,23.18370863175052,52,-6.522722062285638,76,63.84356672203878,45,42.320130482182165,57 -8060018970,111,0.01582160528714397,0,43.0691984678234,0,10.92436974789916,9.76029482194606,6.119322193581265,99,-20.71771216463914,104,55.712224147500734,57,42.24109905087266,58 -8060014090,111,0,0,34.082583868887504,0,2.5210084033613445,22.262628558440827,23.674876790869085,50,-5.588508814011867,72,62.866588469699884,47,41.82492889624592,59 -8060017600,111,0.00935337779366671,0,44.41521551243586,0,5.042016806722689,14.24106889190134,7.257925675202067,96,-22.73490860672339,106,62.84189471187105,48,41.503601962656745,60 -8060015930,111,0.04201813540439807,0,32.755686367019536,0,2.5210084033613445,22.262628558440827,24.296307406398668,49,-4.155100224723448,67,61.602511524370954,51,41.21946897471619,61 -8060016570,111,0.00474276492414295,0,41.36919927358166,0,3.361344537815126,16.36456616853232,10.748077104762832,87,-18.903838514880412,102,62.5345170612696,50,40.417055787943085,62 -8060031590,111,0.01594065259275277,0,30.419651975617672,0,2.5210084033613445,22.262628558440827,25.490402084911246,47,-1.8851692199836592,63,59.22748915866708,54,40.01546249278201,63 -8060018950,111,0.00915461647966088,0,37.143899743846646,0,10.92436974789916,9.76029482194606,9.088638544377122,91,-14.8093134820581,96,49.77695772878229,70,39.26924864098255,64 -7060100540,111,0.03426469086617671,0,43.37664974661078,0,10.92436974789916,5.932155236092964,-0.620642640132191,107,-25.444575216190454,109,51.09773554298541,69,38.59213823156985,65 -8060201080,111,0.041362550288927,0,29.902071634534035,0,11.764705882352942,11.818853343940004,17.049472769942255,66,-4.243854262200864,68,45.24485373480431,77,38.5916791061759,66 -8060017310,111,0.00910791775316617,0,37.85385573563538,0,5.042016806722689,14.24106889190134,10.538851023642806,89,-16.17417104258372,99,56.28016795219034,56,38.22258331718704,67 -8060031580,111,0.00928086459631246,0,26.07683164940524,0,2.5210084033613445,22.262628558440827,27.668472036013902,44,2.44076931805175,49,54.87471190351572,60,37.83486121954495,68 -8060018080,111,0.03274749399381011,0,50.229602152921274,0,8.403361344537815,4.1655259338082375,-9.597549961166116,118,-36.88344946284768,120,55.664292840940156,58,37.72888286009227,69 -8060031040,111,0.00505066573317177,0,24.66081895732067,0,2.5210084033613445,22.262628558440827,28.380708580919325,42,3.846058947901845,45,53.45237471739314,62,37.12101681624811,70 -8060032250,111,0.0055739342577744,0,24.473384301899625,0,2.5210084033613445,22.262628558440827,28.473902640105248,41,4.034820028187582,44,53.265722391307236,63,37.02802164645615,71 -8060015210,111,0.00220644461417965,0,34.44068557211142,0,3.361344537815126,16.36456616853232,14.214870275807913,76,-11.981754090474968,90,55.60221135304086,59,36.94929858564897,72 -8060031050,111,0.00557564369293929,0,24.05809688325537,0,2.5210084033613445,22.262628558440827,28.68154463999221,40,4.450111780051209,41,52.85043752840867,64,36.82038029630925,73 -8060032200,111,0.01628466917240025,0,23.846403937336664,0,2.5210084033613445,22.262628558440827,28.776682087472103,39,4.68895086032483,40,52.65475545337073,65,36.72931324765413,74 -8060293900,111,0.00826270417912587,0,12.294362037594697,0,13.445378151260504,16.74159293810143,36.01286014377371,22,20.703819535765334,21,33.95241137758285,94,36.34555538768251,75 -8060014840,111,0.00567537678839211,0,22.567334456442826,0,5.042016806722689,19.988148677278744,28.04559434200798,43,5.808575560669436,38,48.419082546215876,72,36.321665245799586,76 -8060017610,111,0.01049990725854559,0,33.527284745706616,0,5.042016806722689,14.24106889190134,12.700744529101808,80,-11.844071521118067,89,51.95567810066963,67,36.06121889371198,77 -8060018900,111,0.00673447907054863,0,35.953788432250455,0,10.084033613445378,7.794149143089438,5.472535496272926,102,-16.75950969716919,100,46.041140771027486,76,35.86437116323252,78 -7060100460,111,0.0072676098781002,0,15.940873521969316,0,12.605042016806722,15.239502244445712,30.773182460511062,36,14.462010325994138,24,35.65533805594837,90,35.82501098157112,79 -8060281810,111,0.00456361331863345,0,15.373003208411056,0,12.605042016806722,15.46110574464458,31.440018462383623,31,15.281563739591032,23,35.369942702717424,92,35.758947565033225,80 -8060014820,111,0.5642911307577781,0,18.831565210823317,0,3.361344537815126,22.01034149667595,31.143591634496957,34,11.63892347433695,25,48.133041973107076,73,35.566241467419125,81 -8060017810,111,0.00535295420832537,0,36.83614409738079,0,5.882352941176471,11.233592817773742,6.731983567807639,97,-17.83436375232005,101,51.36838842162876,68,35.541405368878344,82 -8060018890,111,0.00658277048788366,0,34.76591501371349,0,10.084033613445378,7.794149143089438,6.066623914124072,100,-15.572020842248744,98,44.853040535724304,78,35.27022508239068,83 -8060014830,111,0.06586601296728017,0,19.441862409690565,0,3.361344537815126,22.01034149667595,31.33686815285383,33,9.765176558279835,30,47.99815276635968,74,35.18351829795636,84 -8060190480,111,0.0018448547110366,0,20.767604042625475,0,11.764705882352942,11.818853343940004,21.656224261474428,55,4.790440566498626,39,36.05130394885143,88,33.96990731406209,85 -8060018840,111,0.1821694121890367,0,30.81439321655676,0,9.243697478991596,8.989147110631293,9.076675417004855,92,-10.621579164419236,84,42.70908303748432,80,33.89145147264179,86 -8060016860,111,0.01519264642132228,0,28.206646285925657,0,3.361344537815126,16.36456616853232,17.318903717093654,65,-5.71479629273157,73,49.387587502999544,71,33.85020107627183,87 -8060290300,111,0.00637598798350494,0,23.00428412736614,0,11.764705882352942,9.673276890732438,16.852267701051417,68,0.062073848985546576,54,35.52067980266741,91,32.948924277198174,88 -8060192880,111,0,0,18.390615863319784,0,11.764705882352942,11.818853343940004,22.846563205838308,54,7.162752253629828,32,33.67155756053514,96,32.77886715795284,89 -8060243620,111,0.00848788203954279,0,15.438669537784357,0,12.605042016806722,12.290471049491444,25.963521503797672,46,11.526771164102929,27,31.342069660948425,100,32.626561880539036,90 -8060282670,111,0.01082660520122949,0,29.569092202580176,0,10.084033613445378,7.48993605405902,8.13886445030351,94,-10.719355674121742,85,39.269236591242816,83,32.37345746375546,91 -8060018820,111,0.01628093770022129,0,26.26816746289094,0,9.243697478991596,8.989147110631293,11.51567676832658,84,-6.4958614042250655,75,37.91484041704177,86,31.389397488482693,92 -8060199520,111,0.0055217064169935,0,15.18519446441383,0,11.764705882352942,11.818853343940004,24.443752198874293,48,10.382170536243976,29,30.47439156532148,101,31.18377691305725,93 -8060018810,111,0.01254631607560008,0,25.139329057595223,0,9.243697478991596,8.989147110631293,12.08383059259906,82,-5.376489830489435,70,36.78041844630072,87,30.819824170018048,94 -8060018830,111,0.01125435800941457,0,25.623944501820095,0,10.084033613445378,7.794149143089438,10.63293758254924,88,-6.418208399196121,74,35.71805443009261,89,30.70568703999179,95 -8060243800,111,0.00536440440231303,0,17.408116829517578,0,11.764705882352942,9.909653957611228,20.056906238659778,58,5.931450144773706,36,30.228618938392565,103,30.385821618264615,96 -8060018740,111,0.02638215954081796,0,23.147304318527535,0,9.243697478991596,8.989147110631293,13.066007118667686,78,-3.349392837056426,66,34.80907942729907,93,29.842906516578736,97 -8060282510,111,0.02292958997748093,0,24.182272195027153,0,10.084033613445378,7.48993605405902,10.82017146930377,86,-5.301856007484732,69,33.90051153797822,95,29.696750674262912,98 -8060283540,111,0.00434827603306878,0,15.168317900183402,0,11.764705882352942,9.909653957611228,21.17782183169611,56,8.16867330684631,31,27.98730081385716,106,29.264519804490646,99 -8060014740,111,1.3520007744804308e-4,0,19.619019327864656,0,4.201680672268908,14.773566679925002,19.7384923771907,60,1.8188318541254738,51,38.7203985845816,85,28.784943604468417,100 -8060018730,111,0.01397905062565686,0,20.7802654009067,0,9.243697478991596,8.989147110631293,14.261929686393264,75,-1.0137943583135591,59,32.4234968452018,97,28.6422696450121,101 -8060018140,111,0.06752818869899417,0,20.33669336089934,0,9.243697478991596,8.989147110631293,14.430166568323608,74,-0.43448147993425046,55,32.05998515588769,98,28.49438628162547,102 -8060283690,111,0.00746807866983799,0,20.68506880829815,0,10.084033613445378,7.48993605405902,12.584234673975914,81,-1.8438457540704523,62,30.3801919245073,102,27.926810696062073,103 -8060190630,111,0.00602609545504937,0,19.708213098896184,0,10.92436974789916,6.984163061212905,13.046704812835989,79,-0.6203776616455272,57,28.747251613980616,105,27.77095591563613,104 -8060211650,111,0.00940758062236783,0,21.20224145881882,0,10.084033613445378,6.713668171705564,10.991895034147001,85,-3.26174785541064,65,29.896604805167595,104,27.411805827183983,105 -8060193020,111,8.627252326442697e-4,0,16.276696227616263,0,10.92436974789916,6.984163061212905,14.767626618698355,73,2.7980506665124842,48,25.308015080991133,109,26.048071561815924,106 -8060211920,111,0.00392635386773489,0,13.263411912968303,0,10.92436974789916,6.984163061212905,16.271205147387242,72,5.81910092351451,37,22.299311142269737,111,24.54565748925983,107 -8060226940,111,0.00615703555453458,0,12.841740963912974,0,10.92436974789916,7.091312006364006,16.6636413834753,71,6.371433493940568,34,22.019511255071265,115,24.4450495024827,108 -8060290230,111,0.01309395520315738,0,12.47794962127378,0,10.084033613445378,7.48993605405902,16.68216839095478,69,6.377534375794193,33,22.18148388403766,113,23.831015321294966,109 -8060293840,111,0.00742888623620226,0,12.490105794336348,0,10.084033613445378,7.48993605405902,16.681755373390452,70,6.351017911629343,35,22.18517031464472,112,23.829275099975927,110 -8060018120,111,0.01269420493301956,0,21.119989103751827,0,8.403361344537815,4.1655259338082375,4.9773098524794,104,-7.824669169669538,81,26.524698480912612,107,23.146400981826357,111 -8060018090,111,0.00700081754330301,0,20.867762864892327,0,8.403361344537815,4.1655259338082375,5.1091163592988655,103,-7.586875005821182,79,26.263960161234387,108,23.012430472560123,112 -8060199600,111,0.00664625207508517,0,16.23343700490624,0,10.084033613445378,4.5002556963463904,9.681589475299415,90,-0.8822576028664084,58,22.06188611201141,114,22.71018024157928,113 -8060201110,111,0.01358101372147406,0,18.72952929442853,0,8.403361344537815,4.1655259338082375,6.171652948352594,98,-5.431961403184812,71,24.1355645234173,110,21.952394953546968,114 -8060227070,111,0.01327987589286728,0,14.465037850800714,0,9.243697478991596,4.000227285641231,8.860939225593688,93,-0.5207455973442121,56,19.65690338975555,119,20.494771120564064,115 -8060211930,111,0.00609101677296878,0,11.66327292524658,0,10.084033613445378,4.5002556963463904,11.96722675043136,83,3.6864990198646304,46,17.490891910064,120,20.424331926784994,116 -8060229750,111,0.00428064768267029,0,20.616186474173777,0,8.403361344537815,0,-1.9090125402317426,110,-12.201974185510123,91,20.622586393332128,117,18.71736226281572,117 -8060030930,111,0.00446302618664825,0,27.28442435347771,0,1.680672268907563,3.1819989772146258,-6.506766134555741,115,-21.880106692059798,105,31.405196631160408,99,18.51104280289239,118 -8060229590,111,0.01339721096290127,0,19.97744673920988,0,7.563025210084033,0.6545826467413015,-1.316052371737287,109,-11.616781402618603,88,20.843805746346483,116,18.22482058997636,119 -8060211690,111,0.00886558339627913,0,19.61254394777916,0,7.563025210084033,0.6545826467413015,-1.129069348455303,108,-11.26336576013583,86,20.47212780025878,118,18.036115138117015,120 -8060045910,112,0.00147997931739092,0,47.023668450024886,0,0.8403361344537815,77.8680606852662,110.92234532267705,13,44.666490059385076,16,147.70377778399066,1,102.22227355012521,1 -8060047730,112,7.481718223910051e-4,0,33.35464095948888,0,0.8403361344537815,77.8680606852662,117.75759087544004,12,58.33366250301515,12,134.0336561812654,2,95.38674984428718,2 -8060030100,112,0,0,28.79348674212236,0,1.680672268907563,78.41354622421728,121.81512145602156,11,64.36965612170536,11,130.17665761787802,3,94.49096186418603,3 -8060058100,112,0,0,19.178929184520474,0,0.8403361344537815,77.8680606852662,124.84619493474665,10,72.50747774941053,10,119.85682582809696,11,88.29786141198022,4 -8060053140,112,0.00107092197031875,0,17.743321837894857,0,0.8403361344537815,77.8680606852662,125.56292768608913,9,73.94579975870509,9,118.42281959759747,12,87.581535707902475,5 -8060055790,112,0,0,17.500472185445155,0,0.8403361344537815,77.8680606852662,125.6854234342843,8,74.18593474848585,8,118.17836882902165,13,87.45863291244257,6 -8060055680,112,0,0,17.03862493167993,0,0.8403361344537815,77.8680606852662,125.91634706116692,7,74.64778200225106,7,117.71652157525642,14,87.22770928555995,7 -8060055670,112,0,0,16.407372738731194,0,0.8403361344537815,77.8680606852662,126.23197315764128,6,75.27903419519981,6,117.08526938230769,15,86.91208318908558,8 -8060057950,112,0,0,15.712058672268975,0,0.8403361344537815,77.8680606852662,126.5796301908724,5,75.97434826166203,5,116.38995531584547,16,86.56442615585448,9 -8060057550,112,0,0,15.636074907112397,0,0.8403361344537815,77.8680606852662,126.61762207345068,4,76.05033202681861,4,116.31397155068889,17,86.52643427327618,10 -8060056650,112,0,0,15.06643744164477,0,0.8403361344537815,77.8680606852662,126.9024408061845,3,76.61996949228623,3,115.74433408522125,18,86.24161554054237,11 -7060059960,112,0.01225596876886022,0,40.893330708267456,0,1.680672268907563,63.77635092903006,90.64045422665413,16,35.22415176689157,31,123.36996669844578,4,85.92060289810982,12 -8060048550,112,0.14980420116243096,0,13.722120048135654,0,0.8403361344537815,77.8680606852662,127.42479530177663,2,78.34402311664896,2,114.62398625148286,19,85.77620019833324,13 -8060055800,112,0,0,11.89761732555882,0,0.8403361344537815,77.8680606852662,128.48685086422748,1,79.78878960837218,1,112.5755139691353,22,84.65720548249939,14 -8060030010,112,0.00118048978376267,0,37.43470362757814,0,0.8403361344537815,59.38973805329849,84.01455923798582,26,32.69665264005945,41,114.22320058507344,20,78.94905518427458,15 -8060028930,112,0.00312211480609179,0,36.08995687713121,0,0.8403361344537815,59.38973805329849,84.68499098818695,25,34.04632118416763,38,112.8813567231845,21,78.2793614272946,16 -8060030000,112,0.00179592381813595,0,35.72365481181295,0,0.8403361344537815,59.38973805329849,84.86946821183405,24,34.409261509539675,35,112.51307189363507,23,78.0943801310548,17 -8060029020,112,0.00223597356378231,0,34.434667792975866,0,0.8403361344537815,59.38973805329849,85.51352167150694,22,35.6993640033134,30,111.22474278523737,24,77.45049393010876,18 -8060029740,112,0.00112701133127747,0,34.04076676001155,0,0.8403361344537815,59.38973805329849,85.7115811502216,21,36.09045394596741,27,110.82918376283692,25,77.25201294538718,19 -8060029760,112,0.00145875747983201,0,33.80295410758664,0,0.8403361344537815,59.38973805329849,85.8301557302855,20,36.329107536303766,26,110.5918670980964,26,77.133564458882,20 -8060029750,112,1.7866979094321745e-4,0,32.07353567871228,0,0.8403361344537815,59.38973805329849,86.69614503241156,19,38.0552810917342,24,108.86053483320194,27,76.26708860758913,21 -8060029030,112,0.0012615512209229,0,31.94722131958859,0,0.8403361344537815,59.38973805329849,86.75821933054344,18,38.18434042936645,23,108.73583947057683,28,76.20542590239897,22 -8060029770,112,5.753985824551604e-4,0,31.943957606150267,0,0.8403361344537815,59.38973805329849,86.76053733990106,17,38.18586482565145,22,108.73154990270199,29,76.20284709294346,23 -8060024350,112,0.00109104692145327,0,18.93518807260921,0,7.563025210084033,57.38507869765328,96.54777635030166,14,55.57986129515026,13,93.13166850243553,37,74.4172036875308,24 -8060045500,112,0.00330277089239547,0,69.1745554097144,0,0,39.27495880447754,32.79199944904078,125,-23.345397997654842,156,119.9592380398177,5,73.86679463205954,25 -8060045900,112,0.0011434861114819,0,69.1745554097144,0,0,39.27495880447754,32.794158733821696,124,-23.35087153349484,157,119.95600973207969,6,73.86381462365149,26 -8060045610,112,6.523275550525797e-4,0,69.1745554097144,0,0,39.27495880447754,32.794649892378125,123,-23.352116563323932,158,119.95527540977893,7,73.86313678039488,27 -8060052560,112,0,0,69.1745554097144,0,0,39.27495880447754,32.79530221993318,120,-23.353770137823943,160,119.95430012661465,8,73.86223650933474,28 -8060045520,112,0,0,69.1745554097144,0,0,39.27495880447754,32.79530221993318,121,-23.353770137823943,161,119.95430012661465,9,73.86223650933474,29 -8060052550,112,0,0,69.1745554097144,0,0,39.27495880447754,32.79530221993318,122,-23.353770137823943,162,119.95430012661465,10,73.86223650933474,30 -8060030130,112,4.448524192547344e-4,0,23.582290686430696,0,0.8403361344537815,59.38973805329849,90.94150134592405,15,46.547200826027094,14,100.36968780576792,32,72.02183346756432,31 -8060026590,112,2.6968847980227464e-8,0,30.80824863932737,0,4.201680672268908,49.16188419796579,73.14276487732708,33,30.748963665597845,50,94.37108885479569,35,68.76768922711784,32 -8060025170,112,0.01430275756935704,0,21.347598827759775,0,5.042016806722689,52.97054215742778,85.23349539693267,23,45.529639656622294,15,89.85614824036753,39,68.70609747784327,33 -8060044350,112,0.00104324396752412,0,30.69694664221491,0,0.8403361344537815,50.66196943008126,72.40966832653025,35,29.251664996150566,56,96.20085069109857,34,66.8522186567289,34 -8060025160,112,6.509137570550791e-4,0,25.473695868513698,0,5.882352941176471,47.712938235126984,75.00416017366958,32,36.07540167099741,28,87.16412453385583,46,66.33303743045127,35 -8060047650,112,0.00240587187464903,0,52.61114437079284,0,0,39.27495880447754,41.074601867519306,102,-6.784260493452692,136,103.39448606334831,30,65.58385131078694,36 -8060025650,112,4.950636523187449e-4,0,26.682505550412955,0,4.201680672268908,47.77544178646514,72.826473922478,34,33.258445468191695,40,88.45351387951112,43,65.31905846658286,37 -8060028390,112,0.05006820500896071,0,47.915312029160866,0,3.361344537815126,37.74759929541453,44.11576657927427,100,-0.3881845688820462,125,96.79514496639908,33,65.13569850178173,38 -8060024230,112,7.115588806933171e-4,0,22.927071471655783,0,5.882352941176471,47.712938235126984,76.27741172697489,31,38.622179796191986,20,84.61759080642867,48,65.05980892778118,39 -8060028180,112,0.00170154915214551,0,59.87947626990444,0,1.680672268907563,33.41098926075345,29.061218979156113,136,-19.215003300871714,153,103.0800669463323,31,65.03374795642955,40 -8060027610,112,6.004666143083964e-5,0,38.1380746014116,0,5.042016806722689,40.54126451989968,55.52805280433995,87,14.202236356498602,95,90.55515284626561,38,64.65240149715503,41 -8060027960,112,0.0036669688091729,0,37.21822739287691,0,5.042016806722689,40.54126451989968,55.984369486459556,85,15.13122669326826,94,89.64069828199115,40,64.19745577186987,42 -8060024340,112,6.426709041197738e-4,0,20.786263401024573,0,5.882352941176471,47.712938235126984,77.34788465026708,28,40.762813243812815,19,82.47667974262592,53,63.98930982082369,43 -8060026320,112,5.236888255495365e-4,0,22.930619014772525,0,2.5210084033613445,49.98011250639241,76.80418750727337,30,37.90184813632534,25,87.55215349590848,45,63.96715315511193,44 -8060026860,112,0.00142888880873421,0,36.13826003555824,0,5.042016806722689,40.54126451989968,56.526591245119334,81,16.20552077802768,92,88.55738481162265,42,63.654383340268744,45 -8060027940,112,0,0,33.24593206183207,0,5.042016806722689,40.54126451989968,57.97418412079115,72,19.09422668477357,86,85.66292053200539,47,62.2062473575384,46 -8060026280,112,0.0014669341372537,0,19.01778158263198,0,2.5210084033613445,49.98011250639241,78.75966297803194,27,41.81707658565137,18,83.64072629282413,51,62.01203620293337,47 -8060027930,112,0,0,32.19768158496646,0,5.042016806722689,40.54126451989968,58.49830935922395,68,20.14247716163918,85,84.61467005513978,49,61.6821221191056,48 -8060027550,112,0,0,30.592786603609905,0,5.042016806722689,40.54126451989968,59.300756849902236,62,21.747372142995737,82,83.00977507378322,52,60.87967462842732,49 -8060025660,112,9.205028753680172e-4,0,17.77250663246704,0,4.201680672268908,47.77544178646514,77.28104794222791,29,42.16952282509836,17,79.54415102807573,60,60.864646152239004,50 -8060044560,112,0.00139255841293807,0,42.35222610250898,0,0,39.27495880447754,46.20507431512295,98,3.472089143032882,120,93.13405280838072,36,60.45299371236527,51 -8060027950,112,1.8141525007232752e-4,0,28.64026492950535,0,5.042016806722689,40.54126451989968,60.27683627170444,53,23.700353683664428,79,81.05752463034763,54,59.903664160837806,52 -8060027540,112,0,0,28.103847311705,0,5.042016806722689,40.54126451989968,60.545226495854685,52,24.236311434900642,74,80.52083578187832,56,59.63520498247487,53 -8060026830,112,7.65325862592101e-6,0,27.54157768961473,0,5.042016806722689,40.54126451989968,60.82635365364119,50,24.798600457111615,71,79.95857760203701,58,59.35408073361924,54 -8060026850,112,2.1698233579677272e-4,0,27.410942452906085,0,5.042016806722689,40.54126451989968,60.89146194291835,49,24.929766318690298,69,79.82825532945685,59,59.28905200833522,55 -8060024860,112,0.00142454502676985,0,18.232972758846948,0,5.882352941176471,43.67293596227059,71.69246708934467,36,38.60474986097663,21,74.70112078427276,74,58.67374128392558,56 -8060047690,112,0,0,38.67991865596918,0,0,39.27495880447754,48.04262059680579,96,7.140866615921276,111,89.45966337286944,41,58.61491813246214,57 -8060026840,112,0,0,25.948696976937217,0,5.042016806722689,40.54126451989968,61.622801663238576,45,26.391461769668425,66,78.36568544711054,65,58.557629815090976,58 -8060043200,112,0.0026486293788568,0,37.450264617909355,0,0,39.27495880447754,48.65479898645684,95,8.377234621476347,106,88.23396925283177,44,58.003746461670005,59 -8060024130,112,0.07490007112963307,0,22.93757153346295,0,5.042016806722689,40.54126451989968,63.05346431384608,40,29.592450184145715,54,75.46654174932516,70,57.15543596979971,60 -8060024290,112,0.00150899346935245,0,21.191731103111117,0,5.042016806722689,40.54126451989968,63.99977560668228,39,31.152252766474977,46,73.6109756422091,77,56.18122942572613,61 -8060024300,112,0.00488224780911497,0,20.60027625436409,0,5.042016806722689,40.54126451989968,64.29212977671602,38,31.752258422734425,44,73.02456408519627,79,55.89015739761337,62 -8060024240,112,1.3879394238738973e-4,0,20.13790864337504,0,5.042016806722689,40.54126451989968,64.52805703607729,37,32.20260192973572,43,72.55510462186878,82,55.65242719651092,63 -8060038860,112,0.00649965562753639,0,45.35001073987835,0,1.680672268907563,30.047161770555142,30.549960449690875,131,-8.597840534081229,140,84.208583880336107,50,54.41180952237201,64 -8060045460,112,1.6326214225454417e-4,0,29.786295282725018,0,0,39.27495880447754,52.489269021285615,93,16.034903839712086,93,80.56628408991008,55,54.16833176237122,65 -8060040110,112,0.02340383768570889,0,36.85948431330901,0,3.361344537815126,32.320018182851285,40.35844660658362,103,4.267874111656077,117,78.6819732256123,62,54.14340429132156,66 -8060048860,112,0.00264745134018904,0,27.758941419894967,0,0,39.27495880447754,53.500461763502706,92,18.06855483329969,90,78.54264429355301,63,53.15808323686284,67 -8060043890,112,0.00914755769375882,0,27.67017017164262,0,0,39.27495880447754,53.53834728127531,91,18.173803095332016,89,78.46359123709485,64,53.12266834774952,68 -8060024670,112,0,0,20.127450842756215,0,5.042016806722689,37.89176333070873,59.987774497307505,55,29.12162318312665,57,69.11882161377355,101,52.99750555880952,69 -8060049710,112,0.00228054850344073,0,27.191975956934748,0,0,39.27495880447754,53.784311397819565,90,18.634590240231873,88,77.97513028077785,66,52.87409414626414,70 -8060049760,112,0.00240949802576448,0,26.976582870787336,0,0,39.27495880447754,53.891878991370945,89,18.850310198424246,87,77.75992998473595,68,52.76657556520088,71 -8060039140,112,0.08604040799701566,0,41.373039387502295,0,1.680672268907563,30.047161770555142,32.458905373509424,127,-4.419242623373236,132,80.35053247248624,57,52.533097282712,72 -8060039130,112,0.00405797803407674,0,40.60142040333606,0,1.680672268907563,30.047161770555142,32.926697295555485,119,-3.85543956632236,129,79.45634303565409,61,52.03414461805559,73 -8060049770,112,0.0093689502500035,0,24.944141294808805,0,0,39.27495880447754,54.90114032713597,88,20.90039317655259,83,75.73789336027956,69,51.75995945109575,74 -8060038870,112,0.01051719150992487,0,38.98605903446715,0,1.680672268907563,30.047161770555142,33.72791876651409,118,-2.223704842363503,126,77.8506387203753,67,51.23537823276202,75 -8060051220,112,6.436236584441103e-4,0,23.612569226840215,0,0,39.27495880447754,55.575651687711826,86,22.20984755618444,81,74.39327621386587,76,51.082131676792784,76 -8060051210,112,0.00111216382975924,0,22.332320204741485,0,0,39.27495880447754,56.21530765858988,84,23.491284273136035,80,73.1137276977282,78,50.44265379358166,77 -8060049920,112,0.01623318655554822,0,22.128411681821905,0,0,39.27495880447754,56.30214089732388,83,23.733522830407036,78,72.93242634321177,80,50.36156791190181,78 -8060049910,112,5.073868148320345e-4,0,21.9119801018224,0,0,39.27495880447754,56.42608248706435,82,23.910091336645188,77,72.69248340359991,81,50.23164909511057,79 -8060024680,112,0.00106161468186569,0,14.52703015204628,0,5.042016806722689,37.89176333070873,62.78692322798061,42,34.72473494361155,34,63.519988124030604,125,50.19876033778925,80 -8060058510,112,0,0,21.69419960422185,0,0,39.27495880447754,56.53548012267945,80,24.126585667668607,76,72.4739443211221,83,50.12205860658847,81 -8060049390,112,7.803207797542327e-8,0,21.590097505218516,0,0,39.27495880447754,56.58753109414904,79,24.230687964474185,75,72.36984233878312,84,50.07000766477813,82 -8060040100,112,0.02196699009203781,0,36.5459426492216,0,1.680672268907563,30.047161770555142,34.936527160554746,117,0.24543545091577101,124,75.42764072251809,71,50.03112179836342,83 -8060024850,112,6.995067763116824e-4,0,14.15497418924054,0,5.042016806722689,37.89176333070873,62.973313317289026,41,35.09587300498228,32,63.14739078022508,130,50.012232614706775,84 -8060050510,112,9.99193382326536e-4,0,21.331012263199096,0,0,39.27495880447754,56.7160745998085,78,24.492305847730282,73,72.11225085610702,85,49.94184391336944,85 -8060146880,112,0.00947161961178306,0,36.3489474079762,0,1.680672268907563,30.047161770555142,35.04752015165771,116,0.41075638094378064,123,75.21196387819401,72,49.91537943567521,86 -8060058620,112,4.120006851966965e-4,0,21.168767830414616,0,0,39.27495880447754,56.79778400889787,77,24.653061815305758,72,71.94912852210979,86,49.859911317915554,87 -8060178550,112,0.00530909018369054,0,36.19720294461929,0,1.680672268907563,30.047161770555142,35.12755491276425,115,0.55194931621552,122,75.05399609215118,73,49.83376253668649,88 -8060050500,112,7.898237284463249e-4,0,20.894654026319845,0,0,39.27495880447754,56.93446308790201,76,24.928133356882256,70,71.67557959443377,88,49.723375845859984,89 -8060027600,112,6.143350946591629e-6,0,29.674618971294233,0,4.201680672268908,30.68356156599808,42.00700560951333,101,10.324565767319406,99,69.34630371618577,99,49.722560202294375,90 -8060058500,112,0,0,20.84499353816364,0,0,39.27495880447754,56.96008315570856,75,24.97579173372682,68,71.62473825506389,89,49.69745557355936,91 -8060178540,112,0.00151118621921515,0,35.66902559043279,0,1.680672268907563,30.047161770555142,35.39544149382198,114,1.0704994254688174,121,74.52014056023418,75,49.56443240842055,92 -8060058610,112,3.2189797048730063e-4,0,19.911669789215846,0,0,39.27495880447754,57.426423132211966,74,25.9099314565998,67,70.69189576996706,92,49.23123794741578,93 -8060056830,112,0,0,19.190381336198595,0,0,39.27495880447754,57.78738925669108,73,26.630403935691863,65,69.97012605309885,94,48.87014947257684,94 -8060049610,112,0,0,18.79492237078948,0,0,39.27495880447754,57.98511873939564,71,27.02586290110098,64,69.57466708768973,96,48.67241998987228,95 -8060056840,112,0,0,18.744503987147265,0,0,39.27495880447754,58.01032793121674,70,27.076281284743192,63,69.52424870404752,97,48.64721079805118,96 -8060056990,112,0,0,18.694196710294417,0,0,39.27495880447754,58.03548156964317,69,27.12658856159604,62,69.47394142719467,98,48.62205715962475,97 -8060026580,112,2.568095397684177e-4,0,26.55793271428493,0,1.680672268907563,33.41098926075345,45.72343549657824,99,14.102878007823392,96,69.756363386571,95,48.37098230720905,98 -8060148000,112,0.01422898861952415,0,33.000522313629645,0,1.680672268907563,30.047161770555142,36.716975329823235,113,3.771240852542512,119,71.87065144046231,87,48.24773248826375,99 -8060058090,112,0,0,17.606753031134552,0,0,39.27495880447754,58.5792034092231,67,28.214032240755905,61,68.3864977480348,103,48.078335320044815,100 -8060147990,112,0.01436499379751035,0,32.62622851608981,0,1.680672268907563,30.047161770555142,36.90398622341517,112,4.145879407393991,118,71.49656098181154,90,48.060773288947615,101 -8060057960,112,0,0,17.338264296685697,0,0,39.27495880447754,58.71344777644753,66,28.48252097520476,60,68.11800901358595,105,47.94409095282039,102 -8060051550,112,0,0,17.313123780235202,0,0,39.27495880447754,58.72601803467278,65,28.507661491655256,59,68.09286849713546,106,47.93152069459514,103 -8060142230,112,0.00703006009138989,0,32.208009530650564,0,1.680672268907563,30.047161770555142,37.12043064984091,111,4.545505188787487,115,71.06737566925756,91,47.84154092391864,104 -8060049370,112,0,0,17.03402400244815,0,0,39.27495880447754,58.8655679235663,64,28.78676126944231,58,67.8137687193484,107,47.79197080570162,105 -8060053050,112,0,0,16.479233930572075,0,0,39.27495880447754,59.14296295950434,63,29.341551341318382,55,67.25897864747233,108,47.51457576976358,106 -8060041740,112,0.01040056203101145,0,31.41513772415008,0,1.680672268907563,30.047161770555142,37.513496051151535,110,5.346920825786082,114,70.27954303942747,93,47.44975661836787,107 -8060057000,112,0,0,15.920398288771615,0,0,39.27495880447754,59.422380780404566,61,29.900386983118842,53,66.70014300567186,112,47.235157948863346,108 -8060052070,112,0,0,15.679314139003518,0,0,39.27495880447754,59.542922855288616,60,30.14147113288694,52,66.45905885590378,114,47.114615873979304,109 -8060057510,112,0,0,15.661598815016472,0,0,39.27495880447754,59.55178051728214,59,30.159186456873986,51,66.44134353191673,115,47.10575821198578,110 -8060026330,112,2.11757030184343e-4,0,23.913499491154734,0,1.680672268907563,33.41098926075345,47.04569716065292,97,16.747197028080457,91,67.11186280624615,109,47.04870351910357,111 -8060052080,112,0,0,15.043348299773273,0,0,39.27495880447754,59.86090577490374,58,30.777436972117187,49,65.82309301667352,116,46.79663295436418,112 -8060056660,112,0,0,15.027133479404544,0,0,39.27495880447754,59.86901318508811,57,30.793651792485914,48,65.8068781963048,117,46.78852554417981,113 -8060146950,112,0.00868885748378476,0,30.09472518784259,0,1.680672268907563,30.047161770555142,38.175414023852504,109,6.662994390101765,112,68.95657136451823,102,46.78718804303357,114 -8060057560,112,0,0,14.997773961253165,0,0,39.27495880447754,59.8836929441638,56,30.82301131063729,47,65.77751867815341,119,46.77384578510412,115 -8060057520,112,0,0,14.443098666113924,0,0,39.27495880447754,60.161030591733414,54,31.377686605776532,45,65.22284338301418,121,46.496508137534505,116 -8060041630,112,0.01170747311533538,0,29.387803453478988,0,1.680672268907563,30.047161770555142,38.52585627540276,108,7.377567964089533,109,68.2541627079513,104,46.43789313860119,117 -8060053040,112,0,0,13.279713486303091,0,0,39.27495880447754,60.74272318163883,51,32.54107178558736,42,64.05945820320335,123,45.91481554762909,118 -8060041980,112,0.0062950426999285,0,28.060296719839688,0,1.680672268907563,30.047161770555142,39.19502207263781,107,8.691354815978148,104,66.91856394719912,110,45.766670127995575,119 -8060041750,112,0.01437304292711779,0,28.032580380681875,0,1.680672268907563,30.047161770555142,39.20080224198953,106,8.739547946409534,103,66.90292488051213,111,45.76396032977093,120 -8060041920,112,0.00741539020322163,0,27.803711227146877,0,1.680672268907563,30.047161770555142,39.32219447148093,105,8.95078025931884,102,66.6636534658555,113,45.63992356259263,121 -8060052790,112,8.376513220744194e-5,0,12.462867640948192,0,0,39.27495880447754,61.15106233918407,48,33.35812996581228,39,63.242737593587094,128,45.50650822841464,122 -8060041930,112,0.00748790913419308,0,26.9464500414726,0,1.680672268907563,30.047161770555142,39.750752545387094,104,9.808225272050699,100,65.80650070192719,118,45.21139305244303,123 -8060056640,112,0,0,11.65766136137183,0,0,39.27495880447754,61.553749244104466,47,34.16312391051863,37,62.43740607827208,131,45.10378948516346,124 -8060026290,112,0.00101903511131304,0,19.980418413908797,0,1.680672268907563,33.41098926075345,49.01143042119476,94,20.68232446139251,84,63.17998867590183,129,45.0832770972894,125 -8060056630,112,0,0,11.60507032683726,0,0,39.27495880447754,61.580044761371745,46,34.21571494505319,36,62.38481504373752,132,45.077493967896174,126 -8060053110,112,6.410632735892003e-4,0,10.870277641782767,0,0,39.27495880447754,61.946800040625405,44,34.952132650963996,33,61.650980800823206,133,44.71098235070126,127 -8060052780,112,0,0,9.827046109265666,0,0,39.27495880447754,62.469056870157544,43,35.99373916262479,29,60.60679082616592,136,44.188481859110375,128 -8060038790,112,0.00840884044004353,0,51.03986256062358,0,0.8403361344537815,14.046252627990237,-0.5893729715292615,174,-33.79091626077117,176,69.2132459449443,100,40.418125003544105,129 -8060038800,112,0.00839159199874055,0,47.181164554497585,0,0.8403361344537815,14.046252627990237,1.3399932799750403,173,-29.932261977438234,175,65.35452215098475,120,38.48875219607116,130 -8060142120,112,0.01003014715567056,0,35.93171372333505,0,2.5210084033613445,17.898744246832212,15.253328391512929,140,-12.503411775259352,149,59.08852035885501,142,38.399452022641526,131 -8060042720,112,0.00119274183148369,0,46.020548744953885,0,0.8403361344537815,14.046252627990237,1.9275000349141465,172,-28.78989441599293,173,64.1831434703713,122,37.89850922658884,132 -8060042780,112,0.00388141148052085,0,45.635620891436325,0,0.8403361344537815,14.046252627990237,2.1172752920238906,171,-28.398151097551068,172,63.80223539836182,124,37.70975590726426,133 -8060043700,112,0.0048329915203593,0,45.18921656284576,0,0.8403361344537815,14.046252627990237,2.3395258762793354,170,-27.94933462420835,170,63.35725375992918,126,37.48786700953979,134 -8060042770,112,0,0,45.19357664763355,0,0.8403361344537815,14.046252627990237,2.3421788254057994,169,-27.965945780524496,171,63.35438812624719,127,37.483377086260795,135 -8060023090,112,7.407098179578502e-4,0,24.004780991496084,0,2.5210084033613445,22.262628558440827,28.713037519746834,137,4.491171676639027,116,52.78989301420023,146,36.78704970413156,136 -8060042710,112,2.5572343846024193e-4,0,42.89336060340398,0,0.8403361344537815,14.046252627990237,3.492031124082125,168,-25.665081507113708,169,61.05455440951905,134,36.33362198563348,137 -8060042580,112,0.00406369077085414,0,42.493850400750134,0,0.8403361344537815,14.046252627990237,3.6879782580766545,167,-25.255918550059146,168,60.660737430155606,135,36.13912222383769,138 -8060036300,112,7.810946157148458e-4,0,41.963375312436696,0,0.8403361344537815,14.046252627990237,3.9564983983885114,166,-24.733764461301764,167,60.125354591524975,137,35.86935439991935,139 -8060023160,112,0.00128532410387308,0,22.115779970798897,0,2.5210084033613445,22.262628558440827,29.656993415809513,135,6.381553231223769,113,50.901706236501,149,35.84330081078389,140 -8060035020,112,0.00989397989151189,0,41.806320032065194,0,0.8403361344537815,14.046252627990237,4.025913153298465,165,-24.553609076393936,166,59.9819238215986,138,35.8034033661097,141 -8060036310,112,0.03455152474334042,0,41.14859251352898,0,0.8403361344537815,14.046252627990237,4.330119367714744,164,-23.83337754881472,165,59.36106135372611,139,35.50856925018914,142 -8060042910,112,0.1005578983074198,0,40.83554733317402,0,0.8403361344537815,14.046252627990237,4.420635584328142,163,-23.353013886634532,159,59.14670111220793,141,35.44314142895756,143 -8060023170,112,4.8542699549583926e-4,0,21.28519273583249,0,2.5210084033613445,22.262628558440827,30.073086930401097,134,7.210112820031732,110,50.06992308979223,150,35.42690326290224,144 -8060036730,112,0.01651971101866315,0,40.97873271051902,0,0.8403361344537815,14.046252627990237,4.433081082944401,162,-23.709226296874288,164,59.164242511180234,140,35.398753813905756,145 -8060022890,112,0.03456063913677421,0,21.127347939404594,0,2.5210084033613445,22.262628558440827,30.117934116473762,133,7.454334317003799,108,49.96302352856573,151,35.39500774117287,146 -8060023270,112,6.161251912472709e-4,0,20.340417376802954,0,2.5210084033613445,22.262628558440827,30.54534391172011,132,8.155219483790034,107,49.125343135278314,154,34.95469595872551,147 -8060036720,112,0.00375445679362009,0,39.790718987697126,0,0.8403361344537815,14.046252627990237,5.039853198580392,161,-22.55357100918099,155,57.95714368695958,143,34.78712974643762,148 -8060023080,112,6.882040742600116e-4,0,19.89132766573802,0,2.5210084033613445,22.262628558440827,30.769816688369566,130,8.604491906442135,105,48.67636118805159,155,34.73025057857457,149 -8060042570,112,0.00410829686174871,0,38.96795499086528,0,0.8403361344537815,14.046252627990237,5.4508813569281855,160,-21.729910068920635,154,57.134908710032875,144,34.376236079337446,150 -8060023260,112,7.426995676201024e-4,0,18.840380881964787,0,2.5210084033613445,22.262628558440827,31.29523558476282,129,9.655576829954356,101,47.625495879507774,156,34.20485239540051,151 -8060041990,112,0.01193377349998738,0,26.65892547203588,0,2.5210084033613445,17.898744246832212,19.8878188908182,139,-3.2257980525292353,128,49.818578184975536,152,33.76568507362098,152 -8060041620,112,0.0115924318848461,0,26.549349493851256,0,2.5210084033613445,17.898744246832212,19.94294822152565,138,-3.1170873356481152,127,49.70849187309746,153,33.71042600220913,153 -8060023560,112,6.406738879135762e-4,0,16.711859258776222,0,2.5210084033613445,22.262628558440827,32.35959842203681,128,11.783839829908315,98,45.49682171956529,161,33.14045077913514,154 -8060023570,112,5.715163024029677e-4,0,16.398400127922844,0,2.5210084033613445,22.262628558440827,32.51639714504901,126,12.097123654324003,97,45.183259192452915,163,32.98362576998184,155 -8060042460,112,0.00349366682612944,0,35.81211324989938,0,0.8403361344537815,14.046252627990237,7.029416857446751,159,-18.57562634362642,152,53.97814804678422,145,32.79746696378271,156 -8060042470,112,0.00374226956514444,0,34.50493435306522,0,0.8403361344537815,14.046252627990237,7.682757703124821,158,-17.267817267756147,151,52.67134083142215,147,32.144220609643455,157 -8060042920,112,0.00206446417529892,0,34.39678033497175,0,0.8403361344537815,14.046252627990237,7.7385125175614,157,-17.163916291232287,150,52.56067835674584,148,32.08782807732114,158 -8060034900,112,1.42567853452497e-4,0,29.317713101424975,0,0.8403361344537815,14.046252627990237,10.279968030656635,156,-12.089720841385073,148,47.478737730665415,157,29.54564206969634,159 -8060035010,112,5.635267529770665e-4,0,28.224737530334313,0,0.8403361344537815,14.046252627990237,10.82603485730244,155,-10.995678188432827,147,46.38639152763437,158,28.99973524552818,160 -8060033310,112,0.00342482734736352,0,28.13700480133844,0,0.8403361344537815,14.046252627990237,10.867039921205992,154,-10.900692395139554,146,46.30293667755994,159,28.959817734791727,161 -8060032840,112,0.00153147028212481,0,27.362922555980965,0,0.8403361344537815,14.046252627990237,11.255974400949967,153,-10.131409589784663,145,45.52602370819673,160,28.57016360801843,162 -8060034090,112,1.1668853578296108e-4,0,27.289818680724547,0,0.8403361344537815,14.046252627990237,11.293941120324517,152,-10.061892021745717,144,45.45080461826382,162,28.53165914354572,163 -8060034170,112,0,0,26.904903146824132,0,0.8403361344537815,14.046252627990237,11.486515575810508,151,-9.677272279715076,143,45.06571462543777,164,28.339040335856083,164 -8060033320,112,0.00651984744813566,0,26.85933506252874,0,0.8403361344537815,14.046252627990237,11.502779770510069,150,-9.615177140260457,142,45.029894247491065,165,28.32525427321826,165 -8060034210,112,1.4750899064191827e-4,0,25.937495294481383,0,0.8403361344537815,14.046252627990237,11.97007199299124,149,-8.709490509233259,141,44.09852731112693,166,27.855539985441027,166 -8060034890,112,6.5294634425998044e-6,0,25.465973864518947,0,0.8403361344537815,14.046252627990237,12.205973687499657,148,-8.238326445979304,139,43.626795105215635,167,27.619584705953944,167 -8060034180,112,0,0,24.90084564556381,0,0.8403361344537815,14.046252627990237,12.48854432644067,147,-7.673214778454753,138,43.061657124177444,168,27.337011585225923,168 -8060034100,112,0,0,24.644150118902697,0,0.8403361344537815,14.046252627990237,12.616892089771225,146,-7.416519251793641,137,42.80496159751634,169,27.208663821895367,169 -8060034220,112,0.00569239516321948,0,24.0206560982827,0,0.8403361344537815,14.046252627990237,12.922946704918004,145,-6.7785956713412965,135,42.18997817425512,170,26.904772832059493,170 -8060034350,112,0.00111089024512074,0,23.55871051852939,0,0.8403361344537815,14.046252627990237,13.158500999712757,144,-6.328263673822239,134,41.72118286911606,171,26.667477150780037,171 -8060034420,112,0.23818102082565423,0,22.101831283554382,0,0.8403361344537815,14.046252627990237,13.649870486619728,143,-4.27043922411983,131,40.61874291133687,172,26.266215767804127,172 -8060034360,112,0.00262153372594791,0,21.713973787424862,0,0.8403361344537815,14.046252627990237,14.079358721784194,142,-4.479697637150032,133,39.878704673838605,173,25.747193609941128,173 -8060034410,112,0.01894113184423174,0,21.27661180712667,0,0.8403361344537815,14.046252627990237,14.281720113815007,141,-4.000967373249679,130,39.465741830399224,174,25.55103514208197,174 -8060042220,112,0.0059751418321271,0,34.43121949997911,0,1.680672268907563,3.1819989772146258,-10.081675823451917,176,-29.023068801227303,174,38.5542525144957,175,22.086527232576895,175 -8060042230,112,0.00464381235302823,0,28.916107065503127,0,1.680672268907563,3.1819989772146258,-7.322788276734829,175,-23.511331132175087,163,33.0371496333231,176,19.32713366017544,176 -7060024840,113,0.6987211974683095,0,17.101860849123018,5,25.210084033613445,39.84771862037617,89.9506749602772,1,63.61840523052725,1,80.31704149750834,7,79.57303156374495,1 -7060024900,113,0.3874384015194455,0,20.571010276769695,5,25.210084033613445,36.12477981703506,82.14007598703196,4,55.01676150692619,7,78.50730099560535,10,77.15506904542897,2 -7060025090,113,0.21180111682459477,0,22.78859861158765,5,24.369747899159663,34.81232280047259,78.11484948602674,6,49.982417091236876,16,78.76538307088155,8,75.8686747141659,3 -7060024890,113,0.398786736317114,0,18.34919244844803,5,24.369747899159663,36.01615295539912,82.2129333825804,3,56.30027857135709,4,76.16200300658949,15,75.11085886419782,4 -7060025560,113,2.923828183370303,0,21.308987038044883,5,22.689075630252105,31.299758193331694,68.4355800330453,25,52.55803761591659,10,76.79897658524602,12,73.67847483549286,5 -7060025100,113,0.31149608543342366,0,23.887995424834525,5,23.529411764705884,31.896292808844667,71.62219623166821,18,44.89336430628881,25,76.24361143868126,13,72.79959507355693,6 -7060032050,113,0.07291581552891346,0,41.382035796386695,5,9.243697478991596,36.9814400611605,57.552439243694096,30,18.441508201074736,51,99.95569059234441,1,72.01678586249167,7 -7060244280,113,1.1271940284115554,0,15.434260246458132,5,22.689075630252105,33.527157477381934,76.99104334342097,9,56.47713823368978,3,71.11800424829956,22,70.48899299858041,8 -7060220600,113,0.5680830333693471,0,20.043921272066346,5,22.689075630252105,31.62300888308048,71.97844720121898,17,48.22868915520428,20,72.4298190118871,20,70.11805114564473,9 -7060220780,113,0.5550132195582957,0,19.85932929919294,5,22.689075630252105,31.62300888308048,72.08381300146674,16,48.38015066981246,18,72.22568659606996,21,70.00771763336019,10 -7060032080,113,0.2853973990432942,0,15.160193538783822,5,8.403361344537815,48.45275299732941,89.29144581248462,2,57.744828856802314,2,88.883122242150293,2,69.83008534975781,11 -7060025570,113,0.03316631448699721,0,28.687162023052675,5,21.84873949579832,28.4596589841206,61.92416613772201,26,33.69858570489602,35,76.18332767436146,14,69.69775200691373,12 -7060184130,113,9.857131402296243,0,19.359774170127633,5,16.80672268907563,22.780839820444346,41.97894023100804,43,56.261276902884006,5,74.20126122478598,17,67.87118297784332,13 -7060185280,113,0.3562511907489655,0,18.046710566674005,5,21.84873949579832,30.993019708287623,71.26769936460582,20,48.1136072661181,22,69.30137088019346,26,67.35677337058328,14 -7060256760,113,0.7573371577951276,0,13.343537485838544,5,21.84873949579832,32.59276095232685,75.96281624100371,10,55.69985142022487,6,67.26620651151642,30,67.15846300610107,15 -7060244230,113,0.8533285203752311,0,15.489533067717202,5,21.84873949579832,31.2710075310223,72.52614410924612,15,52.25513712251178,13,67.84678333216263,27,67.04218414309753,16 -7060245520,113,0.13979002263151424,0,13.263601799692625,5,21.84873949579832,33.248392609719964,77.74517396638221,8,54.979280526829406,8,67.11067261489859,32,66.92185588727688,17 -7060253350,113,0.00141297461466073,0,13.526348959588404,5,21.84873949579832,33.248392609719964,77.75217743445117,7,54.365763640565326,9,67.1665347456282,31,66.86225661815172,18 -7060221070,113,0.4701743851014163,0,15.276697963593335,5,21.84873949579832,30.993019708287623,72.5387824717937,14,51.17240191999917,14,66.70168279063645,34,66.12899138704067,19 -7060032070,113,0.09215623735878896,0,21.09906069899592,5,8.403361344537815,41.33416671401785,74.30216078269481,13,43.01110049109235,26,85.3292492962664,3,65.41424235553973,20 -7060256770,113,0.08558768287398305,0,13.75281684074154,5,21.008403361344534,32.26546962895619,75.0280684046463,12,52.36558924508128,12,66.24800080067241,35,65.26840015852926,21 -7060220950,113,0.8751120792431704,0,16.53125142205124,5,21.008403361344534,29.750781294391732,68.53496986410445,24,48.65470414641322,17,66.95552485932254,33,65.23254423178074,22 -7060253490,113,0.01493787451357212,0,13.399061364232066,5,21.008403361344534,32.26546962895619,75.27559595126145,11,52.54025567249111,11,65.78861806969623,38,64.99401929108933,23 -7060227150,113,0.00725639522561685,0,15.606795336868016,5,21.008403361344534,30.60173873515541,71.32500948908407,19,48.372030666954544,19,65.83378119302077,37,64.42355424703265,24 -7060228720,113,0.02407545144355899,0,15.205639618856614,5,21.008403361344534,30.039888630035797,70.54482305128107,21,48.160328947468,21,64.7313388835218,39,63.684338102574635,25 -7060032060,113,0.03558730699234179,0,13.502480980951912,5,8.403361344537815,41.33416671401785,78.15701957208327,5,50.46428454844002,15,77.64809439052698,11,61.53788225325182,26 -7060245300,113,0.00658253975542934,0,13.81752200424238,5,20.168067226890756,29.29143701346667,69.13194815149188,23,47.79057437789457,24,62.34937291268609,48,61.37734974304606,27 -7060228380,113,0.00848602138786318,0,13.650040914810528,5,20.168067226890756,29.29143701346667,69.21378521457538,22,47.96288057192957,23,62.18473768431781,49,61.29623617524368,28 -7060025860,113,0.17323517069073083,0,53.045952845740786,5,14.285714285714286,14.976786782671493,18.90961640121847,116,-13.598189632833261,136,83.31913249605233,4,61.02455770420039,29 -7060184050,113,0.43326355825080376,0,28.1455441666158,5,17.647058823529413,23.566274057779268,49.19779939676309,37,25.343773798338358,41,69.91308727936217,24,60.884047884374475,30 -7060025870,113,0.16685835846256558,0,50.809234966701226,5,14.285714285714286,14.976786782671493,20.034352152966413,113,-11.377636231302304,129,81.07288076004214,6,59.89739818671866,31 -7060227160,113,0.02573891167275701,0,18.262191277430976,5,18.48739495798319,26.796977100971652,60.93013316878004,27,38.80358877987954,30,63.59752224118286,41,59.45098972509201,32 -7060155100,113,0.15688814287231348,0,34.894354976816146,5,15.126050420168069,20.811788548591785,38.852993093941535,48,12.159808616083007,65,72.68733918807135,19,58.6015362923537,33 -7060185140,113,2.2086229233608163,0,19.640030053885397,5,16.80672268907563,22.780839820444346,49.48732076806458,36,36.59294138647598,33,63.04637000561078,45,57.45567704607828,34 -7060184500,113,1.773259020170334,0,18.21415548063344,5,16.80672268907563,23.101312574578117,51.18544509268405,35,37.289103968672464,32,61.3839393229285,50,56.46237092773495,35 -7060027300,113,3.410801267026705,0,38.21056578952182,0,2.5210084033613445,29.694869026649258,30.951301945126183,73,7.6004410853778595,86,81.70335927185468,5,56.02837474306629,36 -7060178270,113,1.674356151921343,0,30.085539955061144,5,14.285714285714286,18.763098170684845,35.38473489729275,53,17.58475368233026,53,67.49845142073008,29,55.402345449024764,37 -7060031720,113,0.0698479453418759,0,20.59021419051431,5,15.126050420168069,24.51654450063451,52.44821510113957,33,30.56552789998156,36,63.043053665569275,46,55.03409850171255,38 -7060150240,113,0.04159910529288283,0,48.86810301674632,5,13.445378151260504,12.034774703108145,15.242341004131811,130,-14.02670548371412,138,75.14066236162738,16,54.9716148926709,39 -7060147110,113,0.00310635255732718,0,47.4632105151696,5,13.445378151260504,12.034774703108145,15.983280007655724,126,-12.719387634420551,132,73.67822003956735,18,54.21604515960044,40 -7060027410,113,2.5604872820445803,0,36.44141714962296,0,2.5210084033613445,29.694869026649258,32.68619025005774,65,7.214142647066225,89,78.66292152653992,9,53.97029017234967,41 -7060184650,113,0.13377892220715154,0,16.724391513588763,5,16.80672268907563,23.101312574578117,53.56980717416957,32,34.62297652460117,34,57.44301822581427,61,53.45485803978379,42 -7060156430,113,0.7272720875108759,0,26.536485092269427,0,14.285714285714286,24.857472962478944,42.93723760215305,40,18.593164491655223,49,59.76277141695129,54,53.41513109157146,43 -7060147220,113,0.00288530268289388,0,43.52914281101643,5,13.445378151260504,12.034774703108145,17.950534909606745,120,-8.785880265995596,126,69.74382184773305,25,52.24870623869262,44 -7060178410,113,0.1706862748672865,0,24.35289357707559,5,15.126050420168069,19.682936530484703,42.17319641629337,41,21.419252654871933,45,60.706981285064714,53,52.22099624522913,45 -7060030950,113,0.06961919841343348,0,11.723192057256638,5,14.285714285714286,26.53626710073768,59.50678140981766,28,40.94797708537403,29,56.78704805016854,62,51.779658209270764,46 -7060031670,113,0.7447642749803777,0,11.486039298456069,5,15.126050420168069,24.51654450063451,56.32538621753019,31,41.38053720903042,27,54.94793400733123,66,51.41345666898543,47 -7060150330,113,0.01001749666656844,0,41.44783814518525,5,13.445378151260504,12.034774703108145,18.984055048538657,115,-6.686496317740685,123,67.67318039651353,28,51.21789697892193,48 -7060148930,113,1.0097061234214637,0,34.3336239640463,5,13.445378151260504,13.057560088641416,23.296228197894656,107,4.155061905813826,97,63.375971839399824,42,50.06323604836646,49 -7060031660,113,0.05966448871336942,0,9.924750558224332,5,15.126050420168069,24.51654450063451,57.79113037391306,29,41.20517765384114,28,52.362364930910125,74,49.68731259384043,50 -7060121090,113,7.260919809353674e-4,0,39.81918136844296,0,11.764705882352942,17.682822887664074,22.19214789173322,109,-7.422674891739565,124,62.68290662861162,47,49.358121526881874,51 -7060154870,113,0.00472200689605281,0,35.60014907605508,5,13.445378151260504,13.057560088641416,23.667949758415674,105,0.3410189170313327,107,63.13996332145585,44,49.30952957477695,52 -7060114610,113,0.0023738242701195,0,37.99776470766993,0,11.764705882352942,17.682822887664074,23.101208489830555,108,-5.5970814212102304,120,60.86395346267094,51,48.449687216170474,53 -7060027050,113,0.04337520977962655,0,32.33659679230741,0,2.5210084033613445,29.694869026649258,37.25571250098047,50,4.938376588640374,96,70.79481230052659,23,48.444037541018545,54 -7060031710,113,0.528211677074278,0,11.324500238863475,5,14.285714285714286,22.30875417386683,51.994548806782205,34,37.577049097782954,31,51.6081142775322,76,47.98569849533708,55 -7060028080,113,0.04823224572971727,0,31.65222785344677,0,10.084033613445378,21.22148548650055,30.61859748048238,76,3.3124686287734164,98,59.16221923924587,55,47.198197890685435,56 -7060148740,113,0.02849097543470547,0,31.02632988920488,5,13.445378151260504,13.057560088641416,25.931090383302124,98,4.975089675293466,95,58.60168069084705,57,47.055423308973076,57 -7060030200,113,0.00157170578620746,0,27.081139548290142,0,8.403361344537815,24.398080469448168,36.72009527243086,51,9.790633102015413,76,58.62848230746447,56,46.34418068435184,58 -7060114600,113,0.00189685397996462,0,31.177649036979417,0,12.605042016806722,17.8902210352861,27.707904685598983,93,2.304125825269214,101,54.31127582266052,69,46.08670540073588,59 -7060106280,113,0.00408912316775486,0,34.65844614775785,0,10.92436974789916,17.669835136736683,23.906533737253728,104,-3.1089032885817396,113,57.51040717158581,60,45.92907131854267,60 -7060113240,113,0.00560059499023635,0,26.8871718911357,0,14.285714285714286,18.069208477754422,31.83719385638788,68,8.493482475693684,79,50.25775418064627,83,45.80623803696426,61 -7060029460,113,0.00294510650992272,0,32.155748861554706,0,5.042016806722689,24.60529413197178,31.17558141874603,72,1.5999099350167967,105,63.973057581556766,40,45.729249882980994,62 -7060029010,113,0.05646529008168177,0,33.191598195996775,0,10.92436974789916,17.669835136736683,24.58758154622034,103,-1.509287843945831,111,56.12186588248949,63,45.26793119292795,63 -7060106320,113,0.00353124274573408,0,30.474256754994,0,11.764705882352942,17.682822887664074,26.861805047692904,94,1.929360452717841,103,53.34217594548642,71,44.68953058207261,64 -7060026050,113,0.03929059929167688,0,41.39849531187496,0,12.605042016806722,11.22506960622763,11.124936435394607,134,-15.597941653939278,146,55.970459287418926,64,44.58358386170469,65 -7060121880,113,0.00305330214371305,0,24.14885195783117,0,14.285714285714286,18.069208477754422,33.20890111588667,59,11.225345317829122,70,47.5156258357417,96,44.43356257565955,66 -7060115800,113,0.00329285287001394,0,30.006664081206996,0,13.445378151260504,15.85918986038645,25.647772970064466,99,1.949449239639982,102,50.516398298774504,79,44.312444487206804,67 -7060028900,113,0.0031001684819864,0,27.618467074807416,0,12.605042016806722,17.8902210352861,29.48629235218296,82,5.866358049783548,93,50.753892914301375,78,44.308775102559906,68 -7060030400,113,0.007482938619449,0,26.759263746793515,0,9.243697478991596,21.54667878856754,32.82341470904789,62,7.641194031484705,85,54.628783524462435,68,44.18033527343975,69 -7060112210,113,0.00772160565453883,0,23.29808108712593,0,14.285714285714286,18.069208477754422,33.629618247728466,58,12.087949795108313,66,46.671834461432965,97,44.01461982162278,70 -7060029000,113,0.0046225520342888,0,26.935239908551104,0,12.605042016806722,17.8902210352861,29.826383551758816,80,6.553444281323605,92,50.07294183624129,85,43.969262546506194,71 -7060026040,113,0.00340810218705972,0,40.25636150844772,0,12.605042016806722,11.22506960622763,11.731885834212845,133,-14.546765808288852,141,54.77467820963199,67,43.96299586670189,72 -7060115860,113,0.00556708571967137,0,28.985161198720593,0,13.445378151260504,15.85918986038645,26.15625017845801,97,2.976717037954584,100,49.49829558081087,87,43.80483169310906,73 -7060120880,113,0.00287662080071124,0,29.593146358816178,0,13.445378151260504,15.482163090817329,25.208097316502155,101,1.9220472976368832,104,49.61478932072828,86,43.72808441851858,74 -7060027290,113,0.2506305886687005,0,39.879823287408954,0,3.361344537815126,20.046593556452073,17.563994142053698,121,-12.495466867882957,131,66.17336459354404,36,43.69374263183572,75 -7060028910,113,0.00462648261543109,0,26.054615457693192,0,12.605042016806722,17.8902210352861,30.266691846606626,78,7.434078695747667,88,49.19232326192437,89,43.52895574563492,76 -7060137460,113,0.00180820385710003,0,32.17921580578817,0,12.605042016806722,13.99511335871356,20.524519190547238,111,-3.24195795062748,114,50.27661123811479,82,42.69225876337552,77 -7060120870,113,0.00646255965749891,0,33.507989249432576,0,12.605042016806722,12.972327973180306,18.100723427383244,119,-5.752182759977501,122,50.28995413984944,81,42.340283531877695,78 -7060028840,113,0.00364602932390959,0,23.400589291902847,0,12.605042016806722,17.8902210352861,31.594685382793323,71,10.085619526450204,75,46.53683123809817,98,42.20058954846864,79 -7060027400,113,1.2245023329611038,0,40.749131214828395,0,4.201680672268908,15.932723450196043,9.937791277772114,137,-14.855302153933245,143,63.179747436548865,43,42.19889376405624,80 -7060028850,113,0.00496304624596509,0,23.16653304001521,0,12.605042016806722,17.8902210352861,31.710396491815082,69,10.323014263093748,73,46.304744034461216,99,42.08537902506431,81 -7060198080,113,0.21878248859360935,0,22.99173890329794,0,12.605042016806722,17.472583669526685,30.86744928789667,74,10.55257223005046,72,45.90965190622529,101,41.87543477156179,82 -7060179010,113,0.7372197549764875,0,20.58562751234709,0,13.445378151260504,17.022357553738022,31.619967720258593,70,14.587934140579174,59,43.696536189829814,108,41.777979439759534,83 -7060026200,113,0.00238785139734591,0,35.88248417155583,0,12.605042016806722,11.22506960622763,13.919844753448503,132,-10.175474688515079,127,50.39927551418237,80,41.774649159835754,84 -7060113160,113,0.00292482590447222,0,24.913342249368096,0,13.445378151260504,15.85918986038645,28.19480191294946,89,7.041838165915069,90,45.42252623645598,102,41.765275660769305,85 -7060102570,113,0.00328915998856186,0,27.538782656463415,0,11.764705882352942,16.082731973407594,25.584567960557266,100,2.9974481663089243,99,48.337535498998804,92,41.62136852243799,86 -7060030440,113,0.01212344430994418,0,21.464197535060407,0,9.243697478991596,21.54667878856754,35.46630730922394,52,12.948023385549533,63,49.340655249105936,88,41.53920648538134,87 -7060137470,113,0.00386814661419608,0,29.832264476460857,0,12.605042016806722,13.99511335871356,21.695934912453794,110,-0.8897849059391518,109,47.9327396920571,95,41.52162600613682,88 -7060028410,113,0.00379064523896257,0,24.358396203905777,0,13.445378151260504,15.85918986038645,28.471409116346127,88,7.5989789627136535,87,44.86887466186752,104,41.48899754707443,89 -7060030410,113,0.01090373426354446,0,16.447809263245908,0,8.403361344537815,24.398080469448168,42.027428386475634,42,20.44761899413011,46,48.009104169914224,94,41.04039458565591,90 -7060028670,113,0.04039944296580391,0,20.95323755317472,0,12.605042016806722,17.8902210352861,32.78160783851549,63,12.626136895107782,64,44.14442886533956,106,41.02763671603118,91 -7060027040,113,0.00722583260494084,0,34.880573313101436,0,3.361344537815126,20.046593556452073,20.307023885271214,112,-8.113219647318466,125,60.810204557711685,52,40.85819705373424,92 -7060187940,113,0.19220234197258185,0,19.611924841132765,0,13.445378151260504,17.022357553738022,32.65183646886966,66,14.18008104394639,61,41.90798781261621,121,40.53895475136417,93 -7060059690,113,0.00663607895804875,0,23.980158985475295,0,5.882352941176471,22.654696289561908,32.75345365422313,64,8.349494648711634,80,53.281000922649625,72,40.53628711298826,94 -7060105110,113,0.0022071592836362,0,25.154454902735,0,11.764705882352942,16.082731973407594,26.7778138381264,95,5.379033174064389,94,45.95159006552794,100,40.427711386682375,95 -7060112130,113,0.05626230462299345,0,21.98822536355381,0,13.445378151260504,15.85918986038645,29.60402287713808,81,10.102159358248395,74,42.57715325325036,117,40.37632776541487,96 -7060121180,113,0.02127283639089436,0,32.07208074813287,0,11.764705882352942,12.437070288084572,17.04520964807926,123,-5.7435353630159725,121,48.18413787589747,93,40.267174983866944,97 -7060028800,113,0.00770820752082964,0,18.983687693802203,0,12.605042016806722,17.8902210352861,33.79907400364672,57,14.512818273933737,60,42.12600292936735,120,39.997744922948016,98 -7060187840,113,4.320048384543021,0,11.553889133450388,0,12.605042016806722,15.631569975566803,29.32654984289649,85,30.238804845126655,37,38.22323028655316,145,39.97561428437302,99 -7060028420,113,0.218785140319724,0,20.722202523741064,0,13.445378151260504,15.85918986038645,30.074511461347722,79,11.780158688548203,68,41.55411537434814,128,39.96761256671891,100 -7060028750,113,0.01012184350943663,0,18.657106160226167,0,12.605042016806722,17.8902210352861,33.959951134446136,56,14.845518094085543,57,41.8030299794333,123,39.837785192252866,101 -7060028790,113,0.00678516264043088,0,20.69542697416194,0,13.445378151260504,15.85918986038645,30.299899213816577,77,11.269538945870513,69,41.21038248109112,130,39.66164563721359,102 -7060107620,113,0.00295482386019018,0,22.10413623429148,0,12.605042016806722,15.733848514120124,28.543995321712906,86,8.864552517223464,78,42.45130757257908,118,39.39503657240452,103 -7060028740,113,0.01326737637190304,0,20.01496834448888,0,13.445378151260504,15.85918986038645,30.633646314921634,75,11.966429233607071,67,40.53961529227561,134,39.33036236395217,104 -7060107570,113,0.0018803040976130001,0,22.750081173186675,0,11.764705882352942,16.082731973407594,27.980327558086582,92,7.7825783637225605,84,43.54672766068511,110,39.22507343217185,105 -7060105150,113,0.00396033203778805,0,22.722985520618312,0,11.764705882352942,16.082731973407594,27.991795356430586,91,7.814946645255553,83,43.5227418203814,111,39.21439623268293,106 -7060102690,113,0.00540688707710488,0,22.42033655816511,0,11.764705882352942,16.082731973407594,28.141673282617873,90,8.121262456529351,82,43.22225557628206,113,39.06506812832055,107 -7060156440,113,1.1887113345192906,0,28.791357380687252,0,11.764705882352942,11.21881925109381,15.428025030450971,129,-0.9247840279666644,110,45.07371830296714,103,39.01973304111338,108 -7060028680,113,0.1022999417581172,0,16.731780789620586,0,12.605042016806722,17.8902210352861,34.830435721500244,54,17.00450422536801,55,40.01551842129132,136,39.0023366244426,109 -7060030610,113,0.02477211411023093,0,21.507168655157702,0,12.605042016806722,15.537814648559577,28.48433383963431,87,9.288118213759576,77,41.6335007034822,126,38.93062875223755,110 -7060197970,113,3.3129950129675345,0,20.006424817426673,0,11.764705882352942,12.537075970225583,19.95789145055307,114,14.782926822750563,58,41.16917668836601,131,38.87722719774027,111 -7060030510,113,0.00920943419100448,0,15.833385069859409,0,9.243697478991596,21.54667878856754,38.28462755194339,49,18.571449173937403,50,43.70548609992384,107,38.71977865510539,112 -7060179020,113,1.888412300393157,0,15.821965580373634,0,12.605042016806722,15.537814648559577,29.463295190743416,84,19.69743245842362,47,38.734592464583415,143,38.66001932713643,113 -7060027430,113,0.09868671267282685,0,41.26141660076825,0,5.042016806722689,12.721502033394774,6.138427691923759,148,-21.127488080325186,152,57.8569639543246,58,38.53042373491431,114 -7060030210,113,0.03403804459113473,0,11.086528160584775,0,8.403361344537815,24.398080469448168,44.68493462747861,39,25.867542883435597,40,42.682410757447784,116,38.39168147618017,115 -7060093370,113,0.01179402847317142,0,41.08213780226879,0,5.042016806722689,12.721502033394774,6.3149597753731435,147,-21.168472132471372,153,57.54777347059549,59,38.32086456787773,116 -7060136810,113,0.00415745986486475,0,19.578340604369117,0,12.605042016806722,15.537814648559577,29.469362519273968,83,11.164690513088976,71,39.673852054871034,140,37.937764638405085,117 -7060030520,113,0.822794307313474,0,11.759978616933084,0,9.243697478991596,21.54667878856754,39.507745905284075,47,24.707198677336965,42,40.84845571960029,132,37.80589618114156,118 -7060093830,113,0.00604749440232818,0,39.05868565959126,0,5.042016806722689,12.721502033394774,7.332432380782752,144,-19.15958678546179,151,55.51572978845468,65,37.30120775947287,119 -7060030620,113,0.05147741641688253,0,8.266940778046592,0,8.403361344537815,24.398080469448168,46.07728894692196,38,28.731337045718117,38,39.8888966652458,137,37.0059556962543,120 -7060143720,113,0.07487340603527043,0,26.93884308337524,0,11.764705882352942,11.21881925109381,17.468120107590998,122,-1.8957193633234457,112,41.555925004380654,127,36.5562787513369,121 -7060030660,113,0.00135135366548132,0,15.5089589833653,0,10.084033613445378,18.60944896344636,34.25573930297389,55,16.289523945175347,56,39.57168105797436,142,36.4498270589272,122 -7060109330,113,0.00160112096055818,0,27.775330651347907,0,11.764705882352942,10.782430819932964,16.374453276181733,124,-3.4270634902816823,116,41.71864511449831,125,36.43701171978326,123 -7060030670,113,0.12234010633083048,0,10.246422909950123,0,9.243697478991596,21.54667878856754,40.9649779597582,44,24.44518443299183,43,38.2876635678695,144,36.08242814077358,124 -7060026210,113,3.023037452175647e-4,0,28.44922142005646,0,10.92436974789916,10.802561833870437,15.233008603320291,131,-4.921096561132597,119,42.416622022625624,119,35.95195949832403,125 -7060028070,113,0.0132954841132592,0,36.20283296442593,0,5.042016806722689,12.721502033394774,8.753110738654485,140,-16.285361279168754,148,52.6707134320047,73,35.88328429361796,126 -7060121890,113,0.16535352471248596,0,19.91200953198151,0,12.605042016806722,12.972327973180306,24.739822321053786,102,8.246567078194351,81,36.931529439005175,147,35.7615775842009,127 -7060026740,113,0.17472918337658322,0,39.64488332402058,0,5.042016806722689,10.598004756763784,3.227446893422112,153,-21.79560947189408,154,53.60858857185667,70,35.70360531115223,128 -7060026370,113,0.03568335431922048,0,27.78250271027749,0,10.92436974789916,10.802561833870437,15.530986907635773,128,-4.164691002224178,118,41.8028008835409,124,35.6674291951317,129 -7060093380,113,0.01582404387076357,0,35.720552155862066,0,5.042016806722689,12.721502033394774,8.991722583178912,139,-15.79667086563819,147,52.192213027537306,75,35.64563353063032,130 -7060143810,113,0.00468135932267309,0,25.25952487659507,0,11.764705882352942,11.21881925109381,18.37797125769368,117,-0.3943298330938152,108,39.7716639343187,138,35.619748271262004,131 -7060026460,113,0.05854213560473095,0,27.286580628028897,0,10.92436974789916,10.802561833870437,15.75608916747456,127,-3.610824567414639,117,41.341054552984744,129,35.451015340849395,132 -7060030450,113,0.7249108681073975,0,8.164709478341441,0,9.243697478991596,20.9784646854935,40.4284001995963,45,27.391428225750076,39,36.37218215764287,149,35.30495950443752,133 -7060026360,113,9.669542938010952e-4,0,26.82346705771166,0,10.92436974789916,10.802561833870437,16.045221133944107,125,-3.293657386932086,115,40.79186136733051,133,35.13999959505805,134 -7060030880,113,0.01824226563838174,0,9.657914321141025,0,9.243697478991596,20.9784646854935,40.38846638066553,46,24.106900646459266,44,36.808859516095325,148,35.07629530252034,135 -7060093620,113,0.01771146618371457,0,34.54266557126188,0,5.042016806722689,12.721502033394774,9.578778453166056,138,-14.613999884942386,142,51.01714829400173,77,35.059295051929546,136 -7060030870,113,0.00473581817412229,0,13.378459092837549,0,12.605042016806722,15.537814648559577,32.568724916730496,67,17.36603809568355,54,33.474835236418215,151,34.838622069446195,137 -7060195540,113,0.2625512629996848,0,12.344502559700375,0,12.605042016806722,15.537814648559577,32.82788773847352,61,19.053526802913424,48,32.826333925708774,153,34.67745244845135,138 -7060030940,113,0.01636980211514808,0,12.816095076266894,0,12.605042016806722,15.537814648559577,32.8382729410748,60,17.957892908755873,52,32.92986497944464,152,34.573496011848704,139 -7060109290,113,2.099834346355379e-4,0,23.829779587966996,0,11.764705882352942,10.782430819932964,18.348619945398113,118,0.5149612012311913,106,37.77101418648848,146,34.462316292412225,140 -7060026660,113,0.0133327079381244,0,34.24239919120233,0,9.243697478991596,8.057275981589868,5.932732642661907,149,-15.56474953604762,145,44.6798208202279,105,34.440573399717145,141 -7060026750,113,0.0571247814186246,0,33.12385751644079,0,4.201680672268908,13.13711006307177,10.121476204695185,136,-13.450743758775051,135,50.19461817200245,84,33.97955686158225,142 -7060093650,113,0.00785439437527113,0,32.36966112740461,0,5.042016806722689,12.721502033394774,10.675137746903133,135,-12.465981971948379,130,48.829406719834125,90,33.95918917886256,143 -7060136860,113,0.01071037909600828,0,19.446697865945573,0,11.764705882352942,12.437070288084572,23.368463546467797,106,6.855072918121497,91,35.54296325427913,150,33.93990639582787,144 -7060096470,113,0.02530304116220199,0,32.98298449006851,0,9.243697478991596,8.057275981589868,6.55046966000474,146,-14.274991432089974,140,43.43830274843893,112,33.827386192287534,145 -7060026590,113,0.01348261636494277,0,32.65869343579769,0,9.243697478991596,8.057275981589868,6.7244356119374125,145,-13.98066378021221,137,43.09633919020892,114,33.6489274092102,146 -7060026840,113,0.00402102443178571,0,34.9425590191156,0,5.042016806722689,10.598004756763784,5.749317204819402,150,-17.526010500128237,149,48.65104157685717,91,33.11685045065375,147 -7060026650,113,0.01140098575545573,0,31.394154264765337,0,9.243697478991596,8.057275981589868,7.358786828063074,143,-12.721401300724834,133,41.82868781078993,122,33.013784985070075,148 -7060026580,113,0.01679692058598187,0,32.27587193640855,0,10.084033613445378,6.052791461053303,4.313848966269463,152,-15.087670044512485,144,40.12681609346947,135,32.29794231319492,149 -7060026470,113,0.1317391868975143,0,31.56928599785032,0,10.084033613445378,6.052791461053303,4.552199669237046,151,-14.089718826234325,139,39.59207826454422,141,32.10328007344077,150 -7060096520,113,0.0061618255185619,0,29.341788754855187,0,9.243697478991596,8.057275981589868,8.390208743255043,141,-10.682316452810534,128,39.76848932688627,139,31.98037171485594,151 -7060093860,113,0.00964488544008387,0,30.778822406478355,0,5.882352941176471,9.9039718165805,7.475171390823272,142,-13.317387016198998,134,43.59837757877873,109,31.189046775743776,152 -7060195660,113,0.11614138179720997,0,13.428832825641177,0,11.764705882352942,12.437070288084572,26.271965063918792,96,13.140193290854521,62,29.6827262048985,154,31.076478200670543,153 -7060026850,113,0.05971279573870768,0,33.45683576769941,0,5.882352941176471,7.193590544917336,1.4359968832293664,154,-19.030595530270098,150,42.846915228683045,115,29.886770431935844,154 -7060034110,114,2.427283157988905,0,12.604537888423163,10,21.008403361344534,37.4912210921075,87.85113901235016,2,72.79650397698765,1,86.00752819543187,5,78.15176381932253,1 -7060034000,114,6.516975717005333,0,13.196644638069763,10,15.966386554621849,31.681225906974383,68.45538453247502,15,70.75094779608997,2,85.20214757487284,6,73.23995104165658,2 -7060032690,114,0.05458435956869762,0,20.38363627514687,10,10.084033613445378,42.70697198704473,84.35838787479926,4,54.16356299433878,15,96.98284451169582,1,73.05815509402939,3 -7060034010,114,1.01995210663083,0,15.581049481228495,10,19.327731092436977,34.18771323469466,80.42183695146322,6,60.71780704291257,7,82.60876243318152,7,72.7135952782545,4 -7060032700,114,0.1730145592479522,0,15.93263094848762,10,10.084033613445378,42.70697198704473,86.46546033844963,3,58.91477510623149,10,92.70890204095048,2,70.99609682392227,5 -7060034100,114,1.129723343588505,0,14.558479256505352,10,19.327731092436977,31.946479172482626,76.97814925507201,9,59.40386151664539,9,78.85255203400763,11,70.11257034473107,6 -7060032800,114,0.05374745962691361,0,17.961771001948208,10,9.243697478991596,40.948607617168335,81.71306120133961,5,53.69154559085606,16,92.28628720302949,3,69.24736695544267,7 -7060032950,114,0.09870179660389848,0,12.12432049830233,10,10.084033613445378,42.70697198704473,88.44392832618634,1,62.534711344133015,5,88.78948791940226,4,68.98938326124394,8 -7060293920,114,1.2973193479518004,0,21.80861686710023,10,16.80672268907563,28.04477527132223,63.97046838511932,23,45.505564001155506,23,81.30863214235626,8,67.54622449858735,9 -7060033700,114,1.877643801581597,0,13.5006833759823,10,16.80672268907563,28.04477527132223,67.54411067704848,18,55.28455250263734,13,73.86833127699305,15,64.1931580170876,10 -7060033120,114,1.7373305428936423,0,9.690090826497022,10,10.92436974789916,35.92861482514304,77.23337633513495,8,62.05492712845833,6,80.04120600457203,9,64.09570335996746,11 -7060033460,114,0.3168009883501644,0,19.863780400727116,10,15.966386554621849,27.116373238910107,63.490244151700885,24,43.04142860076663,25,76.69748217470064,13,63.45186402759144,12 -7060293910,114,2.5678473970294147,0,12.593283294251217,10,15.966386554621849,27.453712980103532,65.45320749078903,21,56.41162963505435,12,73.22864039425909,17,63.2606029741314,13 -7060032810,114,0.16958241714638547,0,13.933959758654472,10,11.764705882352942,34.09284618444231,74.36996643725985,10,52.53560504746153,17,79.56764393418962,10,63.05857102860958,14 -7060033190,114,0.5123598677147022,0,9.380924380487135,10,11.764705882352942,35.826710933251064,79.27843366650252,7,59.980383611920004,8,77.7688534648466,12,62.988981990702705,15 -7060033690,114,0.7079110777597858,0,17.66601647421964,10,15.966386554621849,27.116373238910107,64.198016025545,22,46.23061112601012,22,75.08445989006458,14,62.89274938230121,16 -7060033450,114,3.2068744531863485,0,5.757206700789093,10,13.445378151260504,29.96761179612479,70.0242126340431,13,65.2794390590661,3,70.59825504771263,22,60.717370258059645,17 -7060033180,114,0.05026355088392569,0,14.427601552831062,10,14.285714285714286,28.99897387217857,68.02410633670674,16,48.31766117398337,20,73.29687751610163,16,60.56785718326584,18 -7060033440,114,0.20080890495419343,0,14.018043999038046,10,15.966386554621849,27.116373238910107,66.52910443594139,20,48.59313855849847,19,70.67832810078676,21,60.368916254639345,19 -7060033390,114,0.3366118283649985,0,16.0066693496501,10,15.126050420168069,26.3575581945944,63.25678207252311,25,45.22313747487309,24,71.88889575457392,19,59.951498075340126,20 -7060032940,114,0.03578998309422158,0,13.895190235354038,10,14.285714285714286,28.48557571787166,67.42396752500238,19,48.214419166728426,21,72.07903951578177,18,59.76827853684549,21 -7060033470,114,2.565586204454039,0,5.308821398305084,10,13.445378151260504,29.96761179612479,70.88969353401741,12,64.10223321941473,4,69.19109124876326,23,59.608141788431425,22 -7060033110,114,0.18922532348981055,0,13.083579581800032,10,14.285714285714286,28.48557571787166,67.67633751138379,17,49.4149705668666,18,71.49682727278642,20,59.574227865365565,23 -7060033400,114,0.5727867101613661,0,7.822731515333879,10,15.126050420168069,29.54713335984999,72.58481109020288,11,57.72692219847907,11,68.18195389029889,24,59.37504703360905,24 -7060033480,114,0.3718261982590824,0,8.633827695236633,10,15.966386554621849,27.116373238910107,69.0501952945372,14,54.41086381509599,14,65.54979666828709,25,57.91282744417751,25 -7060239430,114,0.11088799203109556,0,20.872907312760596,5,14.285714285714286,20.808668941751375,45.064028749416096,26,25.220675570843227,28,58.59308409693762,26,50.68387234796127,26 -7060252360,114,1.4307039372989148,0,13.984196331900655,5,13.445378151260504,17.574862208080006,40.80011072789792,27,30.841855848916325,26,49.49652268225222,29,44.98683943423278,27 -7060271330,114,0.17959694745175958,0,20.589341890455277,5,13.445378151260504,15.793510994942904,35.69244719448315,29,18.987056466662843,29,51.927999576771995,27,44.78142013203189,28 -7060271320,114,2.340138747407854,0,14.431676012039068,5,13.445378151260504,15.793510994942904,36.610738333735156,28,30.621444582177055,27,49.0005207828803,30,44.68433040090799,29 -7060239440,114,0.19756040373168712,0,21.909526364883664,5,12.605042016806722,13.755327007216328,30.677219223736877,30,14.494189811661967,30,50.639813108642194,28,42.58778344238418,30 -7060252370,114,0.7559065583157666,0,24.45501947690897,5,11.764705882352942,8.250468776635037,18.561310715616777,31,6.101368540737218,31,46.90268702810747,31,38.285903855751556,31 -7060061880,115,4.5155215405595825,25.274725307221352,15.848469643406274,15,11.764705882352942,83.50799152549253,131.6692937692568,12,128.64477550563066,1,195.07101307665084,1,170.7657569965766,1 -7060063420,115,0.46929543115535177,27.3809522792517,10.665932411154833,10,10.084033613445378,81.76600943235412,125.69561294143003,14,112.78313424538396,6,173.6490889914689,2,158.0290919285075,2 -7060060320,115,1.39571952208797,0,25.463735790731647,10,10.92436974789916,82.73547010975274,149.99293827778018,9,100.02333578073768,11,155.82206879917297,4,118.31792700295813,3 -7060061510,115,1.270196886051172,0,20.754902226153696,10,10.92436974789916,82.73547010975274,152.47287769610594,8,104.4139840586177,10,150.92556860497933,6,115.7902776234238,4 -7060063060,115,1.009598831463249,0,10.686519722177442,15,10.92436974789916,82.73547010975274,163.392667002682,1,121.07178079631294,2,151.1178231741504,5,115.39643747256999,5 -7060061630,115,1.621643107812447,0,38.45220648172801,10,8.403361344537815,73.0814250809705,124.18868646008063,16,73.82349417242786,17,156.66631615618317,3,112.94890391018589,6 -7060060310,115,2.089195813528866,0,26.83701805918758,5,10.084033613445378,80.7091312006364,138.67097073382422,11,89.95353707921684,13,144.9619895074006,7,112.09495313383985,7 -7060059990,115,2.786751875143227,0,9.105774928839658,10,10.92436974789916,82.73547010975274,156.7808863556709,2,119.90740190967671,3,141.5438153241439,8,112.0586971045092,8 -7060063050,115,1.4998710945918343,0,9.357424945551449,10,10.084033613445378,80.7091312006364,153.6250920095793,6,113.1892605564777,4,137.2515601589013,11,107.54183513233492,9 -7060062870,115,0.19802442705112672,0,12.541783503032685,10,10.084033613445378,80.7091312006364,153.3347593983794,7,106.70487207430025,9,138.48955123966596,9,107.3373481956913,10 -7060062940,115,1.1212468043507744,0,8.560398338608833,10,10.084033613445378,80.7091312006364,154.4022296032917,3,113.0265186137395,5,135.88845920327043,14,106.62078604368931,11 -7060062930,115,0.23284098338762557,0,10.809900600736803,10,10.084033613445378,80.7091312006364,154.16588429319083,5,108.52501089847239,8,136.80972194290922,12,106.51945674310731,12 -7060062880,115,0.3111182359975787,0,10.258102393750516,10,10.084033613445378,80.7091312006364,154.36350614407402,4,109.27523283881878,7,136.37495464474307,13,106.35158733213018,13 -7060061870,115,0.33715929280576934,0,12.63569001464775,5,10.084033613445378,80.7091312006364,147.52367127681723,10,99.71365626890045,12,128.14122325482887,15,102.57632015763082,14 -7060061520,115,3.0393660686236617,0,32.81613726567957,5,7.563025210084033,69.30696819895068,112.64796727404922,18,70.55945707914876,18,137.61950058043305,10,102.47266227232797,15 -7060061830,115,2.177952245709669,0,17.993188979521847,5,8.403361344537815,74.18603329734646,130.13202113367126,13,89.73140023786637,14,127.81695420915332,16,99.59176033047528,16 -7060061620,115,1.511701390360286,0,12.94556024046943,5,7.563025210084033,69.30696819895068,124.11092046491767,17,86.55758178038894,15,115.4649396428029,17,90.42905825352231,17 -7060061820,115,0.8255677782280092,0,12.032401164962415,5,7.563025210084033,69.30696819895068,125.25363361480345,15,85.7314719321188,16,113.52595457669813,18,89.0255522374867,18 -7060480440,116,78.60853265638995,44.177671241193615,14.879511418839003,100,100,90.65832140004134,233.39536926123765,1,538.8334925748709,1,519.5210466428695,1,487.5773633451587,1 -7060453370,116,97.36154432480043,44.00510191257289,14.376514966859547,70,94.11764705882354,88.78264187088553,172.2332958264511,9,535.288166520942,2,480.50645523059,4,475.13230875390013,2 -7060481890,116,83.58443373564695,39.99999986857143,14.207325078266758,90,95.7983193277311,92.34256731094172,220.78891699364385,3,535.0341431676071,3,501.7850117571964,2,473.931965027528,3 -7060480630,116,79.12351992435258,38.137755253753646,13.542819786202536,85,94.11764705882354,91.87656766212366,219.5253820656914,4,514.7612250818516,5,480.79997220960456,3,456.88246057441074,4 -7060489890,116,100,41.07142858316327,12.508650729686495,60,87.39495798319328,89.75859642374786,157.45753263158966,16,523.5156608894995,4,458.76641802264487,5,456.71454861467276,5 -7060474840,116,88.85225219090056,42.20183488348624,14.918642151824004,60,91.5966386554622,88.41619962768942,168.05541842624814,11,495.5771766229344,6,444.2298148758704,6,447.46633893003127,6 -7060453430,116,88.53616060605394,45.2162516843475,7.199701349216699,55,91.5966386554622,87.8694629751169,162.35210627691703,13,494.8582039848615,7,428.5633503415441,8,443.15032768507245,7 -7060475060,116,78.06465443142305,44.40154436982901,10.897856501791717,65,93.27731092436974,90.1341138854634,188.68676217367252,7,483.37087101802956,8,439.7850397249207,7,442.99947219538853,8 -7060498570,116,86.83782115000272,53.10245324374356,13.465295062680326,35,84.03361344537815,86.96812318881756,120.63340694396096,27,447.3301124008233,10,398.67988035174267,11,429.9329335924179,9 -7060446640,116,76.44191190328685,48.31932789951981,16.505972124235488,45,85.71428571428571,85.9808211028033,146.0072104936164,21,432.5672402820388,11,400.04172855768473,10,419.03028360827733,10 -7060450680,116,81.48597551123486,38.28016632522291,13.042164892601155,50,86.5546218487395,86.0490197755058,160.3204702832423,15,456.1504666955458,9,401.9284152150731,9,411.7630495020517,11 -7060431350,116,61.076517817878,48.79773677108507,14.561700767038449,45,84.87394957983193,85.68983723760182,160.47892421499415,14,394.4220744018969,12,375.36484465880295,12,396.59827648996094,12 -7060446550,116,68.73083834231153,51.87969931482277,15.17844670098591,35,79.83193277310924,83.61719116815847,129.2780936694909,26,391.50486728435635,13,367.41433149765385,13,396.005906266696,13 -7060434140,116,25.242882566799473,44.23076936978022,11.499649472591331,60,87.39495798319328,86.2850599028791,223.28445895370112,2,331.23488126604275,15,345.56720943521174,15,355.3570488329101,14 -7060439770,116,41.12275972080015,37.26067752493162,7.019659788212155,60,81.5126050420168,84.138332602075,207.7462648790289,5,367.0008039259515,14,353.0767376776504,14,354.22513959866023,15 -7060422720,116,41.28911668915233,48.93617015683891,11.947832439990322,30,78.99159663865547,83.16333253944555,154.32900009453994,17,316.3087760880092,16,308.128125638504,16,344.8278749549772,16 -7060400750,116,30.679851437737884,50.81001465737429,10.561301975639946,35,81.5126050420168,84.2030035680331,173.50003478356302,8,301.94216442060974,18,305.2876322485293,17,341.48892457761133,17 -7060434190,116,24.377969564964737,42.7142857264898,6.520193278054799,45,84.03361344537815,84.92391613159838,205.73562399212204,6,307.19616433095734,17,303.6309700625304,18,329.17095419864506,18 -7060335180,116,5.489052209747732,78.46481873670425,22.31677546986016,30,56.30252100840336,70.74621777187136,108.47042395593498,37,180.47584359027746,24,286.94790656422333,23,319.6346829954208,19 -7060419920,116,4.357319981617987,59.74025981706864,69.1745554097144,25,64.70588235294117,75.54620503083486,117.7838012338457,33,135.9422206189106,34,303.5544834206504,19,315.37667065549203,20 -7060414850,116,3.2227070333739487,59.74025981706864,69.1745554097144,25,64.70588235294117,75.54620503083486,118.91841418208973,30,133.06610872685013,36,301.8581440619642,20,313.81080210701043,21 -7060399420,116,2.8173010940938004,59.74025981706864,69.1745554097144,25,64.70588235294117,75.54620503083486,119.32382012136988,29,132.03845181100047,37,301.2520289527454,21,313.25130522248355,22 -7060399240,116,4.442795787972198,68.11846686231956,14.94213863649128,25,68.90756302521008,78.02106272667932,144.0462076509122,23,198.1785071933861,22,263.43979112896454,30,310.41501123475643,23 -7060337870,116,1.6462158084721945,71.68831164905382,69.1745554097144,25,46.21848739495798,62.725878019928814,66.86929721270388,48,96.6211146332825,45,298.3130266337008,22,302.2321412708405,24 -7060392520,116,5.100755197232446,56.09756088745645,12.06514353163238,35,68.90756302521008,77.92294185229481,169.1314000470049,10,216.10713637579116,19,267.2386711537027,28,297.7481087159772,25 -7060331860,116,2.818953292146728,71.68831164905382,54.742567936025225,25,46.21848739495798,62.725878019928814,72.91255346587394,47,114.02585526326294,42,285.63437782412836,24,296.6346313915558,26 -7060422540,116,6.254963091085987,57.30897023065971,7.913729763705211,25,72.26890756302521,79.86130290172407,164.15726695329474,12,214.40804948516637,20,247.57869992141585,36,294.78593589518493,27 -7060331850,116,2.223691270938105,70.02341919143527,36.832984334462346,25,51.260504201680675,66.79515136385356,96.31750608923076,41,140.07728019407608,33,269.95193173591997,26,292.9173114433204,28 -7060396070,116,8.55260762740153,57.50000001642857,9.692616252438787,25,67.22689075630252,77.03278595374738,150.86524871730447,19,210.12739063080858,21,249.38170411481923,34,291.32602405050966,29 -7060343590,116,1.6798542400642096,69.1729324197637,49.3719064734577,25,47.89915966386555,64.04191625720361,83.4424503208239,46,119.51546835880009,41,277.0227107446367,25,290.7624228016615,30 -7060400650,116,1.2274744629066645,64.00742123257355,6.028397541148824,25,64.70588235294117,75.54266291694555,147.78677105728033,20,191.50604835148962,23,241.2199569255739,38,287.303708809319,31 -7060358930,116,1.7748134506272553,71.19047632034014,23.042686237901997,25,50.42016806722689,66.09239161315983,100.33173532496073,39,151.16675746172274,31,256.08493395772655,33,285.9991792317621,32 -7060345050,116,0.18457018361194308,70.40816319154519,42.65186468044059,25,47.05882352941177,63.1253399137938,84.52612949155737,45,120.63839963483306,40,268.4728558284684,27,285.8464518578272,33 -7060347220,116,0.1128465625723972,70.40816319154519,39.25063572315997,25,47.05882352941177,63.1253399137938,86.29846759123721,44,123.85781755273436,39,264.96439417874836,29,284.0468522913269,34 -7060359070,116,1.3119415526642584,70.40816319154519,35.86855297281887,25,47.05882352941177,63.1253399137938,86.7904139763159,43,130.27946667330832,38,263.3750567250692,31,284.01067051786686,35 -7060343600,116,1.4938022847296777,69.1729324197637,35.0696365178631,25,47.89915966386555,63.991674168089695,90.69343877817474,42,133.28750247093706,35,262.3773183969033,32,283.3042771991076,36 -7060363960,116,1.1826055361531804,65.71428573306123,18.505406385667463,25,54.62184873949579,69.16966436030019,118.69763540181316,31,161.53834210714365,29,247.58828111309379,35,280.15250946625883,37 -7060337970,116,0.6821490890187498,71.19047632034014,12.43464724805382,25,50.42016806722689,66.0560259105631,106.66602790378519,38,158.96259269585937,30,243.79625390247583,37,279.1508183315689,38 -7060363950,116,0.6037133697528922,64.63700220418201,10.487226356501294,25,51.260504201680675,66.76608860972914,116.98555978360017,34,161.83380793330642,28,234.20954574391902,39,267.6045557822806,39 -7060383830,116,7.0403825362765025,43.487394912424975,14.65489140727622,15,57.142857142857146,72.732073680657,136.5975968140408,25,170.56255235271163,25,207.17552000033606,40,241.64563223868402,40 -7060384130,116,2.1263784437858924,38.09523811088436,7.804463618753971,15,57.98319327731093,73.36780498891983,152.79922387834614,18,166.08922742322693,26,186.85576457158442,41,223.02909463042528,41 -7060379040,116,10.760152129740852,21.545667291870195,9.949301513375156,10,51.260504201680675,68.66411001370234,140.87991628155902,24,164.99053778036028,27,163.86316306305432,43,189.24963871563185,42 -7060378910,116,3.7028360347363503,21.90476202054422,10.442376701658228,10,50.42016806722689,67.96749815330415,145.26020349557496,22,144.9848614985292,32,153.36677282456085,47,178.87783376857774,43 -7060293450,116,1.1926773487193263,20.53571429158163,39.03438871898173,10,40.33613445378151,58.95221319393148,109.42908737201034,35,89.31393571427583,46,164.7865983177746,42,168.10035421760455,44 -7060288450,116,1.4002084328617572,20.53571429158163,24.447812495720186,15,40.33613445378151,57.96067958406729,120.43870721823772,28,110.51978989280879,44,159.8785677521858,45,165.10194417331974,45 -7060288400,116,1.3546250693790782,21.90476202054422,38.565836002700166,10,37.81512605042017,55.56679356781634,99.66621709512907,40,83.83642974821743,47,161.94623004454525,44,164.6930731768315,46 -7060293670,116,1.9017462623241836,14.28571433265306,41.91065269777842,10,38.65546218487395,56.82832769648474,108.83234313279553,36,83.55570696908762,48,157.9277022969893,46,155.25417445252003,47 -7060293560,116,3.0357839925939496,14.603174461315191,13.406090026805638,10,37.81512605042017,55.61528117127867,118.67986584529093,32,112.70582135163622,43,129.95908576625834,48,141.09559538887555,48 -7060393390,117,84.45187465261968,33.873343323963816,16.833214768705016,60,81.5126050420168,86.51428765575362,167.31277742313398,15,469.51118674098745,1,426.38033707071287,1,415.09585923359356,1 -7060382790,117,83.73832903302733,35.785007053081436,14.007201187467317,55,84.87394957983193,86.25692616423413,164.63129877042763,18,466.49883992211505,2,413.9665027306165,2,414.3067947966843,2 -7060402430,117,54.19943989842232,41.470180240420056,13.030328293066765,65,86.5546218487395,86.32970650914079,201.46047263452232,3,409.3374107184193,7,397.54298820333565,3,395.2282882650276,3 -7060382860,117,75.9633179120167,27.098674593456764,12.657282725791408,55,81.5126050420168,86.57052327832592,179.8129171460322,10,444.420666986746,4,390.21082092281,4,383.9289263315672,4 -7060393220,117,63.21441218309342,32.857142866530616,12.724847638172683,60,84.03361344537815,85.73123472924597,192.89979770501017,7,421.30781926796726,5,388.1990476926698,5,383.60697682296905,5 -7060374950,117,82.98876427873847,27.669172836476907,10.26826963290567,45,79.83193277310924,84.51006486612577,156.88870544859225,21,446.08137081068065,3,375.0956265016394,6,379.73495432263115,6 -7060380380,117,69.87010171490485,30.17492722290713,13.905526541979574,50,82.3529411764706,85.5312975806835,175.33050896211702,13,420.3610891640492,6,374.31714971629157,7,376.5847653895037,7 -7060402320,117,43.82444456677121,34.75274733850079,13.339239359962734,65,87.39495798319328,85.61762687565289,218.68883632786054,1,382.17888336748507,9,372.76852287954404,8,368.8772741746396,8 -7060377200,117,43.987791918088526,26.822157421949186,10.67685066893279,50,82.3529411764706,84.14392747268803,204.13494439966044,2,356.083123330332,13,326.2805666361452,11,331.71638289980945,9 -7060380530,117,53.41587185696117,24.468085078419456,11.138077890659998,45,78.15126050420169,84.41388715267914,187.7022094956673,8,368.18808205770847,12,327.5045725764784,10,331.71107975747225,10 -7060377320,117,63.45145912430194,18.45906893384545,11.85479204412413,45,74.78991596638656,83.32904512577643,178.69561542544994,12,387.7826697836184,8,334.08380382033585,9,330.4567392979738,11 -7060034530,117,72.86711919360324,20.79565996308447,7.554237436137448,30,66.38655462184875,79.8428564338739,137.6004974517916,28,381.92496225710227,10,310.41152575767774,13,318.69512516938136,12 -7060398580,117,67.75344619743267,15.64625863304179,16.83109224235234,35,70.58823529411765,78.73823999740245,151.671616016875,23,369.41938573761604,11,314.633277114944,12,314.9327161926558,13 -7060400760,117,36.35055893325774,27.058823479159663,19.052468297330424,45,71.42857142857143,80.39654659522768,184.3454247504213,9,305.8214162022333,15,308.0473411109253,14,306.12625618882845,14 -7060034520,117,34.669990396325126,24.468085078419456,12.953723459415077,40,78.99159663865547,82.71794939992962,197.84594724624066,6,310.4655488294786,14,288.45060868915476,15,300.8922880480156,15 -7060374800,117,18.913906383286516,17.293233104940924,8.236071751407675,40,63.865546218487395,76.61380281774385,198.2544875590828,5,252.39790057005067,16,243.04375031210301,16,242.4045480789982,16 -7060400520,117,19.429521379631193,18.25396840521542,21.05618371333043,20,60.50420168067227,73.49470613860638,159.05934553764547,19,204.9645832801769,20,211.23827800612983,19,224.8071062504565,17 -7060034570,117,30.06358009466192,10.952380845986395,12.952810083397925,25,50.42016806722689,72.46093528041368,154.27608428860515,22,235.37549398965112,17,218.94379396447306,17,215.9273344902628,18 -7060034340,117,16.067952949176345,15.64625863304179,16.252401559628805,30,52.94117647058823,72.94137383346998,170.42892901496387,14,207.3212916289679,18,218.63534691444573,18,214.86878776103498,19 -7060387700,117,28.691146563448857,15.164835118618525,18.86298792591665,10,54.62184873949579,70.43267318510229,131.90659634837408,29,206.4227694812599,19,193.65404463338498,21,211.88459234643503,20 -7060398520,117,7.587678287217528,9.25553317407301,14.4087068353625,35,59.66386554621849,72.7262832635337,198.8395152622153,4,200.8576657860749,21,206.25462233505675,20,202.03466241731243,21 -7060400540,117,5.173099160287741,14.495798304141656,16.77634134276558,25,57.142857142857146,71.6852227566406,178.74886846031296,11,174.570463723022,23,189.11456675967526,22,195.93122579010748,22 -7060388530,117,18.301524477470966,10.430839088694526,19.24941261751408,10,52.94117647058823,70.33516514737039,145.46243855409193,26,177.51092958187814,22,172.2842486309566,23,187.2820129481246,23 -7060400660,117,5.118442016132433,14.71215338991776,18.602591959926876,15,56.30252100840336,72.08957768122849,166.25581020878275,16,157.7551044689556,24,170.36003686808615,24,186.72958907412954,24 -7060386520,117,2.684259700220511,20.21978037720565,14.599111361854805,5,54.62184873949579,69.92075598700976,147.9817044922191,25,137.33622061075752,28,145.70577200296094,27,177.6162790713775,25 -7060386900,117,1.5751502864144429,15.401785718686224,16.52551912014225,10,53.78151260504202,69.72413205295757,157.87472767693123,20,138.37711917562467,27,150.16500883740562,25,172.17886131178463,26 -7060354130,117,1.9577028404370895,24.33862432123961,20.54571422301659,0,44.53781512605042,63.18035746980575,113.93094798339614,32,104.69328570522,34,136.50557333684714,31,165.31364805045146,27 -7060387450,117,1.9259777346853413,10.267857145790815,17.281097659499814,10,53.78151260504202,70.99409057332804,164.97225279038037,17,139.56463831643543,26,146.47519203255172,26,164.89858034589648,28 -7060354140,117,19.81006721851187,13.981762761137643,15.762856419320388,0,38.65546218487395,57.63286840524063,94.46258748940548,40,141.51231603783515,25,137.9025701608946,30,157.14267605633762,29 -7060388700,117,1.4623179096760834,12.169312160619803,17.987768050100275,10,45.37815126050421,63.04398608506796,140.94791822034531,27,120.16261552043082,31,138.65857358484354,29,151.7445580502407,30 -7060343940,117,16.169035967841758,14.603174461315191,13.019026339990331,0,36.97478991596638,55.75771350644923,93.8941754166872,42,131.20998659662723,30,128.09096016639936,32,148.32923600161715,31 -7060360220,117,2.5202822712673294,6.571428573306123,12.247574680805318,20,42.01680672268907,59.20700039774989,150.22340491700385,24,134.78030738861875,29,143.63028198422273,28,142.8734311260953,32 -7060343930,117,9.06899076975706,14.603174461315191,21.024796663438217,0,36.97478991596638,55.56679356781634,96.6637812450802,38,104.98368735428053,33,125.23473496653003,33,142.34249631332435,33 -7060343060,117,4.012845371384514,14.603174461315191,16.40829251946782,0,36.97478991596638,55.56679356781634,104.02817871543795,36,96.78345083726005,38,113.05887901384526,34,133.05630602186574,34 -7060356140,117,1.3065726556682429,13.981762761137643,16.450924398378678,0,38.65546218487395,56.86686743564976,111.30784880886767,34,93.02637311324746,39,109.93601199662322,36,131.18421205515688,35 -7060343150,117,1.6273058028504623,7.823129316520895,16.65491619953174,5,35.294117647058826,52.223746479101905,111.95724280499374,33,91.59386410481031,41,107.33497819669105,37,117.43355524830868,36 -7060356130,117,1.9622356061506625,7.142857002040816,11.029798144480372,0,37.81512605042017,56.99434503442636,120.26391774089663,30,98.84800762426826,36,96.8522934587686,41,116.12767070853236,37 -7060320860,117,12.81416972109835,0,17.04414647331666,10,26.89075630252101,42.48394795158816,89.69263609544089,43,106.39364599597317,32,112.43162638453592,35,105.58149135925166,38 -7060334070,117,9.345133637526905,0,18.386964647031917,0,30.252100840336137,48.773041465808106,95.39157047846284,39,92.45584503109815,40,95.41879944609344,42,101.11575476289869,39 -7060034330,117,6.595625298107752,0,13.234963750660244,10,26.89075630252101,46.92027956133873,105.4270203282956,35,99.61526190428489,35,105.06107312414724,39,99.53107753974581,40 -7060360130,117,2.477325427897522,0,11.019157600137651,15,28.571428571428573,45.540020656253866,115.59083689105921,31,98.71202696887771,37,105.55374645713903,38,98.03996131059625,41 -7060321100,117,5.81916310210602,0,18.684821948213713,10,25.210084033613445,42.466049207341335,94.15592450108015,41,85.31988797759772,42,103.5910517920978,40,95.04951591706316,42 -7060334080,117,2.2461161758248633,0,20.002519511938004,0,30.252100840336137,48.773041465808106,101.68281050771184,37,72.8451063679241,43,86.42074131907779,43,92.12624565318376,43 -7060314650,117,2.188351839320078,0,16.4546627910251,5,26.050420168067227,37.88924957246473,86.26490728406566,44,66.59709933141117,44,79.36480134851107,45,80.18712471519665,44 -7060314420,117,4.659684102698754,0,18.31497792005226,5,23.529411764705884,35.490652878004425,76.2272262902681,49,65.68195291226725,45,81.81874485131655,44,79.60833935532975,45 -7060344050,117,0.8378392012404505,0,18.160880958095504,5,25.210084033613445,38.0476163418376,86.1936786554659,45,60.81191375964341,48,79.25664945904397,46,78.49443477476277,46 -7060334690,117,1.0737830886568918,0,16.192951786895794,5,24.369747899159663,36.59455572514895,83.6084013900815,46,60.84235972951751,47,75.76277110347607,47,75.54269735504317,47 -7060314550,117,2.506581234517667,0,15.410461787415802,5,23.529411764705884,35.490652878004425,79.83258722476742,47,63.12860363486328,46,75.69516344690771,48,75.1846044799833,48 -7060341270,117,1.9631828537615423,0,13.057249306163351,0,23.529411764705884,35.9456160322589,76.70815513730443,48,57.3851547533874,49,62.46750850966056,50,68.71302245184407,49 -7060343960,117,0.5391975081052559,0,20.10286513083165,0,21.008403361344534,35.1418568362713,70.70934453463109,50,43.2711741918249,55,66.34494571350875,49,66.9458341203715,50 -7060338230,117,1.9924137630078076,0,16.448089126690302,0,21.84873949579832,32.32506897487862,67.09119468779133,52,48.163768053005576,52,61.220939588570936,52,65.14756433591069,51 -7060338280,117,2.125204275840354,0,15.09126731313916,0,21.008403361344534,32.05776551989404,66.33787639318653,53,48.705008210560784,51,59.717046009121944,53,63.544776764646656,52 -7060341150,117,2.387481342486045,0,11.558151527233855,0,21.84873949579832,32.32506897487862,69.14109590804131,51,54.05515602834872,50,56.92166040302293,55,63.24782454858456,53 -7060334580,117,2.2939437807361536,0,15.543989225999438,0,20.168067226890756,29.679868174328085,61.0227701346527,55,45.06547161745797,54,57.347594179247366,54,60.78578002835669,54 -7060293370,117,0.6157852276339454,0,13.627846631885792,5,18.48739495798319,28.50161941019376,65.58185031816046,54,46.922381587108724,53,62.04932717801168,51,59.65277702542461,55 -7060293380,117,0.9286769999023392,0,12.779375704523568,5,16.80672268907563,23.735439513608743,55.83536490604264,56,41.32278129281703,56,55.50632149339181,56,53.213508357978796,56 -7060038330,118,50.30647411223348,22.40259734925789,16.061221939886728,20,36.97478991596638,75.3451900676175,105.76177625115683,16,267.20423511857035,1,260.14236755941715,1,250.8495063241405,1 -7060039620,118,30.95114975538136,54.761904887074834,16.677062199000183,5,5.042016806722689,73.29961929655094,36.89665970652703,27,164.15223485327812,8,238.89974122501135,2,234.79238050053152,2 -7060038180,118,28.180264130621545,30.80357143737245,9.898933673759975,10,26.89075630252101,82.84135462242175,113.25491480490804,10,202.14072677092747,2,220.11052375963328,3,220.04610681407752,3 -7060038320,118,14.673855436788983,21.90476202054422,9.071719184763372,20,37.81512605042017,74.33452658294982,144.54314370722983,4,183.48893531747692,4,197.93131119372765,5,197.09549105023646,4 -7060038980,118,3.1803047139841185,54.761904887074834,15.767940695611925,5,5.042016806722689,73.29961929655094,65.1220654996184,26,94.66549334475245,23,196.47093008596033,6,196.0115403930629,5 -7060035860,118,3.873984503111819,32.05574926630164,11.289694116900874,15,34.45378151260504,69.20348855741528,125.2784663674596,8,138.14290340362126,14,179.79151310293423,9,188.41743998448428,6 -7060038340,118,7.22730065372066,22.40259734925789,7.508344004589048,20,36.97478991596638,76.07353723610328,154.36698671096158,1,167.4061559059876,6,188.1242956134085,7,187.84825658449597,7 -7060035480,118,10.707294690997267,27.3809522792517,11.917906101414804,10,30.252100840336137,75.43989241812983,124.14621137870384,9,150.27089559075546,12,182.02848875727074,8,186.62639448065596,8 -7060034580,118,22.380169426242333,6.990881544854537,12.544887126785817,25,39.49579831932773,69.76992164690209,150.979864335399,2,201.91285372624108,3,198.46732099825036,4,184.241438858103,9 -7060038190,118,12.845905256307534,14.935064789981448,12.480315111048458,15,36.97478991596638,73.74902499625496,144.86360353957318,3,166.0924688145399,7,178.22358186928471,10,177.07343636177853,10 -7060390750,118,4.290028866278861,23.469387620991252,7.077670305083893,15,35.294117647058826,71.14040570486958,140.57686426169496,5,145.79409396818977,13,167.64761360591842,11,173.9211972163256,11 -7060390740,118,13.90886580258822,15.282392061509254,8.308370532972106,10,36.134453781512605,72.63837665195038,137.1337212669195,6,163.60174618052582,9,164.00192355751676,13,170.14022800784153,12 -7060035470,118,5.726220950762841,25.93984949312567,13.394567488592823,10,31.932773109243698,64.24886581474428,112.4548133936689,11,124.67217413281803,18,159.73286479519254,15,168.33801652777498,13 -7060364000,118,3.913562348579227,30.80357143737245,16.76954997007904,10,26.89075630252101,60.2164895732712,95.26967249904338,20,107.36116727596503,22,161.44808104726366,14,167.3663053722589,14 -7060363990,118,29.06266640751274,11.330049388951444,15.362232503189189,10,24.369747899159663,55.15046897257092,81.0325106916527,25,162.4643799429458,10,166.0111931457715,12,158.08220008432764,15 -7060363050,118,11.04669486953762,18.775510162507288,13.515800810883524,10,29.41176470588235,61.35543415616148,107.46933504536656,14,131.5440165856039,17,154.8408395289313,17,157.19230651960402,16 -7060355150,118,9.216236355036337,7.823129316520895,16.123875381587254,15,35.294117647058826,60.62032745367025,130.2895330326058,7,135.65797257575724,15,150.3067011507296,18,146.03802675696673,17 -7060034870,118,4.244429065701093,21.90476202054422,11.964798747640344,10,25.210084033613445,58.13512131371101,101.8782736976676,18,108.15412446363678,20,142.98635280967716,19,145.34403131403752,18 -7060363040,118,36.48295711906553,0,13.90441561962578,10,22.689075630252105,53.42727806504157,82.16709620091488,24,178.09653851235643,5,158.82762482122598,16,143.41834395449564,19 -7060035370,118,6.828371210852142,13.142857146612243,12.698788945199258,10,21.008403361344534,57.20506846979944,102.76809421540773,17,107.9532260826534,21,135.09678431835914,21,128.08187462898778,20 -7060034800,118,23.928234217440117,0,10.839938800129156,10,26.050420168067227,52.78012497044371,98.5051056564804,19,151.94258522185046,11,136.15608499513624,20,127.27364320970328,21 -7060034860,118,6.920115089550156,11.734693974781342,10.411150823720174,10,23.529411764705884,56.23371457793868,106.22364169704178,15,111.74383953394361,19,129.87687543606285,22,126.03269245327556,22 -7060035330,118,5.618612674776854,15.64625863304179,11.976497016579923,10,17.647058823529413,50.444424602047185,86.6249283649783,23,94.56877519892879,24,127.04884739400866,23,120.51873339070383,23 -7060034790,118,15.488457786322984,0,11.344469775437464,10,26.89075630252101,54.30138076027048,110.14291447501563,13,132.65933691893102,16,126.00933459367639,24,118.23984536602384,24 -7060035360,118,1.916191067955889,16.428571433265308,12.320146239039302,10,16.80672268907563,50.92789363031992,89.28411490040048,22,84.62882151586831,26,123.48968816686161,25,116.65825415130377,25 -7060035320,118,2.4330148411818104,15.64625863304179,11.8876984685609,10,17.647058823529413,50.444424602047185,89.85492547258286,21,86.58245365713714,25,122.19731897018852,26,116.07792081693646,26 -7060038810,118,1.430599177338555,0,13.370333621707058,0,3.361344537815126,67.58565827603843,111.19976817019982,12,72.46734813729792,27,102.89267402105503,27,79.6065259554232,27 -7060037900,119,11.044173903009549,38.65546225390156,14.533143433923447,15,28.571428571428573,85.69738253844636,131.6424729477651,6,166.98554992471242,4,223.58005233860985,1,222.64568975122745,1 -7060035870,119,10.28377044957775,33.69963385248561,16.796235891881025,20,32.773109243697476,80.368202738792,137.40634734543272,3,167.61624167053225,3,222.08377288597643,2,217.51462586969683,2 -7060037890,119,19.372183559424332,23.469387620991252,17.961594085739264,15,23.529411764705884,86.33282735220347,134.35311218840314,4,179.10146463527695,1,220.72332187338532,3,203.60561324905217,3 -7060037700,119,19.145967273159272,21.90476202054422,12.56359469066443,10,25.210084033613445,83.92749588044776,130.92835123319514,7,175.42009880071117,2,199.2118864219476,5,192.0012751340725,4 -7060063860,119,17.080290479861528,25.274725307221352,19.463324679792944,10,21.84873949579832,80.01853252151567,115.76939644127552,8,155.64314681953604,6,202.30935128841725,4,191.50827734363708,5 -7060037350,119,4.0755607296766385,23.469387620991252,20.567910321746297,10,23.529411764705884,88.68036333233219,146.74915670219949,1,133.2087801797496,7,192.8448786670375,6,181.14558353237425,6 -7060037690,119,16.843226383067023,13.142857146612243,10.636685035284122,10,21.008403361344534,80.25728734587194,133.33412193733986,5,162.2960786915079,5,177.8125988325652,7,163.9244480094943,7 -7060037340,119,3.01670600981769,14.935064789981448,17.849598579746612,10,18.48739495798319,80.09339373621435,138.78056258252855,2,117.47167675810437,8,166.44997445619708,8,149.049867397654,8 -7060329370,120,8.942582844751007,86.4661655247046,3.6614349486766984,15,31.932773109243698,81.68645945792375,83.068098264887,9,175.19612899809937,3,265.95484359324473,4,301.31282711273604,1 -7060334780,120,3.4073150231059603,82.14285716632654,4.42599995730229,30,30.252100840336137,79.284807848930825,104.05062654221922,2,177.30742885479933,2,281.72142422889954,1,297.0475498923704,2 -7060298200,120,1.4641365218472755,84.48979589556852,2.353260024282492,25,29.41176470588235,76.84332713709382,93.7944490039029,6,163.7112851672901,6,265.95913130970513,3,289.35032189818503,3 -7060290340,120,5.191490524906954,97.35449728495844,5.415150430620161,5,22.689075630252105,72.11520856614328,37.05043275391574,21,129.93103478616248,11,242.447764401392,9,288.1598311766479,4 -7060289980,120,4.005769466621799,93.87755114110789,3.4725987559419993,10,23.529411764705884,73.25578563717094,51.45425202312502,18,137.99918532462794,9,246.3795154002924,7,286.1586649155576,5 -7060305280,120,10.274498445780251,74.19354853548387,1.4763982499293582,25,26.050420168067227,77.7756800697987,94.98664862924585,5,183.78976989512466,1,266.1996306206819,2,279.7655426852583,6 -7060298300,120,9.052023960175228,74.19354853548387,1.0780644378700408,20,26.050420168067227,77.7756800697987,90.78329002088054,8,173.83927303437125,4,253.32334472456387,6,272.8792503579186,7 -7060295800,120,4.791816830873049,74.19354853548387,1.6169810449396604,25,26.050420168067227,77.7756800697987,100.39903884664793,3,169.75122672744263,5,258.1431550012736,5,272.26923728390966,8 -7060305410,120,3.0383361170323715,74.19354853548387,2.0017246797544743,20,26.050420168067227,77.7756800697987,96.3351477430812,4,157.67161337614795,8,245.2560487157167,8,265.0416470301795,9 -7060327530,120,1.8475499533547783,76.66666657904761,3.887524022932128,10,25.210084033613445,76.33160975055402,79.29473074122446,11,135.94831790161274,10,225.3790155396929,11,256.5907973252746,10 -7060301180,120,2.9905690632939574,85.71428566734696,6.987318214288587,0,18.48739495798319,68.5117978541271,35.26058525741142,22,106.15410954731655,13,210.42898477853495,14,251.76296492313725,11 -7060290130,120,1.4272452551706143,82.14285716632654,10.568826466470725,5,20.168067226890756,64.15137223705895,38.78637918753998,20,102.15564723062292,16,212.08615930269283,13,247.16881845005238,12 -7060256650,120,2.150389302026573,74.6753246070501,17.13525870303649,10,18.48739495798319,66.16491639504311,50.39319507588974,19,104.71846926845419,14,223.37009713224103,12,243.09243432629978,13 -7060295790,120,1.7993716370517563,54.761904887074834,2.2627335598209095,25,25.210084033613445,76.59071538155578,121.57008000392362,1,157.6778750301966,7,227.75727944407743,10,230.81228751957715,14 -7060289830,120,0.8519670759724507,52.57142858644898,4.335975016421863,10,21.008403361344534,71.24041138701062,93.63439036231199,7,120.82683148362358,12,186.72468312644438,15,201.9735463309907,15 -7060234190,120,0.40682063849313,52.57142858644898,12.2287259862643,10,21.84873949579832,54.08698920830292,61.54401168730006,17,92.63369631527951,21,171.77374167600811,18,188.99249340319108,16 -7060256810,120,0.9058053345263,49.28571429979592,11.500268352571789,10,16.80672268907563,62.05579862492188,73.65331340257075,13,98.60814012071816,19,177.8628124549768,17,186.21989170822235,17 -7060245930,120,1.4812311426397702,46.938775570553936,21.318026863870376,10,17.647058823529413,58.217593532100054,65.0059119523216,16,86.41587108840103,23,180.55577931283318,16,184.62232069182363,18 -7060223480,120,0.5527067684884771,49.28571429979592,4.875129621073417,10,17.647058823529413,58.217593532100054,71.57425234570519,15,100.70064523811178,17,165.74723462796672,19,179.42214540835158,19 -7060234330,120,1.1003244308320177,46.938775570553936,6.8868374636536425,10,17.647058823529413,58.217593532100054,72.60241336423772,14,99.88150626566323,18,165.55510315660223,20,176.8810402582249,20 -7060301390,120,6.005580414399531,51.87969931482277,9.995341240991149,5,15.966386554621849,47.24909609098604,34.58397571145075,23,87.89174705654847,22,157.52893341601742,21,176.61417980659013,21 -7060348000,120,0.6646250930738348,57.983193216566626,5.9409848856647045,5,14.285714285714286,45.042666194269046,29.77210428464398,24,74.66118672369862,24,150.49721355382906,22,174.51863659536366,22 -7060223370,120,0.5235851021011173,42.85714299795919,4.229194289026491,5,19.327731092436977,57.64952060023175,74.07882086701932,12,94.50496677201518,20,145.39380874226174,23,163.38587249094053,23 -7060246020,120,3.657319764069826,34.58646620988185,2.7147284838938406,5,15.966386554621849,60.398168556227766,82.1544716744439,10,103.11927390266088,15,141.46671138176038,24,151.17787299116046,24 -7060330450,142,13.21888238644114,95.39170521296909,23.558082948064285,20,26.050420168067227,63.06956590275473,26.82771918239149,1,146.5311359779119,1,290.319848663129,1,314.0270744075352,1 -7060328380,142,25.61435165766217,98.57142859959184,24.683542199521415,5,16.80672268907563,53.93488266378772,-31.418907777014297,3,135.440899019796,2,270.31139168103823,2,304.14778554699024,2 -7060328250,142,20.96753988835885,74.6753246070501,14.727796338534668,0,17.647058823529413,50.50080324811845,-6.1848943436342125,2,121.2100855226766,3,207.5427214977755,3,241.3536245813643,3 +HYBAS_ID,WSI,CCI,Fish_priority,FBCI,Protected_area,SARI,Fish_richness,FBCI_n,WSI_n,CCI_n,Priority_n,Protected_area_n,SARI_n,Fish_richness_n,FEOW_ID,protection_score,Prot_rank_feow,restoration_score,Rest_rank_feow,SAR_score,SAR_rank_feow,AIS_score,AIS_rank_feow +8060008980,0.00307689537294,1.28768840185,0.6509749479396731,0,98.39921569153188,1,23,0,0.01303541224591894,4.755522528920428,54.713638733793054,49.82206032328316,5,18.64406779661017,101,115.74841757402609,1,85.00416704474608,3,86.16613030562884,1,80.75345784343813,1 +8060009250,5.91891092039e-4,0.093049959903,0.6180298703122805,0,68.23818531387668,1,31,0,0.00250757450424557,0.07083780671494624,48.25350900452508,34.55075287612869,5,25.42372881355932,101,113.79754549526834,3,88.90500792191345,1,73.11321463996809,5,78.71611740118755,2 +8060009130,0.00307689537294,0.279041987733,0.6483862049899786,0,98.96419822882731,1,21,0,0.01303541224591894,0.8001915430698269,54.20601767185785,50.108125551204026,5,16.949152542372882,101,115.16026131609274,2,86.67235820410167,2,81.55448117909432,2,76.57325603434033,3 +8060009240,0.00233560905498,0.316811125726,0.6266155228419379,0,101.09639092619518,1,21,0,0.00989491782682048,0.9483003745906926,49.9370512252873,51.18770969704958,5,16.949152542372882,101,107.76524110569542,5,81.53582773006984,5,76.17842294473773,3,72.37400983702422,4 +8060009140,0.00351224583685,0.169870982937,0.6266155228419379,0,99.97203951292968,1,21,0,0.01487979500213091,0.3720856657450354,49.9370512252873,50.618421582697195,5,16.949152542372882,101,108.04836358294295,4,82.12467852291803,4,75.60966103586566,4,72.09278206422343,5 +8060287840,1.7750189431,2.31472668537,0.6706486546834878,0,9.139554144932344,0,26,0,7.519951400074807,8.782975846164122,58.5714137634364,4.627591930156422,0,21.1864406779661,102,109.76378834171697,4,99.79898327538058,1,95.75461616176385,2,94.52755583517603,1 +8060298170,0.88822694538,1.93833650329,0.6808041713702091,0,47.24893046663746,0,27,0,3.763015311729098,7.306990080374961,60.56278728533142,23.923351893954862,0,22.033898305084747,102,118.52270011498976,1,94.92229964624306,2,91.2364081579387,6,91.4434823051619,2 +8060252130,0.273038348204,4.27875883414,0.6720163001004801,0,28.36067887842865,0,26,0,1.1567398290774795,16.48478007261092,58.83959242482353,14.359743040709668,0,21.1864406779661,102,112.73620191252135,3,76.2800527297294,4,94.2896335618967,4,89.86482878555948,3 +8060287740,0.178665218768,3.2549281441,0.6777132720528947,0,0.03190880783296632,0,27,0,0.7569236188953736,12.469905091743469,59.95669945649732,0.01615623578674097,0,22.033898305084747,102,117.90749205122388,2,81.43218927211362,3,91.12134097957482,7,89.27017340140443,4 +8060129130,0,11.8631090037,0.590106434446057,0,22.88197404847452,1,18,0,0,46.226238341179325,42.778062255760666,11.585733505132785,5,14.40677966101695,102,70.31138416778052,22,25.338280618225063,26,112.18550065165776,1,85.29796108736727,5 +8060274770,0.0578090903755,4.36766572366,0.6610728108369618,0,35.69123039294804,0,24,0,0.2449109356247592,16.83342174728728,56.693707047567706,18.071390306526073,0,19.491525423728813,102,108.09717932016693,5,69.42158264239684,7,90.50053823726533,8,84.9399425999879,6 +8060231240,0.335260115607,4.33278604086,0.6281014582901375,0,0.6064041123667264,1,21,0,1.4203452788763091,16.69664369679844,50.228425125608794,0.3070380230675026,5,16.949152542372882,102,98.980518401684,9,69.70274828430836,6,94.41223101832051,3,82.48610453926449,7 +8060153970,0,5.83515332981,0.6052909354796147,0,0.12345787189244564,1,22,0,0,22.588063927855742,45.75555855006062,0.06250988770929969,5,17.796610169491526,102,90.62868106735439,13,55.84003121670651,18,92.397018416823,5,79.84620068348002,8 +8060146840,0.0152261542448,5.2073260019,0.6042919344806137,0,9.350782869923927,1,21,0,0.06450631998944706,20.126086321937088,45.559666583248294,4.734542480606009,5,16.949152542372882,102,90.61162139219269,14,57.38952658799717,16,89.77820858455067,9,77.66088684585117,9 +8060234860,0.667143559647,4.61163956893,0.6136792452830189,0,32.9879093740461,0,20,0,2.826385129533634,17.790146816079933,47.40040425818622,16.702629163717397,0,16.10169491525424,102,85.70333958690614,16,60.77657738765899,13,83.30119541774432,12,76.29783984169653,10 +8060298100,0.0703099301546,2.76231050095,0.6344102984792074,0,18.597800160486475,0,23,0,0.29787133245003294,10.538142086534515,51.46551208966328,9.416545789019256,0,18.64406779661017,102,101.37458230725494,8,68.90409233957553,9,77.52475230056261,16,75.78974032500342,11 +8060280670,0.0331692982693,2.56878875774,0.6344102984792074,0,0.484841618386632,0,23,0,0.1405232952185283,9.779261138125626,51.46551208966328,0.2454877976153836,0,18.64406779661017,102,101.91137081869088,7,69.26411430988594,8,76.53062313911252,17,75.19314531977813,12 +8060194180,0.169188343147,3.92598725688,0.6083950805897181,0,12.724062519900023,1,19,0,0.7167743887299698,15.101412887703631,46.364243718040555,6.442520954649754,5,15.254237288135592,102,92.15715772602337,12,63.31138180105059,11,86.76899072367412,10,75.15840097293584,13 +8060259590,3.12765769195e-4,2.13271975604,0.6183203588863967,0,2.495430635950307,1,22,0,0.00132504692025752,8.069249373593761,48.31047028702332,1.263500864564,5,17.796610169491526,102,102.27012994025776,6,73.34293497062593,5,81.18350514188515,13,75.14353382797543,14 +8060274780,0.367216698041,3.21149375021,0.6220194899440182,0,1.2174889164037497,0,21,0,1.555730846309448,12.299580385681676,49.035824975455746,0.6164460174855974,0,16.949152542372882,102,93.37256495508883,11,65.80163142451507,10,78.02538003355669,15,74.281817068698345,15 +8060202520,2.91010680092e-4,3.47570638051,0.6083950805897181,0,4.9897183059761865,1,19,0,0.00123288046006575,13.335670326469844,46.364243718040555,2.5264230324628643,5,15.254237288135592,102,93.75557051491018,10,63.26330984132113,12,83.93345495663353,11,73.28801765601885,16 +8060130480,0,5.55661787823,0.598762872347778,0,1.0221328242908652,0,21,0,0,21.495808121586183,44.475484628563734,0.5175321903724261,0,16.949152542372882,102,82.50617632624818,18,47.34140982077771,20,78.99946501508272,14,72.17254123172971,17 +8060280610,0.00937062841839,2.48705158518,0.6002979145978152,0,0.01889750649076909,0,19,0,0.03969910888465529,9.45873496879858,44.77648777650904,0.00956827839283595,0,15.254237288135592,102,87.30651839816355,15,58.135370683444705,14,67.41092107134543,18,64.81488091198429,18 +8060119620,1.7601184215e-5,1.9653113776,0.5867561683599419,0,87.62140057487916,0,20,0,7.456824638130469e-5,7.412770019414521,42.12111575259398,44.3649746006107,0,16.10169491525424,102,84.6608604357269,17,57.830415629033205,15,61.87250591244924,19,61.929298588483746,19 +8060119700,0.28711557216,2.84737720408,0.5626995645863571,0,18.74934721592412,0,20,0,1.2163786517551736,10.87172475935728,37.40390782913354,9.493277971153647,0,16.10169491525424,102,73.62194153283988,20,51.951241066040666,19,61.05091864921351,20,60.62017774300455,20 +8060252250,0.145931482503,1.77140972867,0.5795033059184003,0,79.91125729971934,0,18,0,0.6182456026338884,6.652399299322524,40.698917486412434,40.46113023779321,0,14.40677966101695,102,80.2879470601089,19,56.803631476162266,17,60.19754975982411,21,59.285131678553704,21 +8060129020,0,2.92865484285,0.5613610707950331,0,4.150024450143356,0,18,0,0,11.19044890151882,37.14144544760365,2.1012643799451487,0,14.40677966101695,102,72.53374595409802,21,46.54801711503571,21,59.21171170246091,23,57.14344955938001,22 +8060213590,0.00640416892223,2.6370380442,0.5266431681526021,0,1.7767900990042838,1,14,0,0.02713156343499704,10.046895577428872,30.33368625714671,0.8996346290184989,5,11.016949152542374,102,63.63374236687115,23,43.67812956692609,22,59.95702353830706,22,51.41152721128892,23 +8060214160,0.0621593790602,2.34920463651,0.5288340590227383,0,18.46468447218105,0,15,0,0.26334113864451164,8.918178536189119,30.76329335669047,9.349145883356291,0,11.864406779661016,102,59.92140979452101,26,39.50427632501198,24,49.08665825164412,25,47.45022400755272,24 +8060212970,3.49269116625e-4,2.47361762197,0.5288340590227383,0,11.68780043622154,0,15,0,0.00147969507186216,9.406054693328796,30.76329335669047,5.9178347394398445,0,11.864406779661016,102,59.93933315952382,25,38.3526118574207,25,49.18303008658993,24,47.33276959612411,25 +8060228670,0.00889977161962,1.73885875791,0.5288340590227383,0,5.1376985171933205,0,15,0,0.03770430186757563,6.524753117801861,30.76329335669047,2.6013492293896747,0,11.864406779661016,102,61.34375934049157,24,41.32573859901119,23,46.35588726745265,26,45.942112043983684,26 +8060249330,0.0300907431235,4.58060315417,0.4707650839726311,0,0.2587635432028328,0,14,0,0.1274808512666713,17.668439851903187,19.37667237761564,0.13101863824109072,0,11.016949152542374,102,35.29908146655865,27,16.277776209130312,27,42.911701490310115,27,39.403776567586235,27 +7060016100,22.8581297503,0.866827190201,0.8068781195794542,0.243902439,2.884046047241745,4,41,80.13937283718269,96.8395438747586,3.1051469682883113,85.28435783751452,1.4602668685838969,20,33.898305084745765,103,16.17206502737659,96,411.4468399737575,1,403.96565565729685,1,421.30475424803285,1 +7060055790,6.68830718634,4.21753529792,0.8614223512336721,0.28,11.955728663337055,3,25,92.00000002628572,28.33532858089298,16.244696584001776,95.97981943134349,6.053493709933218,15,20.338983050847457,103,64.2252975589587,86,217.31417228585167,7,333.1390615476603,2,347.2131352138108,2 +7060016260,3.39893080089,0.327430489674,0.7947508466376392,0.238095238,35.07279154911783,9,42,78.23129250806608,14.399730512323986,0.989943410926989,82.9063468535238,17.758258772120975,45,34.74576271186441,103,126.66096152968359,44,238.7508074671931,5,326.31546014606005,3,326.4440487856794,3 +7060056770,3.06430269745,1.02740587688,0.871096059775305,0.259259259,11.115002880405738,5,27,85.18518512433863,12.982062782776696,3.7348442003403055,97.8767162257258,5.6278125661150815,25,22.033898305084747,103,109.52913617745399,67,208.74534140727428,8,312.6512212574929,4,320.8672975131441,4 +7060016270,2.22436555411,0.418165925725,0.822790187263266,0.268292683,19.64594971472072,3,41,88.15331015375808,9.423629493043276,1.3457555931785543,88.40452111838192,9.947250937115507,15,33.898305084745765,103,95.38049165317912,80,188.67507163648605,13,275.2171848993499,7,312.5955674658219,5 +7060055920,3.19975129316,0.317389889111,0.8763909046927915,0.25,19.595318839769888,3,24,82.14285716632654,13.555897141506804,0.9505699516378388,98.91497102816332,9.921615219502046,15,19.491525423728813,103,101.68292180188311,72,196.8996160887523,10,286.84861176489176,5,303.1853843992776,6 +7060055930,4.20763397169,0.26714334589,0.8807256894049347,0.24,18.298733941192953,2,25,78.85714287967348,17.82583960549313,0.7535319147675176,99.76496968063604,9.26512085012615,10,20.338983050847457,103,97.80655263987879,77,202.23577496467271,9,279.25262160563403,6,299.6534191553368,7 +7060257410,2.21775372664,7.23815432259,0.7382529027576198,0.25,5.704675550424686,3,32,82.14285716632654,9.39561817438476,28.08982670840352,71.82778601266676,2.888424322035261,15,26.271186440677965,103,52.58076176652678,90,134.39248106923702,41,272.74609548980635,9,290.70592730865053,8 +7060269970,5.74317561611,9.48527873853,0.7323376562573154,0.225806452,1.7899847887932667,1,31,74.19354853548387,24.331234144360767,36.901755950436126,70.66787799227127,0.9063154407120764,5,25.42372881355932,103,27.89595217361604,94,146.07747557474528,26,270.8500647666283,10,289.14329547029564,9 +7060056710,2.50441709339,0.718697230299,0.8789418129040771,0.181818182,9.745174612751583,1,22,59.74025981706864,10.610081036610325,2.524266481198983,99.41517315725646,4.934233190237808,5,17.796610169491526,103,116.39800958258233,58,170.3803890539682,16,234.51246277238243,14,247.64059825082467,10 +7060056700,1.97932582215,0.489719055699,0.8802612481857766,0.173913043,20.365497701188524,1,23,57.14285700204081,8.385507121116149,1.626345806121034,99.67389839644257,10.31157663775442,5,18.64406779661017,103,123.22002978890453,48,166.5721270295707,18,227.27799520302938,17,240.4658022964178,11 +7060269780,10.985567694,11.5057612609,0.7310304789550073,0.08,6.499541387323621,2,25,26.28571429322449,46.54087522966665,44.82492606758346,70.41155639401697,3.2908853925799955,10,20.338983050847457,103,54.523836540842325,89,192.3270559449129,11,260.5978320973322,11,235.58409834375323,12 +7060056760,4.38059196256,0.346145745406,0.8804340313774277,0.142857143,55.81412723644475,1,21,46.938775570553936,18.558584284445946,1.0633338774659509,99.70777908252644,28.26013189050319,5,16.949152542372882,103,122.91616073799142,49,190.41697874488761,12,228.82675279843883,16,233.8555462654066,13 +8060000060,23.6041278549,3.2370969469,0.6979130173664981,0,59.82737681124876,0,29,0,100,12.39998139418914,63.9176242629258,30.292143640486337,0,23.728813559322035,103,27.189903525367626,95,339.38776589823624,2,244.54914685948546,13,231.8554782930981,14 +7060261880,10.5771280194,18.9750029981,0.7467948717948718,0.041666667,13.0564153438536,2,24,13.690476303911565,44.810501300535385,74.11499528358208,73.50276243093921,6.610799759848837,10,19.491525423728813,103,59.91994676596404,88,160.36003627501862,20,275.07642145624635,8,226.99353909735555,15 +7060016090,1.27245703868,0.34272643402,0.7508164005805515,0.1875,68.21530846535528,1,32,61.6071428747449,5.390824208808247,1.0499253052586557,74.29133539954184,34.53916973779363,5,26.271186440677965,103,85.67141182539154,82,137.94352687041814,34,195.15587813262061,27,226.47373836209795,16 +7060056630,2.21957048656,0.357129312676,0.8775312737576888,0.142857143,11.484593254883272,2,21,46.938775570553936,9.403314963400511,1.1064051097136136,99.13858355631702,5.814945703394663,10,16.949152542372882,103,136.69834693770554,38,173.75230290274556,15,225.09626891982407,19,225.67278616111804,17 +7060056620,1.67450438153,0.448210151419,0.8775312737576888,0.142857143,17.062152364872333,2,21,46.938775570553936,7.094116723242491,1.463571762621241,99.13858355631702,8.639007710123167,10,16.949152542372882,103,138.82896185140973,33,167.54158722246063,17,222.00099492515116,20,222.66446693893747,18 +7060057190,7.99093657844,0.856698109949,0.8485382541986316,0.095238095,31.013306493041902,1,21,31.292516937512143,33.8539793868349,3.0654265425591656,93.45340443143974,15.702836805688673,5,16.949152542372882,103,113.10020680765791,62,218.58630881768153,6,225.45976606400924,18,221.0264398929051,19 +7060263190,13.9779496474,3.9128555033,0.6988657743374724,0.037037037,34.419837046623044,4,27,12.169312160619803,59.21824239101596,15.04991770454869,64.10444833730105,17.427651069673615,20,22.033898305084747,103,74.38606143489179,85,261.89797162652593,4,244.74217219152868,12,217.70024473902362,20 +7060263330,2.42149611274,21.3366711477,0.7166586034510564,0.111111111,4.960245879545518,0,27,36.50793648185941,10.25878239444174,83.3760991547408,67.59340609980687,2.5115003829512004,0,22.033898305084747,103,45.895818475666985,93,46.56392146184294,96,233.12511145775272,15,212.40461896659735,21 +7060016860,1.1593643244,0.315256928737,0.8819242864054185,0.125,4.4376289359603325,1,24,41.07142858316327,4.9117015952755345,0.9422057080924342,100,2.246885947613663,5,19.491525423728813,103,146.12141459316842,29,158.33919784683098,22,201.12380566983708,25,207.03884004626985,22 +7060174770,7.25108457301,0.853548441082,0.6640058055152395,0.125,28.63291334378578,2,24,41.07142858316327,30.71956150036165,3.0530753531924546,57.2688316938418,14.497582370670372,10,19.491525423728813,103,51.57085038605122,91,179.0452224566639,14,197.22141457252252,26,205.9802887846131,23 +7060261890,2.84030228086,13.495457867,0.7340223212051449,0.103448276,16.555896076617433,1,29,33.9901478382829,12.033074461890696,52.627371531526016,70.99822033465142,8.382677096473987,5,23.728813559322035,103,75.42688559695908,84,94.51765597093427,75,216.83892590919157,21,204.96272242001226,24 +7060274850,0.079242569594,7.90101348445,0.7730933096118732,0.096774194,22.296479095782807,4,31,31.797235180513496,0.335714880385,30.68917901409237,78.65956679171138,11.289282312340095,20,25.42372881355932,103,132.21974658466812,39,119.00481217333498,53,216.44435315519956,22,198.18613319296009,25 +7060234050,1.32428789284,10.5640585071,0.7184793295566272,0.096774194,20.50124320701865,3,31,31.797235180513496,5.610408064982117,41.13210960639896,67.95042838327153,10.380308087845632,15,25.42372881355932,103,97.72531931642571,78,102.18862065771879,71,210.2769711348206,23,194.97801402321704,26 +8060000070,18.0524777176,3.12673486883,0.7018406122179708,0,99.95342721806746,0,22,0,76.4801725722413,11.967204812679876,64.68777792750303,50.60899769785045,0,17.796610169491526,103,46.31523973159018,92,275.1668240328745,3,209.94805465175853,24,194.0175499356132,27 +7060274860,1.64169357172,3.68219007308,0.7542815674891146,0.1,2.1793839962920822,2,30,32.857142866530616,6.955112181275529,14.145380583567167,74.9708125589543,1.1034783009636375,10,24.57627118644068,103,114.28023455290983,59,132.76533447275662,43,185.09232543653246,28,186.4565535245618,28 +7060019450,0.829967154641,0.316208998374,0.8497242380261248,0.08,1.1745393117591634,2,25,26.28571429322449,3.5161949627751508,0.9459391775057076,93.68596146071958,0.594699525106241,10,20.338983050847457,103,159.41903774070585,22,154.2969538060389,23,182.4855816813567,29,177.54105756088344,29 +7060019020,0.964555686857,0.35773249107,0.8493721209061652,0.086956522,37.18036864661644,1,23,28.57142866530612,4.0863856219825,1.1087704283806832,93.61691556862722,18.8253794049866,5,18.64406779661017,103,148.81477093429356,24,146.74449697767687,25,175.7050937779444,31,175.83590309947837,30 +7060017150,0.302666159101,0.382008335974,0.8636284470246735,0.08,14.441866022348124,1,25,26.28571429322449,1.2822594461509378,1.2039663267774,96.41240803126264,7.312289165192008,5,20.338983050847457,103,160.576622232638,20,144.30701421436888,27,172.27854223521584,32,172.31348452701081,31 +7060234040,0.429227425085,3.78759394094,0.7515909344646645,0.076923077,28.254225264432364,3,26,25.274725307221352,1.818442213682114,14.55871391697334,74.44321209042944,14.305842830808272,15,21.1864406779661,103,128.88088224227735,41,121.943907540344,52,178.028783818924,30,166.75562094324223,32 +7060173970,4.38293224322,0.955998442664,0.6970004837929367,0.066666667,0.15899396745784772,2,30,21.90476202054422,18.568498993747586,3.454825322345394,63.738687508422046,0.08050272926861075,10,24.57627118644068,103,100.78920686553981,75,158.87763061365985,21,163.13705290891437,36,165.82731074555358,33 +7060171730,0.264236347336,6.01728883609,0.6398258345428157,0.12,22.486725300183096,1,25,39.42857143983674,1.1194497376065813,23.302294605256737,52.52743296051746,11.385608871534949,5,20.338983050847457,103,59.94131228917385,87,71.69208276910602,90,154.31969379716813,40,163.34821956592629,34 +7060057510,0.543874335113,0.687957325913,0.8737727311534192,0.058823529,48.0494115550986,1,17,19.327730962665065,2.3041492507425843,2.403722260133694,98.4015789849156,24.328656111166868,5,13.559322033898304,103,163.24172141887996,15,140.65883659602252,29,168.61692544467635,35,156.77687006675234,35 +7060177760,0.736407939135,4.5391066142,0.7126269956458636,0.068965517,0.07058918898785373,2,29,22.66009844933146,3.1198269373131216,17.50571429411432,66.80285675784936,0.03574111022216563,10,23.728813559322035,103,112.79118747367205,63,108.45650553565757,65,159.02544681714394,37,155.1336847987744,36 +7060174580,1.81215341843,3.87770146875,0.6820702882023637,0.071428571,0.6988984770555231,2,28,23.469387620991252,7.677273354769656,14.912063804324395,60.811057423912835,0.35387030507529177,10,22.88135593220339,103,97.51298425802679,79,114.83230333899692,59,156.5408457638732,39,154.7709879022137,37 +7060016850,0.273604036517,1.66088559189,0.8382801161103048,0.05,11.174941411502108,2,20,16.428571433265308,1.1591363942735224,6.218987216781165,91.441908098639,5.6581609900529335,10,16.10169491525424,103,161.89510276065124,17,135.3722574091724,36,168.6384264340375,34,152.37185737325555,38 +7060019010,1.3469255237,0.304422734303,0.8452703981826213,0.043478261,19.402527397902674,1,23,14.28571433265306,5.706313454917126,0.8997202301769199,92.81261754246177,9.823999940943272,5,18.64406779661017,103,161.63374988293384,18,148.93105197708763,24,158.47979953395344,38,150.97225070693412,39 +7060178720,5.35661013283,0.929612786917,0.7118733951099698,0.038461538,5.618514085701345,1,26,12.637362489324962,22.693531257576275,3.351355959546479,66.65508484239112,2.844798550587409,5,21.1864406779661,103,102.89877223918435,71,161.42792686390447,19,150.38600064053992,44,149.00482824591745,40 +7060018790,0.515415367784,0.365490663319,0.8445045520517218,0.045454545,43.54117352908179,1,22,14.935064789981448,2.1835814945266216,1.139193516849103,92.66244441449938,22.046018943994333,5,17.796610169491526,103,163.21735564303918,16,138.7933157191902,33,154.0946212350597,42,146.4231435290132,41 +7060018950,0.13699514239899999,0.597595132974,0.8431422351233671,0.05,39.21737868476302,1,20,16.428571433265308,0.5803863766589498,2.0493737226494986,92.39531060503973,19.856770115979103,5,16.10169491525424,103,160.5693765965541,21,131.93710982929898,44,154.1859637282712,41,145.44172573271513,42 +7060018960,0.326752608951,0.374539557101,0.8415232566175962,0.047619048,28.177735365177377,1,21,15.64625863304179,1.3843028260125665,1.1746780726485189,92.07784857643368,14.267114022359136,5,16.949152542372882,103,161.3661519341016,19,135.2615327268141,39,153.09520904777335,43,145.20961082521197,43 +7060018030,0.414819044681,0.30920929211,0.8399419448476053,0.04,39.83083731283829,1,25,13.142857146612243,1.7574004311067457,0.9184903563029976,91.7677725373939,20.167380038721916,5,20.338983050847457,103,166.73273445169997,13,139.28293782768992,32,149.7718487669877,46,144.0866105042056,44 +7060176340,0.204401594574,9.97419707224,0.6928452400150513,0.037037037,6.9566258489540305,3,27,12.169312160619803,0.8659569878222301,38.81901239214621,62.92389465331117,3.522319042408033,15,22.033898305084747,103,113.20336763163425,61,81.58530595997624,81,169.09319226197954,33,142.8728037926149,45 +7060257320,0.0160691106038,1.67043079765,0.7202332957049938,0.074074074,11.245627073969676,0,27,24.33862432123961,0.06807754432860438,6.256418022641808,68.29435984967586,5.693950963741887,0,22.033898305084747,103,109.23520743696132,68,97.65502079271423,74,126.00317591251499,68,138.17123159372468,46 +7060123570,1.43932216726,2.97510417441,0.7682082068874522,0.045454545,11.676850376771826,0,22,14.935064789981448,6.097756189543813,11.372596458700343,77.70165745856353,5.9122904419696525,0,17.796610169491526,103,122.89381607317755,50,113.77763904402326,60,140.18654395409658,48,136.980973347081,47 +7060192890,1.02866268196,7.53997115055,0.7048766328011611,0.04,13.99217708684924,1,25,13.142857146612243,4.35797792777359,29.273378679612776,65.28310470287023,7.084600060953888,5,20.338983050847457,103,104.51595737607498,69,86.62143192542084,79,147.77201075314642,47,135.36841912311687,48 +7060020090,0.0675260064207,0.654703710904,0.8175979680696661,0.05,0.14799009963457177,0,20,16.428571433265308,0.28607710835917294,2.273320712082994,87.38638997439698,0.07493118723132039,0,16.10169491525424,103,146.53309432431146,28,117.87338233098362,55,136.8434615033176,53,135.13860517221252,49 +7060178710,0.221052691114,6.97999752229,0.7010449927431059,0.04,0.6881798124813961,2,25,13.142857146612243,0.9365001429955884,27.07748424910024,64.53176660827381,0.3484431687976239,10,20.338983050847457,103,113.3713396692354,60,86.5177169074127,80,150.13955207924715,45,133.79718483427192,50 +7060174110,3.04736884542,3.1356782444,0.6689949201741654,0.041666667,1.1145374252633269,1,24,13.690476303911565,12.91032172064512,12.00227558675395,58.2471365045142,0.5643190226958847,5,19.491525423728813,103,91.0779785807392,81,116.56127981253603,58,134.89562035116523,57,131.6564186081883,51 +7060123580,0.176303860165,0.948319878894,0.7906213283571775,0.047619048,16.43402586178543,0,21,15.64625863304179,0.7469196118949208,3.424714412534745,82.09659845611876,8.320971064019304,0,16.949152542372882,103,138.129058940531,35,112.50101224643278,61,130.83700205216624,63,130.47373235761899,52 +7060176450,1.25524015134,1.97695167268,0.7010449927431059,0.04,0.47160025792543914,2,25,13.142857146612243,5.31788405424784,7.4584165603331,64.53176660827381,0.23878335535696257,10,20.338983050847457,103,118.79948960236672,55,117.2430833479588,57,137.0710124676309,52,130.03435729274779,53 +7060192750,0.808137159667,7.131584809,0.7033744557329463,0.035714286,2.914037529872821,0,28,11.734693974781342,3.423711160330959,27.67192238301258,64.98854601805687,1.4754523296348054,0,22.88135593220339,103,104.21194132824277,70,80.6860047536457,82,131.92910950376864,62,127.94450000156979,54 +7060163190,0.982856221057,0.49194333731,0.8294327527818094,0,1.0101965445429222,1,24,0,4.1639166975320725,1.6350681590230147,89.70704756771325,0.5114885441334328,5,19.491525423728813,103,174.04210565442457,9,140.31972407892152,30,134.49558703423125,58,120.76268893858833,55 +7060163080,0.51504365217,0.906520676649,0.8460219026256762,0,2.4574760888366294,1,22,0,2.1820067038108406,3.260801987417744,92.9599784395634,1.244283498620829,5,17.796610169491526,103,179.09716548153602,5,135.77024963401513,35,137.36401258246298,51,120.39835632069278,56 +7060019440,0.481383489546,0.736731675508,0.8426903285393852,0,0.7219388455493555,1,22,0,2.039403838621681,2.5949872005208565,92.30669721061852,0.3655362377891064,5,17.796610169491526,103,178.45186553533324,6,135.312421305617,37,135.6403483859252,55,119.21536283910176,57 +7060174890,1.55142752045,1.21325026926,0.6689949201741654,0.041666667,15.983508703333891,1,24,13.690476303911565,6.572695801289425,4.463618995391452,58.2471365045142,8.092862609142745,5,19.491525423728813,103,101.18493279577613,73,108.03479163157827,67,117.8816935328316,75,119.14059300298902,58 +7060174100,2.38540323134,1.0554502355,0.7155878084179972,0,6.589764194989477,3,25,0,10.105873201516372,3.844818041594774,67.38343619458296,3.336567526690094,15,20.338983050847457,103,140.79294557683022,32,142.47538736724175,28,138.02670291809,50,118.59184784298117,59 +7060018780,1.10763540127,0.294454506159,0.8201552344292296,0,14.12168386894205,1,23,0,4.692549574713751,0.8606305738809549,87.8878388591717,7.150172684338005,5,18.64406779661017,103,169.93208550779988,11,139.46431675169617,31,132.15939070181406,61,118.4383650209472,60 +7060017940,0.012981477008600001,0.191029782316,0.8552579495975722,0,37.053602728098504,1,22,0,0.05499663909804303,0.45505830475493064,94.77105511386604,18.761194551509497,5,17.796610169491526,103,185.73424399505845,1,135.29719291606912,38,133.71980859191413,59,117.87109477476174,61 +7060019200,0.205194191897,0.359798199404,0.8462857896820161,0,3.563479327583619,1,22,0,0.8693148637322076,1.1168709481137085,93.0117234874006,1.8042814590673968,5,17.796610169491526,103,181.5705998871946,3,134.64702871978264,40,133.32440233266234,60,117.56650231392783,62 +7060019840,0.0166356835386,0.490284913098,0.8366896468311563,0,4.8246500663128655,1,24,0,0.0704778572665907,1.628564773315595,91.13003638323676,2.442844726082234,5,19.491525423728813,103,180.58016495056242,4,131.6099896039272,45,130.20888097765425,64,116.5331100147379,63 +7060019190,0.483945960234,0.974847710309,0.8171867440735365,0,6.855187610164371,1,24,0,2.0502598664476275,3.528741306513272,87.30575394151732,3.4709582463059747,5,19.491525423728813,103,171.08911612416992,10,130.26666740812044,46,130.12446709845722,65,116.39119417807981,64 +7060017140,0.335014196825,1.24119843117,0.8384768161332212,0,12.220790855415826,1,19,0,1.4193034323674625,4.573215608488983,91.4804785849545,6.1877015329806175,5,15.254237288135592,103,174.12296641896364,8,128.25601586119552,48,135.6232335951563,56,115.98009085775121,65 +7060018590,0.00438675229504,0.274988027346,0.8664731494920174,0,99.5175566977796,1,17,0,0.01858468282330266,0.7842942425791001,96.97021964694784,50.38830521357118,5,13.559322033898304,103,185.14177429876582,2,133.20406072270578,42,136.8379699153136,54,115.9473373463036,66 +7060148370,0.0417222655269,8.87374385404,0.7819303338171263,0,25.147247128238856,0,22,0,0.17675834406327723,34.50366793495512,80.3923999460989,12.732699680349144,0,17.796610169491526,103,138.29425583776373,34,77.53213735388971,87,138.70962496691715,49,115.68478659410555,67 +7060171990,0.507578084821,0.891035080039,0.6440823327615781,0.045454545,0.891455275205503,2,22,14.935064789981448,2.150378475922513,3.2000763860091106,53.36208058213179,0.4513667774692372,10,17.796610169491526,103,100.41895084478445,76,98.04784258758936,73,115.94352377345321,76,113.1073979607539,68 +7060018020,0.648675587127,3.3362085098,0.7820029027576197,0,58.543355509632555,0,25,0,2.7481446936508647,12.78863992735573,80.40662983425415,29.642010544230992,0,20.338983050847457,103,149.14717006096197,23,108.32430517681793,66,120.85742856055515,72,110.93262122689492,69 +7060174230,2.41796979883,1.58644816692,0.701615447718811,0,2.7058484207199123,2,23,0,10.243842999384754,5.927086458130752,64.64362590298973,1.370040815067363,10,18.64406779661017,103,127.59333612943396,43,128.60149575087297,47,126.12261398311648,67,110.38866731243156,70 +7060017930,0.694448317508,0.619003035437,0.8205128205128205,0,35.12717271305691,0,21,0,2.942063022946382,2.1333232006517564,87.95795714863225,17.785793357758443,0,16.949152542372882,103,163.84660982229616,14,124.89123367794298,50,120.25536791634953,73,110.03408451304435,71 +7060140470,0.452496352337,4.05681073661,0.7567993942071054,0,7.433396034040026,1,23,0,1.9170221205316251,15.61442731556521,75.46452780886203,3.7637200816602943,5,18.64406779661017,103,144.0165038253074,31,103.18101775738275,69,126.70108362512816,66,109.5614732757532,72 +7060018620,0.222161067728,0.25881590309,0.8077614209689682,0,16.650396778806947,1,21,0,0.9411958327529624,0.7208764746858978,85.45756251564096,8.430525238896111,5,16.949152542372882,103,167.88886669188264,12,125.56458766392095,49,123.26887979591201,70,109.06608872064933,73 +7060108050,0,5.0350541155,0.6391674363372476,0.045454545,4.861511355679803,0,22,14.935064789981448,0,19.4505350873993,52.39832906616357,2.461508547436231,0,17.796610169491526,103,81.54062748960374,83,60.722047725114834,95,106.43242277620304,81,107.30115889432074,74 +7060018600,0.0108527131783,0.249028655264,0.8558780841799709,0,9.887101838206142,0,15,0,0.04597803081314473,0.6824965190834518,94.8926559762835,5.0060946043837875,0,11.864406779661016,103,174.28096616427928,7,122.00655786140365,51,123.44073203943903,69,107.16176485891616,75 +7060162570,0.00252862057241,4.63909667294,0.7819303338171263,0,14.318703688372588,0,22,0,0.01071262021606564,17.897817782587605,80.3923999460989,7.249928899494887,0,17.796610169491526,103,146.7632266377947,27,93.71708090394685,76,121.85552284709283,71,107.15270339225029,76 +7060020780,1.50260940561,1.70070388208,0.7361014703098377,0,31.29013625637924,1,23,0,6.365875557219844,6.375131644390094,71.40591623067323,15.843002853516383,5,18.64406779661017,103,137.22408992620572,36,118.96259274080307,54,118.8656907038574,74,107.02303421577733,77 +7060162660,1.89958739606,0.757793935296,0.7205805515239477,0,12.26235831958039,0,25,0,8.047691521318646,2.6775812667917824,68.36245249966312,6.208748211993478,0,20.338983050847457,103,128.23940735338627,42,117.81755859545487,56,103.09735711131097,82,101.14676878120143,78 +7060020790,0.260286702988,0.880261039287,0.7459482341557813,0,99.47749402405935,1,24,0,1.102716883199592,3.1578267962294166,73.33674706912814,50.36802044876454,5,19.491525423728813,103,148.2560130055934,26,111.93849595083313,62,110.27595998231733,78,100.9290349831702,79 +7060140620,0.123487683237,2.32822377384,0.7168650217706822,0,6.819772970546563,1,25,0,0.523161389381159,8.83590366258916,67.63388222611509,3.453026901024933,5,20.338983050847457,103,137.05979548075953,37,98.98542860808743,72,107.71415287172167,79,98.11282717052524,80 +7060190200,1.59000373898,2.45959269075,0.7188316400580551,0,72.41247724617732,0,20,0,6.736125768993112,9.35105698129365,68.01951219512195,36.66430452453545,0,16.10169491525424,103,121.38857724098014,51,103.18203104889548,68,107.36653695522926,80,98.0931987663755,81 +7060148380,1.18772842057,0.885987334762,0.7150728377143472,0,17.519356761247895,0,27,0,5.031867425355598,3.180282032880639,67.28245669197024,8.87050208600545,0,22.033898305084747,103,130.84588785047632,40,110.10501456858239,64,97.69479543923171,86,97.85092843310372,82 +7060018610,0.306222723967,0.404204262077,0.7632359437117435,0,8.630069088383129,0,23,0,1.2973270008085938,1.2910059801644616,76.72665701915246,4.369626507859108,0,18.64406779661017,103,148.33829755906044,25,110.15606810052984,63,102.43275859325321,84,97.80665647211916,83 +7060020500,0.00395390671037,1.16349502375,0.7493468795355588,0,18.18225666393752,0,25,0,0.0167509121060332,4.268507545511773,74.00318016439833,9.206145401034965,0,20.338983050847457,103,145.15247059984483,30,102.44998064487538,70,99.97443093661047,85,96.49953476262765,84 +8060000290,0.316822347892,3.31189758917,0.6979130173664981,0,99.99999913869392,0,29,0,1.3422328070733212,12.693306482139873,63.9176242629258,50.632578262220626,0,23.728813559322035,103,125.70100817431893,46,89.00847280961091,77,97.3410232917819,88,95.84549380611126,85 +7060111430,0,5.50292288856,0.7330316742081449,0,55.23844651548893,0,17,0,0,21.28524726155219,70.8039664862037,27.96864989631943,0,13.559322033898304,103,124.39241921800664,47,74.87870233958375,89,112.82976958714889,77,95.0059121508781,86 +7060190090,0.202344432094,4.83458895185,0.6993918031653881,0,19.26411335428619,0,21,0,0.8572417220320858,18.664426038409527,64.20759620382312,9.75391734135685,0,16.949152542372882,103,116.91827249299641,57,75.36659682783832,88,102.96195463906098,83,91.67203292024142,87 +7060020680,0,1.97213416787,0.6912969106365333,0,1.910494342811536,0,28,0,0,7.439525077864332,62.620286060792736,0.9673325355092052,0,22.88135593220339,103,126.59687935781201,45,88.49883125859725,78,88.40312725747513,94,89.2214045319283,88 +8060267770,7.69345824967e-4,3.12146402862,0.6937245144792314,0,100,0,21,0,0.00325936984283573,11.946535609565396,63.09630970027142,50.6325786983221,0,16.949152542372882,103,119.22460731134552,54,78.6232403733459,86,93.53047572186149,91,86.02322827277571,89 +8060000410,0.00307639151956,2.9951925367,0.6937245144792314,0,98.42652305783228,0,21,0,0.01303327764733052,11.451371459244202,63.09630970027142,49.83588674702015,0,16.949152542372882,103,119.46241547870163,53,79.14318024345057,85,93.04992436484801,92,85.78913507490185,90 +8060000400,0.00136443504031,2.67113388514,0.6937245144792314,0,99.6278058217524,0,21,0,0.00578049334717001,10.180599851068388,63.09630970027142,50.444127188049066,0,16.949152542372882,103,120.1050540670897,52,80.39556688677249,84,91.76830924965293,93,85.14373977211916,91 +7060111530,0.0030605157449,3.70115890465,0.6906489736678416,0,88.98684164528589,0,14,0,0.01296601917983877,14.219765428666614,62.49323348797813,45.05633262538829,0,11.016949152542374,103,111.11140702972905,66,69.73882347746115,92,95.03848287660571,89,80.63795963471739,92 +7060108080,0.0379563631962,1.82014267395,0.6860820410969368,0,28.616315773698396,0,19,0,0.16080392137140798,6.843501875805176,61.5977134589607,14.489178592931138,0,15.254237288135592,103,117.35257877290982,56,80.68235369033069,83,86.72540502745996,95,80.4956256488825,93 +7060108990,0.0341982485087,3.49450764244,0.6906489736678416,0,45.33226518579273,0,14,0,0.1448824913969476,13.40939805984004,62.49323348797813,22.952894836932327,0,11.016949152542374,103,111.38467424192523,64,70.88358376423342,91,94.4253414465693,90,80.414832620106,94 +7060108980,9.2492677663e-4,3.79897264043,0.6987729251880196,0,45.89165819861971,0,11,0,0.00391849587629645,14.603334630477669,64.08624174639537,23.23612994447692,0,8.474576271186441,103,111.1193618418388,65,68.64845660957738,94,97.46817233066362,87,79.86789321174496,95 +8060267640,3.12765769195e-4,1.72443397322,0.641893622470759,0,100.45907016702076,0,17,0,0.00132504692025752,6.4681874104835755,52.9329010677172,50.86501776199496,0,13.559322033898304,103,101.13890463165106,74,68.84954470895241,93,74.90866681441956,96,69.72814549152099,96 +8060332270,16.5066106641,2.06659054756,0.6214008146448804,0.096774194,16.181416442698076,1,31,31.797235180513496,69.93103395122213,7.809928660497591,48.91451026076827,8.193068401058955,5,25.42372881355932,104,6.1565701604319685,66,261.8475379397732,1,227.20679686240464,1,238.04929002189522,1 +8060332260,10.4732234396,2.99087563667,0.6150044923629829,0.095238095,0.1785773118126435,1,21,31.292516937512143,44.370304651717326,11.434443060736555,47.660269120449676,0.09041828151403884,5,16.949152542372882,104,19.83380137663879,65,183.44962948797354,2,190.34426478840624,2,193.93129341018533,2 +8060338970,3.07897325893,1.54518120731,0.6151271126925417,0.129032258,8.805647164742819,1,31,42.39631335497038,13.0442153078358,5.765261182441679,47.68431347831566,4.458526215577821,5,25.42372881355932,104,50.29613387839849,46,119.13876183820868,8,152.1714431543507,5,176.71944496399516,3 +8060332890,8.67589453228,1.91440169769,0.6003344481605352,0.086956522,0.32970253093597324,1,23,28.57142866530612,36.755836036869134,7.213131541936724,44.78365156459636,0.16693687704454,5,18.64406779661017,104,29.311732803906082,61,166.48125255451842,3,167.5150035853993,3,175.14161773611886,4 +8060332210,6.50834960132,2.1371405495,0.6150044923629829,0.095238095,28.97839140946215,1,21,31.292516937512143,27.572929791468344,8.086585182366445,47.660269120449676,14.672506824216256,5,16.949152542372882,104,38.30510517607283,58,144.21809527873575,5,161.88295465995895,4,169.07546703943495,5 +8060340700,6.17168787147,2.12157843663,0.5677893999299334,0.103448276,8.261492059172012,0,29,33.9901478382829,26.1466465078006,8.025559528204077,38.40196274319381,4.183006453419197,0,23.728813559322035,104,22.065037853631082,64,129.61676480757535,6,140.54315215955575,9,164.54356549658834,6 +8060331970,1.37550955193,1.66257305955,0.6298177713272053,0.111111111,3.0922410316099502,1,36,36.50793648185941,5.827411037533661,6.225604494183634,50.56497327404213,1.565681357924349,5,29.661016949152543,104,72.93950960946484,10,107.49201868905291,14,137.98304630360016,11,163.31236395300658,7 +8060340710,4.40483733898,1.85639859313,0.598194847605225,0.09375,0.8453408949806371,1,32,30.80357143737245,18.661300964210785,6.985676733660283,44.364101873062936,0.42801787760304977,5,26.271186440677965,104,51.971951139661826,43,128.1648208709297,7,142.56701692652433,8,161.35562511854855,8 +8060333260,0.190033916674,4.13503672882,0.6499665066428493,0.115384615,8.503650776337656,1,26,37.91208779654632,0.8050876433231601,15.92118465545819,54.515895639194405,4.30561765650279,5,21.1864406779661,104,69.8733501430175,11,81.31727847892887,29,147.08648127783027,6,159.27951674495407,9 +8060341350,3.11360995398,1.83917211948,0.5836775706151613,0.115384615,25.75026166006076,1,26,37.91208779654632,13.190955298666726,6.918124413985968,41.51744011277767,13.03802148783542,5,21.1864406779661,104,39.68804794622038,57,106.55220822870828,15,139.79522450320755,10,158.87314935517583,10 +8060331980,3.36169232785,2.25781013173,0.5992380261248186,0.09375,4.476540613237002,1,32,30.80357143737245,14.241967966429836,8.559781865528995,44.568656515294435,2.2665879332400127,5,26.271186440677965,104,55.955178331192336,41,115.62686754821968,11,137.79833167524663,12,156.2481528501389,11 +8060342260,7.56678400319,2.04219878771,0.5577959776072984,0.071428571,0.07291666371064523,1,28,23.469387620991252,32.05703701363067,7.714278210365775,36.44237395807265,0.0369195706932496,5,22.88135593220339,104,29.2986733294506,62,148.14982424178194,4,143.63556797283627,7,155.4496918020757,12 +8060341320,2.30287041035,2.04131088554,0.5836775706151613,0.115384615,62.870192188539974,1,26,37.91208779654632,9.756219016039372,7.710796368844057,41.51744011277767,31.832799531538697,5,21.1864406779661,104,42.72644825141869,55,97.05287918532969,19,135.4526841797769,14,154.52923842671643,13 +8060264770,0.393878456555,3.12992173072,0.5957910014513788,0.105263158,51.89388078748906,0,38,34.58646620988185,1.668684642687336,11.979701851686531,43.89273682792075,26.2752100214224,0,31.35593220338983,104,60.957413012373706,24,77.69655037121541,36,115.76790354098222,30,146.94997716103063,14 +8060332200,1.53640362827,1.61811115848,0.6215633423180593,0.085714286,0.44160778755644287,1,35,28.16326540804665,6.509046374069087,6.051250496062352,48.94637996419427,0.223597394188874,5,28.8135593220339,104,77.89977173784453,5,105.96303326060976,16,125.9881414339174,23,146.40129083253072,15 +8060332620,0.435964919875,4.85816833637,0.6215633423180593,0.085714286,3.1374974784538585,1,35,28.16326540804665,1.8469859278638745,18.75689081983731,48.94637996419427,1.5885958639961026,5,28.8135593220339,104,76.20901202216227,7,81.43961180575647,28,131.7236192545134,17,146.32004567273228,16 +8060328330,2.04129651235,3.02472617113,0.5690341308113676,0.096774194,0.6046281787244495,1,31,31.797235180513496,8.648048870512476,11.567185383480506,38.64603935649051,0.3061388220681545,5,25.42372881355932,104,47.9436948703833,54,90.76515724403168,22,126.06456086849536,22,145.08338209622912,17 +8060331740,3.75652173913,3.2790491581,0.613441640526242,0.064516129,14.926174210779742,1,31,21.19815667748519,15.914681373623305,12.564493832405237,47.3538128501941,7.557506889921765,5,25.42372881355932,104,66.77699624919414,15,117.46372976729361,9,135.5342875862762,13,144.88677636027063,18 +8060266590,0.268202439486,2.40353989711,0.5957910014513788,0.105263158,67.16026116598614,0,38,34.58646620988185,1.1362522739018448,9.13125017047792,43.89273682792075,34.004972083462405,0,31.35593220338983,104,62.91407122176349,19,79.19534790829334,34,112.12342182644187,33,144.79094646757756,19 +8060332850,2.31822368333,1.9418678216,0.6150044923629829,0.095238095,17.578795606035644,1,21,31.292516937512143,9.821263880540954,7.320837879303262,47.660269120449676,8.90059750587976,5,16.949152542372882,104,56.4396447385318,40,99.98543364479693,17,134.57701176547644,16,144.19368794522077,20 +8060342750,0.903193119541,1.9245880425,0.5771649733913885,0.1,0.25371213251954167,2,30,32.857142866530616,3.8264202138419847,7.253076526319405,40.24039886807707,0.12846097875066662,10,24.57627118644068,104,61.26940493955861,23,91.20795222126182,21,128.61840122132259,20,143.9621097504578,21 +8060335660,0.497215536734,2.38592018325,0.5868575146389069,0.103448276,0.01069052136031309,1,29,33.9901478382829,2.106477052617653,9.062155788921732,42.14098852743146,0.00541287018654766,5,23.728813559322035,104,57.626816066111104,34,79.2533310947875,33,121.12227306779312,25,140.6232799820862,22 +8060342280,0.988004496893,2.1736942755,0.5677893999299334,0.103448276,0.7360026152939682,1,29,33.9901478382829,4.18572761072339,8.229927867248405,38.40196274319381,0.37265708707531264,5,23.728813559322035,104,49.54877258118613,49,80.9940206596609,31,118.56439919740272,29,139.3376941746691,23 +8060333190,0.331649531839,5.2057072716,0.6150044923629829,0.095238095,0.2298634319538798,1,21,31.292516937512143,1.4050488705946935,20.119738592917567,47.660269120449676,0.11638576666430608,5,16.949152542372882,104,58.4564093916709,32,65.85240651062117,46,134.79298118553177,15,138.9779999398849,24 +8060343100,4.12736356827,2.06830335025,0.5368940493468796,0.08,27.448072947533113,2,25,26.28571429322449,17.485770258667692,7.8166452873130785,32.34375960113192,13.89766712439325,10,20.338983050847457,104,36.771584753701404,60,111.27159453257974,12,130.9308182286362,18,138.91348687949008,25 +8060342780,3.99386165125,2.07562578644,0.5496721885791502,0.068965517,2.062433235646108,2,29,22.66009844933146,16.92018309594485,7.845359669626701,34.84939756236961,1.0442631150220325,10,23.728813559322035,104,48.999652128051416,51,115.82012260164032,10,128.68419242228845,19,137.39578869097247,26 +8060343130,3.36791939981,2.0721912873,0.5545610922969414,0.074074074,78.35722830457229,2,27,24.33862432123961,14.268349250238664,7.831891539785373,35.808052224168655,39.6742852835749,10,22.033898305084747,104,49.76165432341652,47,108.67489262590985,13,128.10722588906586,21,136.07032077340722,27 +8060335620,0.310519271536,1.11825260394,0.5749637155297532,0.1,0.30835427437177215,1,30,32.857142866530616,1.3155295270591372,4.091092801906096,39.808758927368274,0.15612770423543806,5,24.57627118644068,104,58.9957389637658,29,80.25154008788704,32,110.49409766086367,36,133.48422156985563,28 +8060332940,1.1596209126,3.00523233146,0.6003344481605352,0.086956522,0.06978217276477455,1,23,28.57142866530612,4.912788643276533,11.490741758637546,44.78365156459636,0.03533249709777403,5,18.64406779661017,104,59.01597508914827,28,81.48521987498982,27,124.18464786282728,24,133.33413571756546,29 +8060331800,1.42599892433,3.5669565442,0.6019968970521996,0.068965517,9.184672597083727,1,29,22.66009844933146,6.041311643014066,13.693500974410988,45.1096376080926,4.650436565956861,5,23.728813559322035,104,68.93256356125215,14,87.11558720207267,25,120.88304157651527,26,130.56627227078945,30 +8060331910,0.804361101859,3.97648580631,0.6176319116063487,0.064516129,19.45994042037821,1,31,21.19815667748519,3.4077137134809328,15.299439147952464,48.17547413399638,9.85306963474073,5,25.42372881355932,104,79.32618482762848,4,83.98368056295325,26,120.63264103132082,27,129.8151630785731,31 +8060338740,0.993826983283,1.58729158388,0.5472198588659226,0.103448276,2.627664465151335,0,29,33.9901478382829,4.21039484869885,5.930393854250134,34.368525479882344,1.330454262221776,0,23.728813559322035,104,38.12885468349832,59,71.40040644544676,40,100.43654301290202,41,129.18853292559388,32 +8060328820,4.48335876217,3.29567801243,0.5274984449512752,0.071428571,18.945946730207066,0,28,23.469387620991252,18.99396067387127,12.629702632902708,30.50139565326198,9.592821374975832,0,22.88135593220339,104,24.08632287233864,63,95.93987890470758,20,110.68910511927096,35,128.93819818081127,33 +8060331810,1.11661209905,2.41190275049,0.60865989356555394,0.066666667,0.8630652548345273,1,30,21.90476202054422,4.730579777884916,9.164044470483432,46.41617032744913,0.4369921780577613,5,24.57627118644068,104,76.42792076551969,6,90.63129193588215,23,115.11040615786094,32,127.26182232037769,34 +8060271080,0.0648852134703,2.36564932403,0.5808289934261077,0.088235294,62.01312382067643,0,34,28.991596608283313,0.274889264577638,8.98266514040456,40.958868711209035,31.39884371554072,0,27.966101694915253,104,61.58072484977267,22,69.8815620901145,41,99.68823058336898,42,126.94693548681964,35 +8060332600,0.088628429118,4.61449048438,0.6110304789550072,0.060606061,4.507889641903249,1,33,19.913420048546698,0.37547851656633674,17.801326466410913,46.88101334052013,2.2824607548557694,5,27.11864406779661,104,81.99474387534713,2,73.8730792152411,37,115.2728568556686,31,124.92645173000894,36 +8060322730,1.89097242153,2.99071800847,0.6180857926140946,0.055555556,29.015898187002207,1,18,18.25396840521542,8.011193775742287,11.433824933615917,48.26447468894579,14.6914974728776,5,14.40677966101695,104,69.02986474749939,13,88.36011725228579,24,119.97292064569965,28,117.90994796510182,37 +8060324030,0.0833404956217,4.42432319058,0.5523033919260334,0.074074074,0.4098323537902663,1,27,24.33862432123961,0.35307593711580104,17.055599738852997,35.365344592672436,0.2075086726752524,5,22.033898305084747,104,52.680536588510854,42,56.411092396366584,53,105.30381769862424,38,116.03513076858295,38 +8060323980,0.114632588004,3.22019304686,0.5712626995645863,0.066666667,1.968536722172048,1,30,21.90476202054422,0.4856463611308703,12.333694022644313,39.08303463145127,0.9967208889268464,5,24.57627118644068,104,66.50684238077046,16,68.14590479049451,43,102.45230635623142,39,115.65511912846938,39 +8060327690,0.168602500927,3.47759538758,0.6320063584214528,0.047619048,11.024980882145956,1,21,15.64625863304179,0.71429244055717,13.3430779254975,50.994128631104786,5.582232106985581,5,16.949152542372882,104,85.46615853512245,1,73.46372785213634,38,111.1435434756633,34,109.28541583995509,40 +8060325760,1.26599679544,3.100841671,0.5294629898403483,0.066666667,8.851423861460626,0,30,21.90476202054422,5.36345508388352,11.865666586532097,30.886619054035844,4.48170413757649,0,24.57627118644068,104,42.17576330108649,56,64.16612531140592,47,88.02936445870664,44,108.95650730105015,41 +8060338780,3.90083986068,2.1402247374,0.5507464233879328,0.035714286,0.0601844165244205,0,28,11.734693974781342,16.526091896550295,8.098679593050226,35.06004196584979,0.03047290561452421,0,22.88135593220339,104,49.548965396230074,48,98.55567111637208,18,93.24956029743677,43,106.31184570617745,42 +8060327650,1.72436090874e-4,3.28547386348,0.6109922847758001,0.052631579,14.2217901954837,1,19,17.293233104940924,7.30533625025268e-4,12.589687830925246,46.87352392570159,7.20085909892268,5,15.254237288135592,104,75.98026072505758,8,66.04328194706761,45,106.1167727998853,37,105.12787402420568,43 +8060311060,0.26275628171,2.7402987048,0.5345670053217223,0.066666667,11.293484478597223,0,30,21.90476202054422,1.1131793698340529,10.451824484897534,31.887454520954044,5.71818240181078,0,24.57627118644068,104,48.85005609594302,52,55.9736540741026,54,81.55502127389397,48,103.38465659142668,44 +8060322700,0.315483606068,3.29156779406,0.6026995645863571,0.04,71.94896312952517,1,25,13.142857146612243,1.3365611642478394,12.613584720966536,45.24742218029916,36.42961537456744,5,20.338983050847457,104,81.4927989356212,3,72.24732277306038,39,100.69023023865381,40,102.83301105617582,45 +8060328070,2.49417965616,3.01649234038,0.5404133927230869,0.034482759,58.54169246294901,0,29,11.330049388951444,10.566709651346985,11.534897036006196,33.03386010808096,29.64116850080988,0,23.728813559322035,104,51.606561054784734,44,78.46297104415208,35,84.63516975442772,46,97.88489498065944,46 +8060320050,0.651046587948,3.138470969,0.5507982583454282,0.037037037,0.9172126023727268,1,27,12.169312160619803,2.758189550362263,12.013227046047044,35.070206171674975,0.4644083764220048,5,22.033898305084747,104,65.67649473268605,17,66.19171092983,44,87.8030948933677,45,94.2276748170002,47 +8060307380,1.88558970233,2.7960647205,0.5247252747252747,0.035714286,57.604314093850505,0,28,11.734693974781342,7.988389632191256,10.670506717609122,29.957610641615492,29.166549660220777,0,22.88135593220339,104,48.046703248057085,53,68.38892496280025,42,76.45973980085536,51,90.71252617666828,48 +8060308720,0.327568317938,2.55031010385,0.546472033046779,0.038461538,5.827675675504178,1,26,12.637362489324962,1.3877586155762152,9.706798487899569,34.22188591626672,2.9507024571854106,5,21.1864406779661,104,65.38239557989807,18,63.22609602302627,50,82.95373373930707,47,90.34545621378854,49 +8060327140,1.38688779897,3.03298334587,0.5302975326560232,0.035714286,2.783346329684067,0,28,11.734693974781342,5.87561551731764,11.599565272654347,31.05026276782104,1.4092800048259462,0,22.88135593220339,104,51.56957052844025,45,63.37899051186558,49,75.64274981691102,53,89.35388810059348,50 +8060328000,0.307868026556,5.02137603013,0.5404133927230869,0.034482759,1.1326512162545808,0,29,11.330049388951444,1.3042974027616503,19.396897505255673,33.03386010808096,0.5734905021777618,0,23.728813559322035,104,56.937973068745336,38,47.121832549418855,64,78.64910469792339,49,89.03292808488361,51 +8060328010,0.0539395085815,5.40245736452,0.5404133927230869,0.034482759,1.1844879844693452,0,29,11.330049388951444,0.22851727000073277,20.8912792716962,33.03386010808096,0.5997367946472996,0,23.728813559322035,104,57.266562318285985,36,42.900473237142506,65,78.53510698718694,50,88.29544502922568,52 +8060311240,0.975101996384,2.3159171337,0.5372103498323407,0.034482759,48.47674441865747,0,29,11.330049388951444,4.131065559287664,8.787644099677744,32.405782286056805,24.54502575968242,0,23.728813559322035,104,58.33826195408973,33,64.16385707879036,48,71.45404117432551,57,87.00141943219916,53 +8060325210,0.0646109445492,4.13401392564,0.5464978766865559,0.037037037,0.32728304788917806,0,27,12.169312160619803,0.27372731136849593,15.917173809780596,34.22695354025363,0.1657118303863807,0,22.033898305084747,104,59.137246545061245,27,47.756146544547036,62,76.25204841160287,52,86.90761283942257,54 +8060307300,0.674052299807,2.83200908652,0.5372103498323407,0.034482759,93.42622698408026,0,29,11.330049388951444,2.855654332795325,10.811459843199838,32.405782286056805,47.30410790150568,0,23.728813559322035,104,58.60176530882103,31,58.90702217974117,52,71.57101259233774,56,86.25314438957031,55 +8060328810,0.319895109689,3.25959239376,0.5404133927230869,0.034482759,33.90918589378867,0,29,11.330049388951444,1.355250707229976,12.488195595677984,33.03386010808096,17.169095222756827,0,23.728813559322035,104,60.34137071906585,26,54.1596951610209,55,71.81658215502623,55,85.64889730141982,56 +8060327990,0.210759389864,3.25562464541,0.5404133927230869,0.034482759,2.2442637818023186,0,29,11.330049388951444,0.8928920871789309,12.472636369200636,33.03386010808096,1.1363286094320872,0,23.728813559322035,104,60.81150895235557,25,53.00322904829909,58,71.10975889332501,59,85.00302095010166,57 +8060325830,0.348835163269,3.58267938373,0.5329062609479005,0.034482759,0.9697423574133608,0,29,11.330049388951444,1.477856608019453,13.755156906071644,31.561802712711824,0.491005545991634,0,23.728813559322035,104,57.05973027030166,37,51.48612525803115,59,71.3635832094182,58,84.97952779989363,58 +8060327190,0.0761284379524,3.27851754593,0.5329062609479005,0.034482759,59.552048331940306,0,29,11.330049388951444,0.32252171493214665,12.562409155298347,31.561802712711824,30.15273773147628,0,23.728813559322035,104,58.81143903877561,30,49.75023339609477,61,68.44351509389797,61,82.78868721685257,59 +8060303080,0.348466404404,2.57216404792,0.5296755131660792,0.035714286,3.1091488603446007,0,28,11.734693974781342,1.4762943437101472,9.792497084487342,30.928292297919025,1.5742422276173806,0,22.88135593220339,104,56.66316561644393,39,53.89199219235892,56,67.10063668069594,62,82.25692218841662,60 +8060311330,0.0463011242675,2.60948855379,0.5372103498323407,0.034482759,78.05354256157062,0,29,11.330049388951444,0.19615689489619637,9.938862324608095,32.405782286056805,39.520521360704024,0,23.728813559322035,104,61.69756150601603,21,53.038102937146746,57,66.72224841249353,63,82.14649848747248,61 +8060302950,0.0989473501119,1.94799972511,0.5129462989840349,0.04,0.4044040009862526,0,25,13.142857146612243,0.4191951116353551,7.344883677331088,27.647896509904328,0.20476015766884423,0,20.338983050847457,104,49.22466664903665,50,47.40782759500043,63,60.644796946256896,64,76.33308669180576,62 +8060308670,2.55571807237,2.20499212476,0.5231930333817126,0,3.4424455706254493,1,25,0,10.827420051613796,8.352660027137093,29.65715671742352,1.742998946804098,5,20.338983050847457,104,61.841909088811,20,81.2825900225472,30,73.53539968795072,54,74.1152893100848,63 +8060314130,0.524304830076,3.38989271113,0.5383271515346987,0,8.626569259714236,1,27,0,2.221242120441909,12.999158481726518,32.62477354055308,4.3678544543534485,5,22.033898305084747,104,74.91118239166823,9,59.9775661120229,51,69.15187543183156,60,69.22376623009738,64 +8060311100,0.425712959645,3.9855411121,0.5372103498323407,0,21.778225391418214,0,29,0,1.8035530152266397,15.33494884795858,32.405782286056805,11.026877097535438,0,23.728813559322035,104,69.85517645185693,12,50.772407889895696,60,59.929793615868796,65,66.29113664783833,65 +8060315160,0.0479344562738,3.41661564462,0.5045355587808418,0,3.7045099060366953,0,24,0,0.2030765829115319,13.103950453805606,25.998652472712564,1.8756888777145575,0,19.491525423728813,104,57.3413906273394,35,37.23411171221244,66,47.02198594953856,66,52.3224171857334,66 +8060316110,4.22823248071,2.87119397094,0.6201835291914415,0.064516129,3.8585574625658974,1,31,21.19815667748519,17.91310615965952,10.96512041776212,48.67581536268043,1.9536871280323989,5,25.42372881355932,105,67.84636850515481,57,125.67121390413078,1,138.63197880578724,1,148.1670992230872,1 +8060261290,3.12765769195e-4,4.34095259036,0.5972619934884086,0.081081081,23.558664992301537,1,37,26.640926621897407,0.00132504692025752,16.72866820591555,44.1811805067431,11.928359579921771,5,30.508474576271187,105,74.26279739724838,49,74.79795301991498,20,118.81432854406604,3,136.8975166774477,2 +8060261410,2.235390106e-4,3.96932326096,0.6027041478878619,0.078947368,2.108223230006892,1,38,25.93984949312567,9.470335526656426e-4,15.27135176553192,45.24832091007737,1.0674477699602491,5,31.35593220338983,105,78.44132903252473,43,78.28834291064446,14,117.83328166704032,4,136.79762672563731,3 +8060275110,1.11504506126,3.80439870182,0.5497214289058476,0.096774194,0.0063290554636319,0,31,31.797235180513496,4.7239409484410455,14.62461252176505,34.859052992597285,0.00320454753329234,0,25.42372881355932,105,38.21689816044021,80,66.09242205703949,31,107.7085668880389,6,132.4094852461307,4 +8060229140,1.05259548233e-4,2.94677123394,0.5880723050534371,0.090909091,7.420489185675484,0,33,29.87012990853432,4.459370364372479e-4,11.261490965444455,42.379194178682106,3.757185011502521,0,27.11864406779661,105,61.338710363642136,61,67.78985420172668,28,104.52456594260792,8,129.89110399498043,5 +8060246160,0.178100017892,2.99773485217,0.5695257268598717,0.096774194,58.54810862559744,0,31,31.797235180513496,0.7545291187491517,11.46134095798386,38.74243537302597,29.64441716941332,0,25.42372881355932,105,50.43051988013167,67,63.724308969233604,35,103.63163811254468,10,129.23308429690397,6 +8060246110,0.00156614516208,3.00462929098,0.5687469762941462,0.1,33.7788967154777,0,30,32.857142866530616,0.00663504778362265,11.488376980789846,38.58973184206981,17.103126451991688,0,24.57627118644068,105,48.88955211328013,69,60.86416233489079,38,103.70810895408869,9,129.15744374060978,7 +8060272020,0.406443804499,2.40122900145,0.5822517105535974,0.085714286,0.7777468666119051,0,35,28.16326540804665,1.721918331393151,9.122188167102763,41.237846266386896,0.3937932779827618,0,28.8135593220339,105,62.301187588762076,60,74.5139933300729,21,101.28508874493257,12,128.62155604709352,8 +8060264660,0.920243082677,3.89113221356,0.6041462362217078,0.027027027,6.041071675598961,1,37,8.880308873965802,3.898653186145854,14.964731459080843,45.5310969236316,3.0587503549075903,5,30.508474576271187,105,93.10011833205554,21,86.53601442937159,6,101.74904043971642,11,110.18299771455466,9 +8060279900,7.93883166007e-4,2.58308125027,0.5746392896781354,0.058823529,19.659146737610637,0,34,19.327730962665065,0.00336332344447201,9.835308071696929,39.74514295679192,9.953932930118253,0,27.966101694915253,105,69.97383759051206,54,66.11929695354527,30,86.11977082107171,27,108.0677138098348,10 +8060254850,0.388397645786,3.98660154347,0.6067744086612011,0.027027027,34.819525765876705,1,37,8.880308873965802,1.64546492958168,15.339107249750748,46.04644962979419,17.630023775063815,5,30.508474576271187,105,96.05029008313478,18,81.05131323080235,11,99.42102970924887,16,107.77593461355414,11 +8060260870,0.225209435292,4.36852617704,0.6067744086612011,0.027027027,95.18870843001378,1,37,8.880308873965802,0.9541103855919362,16.836795950445254,46.04644962979419,48.196497706951334,5,30.508474576271187,105,95.99280027677727,19,77.8011211511571,15,99.88508669827345,15,107.57064712717346,12 +8060009570,0.0227340606626,8.85963360233,0.6463070472504434,0,5.87229154515737,1,36,0,0.09631391933797127,34.44833564504104,53.79832008264832,2.973292622506846,5,29.661016949152543,105,110.2653036382473,10,65.47153265343002,33,114.80000931952965,5,105.81642677919957,13 +8060009470,1.32345156167e-4,12.728814338,0.6236393323657474,0,0.1133450698982392,1,32,0,5.60686490856837e-4,49.62103664259455,49.353456407492246,0.05738951527931343,5,26.271186440677965,105,91.75898926935847,22,41.480603548549254,66,124.08265693666443,2,105.43593496756573,14 +8060231560,0.00516308394976,3.83922061466,0.6071601354620222,0.027777778,24.232338510797927,1,36,9.12698420260771,0.02187364846309367,14.761164031704457,46.12208597224092,12.269457854455077,5,29.661016949152543,105,96.97381893241581,17,76.77498239068623,18,96.83116481068808,19,104.92667692308794,15 +8060009560,0.00232539514055,7.27044699915,0.6432281720265831,0,1.4210677468524275,1,38,0,0.00985164609700785,28.216460008662295,53.194590032553414,0.7195232290591493,5,31.35593220338983,105,114.12682188592078,6,72.47480001002218,24,107.65828523079472,7,103.67234840343994,16 +8060148430,3.42950229348e-4,3.33448807839,0.6354317851959361,0,2.5866389793262288,2,40,0,0.00145292480813607,12.781893385089022,51.66581323271796,1.309682000818259,10,33.05084745762712,105,126.54955391664842,1,95.04941917281958,3,100.88481404886937,13,101.10961255061122,17 +8060122010,0.488164465954,4.92343509242,0.6301589073722601,0,13.55504063673562,1,39,0,2.068131764727166,19.012829490651413,50.63186591066931,6.86326660375912,5,32.20338983050848,105,113.12104459370029,8,84.75354411211686,7,98.2185311147406,18,100.19587948307267,18 +8060183170,0,2.49727855443,0.6296883354976701,0,0.42305422242643126,2,38,0,0,9.498839258864663,50.53959247937927,0.2142032457200232,10,31.35593220338983,105,124.56540376749494,2,95.31995083713431,2,96.14346387866816,21,96.64494431220143,19 +8060164290,0,4.17891874894,0.6151492566586907,0,11.135150457258923,2,37,0,0,16.093264694085303,47.688655641222695,5.638013803824391,10,30.508474576271187,105,115.52948757031422,4,84.55197479694569,8,99.05182956354494,17,96.24376256453654,20 +8060292670,0,4.0270776803,0.5400338655055636,0.055555556,7.693986720666598,1,18,18.25396840521542,0,15.497831373438215,32.95943942864843,3.8956638661898753,5,14.40677966101695,105,48.7507779410854,70,46.132791654769846,62,92.27120731820554,23,93.58074351927942,21 +8060148510,0,3.22953192945,0.623367198838897,0,59.423149213540086,1,38,0,0,12.370315747725034,49.30009432691013,30.08747278388963,5,31.35593220338983,105,115.37810483738275,5,83.75239317039328,9,86.76210437241691,24,91.84118440416248,22 +8060297380,0.0567544934732,1.57881153225,0.5658068346747592,0.045454545,0.14220593412028923,1,22,14.935064789981448,0.2404430861503671,5.897139970129489,38.01320576741679,0.07200251507430822,5,17.796610169491526,105,69.02186319411791,55,65.35229425873953,34,85.28981501108088,29,91.47117125538186,23 +8060112350,0.0371269394202,1.67427706079,0.6344094457302004,0,0.10120861251827534,1,37,0,0.15729002845785206,6.271500854013092,51.46534487593643,0.05124451394321771,5,30.508474576271187,105,121.13760412482303,3,91.92858801011971,4,83.69796682524209,31,90.32664435287771,24 +8060125380,0.0122831485633,7.61205780229,0.6213488751814223,0,15.81476819179206,0,32,0,0.05203813773085512,29.556061057999116,48.90432556259264,8.007424936812608,0,26.271186440677965,105,95.34444259458841,20,53.90208250057172,54,92.86369741015471,22,90.02535987167246,25 +8060252610,0.396668140015,3.6433071469,0.6042573778422835,0,36.08376081212781,1,36,0,1.680503268129245,13.992904115512768,45.55289044603153,18.27013857999672,5,29.661016949152543,105,104.76245438850654,13,80.3230320646941,12,86.05231320806112,28,89.52960604470255,26 +8060122100,0.00764222497369,3.03557051473,0.625855276798673,0,2.759503045803086,1,35,0,0.03237664624030387,11.609710660586495,49.78797620651818,1.3972075353467204,5,28.8135593220339,105,114.02069857210503,7,82.62189193587814,10,86.68070179886574,25,89.45107356067018,27 +8060170630,0.00173584122454,3.24669919781,0.6073617158522819,0,0.4250031973247855,1,36,0,0.00735397314914838,12.437635898311369,46.16161343933882,0.21519006196956367,5,29.661016949152543,105,108.25760109626756,12,78.34723819688973,13,82.78258544080624,32,87.05159748611081,28 +8060297840,0.0356668781416,2.30680089383,0.520480567650379,0.055555556,45.9094627200818,1,18,18.25396840521542,0.15110441004578734,8.751895451263797,29.125275120154512,23.245144832821,5,14.40677966101695,105,45.394508991771,71,48.788567992887195,59,80.79388152630119,34,86.58214901016873,29 +8060112340,3.30139046127e-5,3.30512725716,0.6160663236134933,0,30.15838892530949,1,33,0,1.3986496266942826e-4,12.666757134807792,47.868481336747045,15.269969995260093,5,27.11864406779661,105,108.53629120594545,11,77.54880303394404,16,85.20778049796326,30,86.3206969982535,30 +8060292590,0.216601234065,1.42877403288,0.5041833859813882,0.058823529,0.3726017235205292,1,17,19.327730962665065,0.9176413354329276,5.3087792106087965,25.92959566254746,0.18865784449791967,5,13.559322033898304,105,38.83822585768432,79,49.68849609265857,57,75.74788925940081,46,83.84390882066496,31 +8060261020,3.12765769195e-4,3.83328699611,0.5874028856825749,0,63.41783412940321,1,34,0,0.00132504692025752,14.737895793221124,42.24792916762446,32.11008476832141,5,27.966101694915253,105,98.70402288957386,15,69.77081543712363,26,80.01371455865338,36,82.58480744381399,32 +8060283050,5.44271800964e-4,4.86844881239,0.5137880986937591,0.043478261,3.949077504904768,0,23,14.28571433265306,0.00230583313355089,18.79720493267416,27.812963212505046,1.9995197597222785,0,18.64406779661017,105,41.24653591749488,75,33.491641158453064,75,73.15911566154396,49,82.0492920103799,33 +8060194580,0,8.15203678711,0.5581156265118529,0,18.75245248448535,2,24,0,0,31.67354799938326,36.505053227327835,9.49485024870222,10,19.491525423728813,105,77.5351078044165,44,44.90720618956135,64,100.17250570744349,14,81.83335265074828,34 +8060109640,3.30139046127e-5,3.78867271454,0.6131607284985252,0,11.657056437617308,0,31,0,1.3986496266942826e-4,14.56294424643972,47.29872941217381,5.902268260146486,0,25.42372881355932,105,99.29078029879307,14,66.04299008940603,32,75.71706613135909,47,80.00412337525893,35 +8060197650,0.966651439013,2.32044376935,0.4776316912831896,0.058823529,0.02438357643829692,0,17,19.327730962665065,4.095264374753554,8.80539496063111,20.72313070222024,0.01234601707736578,0,13.559322033898304,105,19.35475746924897,86,40.9225761358812,67,66.61346832904277,66,79.77115909730723,36 +8060282950,1.18196324094e-4,3.47510355976,0.5113993710691823,0.041666667,0.00980563192105945,0,24,13.690476303911565,5.007442970169455e-4,13.3333064102768,27.34456272739521,0.0049648278446788,0,19.491525423728813,105,44.678892508437386,72,39.20235121597258,70,66.32031524440214,69,78.60263898587974,37 +8060009460,0,0.103592344949,0.6126179245283019,0,52.317449661777694,1,32,0,0,0.11217897608173184,47.19229214391591,26.48967386510789,5,26.271186440677965,105,112.80614998027113,9,88.46668163249812,5,71.77872841468007,52,78.51956807263474,38 +8060303200,0.259372134894,3.5639727269,0.5,0.041666667,24.696622978354497,0,24,13.690476303911565,1.0988422723704097,13.681800159479584,25.109284463010372,12.504537052951145,0,19.491525423728813,105,39.57132067385416,78,39.03020088452236,71,65.42086286019745,70,78.05741830226093,39 +8060297330,0.297945742512,4.87809001799,0.5879596032897919,0,0.6071653949173558,1,24,0,1.2622611788223694,18.835012194680857,42.35709473116829,0.3074234800541919,5,19.491525423728813,105,87.10724356585955,27,60.52280906250331,39,86.13717718761237,26,78.0081609107933,40 +8060286910,0.245803020125,3.48110366149,0.5700875509153049,0,2.8601576209421697,1,31,0,1.0413560782080475,13.356835357545895,38.85260224906649,1.4481715423340429,5,25.42372881355932,105,89.98691361401288,25,67.28464598359899,29,75.79766813112363,45,77.39191436969493,41 +8060164230,0.0202215708581,8.07298117114,0.5440031666446761,0,10.35666111347498,2,22,0,0.08566963788031756,31.363537352366407,33.73777118986659,5.2438445740468245,10,17.796610169491526,105,71.16180580045213,53,40.510968442410274,68,96.41267818312848,20,77.33438188872456,42 +8060286860,1.50858004903e-4,4.55044506408,0.5711434791623471,0,0.4444245643854875,1,28,0,6.391170469434788e-4,17.550177171802872,39.059656958053395,0.22502360093405965,5,22.88135593220339,105,86.74382281752975,28,58.152398632194206,46,78.70275988226393,38,75.71698351552165,43 +8060309340,0.512365925707,2.98826971186,0.5753910659571037,0,8.741053014175323,1,27,0,2.170662389462687,11.424224122758366,39.89255715761577,4.4258205314465915,5,22.033898305084747,105,88.21829420658608,26,69.90336762089592,25,76.89805056234184,42,75.63427806157345,44 +8060009900,0.221763146213,2.94341493362,0.5807127882599581,0,3.0247954087626794,1,27,0,0.939510019502644,11.248329486389244,40.936082288999685,1.5315318998465322,5,22.033898305084747,105,91.32773098761103,24,68.17588014328322,27,76.23068642902791,44,74.89075418772387,45 +8060243490,0.00512715824465,4.99470572374,0.5715529753265602,0,30.38777327716583,1,25,0,0.02172144752039906,19.292311906387667,39.139954184072224,15.386113207773136,5,20.338983050847457,105,83.44706319003545,32,54.01501236959187,53,80.58023306462712,35,74.15507075143353,46 +8060298780,0.889605962885,1.87188710756,0.5614685803365048,0,0.05451683728461148,1,27,0,3.768857584375125,7.046413777080405,37.16252676338917,0.02760326409470548,5,22.033898305084747,105,84.12519300212867,31,75.14738148909531,19,71.37993676538125,53,72.92099649653635,47 +8060306980,0.348075793567,1.75513570068,0.5753910659571037,0,0.27573035321218126,1,27,0,1.4746395024916912,6.588581923607371,39.89255715761577,0.13960937167446097,5,22.033898305084747,105,91.33213819313256,23,72.97467273446928,23,71.02179709611289,54,72.25588238948143,48 +8060309320,0.304294173324,3.9199897797,0.5718748028017921,0,39.97884690070452,1,23,0,1.289156605126723,15.077894232409788,39.20306064458674,20.2423211098037,5,18.64406779661017,105,82.70019101249726,35,59.82093974161699,41,78.34232703077068,39,72.1652283382328,49 +8060299220,0.198907103825,3.81605220262,0.5755979049662396,0,0.42210902184773225,1,23,0,0.842679318836636,14.67031084792053,39.93311577602923,0.21372466629300088,5,18.64406779661017,105,84.60298831292847,30,59.9484861080073,40,78.2111331716742,40,72.07531271716607,50 +8060302220,1.36943337851,2.31247787362,0.5629276383993366,0,13.89188390585649,1,21,0,5.801669042500624,8.77415730016859,37.44863033476429,7.0338190371421785,5,16.949152542372882,105,76.63462123135946,45,73.82162037615568,22,76.51681173049963,43,71.79168984379473,51 +8060296400,1.29657962295e-4,3.53521896662,0.5649492017416546,0,1.5363596111450073,1,26,0,5.493020673843036e-4,13.569044453016511,37.845034361945835,0.7778984729988252,5,21.1864406779661,105,84.95568111494572,29,59.021328730754874,44,73.15107174835995,50,70.81675535298378,52 +8060104840,0,4.65321612818,0.5728645917325162,0,1.4304850227140304,0,27,0,0,17.953186163451768,39.39714623665573,0.7242914386725632,0,22.033898305084747,105,80.64951756191037,37,50.04404941773132,56,68.89091059064302,62,70.40763762346636,53 +8060196880,0.0759408627804,7.68464493789,0.5341403879139728,0,19.660928626274213,1,22,0,0.3217270438765031,29.8407060461679,31.80380002695053,9.954835146298446,5,17.796610169491526,105,62.744121955998004,59,33.1258781342048,76,82.09203155439474,33,69.96477565564516,54 +8060155680,0,5.00274602649,0.5576923076923076,0,95.1829142704462,1,22,0,0,19.323841348378032,36.4220455464223,48.19356397454743,5,17.796610169491526,105,76.24763269783907,46,48.215155291939496,60,77.06522346900483,41,68.88057639010285,55 +8060298770,0.045131324808,3.00297326957,0.5565758624539466,0,0.06388472932381763,1,26,0,0.1912009843593147,11.481883017489595,36.20312419018792,0.03234646940537199,5,21.1864406779661,105,82.991646193088,33,59.676208145040675,42,69.22607644762218,58,68.39438103857117,56 +8060306890,0.104501328517,3.54473943031,0.5526850507982584,0,16.217970487667614,1,25,0,0.442724802879368,13.606378234712142,35.440183263711084,8.211576656651593,5,20.338983050847457,105,79.52146788666573,41,56.45174118613586,48,70.74019171762212,55,68.19335572548115,57 +8060270510,0.00454856574174,0.0749856563131,0.5765602322206096,0,71.53131143557516,1,28,0,0.01927021311569349,0,40.12181646678345,36.2181475518746,5,22.88135593220339,105,97.3225877054728,16,76.98898955964324,17,62.553734868823334,72,68.02976703699719,58 +8060159800,1.02842304182e-4,5.01528539687,0.5648919104728439,0,16.303310126702634,1,19,0,4.3569626810274574e-4,19.37301354540655,37.833800239718,8.254786316560907,5,15.254237288135592,105,76.10233282080088,47,47.27176179511065,61,78.9403460650594,37,67.77514560083637,59 +8060304100,0.00919594677306,3.37623273405,0.5526850507982584,0,0.3049698212753077,1,25,0,0.03895906186235559,12.945591909879006,35.440183263711084,0.15441406835730592,5,20.338983050847457,105,80.25562679009931,38,56.089028306995644,50,69.47574251441601,57,67.30572930057505,60 +8060316070,0.605840182787,2.73636601801,0.5461601564964977,0,2.248183149145931,1,23,0,2.566670484549308,10.436402749688424,34.160730711318635,1.138313086187463,5,18.64406779661017,105,75.0924857359127,48,61.818062105069636,37,69.09144743670194,60,66.56523742932296,61 +8060010040,0.130088552662,2.91084046079,0.5742876785577878,0,8.240766685078253,1,19,0,0.5511262837656373,11.120591143270222,39.676196285080046,4.172512662067242,5,15.254237288135592,105,82.83878351701674,34,59.06958285568638,43,73.8933390460303,48,66.25133329212912,62 +8060303960,5.13362189255e-4,2.74896259524,0.5526850507982584,0,2.725131548714731e-4,1,25,0,0.00217488310693263,10.4857992790729,35.440183263711084,1.3796398141536906e-4,5,20.338983050847457,105,81.52230728425778,36,58.45557732188684,45,66.96095452127392,65,66.02506748960457,63 +8060302210,0.549276363766,3.73607947292,0.5474600870827285,0,15.894765134146182,1,20,0,2.3270351997012053,14.356703808448351,34.41563131653414,8.047929451619476,5,16.10169491525424,105,71.26692105800912,52,55.04532462184993,51,72.98304256164603,51,65.90719730302101,64 +8060155780,0.0453812539434,3.03267714846,0.5555310153341326,0,76.1248302252196,1,23,0,0.19225982091932817,11.598364542560423,35.998242355712044,38.543964568819455,5,18.64406779661017,105,80.03846560143948,40,56.78100895928449,47,69.07924329475716,61,65.70682837554992,65 +8060157910,6.41191898644e-4,3.0568657789399998,0.5555310153341326,0,37.669139839465856,1,23,0,0.00271643969472438,11.693218436158595,35.998242355712044,19.072856863941244,5,18.64406779661017,105,80.180582035865,39,56.20568463421,49,68.89071429708181,63,65.49266830301188,66 +8060296490,0.00756369426752,3.91914877971,0.5469970281291036,0,11.898989068083193,1,21,0,0.03204394720286116,15.07459631425632,34.32483107782931,6.024764989703859,5,16.949152542372882,105,73.89464110651045,50,49.25142016570297,58,70.15233674250544,56,63.855505324375024,67 +8060299210,0.698874151395,2.21392170286,0.5474600870827285,0,2.0604859110794886,1,20,0,2.96081327677574,8.387676695471182,34.41563131653414,1.0432771343780067,5,16.10169491525424,105,73.61765653742316,51,62.6209054650858,36,67.961565622918,64,63.79735484837737,68 +8060160210,0,2.97256217897,0.5577285921625543,0,20.113318398400263,1,20,0,0,11.362628214934242,36.4291604904999,10.183891753767774,5,16.10169491525424,105,78.54553085413875,42,54.48975393923654,52,69.11320945517653,59,63.21216951322126,69 +8060259990,0.0024802767627,4.81385546449,0.5190588954243374,0,98.07490596235284,1,19,0,0.0105078093880309,18.58312122846625,28.846502457464236,49.65785394437691,5,15.254237288135592,105,61.06803573129645,62,37.6020050016713,72,66.54557181586208,67,58.40680208772142,70 +8060265470,0.206633486096,2.64318972566,0.528955007256894,0,98.21972012553124,1,20,0,0.8754125014329,10.071018933198811,30.787009836949192,49.73117708953835,5,16.10169491525424,105,68.63589584820464,56,51.41792302414388,55,61.83551176311049,73,58.13236269363105,71 +8060158000,0,4.67453207046,0.5211901306240929,0,98.44476933450528,1,15,0,0,18.036775026518807,29.264411804339037,49.84512530741912,5,11.864406779661016,105,58.678877590954365,63,35.21944552487108,74,66.52384281394706,68,55.147206097259456,72 +8060265410,0.28117392441,3.93474550538,0.5053786391189278,0,99.47643662843768,1,17,0,1.1912065810626038,15.135757699908366,26.16397029098664,50.36748506209407,5,13.559322033898304,105,55.31378322259835,64,39.21776651074157,69,61.39512531228156,74,53.93514405820607,73 +8060125280,0.00227010597568,2.43344638717,0.5323795701154191,0,0.03705695314011918,0,21,0,0.00961741094453844,9.248526220000096,31.45852503513195,0.01876287451173631,0,16.949152542372882,105,66.28748846724503,58,44.426617881800865,65,49.93655356794616,81,53.04521358496227,74 +8060241570,0.105215310249,6.7494691246,0.4771407837445573,0,94.66901816279734,1,16,0,0.4457496201333203,26.17348449086982,20.626869694111296,47.933365123329935,5,12.71186440677966,105,40.19312247424092,76,18.982984681393134,84,64.15925328402774,71,52.040651161441986,75 +8060293820,0,4.79702880624,0.49655297532656023,0,0.07208957282602334,1,16,0,0,18.51713675478644,24.4333647756367,0.03650079325005067,5,12.71186440677966,105,50.99770740349085,66,29.95031989023603,78,60.75800232328641,75,51.403797559809576,76 +8060293870,0.38806144174,1.9972388924,0.49655297532656023,0,0.29106094658870185,1,16,0,1.6440405852972113,7.537971365319465,24.4333647756367,0.14737164643327036,5,12.71186440677966,105,54.84324951292712,65,45.09693699592152,63,52.23681236626379,80,48.18313965473966,77 +8060258800,0.565562380409,5.66216551012,0.4508950169327528,0,99.09912420838415,1,15,0,2.396031676686561,21.909705214813982,15.480393477967926,50.17644205400983,5,11.864406779661016,105,30.697655402346165,84,21.338822314542213,81,56.15727568648829,76,46.60639341430924,78 +8060241560,1.36581113604e-4,5.17285714825,0.4686018384131592,0,54.54268021754349,1,15,0,5.786323241578571e-4,19.990919307034304,18.952486187845302,27.61636547784131,5,11.864406779661016,105,40.00944118236393,77,21.23618812410514,82,55.14626150114334,77,45.81315118599572,79 +8060160330,0.00537869806243,4.40998906457,0.4750673854447439,0,98.10699872942614,1,14,0,0.02278710781221866,16.99938954272389,20.220301461104576,49.67410333992704,5,11.016949152542374,105,42.81068327410666,73,24.91567398308076,80,53.827130732874494,79,44.76839365597146,80 +8060258940,0.885904690642,5.43713464584,0.43820475605671544,0,99.11554149384384,1,13,0,3.753176970095484,21.027263620017234,12.991987395437064,50.184754548993034,5,10.169491525423728,105,23.81755027676828,85,21.063413736681696,83,54.08654442994779,78,43.85483460362562,81 +8060260060,0.852400943072,2.7423999552,0.453410740203193,0,81.22482054419758,1,15,0,3.6112367646536425,10.460064380166903,15.9736962673494,41.126221181522055,5,11.864406779661016,105,36.05361190288241,82,36.444386665213685,73,47.16227169200147,82,43.05196878107287,82 +8060109650,3.30139046127e-5,2.75173148553,0.501088534107402,0,10.530762045980008,0,14,0,1.3986496266942826e-4,10.496657273913486,25.32273278533888,5.331996365740596,0,11.016949152542374,105,49.213747501614,68,30.063834669607907,77,43.23736937868263,84,41.588203601143945,83 +8060159890,0.00510431699727,4.43911418543,0.477244453659548,0,1.9895813471694752,0,14,0,0.02162467949948165,17.1136015117468,20.647198105761632,1.0073763252438988,0,11.016949152542374,105,37.862150346813536,81,18.046561478884374,85,43.84129942796666,83,40.25079202887126,84 +8060304890,0.0984313157433,2.68649750523,0.4641146589259797,0,0.01215277621539431,0,20,0,0.4170089077147011,10.240847130735771,18.072604770246592,0.00615324752705732,0,16.10169491525424,105,41.57075544558268,74,28.00262244145505,79,34.23090973581275,85,39.870233281877695,85 +8060285990,4.48402040849e-4,2.88778929974,0.44904623678208583,0,0.01468314309691809,0,14,0,0.00189967637696859,11.03019775041737,15.117870136870264,0.00743443753011753,0,11.016949152542374,105,31.43711575144257,83,17.62908202052999,86,30.57937506897266,86,31.652539889937955,86 +8060183070,9.92701199006e-5,2.39994955063,0.6358757925292186,0,12.899771120540056,1,38,0,4.205625410556842e-4,9.117170897024382,51.75287767998354,6.5314867501774545,5,31.35593220338983,106,121.21240548907943,1,89.86818467681853,1,86.68086374358543,1,92.66797574625218,1 +8060155650,0,3.43358555842,0.6109296887598774,0,19.217576493232382,1,36,0,0,13.17049669334101,46.8612496069712,9.730354528552391,5,29.661016949152543,106,109.09886431371937,2,78.41197813061126,2,84.4090315387179,2,88.10751490279425,2 +8060147910,0.00109565026843,5.46879702228,0.5851378809869376,0,4.518943654427819,0,25,0,0.00464177399463862,21.151425245802063,41.80378924673225,2.2880576864484135,0,20.338983050847457,106,81.47982851822495,7,47.97041161690159,12,75.20770875094003,4,72.72489098866339,3 +8060150960,0.502283105023,5.05436726729,0.562219978544835,0,8.115657902745127,0,23,0,2.1279460444827687,19.52627015832234,37.309866829151105,4.109166859373322,0,18.64406779661017,106,70.76413169069053,13,48.04007139280803,11,70.94674365533142,7,68.65382782061133,4 +8060010050,0.00802796422682,4.34789519028,0.5742876785577878,0,1.0802369485415948,1,19,0,0.03401084876412186,16.755893088889017,39.676196285080046,0.5469518068202095,5,15.254237288135592,106,80.53824797920886,9,52.12345341204048,9,78.75551102981078,3,68.35531816685949,5 +8060148890,0.0556630265807,2.49644929375,0.5800580551523948,0,20.664840400353057,0,25,0,0.23581903522499717,9.49558737553167,40.80769707586579,10.463141565535844,0,20.338983050847457,106,85.36761205801672,3,59.05014943063652,3,62.609623088994084,12,66.21992542417874,6 +8060148880,0,3.11431281801,0.5773161586840833,0,0.10365704566968366,0,24,0,0,11.918492675474525,40.270044468400485,0.05248421878588326,0,19.491525423728813,106,82.62209031852443,6,54.55475129472151,7,63.98481279623474,10,65.72081622986656,7 +8060170460,0,3.04717591076,0.5773161586840833,0,25.985941929232094,0,24,0,0,11.655220347507568,40.270044468400485,13.157352485638796,0,19.491525423728813,106,82.75372648250791,5,54.81802362268847,6,63.72154046826778,11,65.58918006588308,8 +8060147790,0,2.50874940656,0.5773161586840833,0,20.103155804369887,0,24,0,0,9.543821342009844,40.270044468400485,10.178746170345882,0,19.491525423728813,106,83.80942598525678,4,56.929422628186195,4,61.61014146277006,14,64.53348056313422,9 +8060010440,2.68974205363e-5,5.64782063626,0.5740203193033382,0,58.93953495299604,0,17,0,1.1395218964091632e-4,21.85345287180016,39.62377038135022,29.842606412743777,0,13.559322033898304,106,70.61350456513715,14,37.93389012922388,19,73.08435666201581,5,64.10997611548272,10 +8060150880,0.0393891863917,2.75512795647,0.5709966134494436,0,23.953830179783065,0,24,0,0.16687414436082698,10.509976279031136,39.03085837488209,12.128441904526758,0,19.491525423728813,106,81.03344907458988,8,54.940557134044525,5,61.22360692411879,15,64.00767335907693,11 +8060010210,3.30139046127e-5,6.14363085604,0.5583373649411385,0,0.37261801379381126,0,18,0,1.3986496266942826e-4,23.79773532593849,36.548533441135504,0.18866609268336204,0,14.40677966101695,106,65.21272589233438,19,33.24935455782021,21,71.05261393517196,6,62.85437379142765,12 +8060155560,0.0493521973067,3.11888544783,0.562219978544835,0,23.156760998753366,0,23,0,0.2090829096083503,11.936423899103277,37.309866829151105,11.724865224030658,0,18.64406779661017,106,76.47791795517449,11,50.76582272874077,10,60.488039725611586,16,62.21069991210272,13 +8060129850,0.0462620821735,4.16548232961,0.5543607336060167,0,8.913130900270254,0,22,0,0.19599149122510967,16.04057478712583,35.768764317477434,4.512948002574334,0,17.796610169491526,106,70.94746428239972,12,43.983076059970074,15,62.580081289334316,13,61.85614787520906,14 +8060162570,0.0296804224758,2.36581431488,0.562219978544835,0,0.28297826980986207,0,23,0,0.12574250850636118,8.983312139602946,37.309866829151105,0.1432791787509632,0,18.64406779661017,106,78.03781423602663,10,53.50767626219188,8,57.41032723528336,19,60.61912673671406,15 +8060010430,3.30139046127e-5,4.49536373464,0.5618116622556134,0,78.12624009660591,0,17,0,1.3986496266942826e-4,17.334179884719266,37.229800962293005,39.55732999735447,0,13.559322033898304,106,68.76587122694376,17,39.66026447993787,18,65.4698892283786,9,59.45640596485689,16 +8060012110,0,6.01102925216,0.5541675305826249,0,6.817083874530626,0,14,0,0,23.277748118073188,35.73087955031089,3.4516653423679475,0,11.016949152542374,106,60.68021061114759,21,29.42522717649855,22,69.47524895079837,8,58.38670276188986,17 +8060011270,0.100954160273,3.40348097338,0.5562409288824383,0,0.5097477431094984,0,18,0,0.4276970574536303,13.05244382926661,36.13744778331759,0.25809841082048984,0,14.40677966101695,106,69.45253013886284,16,44.598853887383164,14,60.41505079804969,18,57.660710003869916,18 +8060010200,1.56584159037e-4,3.44423745132,0.5583373649411385,0,7.190502733329448,0,18,0,6.633761687767446e-4,13.212267289513916,36.548533441135504,3.640736939985088,0,14.40677966101695,106,70.50493639934055,15,43.83614963427887,16,60.46792859091128,17,57.56236226605637,19 +8060130010,0,2.55322793729,0.5421988388969521,0,0.09736464682443129,0,20,0,0,9.718240552091,33.38396442527961,0.04929821498751305,0,16.10169491525424,106,68.51819553270049,18,45.331412859322775,13,52.88134607164443,23,54.344779616579345,20 +8060162560,0,2.64313875629,0.5285437832607643,0,0.04520368788586642,0,21,0,0,10.07081906065114,30.70637380406952,0.02288777639456098,0,16.949152542372882,106,64.59552168312561,20,42.702436253136185,17,49.77198923156931,26,52.69093587676797,21 +8060176270,0.120970514023,3.01319478219,0.5113570391872279,0,4.651945757196507,0,20,0,0.5124972833846417,11.521965909791891,27.33626195930467,2.35540008082508,0,16.10169491525424,106,56.72801832763612,22,37.77115564532382,20,47.63204520279969,29,49.90623246037031,22 +8060012500,0.0155709342561,6.4180541031,0.4941944847605225,0,36.14051784001689,0,15,0,0.06596699675505112,24.873865431734163,23.970893410591565,18.29887612681883,0,11.864406779661016,106,40.487473593162235,26,15.123802326476712,30,55.96516176725344,20,48.363273331505596,23 +8060012600,0.165507111055,6.30322083431,0.4829916545718432,0,40.15525172336754,0,16,0,0.7011786754944316,24.423555412390844,21.774154426627117,20.331639420495225,0,12.71186440677966,106,37.15601152330308,30,15.468895568761374,29,53.62431709286918,22,47.66548656686827,24 +8060012510,0,5.8171050328,0.5030237058538946,0,99.99999945842174,0,12,0,0,22.517288889738957,25.70219646947851,50.632578424107074,0,9.322033898305085,106,42.159687974564996,23,16.790640889624385,27,55.74841159775157,21,46.28287481265307,25 +8060012760,0,5.91947474775,0.4838673663056827,0,86.89598026190502,0,13,0,0,22.918724020908183,21.945870865423483,43.99767558963107,0,10.169491525423728,106,36.36184049372029,31,12.854283514176272,31,51.293183321657736,24,43.5747244013013,26 +8060012680,0.00742551842796,5.1011534151,0.4838673663056827,0,74.79189239030504,0,13,0,0.03145855874703936,19.70973851507398,21.945870865423483,37.86906377033728,0,10.169491525423728,106,37.93487468789035,29,16.143012808462274,28,48.131230939720744,28,42.013647306383504,27 +8060012610,0,4.74333729785,0.4838673663056827,0,99.51820010379632,0,13,0,0,18.306589546329903,21.945870865423483,50.38863098662905,0,10.169491525423728,106,38.66790773100943,28,17.46641798875455,26,46.68104884707945,30,41.26865716401217,28 +8060012690,0,4.71799641926,0.4838673663056827,0,99.99999997071508,0,13,0,0,18.207217198505273,21.945870865423483,50.632578683494394,0,10.169491525423728,106,38.71759390492174,27,17.565790336579184,25,46.581676499254826,31,41.21897099009985,29 +8060013050,0,7.80136821995,0.4516207063376874,0,12.354932813027093,0,12,0,0,30.29842761027643,15.622692359520263,6.255621065257688,0,9.322033898305085,106,20.976089876247414,36,-2.749919292531043,37,50.49746419632283,25,40.09394006296356,30 +8060013040,0,7.3481535104,0.4516207063376874,0,97.18172319535262,0,12,0,0,28.52118024307521,15.622692359520263,49.20561247680868,0,9.322033898305085,106,21.864713559848024,35,-0.9726719253298235,36,48.72021682912161,27,39.205316379362955,31 +8060012900,0,6.77829045053,0.4516207063376874,0,98.08330761237973,0,12,0,0,26.28650515094328,15.622692359520263,49.66210791644011,0,9.322033898305085,106,22.98205110591399,34,1.2620031668021063,35,46.48554173698968,32,38.08797883329699,32 +8060012910,0,6.77280332981,0.4516207063376874,0,99.99999994342296,0,12,0,0,26.264987820089615,15.622692359520263,50.632578669675695,0,9.322033898305085,106,22.992809771340823,33,1.2835204976557755,34,46.46402440613602,33,38.07722016787016,33 +8060176280,0.0047346844506,2.50058622295,0.4694756894049346,0,0.00141254443723804,0,16,0,0.02005871379660877,9.511810031976996,19.123837757714572,7.151912178327179e-4,0,12.71186440677966,106,40.745954854085575,25,25.562044932535482,24,34.267569483436205,37,36.61929002079027,34 +8060191300,0,2.40912207533,0.4694756894049346,0,0.01093609228041955,0,16,0,0,9.153140262162264,19.123837757714572,0.00553720907597117,0,12.71186440677966,106,40.94534845278955,24,25.86986819528439,23,33.878910292338674,38,36.41227229557536,35 +8060012770,0,5.5331796484,0.4516207063376874,0,93.68014788191306,0,12,0,0,21.40389686764965,15.622692359520263,47.43267459997415,0,9.322033898305085,106,25.423355247560806,32,6.14461145009574,32,41.60293345369605,35,35.646674691650176,36 +8060156300,0.0036809140305,8.34265227033,0.4126533843514976,0,5.094594165043286,0,11,0,0.01559436575300483,32.42103226801369,7.981673628890989,2.5795243843578133,0,8.474576271186441,106,5.94232510581306,38,-14.594973525902239,39,42.76408676443555,34,32.68828767007824,37 +8060160010,0.353686163082,6.80856432551,0.39840348330914366,0,49.262567053837735,0,13,0,1.498408097330222,26.40522187277388,5.187441045681163,24.94290802399862,0,10.169491525423728,106,4.368371345983645,39,-6.385425500823039,38,35.352459281923345,36,30.62748228435028,38 +8060177370,0,4.92212583367,0.4126753749395259,0,47.74382650410792,0,15,0,0,19.007695331019363,7.985985716210746,24.173930519683413,0,11.864406779661016,106,16.061816535698444,37,2.1736947842208547,33,29.333010196423153,39,29.354240161381444,39 +7060282770,7.39945250845,4.36496814938,0.6805550638960671,0.195121951,8.854494248891138,4,41,64.11149820403186,31.348129250680792,16.822843412811505,60.51394033412103,4.483258753909094,20,33.898305084745765,107,49.93761337525833,9,201.48154609791237,1,267.0999609470426,1,283.6246691333776,1 +7060242880,12.1577634586,4.70486831312,0.6341823119059881,0.129032258,0.0401318118679904,0,31,42.39631335497038,51.50693782603012,18.155736318511725,51.42080669069031,0.02031975477749393,0,25.42372881355932,107,6.423735640869779,17,201.35605795726985,2,216.24761013915304,2,234.73321360888116,2 +7060256690,2.32625387284,4.6341297708700004,0.6509647400324425,0.205882353,3.4817990439156676,1,34,67.64705886218486,9.855284156822137,17.878340450009812,54.71163708712159,1.7629246251447672,5,27.966101694915253,107,34.251594868372976,12,111.78725879266611,8,201.12254102494006,5,234.23770093838107,3 +7060208540,9.14782707336,10.727497433,0.6170494322547596,0.117647059,1.6161938035105636,0,34,38.65546225390156,38.75520048693939,41.773023051248046,48.06125700516022,0.818320583289623,0,27.966101694915253,107,8.260284787816929,16,143.725760486576,5,211.63858134442387,3,221.26790162112465,4 +7060075830,11.5158135056,10.3536817357,0.6313748060657625,0.068965517,1.7167032919727825,0,29,22.66009844933146,48.78728659830329,40.30713293372612,50.870288881970545,0.8692111291510771,0,23.728813559322035,107,17.138106860042953,15,168.32879111173588,3,208.2032721155215,4,203.62705337664718,5 +7060184430,2.96470588235,4.16267125077,0.6284470246734397,0.157894737,2.420539387215928,0,38,51.87969931482277,12.56011618211327,16.029551353062214,50.29618649777656,1.225581494098085,0,31.35593220338983,107,40.004659740408854,11,110.16700741700015,9,166.65213167774144,9,202.11377344828685,6 +7060224630,4.07220862069,7.60327472462,0.6216255442670537,0.133333333,0.11439140580160732,0,30,43.809523712517006,17.25210372407234,29.52161888007327,48.95857701118448,0.0579193021292073,0,24.57627118644068,107,28.36928394329395,14,99.55586267740986,12,175.03626270874256,7,192.42258219285125,7 +7060202930,5.84885761892,7.66591095092,0.5977503628447025,0.1,18.131389861484603,1,30,32.857142866530616,24.778960929521617,29.767242126489137,44.27694380811212,9.1803902272433,5,24.57627118644068,107,30.36013081489041,13,119.26534342343717,7,177.0270472827478,6,183.17213983574646,8 +7060282720,2.99576295291,1.40376362583,0.6495116306437061,0.108108108,27.51573592435514,2,37,35.52123549586321,12.691690925102778,5.210702782051617,54.4266999785124,13.931926634393427,10,30.508474576271187,107,80.76592956336977,1,138.42765211092694,6,161.60324650218226,10,180.17847306751494,9 +7060224620,0.591478790294,1.0332862045,0.6189612274517934,0.148148148,23.332473381515744,2,28,48.67724864247922,2.5058277684731927,3.757903462453183,48.43613683177082,11.81383293454443,10,22.88135593220339,107,59.30167382751337,7,100.54069817811373,11,154.1197225476228,11,175.89633609864947,10 +7060203140,1.77693859812,7.8309412727,0.6208551970525846,0.115384615,23.83176491069437,2,26,37.91208779654632,7.528084109030632,30.414396110487353,48.807521275382754,12.06663711107202,10,21.1864406779661,107,51.73510325814752,8,84.45631122957948,13,174.90085160965003,8,175.09609164730307,11 +7060208410,0.0708530502622,10.8556779949,0.6006360454196191,0.117647059,6.412685308244132,0,34,38.65546225390156,0.30017228638037374,42.2756734757882,44.842791125343794,3.246907919971503,0,27.966101694915253,107,40.942186073866594,10,41.989208228739955,17,150.48656374332833,12,165.22934194375705,12 +7060259200,7.03392431792,0.591687479428,0.6430310407790627,0.064516129,0.08984170772665434,0,31,21.19815667748519,29.799551846012484,2.0262073039748043,53.155934988328674,0.0454891569271663,0,25.42372881355932,107,62.49075328765106,5,162.71769091789858,4,142.60650166649987,13,159.58213303545108,13 +7060242640,0.00332391734811,5.93986780051,0.6385824866956943,0.1,1.7586430402306328,0,30,32.857142866530616,0.0140819324846183,22.9986938421942,52.28362754345776,0.8904463052005129,0,24.57627118644068,107,66.62105219399317,3,65.34893411190592,15,132.93479840516443,15,148.6167752475135,14 +7060259190,3.77245468114,5.24407316223,0.63514755684567,0.066666667,0.3666373129818948,0,30,21.90476202054422,15.98218203328734,20.270187544983138,51.610079504109954,0.18563790963707305,0,24.57627118644068,107,62.909242957885496,4,106.85621295908823,10,139.10372166073375,14,148.5370323912917,15 +7060184580,0.871347576347,5.78378045298,0.610062893081761,0.090909091,0.21198065591969192,0,33,29.87012990853432,3.691505069381821,22.386609058523888,46.69128149845034,0.10733125601240838,0,27.11864406779661,107,59.483179345419636,6,71.05191035595004,14,126.74334399377153,17,144.85974599642566,16 +7060256540,0.031007751938,9.1523893929,0.6430310407790627,0.064516129,2.243868168468967,0,31,21.19815667748519,0.13136580232327066,35.59635544020624,53.155934988328674,1.1361283001996718,0,25.42372881355932,107,75.37386526322456,2,53.94214094998982,16,131.82027984888776,16,135.4224254595613,17 +7060073760,8.21636526697,3.53264475777,0.5898277276456111,0.304347826,10.02117335437862,0,23,100,34.80901864910191,13.558949886788,42.72341123603404,5.073978470343914,0,18.64406779661017,108,-59.64546483189484,41,151.49924573369387,14,249.62751463425695,2,299.5198831825665,1 +7060269450,10.1031387342,10.5201422792,0.7329936265539219,0.130434783,3.5741113909668316,1,46,42.85714299795919,42.80242335707685,40.959895424537606,70.79650580315555,1.809664746928907,5,38.13559322033898,108,54.79828565286897,4,199.09221600019748,4,262.3329608300752,1,272.054693320597,2 +7060074540,8.06120070044,14.8884686226,0.634978229317852,0.147058824,20.107750162732003,0,34,48.31932789951981,34.15165665087926,58.0899583489999,51.57687643174774,10.18107241246002,0,27.966101694915253,108,0.10672570874950793,35,120.64625499502691,20,238.0641761809357,3,244.30576860949003,3 +7060263970,10.3081864615,0.898589770354,0.6249122149913385,0.161290323,4.649513417911411,0,31,52.99539185799869,43.67111771664173,3.2297015353907046,49.603053236021566,2.3541685247219433,0,25.42372881355932,108,6.944935078308859,32,195.1817440831033,5,200.9064836984071,12,234.06994580992267,4 +7060264650,10.7962325414,11.5207187726,0.6142803054205843,0.130434783,0.8816182810082037,0,23,42.85714299795919,45.738747933272194,44.88358082376978,47.51826485355893,0.4463860536391214,0,18.64406779661017,108,-15.15401561561778,40,148.71229877027207,16,229.89932001620954,4,230.29916329276807,5 +7060264520,11.0500898836,0.86966953982,0.6326398967908402,0.148148148,7.034929745608391,0,27,48.67724864247922,46.814226526510296,3.1162930283578283,51.11835781341239,3.5619663245182913,0,22.033898305084747,108,7.818409018269875,30,201.2807475092392,3,201.89021711952563,11,228.55989433205826,6 +7060213040,15.2475067187,5.44606817941,0.5988071480406386,0.09375,4.195031234836339,0,32,30.80357143737245,64.59678075135811,21.062295799429176,44.48416655437273,2.124052475631814,0,26.271186440677965,108,-6.420847690990257,39,223.41937719224842,1,214.82592609559882,6,226.90911849600042,7 +7060212920,10.792038483,7.159950154,0.6063464837049742,0.121212121,0.6263595781116081,0,33,39.82683976852196,45.72097960721592,27.783154948193573,45.9625387414095,0.3171419899686805,0,27.11864406779661,108,2.552774286612305,34,172.17472120993904,8,206.85822192455325,8,223.08772269543107,8 +7060073880,11.222631113,12.0090704497,0.6255910857249871,0.096774194,5.25355616051013,0,31,31.797235180513496,47.5452055758556,46.79861516423953,49.736171544570546,2.6600109418391455,0,25.42372881355932,108,4.832748859993146,33,159.82198433887925,12,223.13893245844974,5,222.47082553274137,9 +7060194980,9.09959137223,5.37623990092,0.6018787292372197,0.138888889,5.037260878483415,0,36,45.63492068446712,38.55084766599842,20.78846946174087,45.08646633427659,2.550495062910617,0,29.661016949152543,108,7.870688136731118,29,162.9982511110406,10,195.49100600226762,13,222.00939781272845,10 +7060263060,11.3769371449,4.62994790903,0.6142803054205843,0.130434783,2.771077824944212,0,23,42.85714299795919,48.19893035165988,17.861941593599084,47.51826485355893,1.4030681445064128,0,18.64406779661017,108,-4.103378418920116,37,181.9702143633325,7,206.55585515582501,9,220.18361805600063,11 +7060226990,11.6978969227,1.61380669481,0.6104587236662709,0.121212121,18.482985375323096,0,33,39.82683976852196,49.55869157551451,6.034370865804284,46.768899070206174,9.358412102545204,0,27.11864406779661,108,10.972896658552301,27,204.592412603317,2,191.88969869108243,15,218.31608080353575,12 +7060263820,7.3449712453,11.9855398964,0.6204644412191582,0.125,25.293215467446625,0,32,41.07142858316327,31.117316811920468,46.70634187076516,48.730898800700714,12.80660721459717,0,26.271186440677965,108,10.22791025454329,28,118.71895871155975,21,209.12990929465835,7,216.5975884931145,13 +7060074670,7.62438725519,4.24338044314,0.6233879328218951,0.114285714,7.963598059417674,1,35,37.551020325014576,32.30107590527751,16.346046375456663,49.304160009240185,4.032175039506981,5,28.8135593220339,108,37.247643718690355,11,162.24775613192838,11,187.39701028728277,16,204.71268770510216,14 +7060217780,0.29038361295,20.0390518439,0.6068257491675916,0.147058824,8.442247033935574,0,34,48.31932789951981,1.2302238605681803,78.28758273479085,46.05651687976093,4.274527358297236,0,27.966101694915253,108,13.458271604925088,26,10.556207082059693,41,201.90412549484824,10,203.44966468458477,15 +7060217900,9.55151428782,8.37305998797,0.5974600870827286,0.1,3.4443449169883835,0,30,32.857142866530616,40.46544039472822,32.54027384376032,44.22002425549117,1.743960634846377,0,24.57627118644068,108,7.564480740527429,31,148.93930699650014,15,192.52880609533162,14,201.15049739464803,16 +7060260120,9.70078966351,4.70697412191,0.6255910857249871,0.096774194,6.696055236809589,0,31,31.797235180513496,41.097852558429544,18.16399408916434,49.736171544570546,3.39038542210642,0,25.42372881355932,108,25.597412414956793,21,172.1133152069907,9,184.86499015076382,17,199.2555843602945,17 +7060194860,1.06712507936,6.54248635573,0.5990271839328443,0.162162162,17.32065378910452,0,37,53.281853243794814,4.520925686896221,25.36181714363064,44.52731292132989,8.76989364722635,0,30.508474576271187,108,31.090449460197107,17,72.99536453842353,28,158.31220739619008,20,191.63938026450336,18 +7060076630,8.37222207345,4.43274434405,0.6255910857249871,0.096774194,7.877231541360152,0,31,31.797235180513496,35.469313354494496,17.088622658272833,49.736171544570546,3.9884454442682937,0,25.42372881355932,108,31.763637334337588,16,158.92099423720964,13,175.37449125431695,18,190.9500051733547,19 +7060227100,10.0530127379,1.15087113555,0.6044333025465101,0.090909091,8.910228325676574,0,33,29.87012990853432,42.59006221156817,4.219003918214307,45.58738714458967,4.5114783542084345,0,27.11864406779661,108,27.77451446025846,20,186.53495801749142,6,165.30501284094797,19,188.35557816004297,20 +7060169010,5.91547345234,4.61089468084,0.5883526850507983,0.111111111,6.477091810396104,0,36,36.50793648185941,25.06118204707149,17.78722579350737,42.43417329200917,3.2795185928710353,0,29.661016949152543,108,28.35021810157245,18,127.94983710153467,18,157.1379298038184,21,182.50671922655874,21 +7060166020,4.28479137493,6.08342544913,0.5245232971322756,0.137931034,4.400199921161384,0,29,45.32019689866292,18.152720580356103,23.561644354777567,29.91800528788293,2.2279346722334195,0,23.728813559322035,108,-4.727741534005936,38,84.86322767170302,23,147.7502352213217,23,173.56706585317687,22 +7060262850,0.86700209469,3.13569668002,0.6269714562167393,0.133333333,6.837609123251696,1,30,43.809523712517006,3.6730952315614505,12.002347880650015,50.006845438620154,3.4620578050830466,5,24.57627118644068,108,58.13140292427357,3,91.12690593480218,22,149.22085046146955,22,170.97095453136345,23 +7060170140,3.74936407981,5.4195003537,0.5246484159951954,0.137931034,10.526612957310824,0,29,45.32019689866292,15.884357612609977,20.958112070833433,29.94253957780575,5.329895575154225,0,23.728813559322035,108,-1.11551985940811,36,81.74534693378979,24,141.78703547132875,24,169.15928782392143,24 +7060142810,0.633362540052,2.86991867684,0.5805515239477503,0.138888889,5.791907462776775,0,36,45.63492068446712,2.683270248091457,10.960119447948312,40.90446031532137,2.932592088721339,0,29.661016949152543,108,41.47752903021845,7,77.02745599686155,25,126.63064969822823,28,163.41271401555736,25 +7060260000,4.83543243303,0.681745099791,0.6255910857249871,0.096774194,14.043201573041094,0,31,31.797235180513496,20.48553737191442,2.3793614830292933,49.736171544570546,7.110435074088788,0,25.42372881355932,108,54.10204390453943,5,135.64812559614552,17,138.26325680675697,26,162.91640773194595,26 +7060170490,5.51260903812,4.12124782277,0.5809454696247149,0.085714286,9.212474172761612,0,35,28.16326540804665,23.354427971273815,15.86711249836011,40.98170827959266,4.664513220645914,0,28.8135593220339,108,36.85676940590936,12,122.30613787655545,19,140.04121983818118,25,161.59270122214335,27 +7060168960,4.39150244277e-4,8.82730358099,0.5401236012921953,0.129032258,6.78459432702385,0,31,42.39631335497038,0.00186048070480111,34.32155590003866,32.97703552690489,3.4352150466525035,0,25.42372881355932,108,18.202613873467243,25,33.113123243408936,40,131.56262535202458,27,153.29068440633785,28 +7060161180,1.22879235208,4.12168570552,0.5401236012921953,0.129032258,0.7321041056406354,0,31,42.39631335497038,5.205836706332337,15.868829622602068,32.97703552690489,0.37068317110638566,0,25.42372881355932,108,22.225000786558,23,64.75732413929671,30,120.8902700873295,29,151.24627940706026,29 +7060145540,0.900088948011,4.24228689995,0.5401236012921953,0.129032258,8.564669562395938,0,31,42.39631335497038,3.813269244871294,16.341758128154897,32.97703552690489,4.336513041384552,0,25.42372881355932,108,23.381103995242626,22,60.75439904538915,33,119.28119609312418,30,149.5608745388158,30 +7060165930,0.163306046855,3.70631016142,0.5977198075013368,0.105263158,11.290754702514876,0,38,34.58646620988185,0.6918537632861498,14.239965694322928,44.27095227625728,5.716800245787149,0,31.35593220338983,108,61.453002089048525,2,73.4013851906756,27,117.05673098300167,31,147.11020951612716,31 +7060144740,0.410418131852,3.5996981375,0.5505941582002902,0.125,1.8164657844131291,0,32,41.07142858316327,1.7387557565140073,13.821894667872913,35.03018461123836,0.9197234516637603,0,26.271186440677965,108,32.54289128995685,15,61.148003196374496,32,114.60805052555052,33,145.90957775243692,32 +7060145630,0.371505360424,3.24600599594,0.5595944935567577,0.121212121,27.674840372027816,0,33,39.82683976852196,1.573899966597914,12.434917559359793,36.795041099582264,14.012485319100008,0,27.11864406779661,108,38.645639318078544,10,64.91983117569464,29,113.65355561593158,34,145.31914124430693,33 +7060140080,0.21828445191,3.33957511836,0.5401236012921953,0.129032258,7.291938283718761,0,31,42.39631335497038,0.924772367154782,12.801841829398136,32.97703552690489,3.692096374880726,0,25.42372881355932,108,28.039559022337524,19,56.972311630864525,34,111.42274020014207,36,143.80452929575625,34 +7060166730,1.87835613746,5.21447507525,0.5261248185776487,0.103448276,8.10561546846525,0,29,33.9901478382829,7.957744293738312,20.154120874923755,30.23204419889501,4.104082115931684,0,23.728813559322035,108,20.172835289416064,24,61.84987970182206,31,114.91468679585802,32,137.33559651574444,35 +7060161120,0.457101525173,6.43862972698,0.5401236012921953,0.096774194,18.641464989471984,0,31,31.797235180513496,1.9365321522697565,24.95455119192399,32.97703552690489,9.438654417926015,0,25.42372881355932,108,32.610430547862194,14,46.50103916258041,38,111.43778542059269,35,131.8455607226117,36 +7060139370,0.0285329851801,3.43101438023,0.5410131560466314,0.096774194,5.207725030494169,0,31,31.797235180513496,0.1208813363302335,13.160414011617547,33.15146641396907,2.6368054588579417,0,25.42372881355932,108,40.62241451200239,9,53.89621534824293,36,97.15462825009621,38,123.61716058123508,37 +7060137710,0.0437290609702,3.29612779524,0.5410131560466314,0.096774194,0.04214828982117501,0,31,31.797235180513496,0.18526022752889912,12.631466422334164,33.15146641396907,0.02134074956440628,0,25.42372881355932,108,40.822509415445424,8,54.588355940797356,35,96.72193238011312,39,123.44153548259155,38 +7060140020,7.72411286292e-4,3.27647240826,0.529874213836478,0.1,0.16490608149895128,0,30,32.857142866530616,0.00327235681419872,12.554389301875716,30.967255086915515,0.08349618506417997,0,24.57627118644068,108,35.282309969803364,13,50.896736435528,37,94.91377029513325,40,122.06333232814467,39 +7060166920,0.854295421619,3.76814748903,0.5941178842122238,0.055555556,1.273150452341924,0,36,18.25396840521542,3.619262812295165,14.482456119664048,43.56465885100838,0.6446288884833481,0,29.661016949152543,108,73.46341890819915,1,76.69957057408807,26,99.72847295355822,37,118.92742281895136,40 +7060144640,4.25134149037e-4,4.8206741052,0.5402757619738752,0.066666667,8.191779731236089,0,30,21.90476202054422,0.00180110085680944,18.609860014728884,33.00687238916587,4.147709304103136,0,24.57627118644068,108,47.80296002691259,6,46.304391375359,39,89.49878334786446,41,107.04928963614668,41 +7060284070,7.81359028307,3.0705614845799998,0.7835858127721336,0.203125,10.046609187359016,2,64,66.74107144764031,33.10264344906931,11.746925114864638,80.71701926964022,5.0868572884994725,10,53.389830508474574,109,90.73172113844528,22,239.7858691609638,6,272.85440430253317,5,318.02358699694264,1 +7060284240,10.4024131654,6.95929833761,0.7941763425253991,0.15625,0.7028513934356092,2,64,51.33928572895408,44.07031358814029,26.996313954534408,82.79369357229484,0.35587176857296815,10,53.389830508474574,109,92.64419340862463,21,253.47755335656421,3,287.35071890469493,2,314.62472590975915,2 +7060269280,13.775685257,5.50046130347,0.7310595065312046,0.18,9.80831107009188,0,50,59.1428571597551,58.36133976939247,21.275594340920623,70.41724834927905,4.966200806698356,0,41.52542372881356,109,28.28138686428241,49,255.27106733847592,2,275.7439353213904,3,311.55297115907547,3 +7060245400,2.21113902011,3.67872942836,0.7533923099960835,0.253968254,4.006618550464809,2,63,83.44671205241335,9.367594658452877,14.131809925802012,74.79643996124254,2.0286542749087726,10,52.54237288135593,109,83.89294844187674,27,170.87273211868984,17,253.61339542957182,8,310.31848494304523,4 +7060250990,10.297338226,0.518451077929,0.7687841911354248,0.128205128,13.774593912608,5,78,42.12454206917844,43.62515865572372,1.739016268457387,77.81460097643901,6.974432088986077,25,65.2542372881356,109,136.05117878889308,4,304.64400516401463,1,275.07354811774854,4,306.37334044868805,5 +7060214090,11.983082939100001,21.4524342637,0.7088233822131024,0.120689655,6.042814068812178,1,58,39.65517236847291,50.76689557336228,83.83005549992275,66.05701434419562,3.059632573522793,5,48.30508474576271,109,30.959024137762896,48,180.78432082918872,12,306.8590823003948,1,304.04118636255214,6 +7060290770,10.2542640034,1.4507306295,0.7596585804132974,0.19047619,1.8860180905572157,0,42,62.58503387502429,43.44267268180937,5.394880351444097,76.02517950988506,0.9549395778201086,0,34.74576271186441,109,50.19567358225967,43,233.38446838635733,7,249.2423560404165,10,288.1624309328374,7 +7060284140,11.076462481,1.90789153244,0.7498315363881402,0.160714286,5.800541679932177,0,56,52.80612255794461,46.925955278202025,7.187602418969608,74.09821548886366,2.936963815518953,0,46.610169491525426,109,65.13121898063186,32,249.2228354798732,4,241.15739042150187,11,285.87547585614317,8 +7060289200,2.07284394608,5.21431888681,0.7787665826394724,0.210526316,1.6316379617371737,1,57,69.1729324197637,8.781701060180016,20.153508393713572,79.77202675196278,0.8261403588605463,5,47.45762711864407,109,94.995833061066,18,155.64648536339348,24,236.159066318236,13,281.2429930241567,9 +7060219980,10.9972133438,10.9907489357,0.7168238993710693,0.116666667,40.46303136217012,1,60,38.33333345380953,46.59021257384471,42.805344002502885,67.62581862282713,20.487476188379997,5,50,109,61.48853985331074,37,214.63666025339757,8,259.91587207515846,6,278.60497828346524,10 +7060289500,12.1996010166,6.0940622514,0.7699249069224459,0.130434783,1.4274816257005325,0,46,42.85714299795919,51.68418461208884,23.603355774180898,78.03828149259152,0.7227707413155866,0,38.13559322033898,109,61.39423829744112,38,240.16172597341495,5,256.9682336656215,7,277.8758334960703,11 +7060284060,8.41144809835,3.48163652636,0.74081934441493,0.169811321,25.495917963751463,0,53,55.7951483445129,35.63549625750676,13.35892494702154,72.33103406193031,12.90924071559554,0,44.067796610169495,109,64.47382831969229,34,210.0765131145335,10,232.01321354029494,14,274.54960821103157,12 +7060306430,3.86480945546,3.91814415005,0.7711659409772618,0.2,1.1714059982115383,0,45,65.71428573306123,16.37344738690568,15.070656734669374,78.28163320307236,0.5931130476578591,0,37.28813559322034,109,75.39851984728134,30,160.527026643132,21,225.39495398675857,17,266.17812682811405,13 +7060235660,1.94748235144,1.89407027182,0.719381489337948,0.230769231,15.332803737577748,0,52,75.82417592166405,8.250600756832117,7.133403385860804,68.1273309630674,7.763393905155295,0,43.22033898305085,109,64.87996023802168,33,142.8018165939624,31,205.2048974252147,20,265.31193653389636,14 +7060302030,2.93945656169,5.83104047544,0.7782433634533452,0.14516129,3.5680552124749485,2,62,47.69585244219881,12.453146245264875,22.571935679044,79.66942982208293,1.8065983475868967,10,51.69491525423729,109,123.42622862356917,8,172.11257976262533,16,226.9243313139624,16,257.27917785989956,15 +7060300390,10.5837337254,0.405892913914,0.6904157163591126,0.178571429,8.5824244624088,0,28,58.67346954533528,44.838486685297774,1.2976279012278966,62.44749456176488,4.3455028051092945,0,22.88135593220339,109,19.99207283973996,50,212.98894411818742,9,224.63935260917987,18,255.42686135167497,16 +7060073860,10.2905791349,7.12796362912,0.6419308020038391,0.161290323,11.275888270992072,1,31,52.99539185799869,43.596523447756915,27.657722198701965,52.9401915227493,5.709272988144286,5,25.42372881355932,109,6.155922533972131,51,181.7079636231036,11,240.18791618616993,12,254.51814758663244,17 +7060250980,0.676691135583,2.63568031088,0.7690346369591653,0.148648649,2.5327005982985384,2,74,48.84169897109763,2.8668338849152826,10.04157132841955,77.86371036175646,1.2823716075869365,10,61.86440677966102,109,145.08877806731797,1,168.50106299969838,19,199.20268807497183,22,248.24850778913654,18 +7060206680,2.35182062367,3.17615014984,0.7133649848712209,0.169491525,4.594811736765494,2,59,55.69007251591145,9.963598901544604,12.160983117364056,66.94756748485173,2.3264716529574296,10,49.15254237288136,109,97.95881322759652,16,159.4944586882407,22,206.63841939431214,19,248.02973586287618,19 +7060245390,0.00183341235973,3.6769637958,0.701575350749879,0.208333333,5.343761351361287,1,48,68.45238086241497,0.00776733786141308,14.12488613062815,64.63576337420831,2.705684156101674,5,39.83050847457627,109,73.98084423704867,31,114.08806731735892,40,196.51459259251487,26,242.03546612436804,20 +7060220090,0.172959491681,17.8591821751,0.7133649848712209,0.118644068,7.88236965790333,2,59,38.98305092542373,0.7327510372093465,69.73938792098328,66.94756748485173,3.9910470051714744,10,49.15254237288136,109,96.77818243965868,17,77.12467610372713,51,228.89933129885395,15,233.44999325849486,21 +7060075500,11.5013595481,21.0892134558,0.5767537493952588,0.1,13.85055164934818,0,30,32.857142866530616,48.726051726212894,82.40571244363947,40.1597628351974,7.012891449831014,0,24.57627118644068,109,-32.59488876137672,52,115.2765859287239,39,249.49490480782129,9,233.42334647837905,22 +7060192560,0.0421821962584,8.83001804352,0.7039823797519925,0.157894737,1.4766250114573989,1,57,51.87969931482277,0.17870686228147745,34.33220046051553,65.10775253725205,0.7476533047920391,5,47.45762711864407,109,90.37309007262738,23,101.11078067717366,43,196.24411911427694,27,230.09089360584414,23 +7060316050,2.4950180365,3.63053562589,0.7181830551523948,0.1875,70.69655800573449,0,32,61.6071428747449,10.570261489166002,13.94282155726413,67.89233256973453,35.79549036443621,0,26.271186440677965,109,57.44199626283155,40,123.46439856252886,38,196.8687469333525,25,228.66927583254284,24 +7060201290,5.55769884595,6.92238192765,0.6941605163202914,0.127659574,7.905508738366461,0,47,41.94528861198437,23.54545306699935,26.85154903180479,63.18180436770864,4.002762918300846,0,38.983050847457626,109,64.27066774271898,35,149.02403331044175,26,197.76398442410505,24,224.98518156239805,25 +7060276840,3.95800695313,4.33506712137,0.7157595549104983,0.1,5.456814650891633,3,60,32.857142866530616,16.76828297770957,16.70558878230724,67.41711359655032,2.76292595697603,15,50,109,121.27608928697438,9,178.94145320069322,14,203.20788220099428,21,224.14975124392146,26 +7060277090,1.68171000753,1.39519492293,0.7375863130580111,0.121212121,9.449818795915563,2,66,39.82683976852196,7.124643697356063,5.177101258649,71.69707586578627,4.784686923789633,10,55.08474576271186,109,135.82002291099406,6,169.4332796540464,18,181.12092435426536,34,222.21889823326643,27 +7060290680,3.00140960677,0.718641168859,0.7441471571906355,0.152173913,7.357307049800762,0,46,50,12.715613240278795,2.524046640482118,72.98357774353627,3.725194266822074,0,38.13559322033898,109,94.37315510174159,20,157.15832161841013,23,180.29147565941906,35,221.59655795659762,28 +7060192420,0.166734412169,9.53167108728,0.7035622437807144,0.140350877,0.5014429909160689,1,57,46.115288170318664,0.7063781945003637,37.08368005381768,65.02536897424802,0.25389350062908433,5,47.45762711864407,109,94.66918880064239,19,99.12040480170135,45,192.25413164151212,28,221.54439693275748,29 +7060230950,0.00113253071374,5.54157799734,0.7367155514156359,0.119402985,83.55654272853354,2,67,39.23240936835212,0.00479801973918259,21.436830360821727,71.52633007982593,42.30683225191591,10,55.932203389830505,109,136.01839293711012,5,135.72428799163126,32,185.74958404293142,31,220.10965419349617,30 +7060224350,3.5652785407,0.893588868285,0.7133649848712209,0.118644068,5.408684322962029,2,59,38.98305092542373,15.104470551153538,3.210090874376224,66.94756748485173,2.7385563308013925,10,49.15254237288136,109,115.67111144901801,11,180.08461098800666,13,183.8569329353897,33,220.01961827253515,31 +7060224340,0.360826260738,9.94777599011,0.7133649848712209,0.118644068,6.10041816794011,2,59,38.98305092542373,1.528657457526421,38.715404107453125,66.94756748485173,3.0887990143566824,10,49.15254237288136,109,111.49426792610667,12,110.1661901455029,42,199.065292821929,23,219.0364242394977,32 +7060231030,0.122525211835,3.72259018322,0.7407794757961239,0.117647059,17.266882028286087,2,68,38.65546225390156,0.5190838339301949,14.303806574312803,72.32321630983616,8.742667618103637,10,56.77966101694915,109,141.91990641079576,2,145.89004581903134,27,179.67273930269647,36,217.83951074616414,33 +7060317700,3.52742381738,3.65439554807,0.7293524085976916,0.095238095,5.987452374605839,2,63,31.292516937512143,14.944097231907424,14.03638644600778,70.08250717077019,3.031601520125933,10,52.54237288135593,109,127.6462538086472,7,175.25817000986672,15,188.5922370103926,29,217.6368942475905,34 +7060192440,1.785495766,7.26796184008,0.7039823797519925,0.122807018,77.88924730734853,1,57,40.35087735438597,7.564336954010133,28.206714644442723,65.10775253725205,39.43733443678538,5,47.45762711864407,109,98.73190704541561,15,124.99724481821217,37,186.31303041277647,30,216.08481501307287,35 +7060159850,0.672204270849,3.64448779942,0.7084355137380511,0.137931034,12.715824086540126,1,58,45.32019689866292,2.847825071026535,13.997533955494866,65.9809580454349,6.43834962339394,5,48.30508474576271,109,107.43234147797675,13,129.5309236640993,36,172.58115207097603,40,213.30209373623623,36 +7060206690,1.72059947226,5.65965538746,0.7039823797519925,0.122807018,1.3930861900227471,1,57,40.35087735438597,7.289400747347754,21.89986195775539,65.10775253725205,0.7053554452717409,5,47.45762711864407,109,102.16026959542165,14,130.60716619033673,34,179.59512556137423,37,212.55195182343044,37 +7060235410,1.8590704306,1.367486369,0.6923635145696103,0.153846154,12.29406529914542,0,52,50.549450614442705,7.876039487788464,5.068444250208253,62.82943414219522,6.2248022733798205,0,43.22033898305085,109,84.99979521051947,26,135.63019973293922,33,163.17934990734236,43,212.1276353003978,38 +7060314820,1.22425109221,3.75982692662,0.720918889338314,0.098360656,5.88621129604502,3,61,32.31850126637672,5.1865974448865595,14.449827660513884,68.42879643722623,2.980340551331936,15,50.84745762711864,109,137.16132523198502,3,153.82185567896136,25,184.2508811779007,32,207.90972739890364,39 +7060314930,1.56843091167,3.32965141996,0.7081328138924962,0.105263158,50.42646952790776,2,57,34.58646620988185,6.644731469476463,12.762926793141236,65.92160228086725,25.53222186034538,10,47.45762711864407,109,120.7355503228775,10,145.82906346926683,28,173.7729968457951,39,202.3395449419075,40 +7060177090,5.71277004608,2.51245640099,0.6110849056603773,0.125,15.02298554059843,0,40,41.07142858316327,24.202419514068517,9.55835804161849,46.89168575663656,7.606524962697035,0,33.05084745762712,109,39.3409913577161,46,142.97239441401803,30,159.26561478975435,44,193.42086049782955,41 +7060192810,4.90591747537,9.75279211816,0.6315571221231598,0.095238095,1.9154852337134765,0,42,31.292516937512143,20.784150575390044,37.95078953125388,50.90603884728665,0.9698595522736988,0,34.74576271186441,109,47.90203827998911,44,111.4784665274899,41,175.14367585617464,38,190.68081942285932,42 +7060192820,1.89175687638,1.03506456206,0.6558812393512968,0.130434783,1.1927920278344737,1,46,42.85714299795919,8.014517155681686,3.764877157756654,55.67570291124483,0.6039413459406576,5,38.13559322033898,109,82.24150421888245,28,130.4630004445848,35,153.57704233292571,46,190.3259225105649,43 +7060300250,6.91519426663,0.587386255838,0.6685672817748289,0.107142857,9.06071019038678,0,28,35.20408159577259,29.29654638857783,2.0093403794465563,58.16328180645658,4.587671202809295,0,22.88135593220339,109,53.64421983035261,41,165.92618964648722,20,166.34967934105043,42,187.02200947470348,44 +7060179090,3.05826893417,5.80252716217,0.604127125897808,0.128205128,5.971946300567945,0,39,42.12454206917844,12.956500460300344,22.460122867430695,45.52734962113752,3.0237503949831246,0,32.20338983050848,109,39.78940498629989,45,99.21210879054348,44,154.94610119841872,45,184.07027118138126,45 +7060179770,7.81793628313,7.01098152335,0.6045565655794057,0.078947368,10.375960561667602,0,38,25.93984949312567,33.12105548312842,27.19898567689794,45.6115575287768,5.253616382344472,0,31.35593220338983,109,34.355595127299694,47,143.49010879870121,29,169.09757921283835,41,183.83342725531662,46 +7060179920,1.48176574535,7.1053799277,0.6216618287373004,0.125,10.282293000442396,0,40,41.07142858316327,6.277570408272462,27.56916191359955,48.96569195526207,5.206190080676906,0,33.05084745762712,109,51.818733499621295,42,81.94385624202015,49,153.15884336656345,47,179.76235470815692,47 +7060201280,0.00217155266015,6.82733524114,0.671957508569311,0.106382979,12.296809182706031,0,47,34.95440739570126,0.00919988517897815,26.47883060541298,58.82806411936223,6.226191572383488,0,38.983050847457626,109,88.21369994113428,24,84.07314963678363,48,147.57015236188766,48,175.14630716909446,48 +7060199390,0.3814957291,5.13485773632,0.6586634962789117,0.106382979,23.605596827910663,0,47,34.95440739570126,1.6162246342891462,19.841907473603648,56.221269714754264,11.952122378528854,0,38.983050847457626,109,85.45275696014355,25,91.74243350553503,47,139.96546210697636,50,171.43889078445784,49 +7060177100,0.326124272001,5.40427935127,0.6175262841162519,0.12195122,7.694882332024845,0,41,40.069686582877054,1.3816408469135606,20.898424055584012,48.15476186563509,3.8961173373158178,0,33.898305084745765,109,60.608123350398756,39,76.02187597865588,52,136.8296919681222,51,167.87016045089229,50 +7060316210,1.06189902977,3.60924137207,0.6845938827070902,0.111111111,1.3938820745102114,0,27,36.50793648185941,4.498785281530999,13.859317743860355,61.305903666771464,0.7057584221113349,0,22.033898305084747,109,75.6269732040873,29,94.14436045339284,46,146.8673661571242,49,163.4094085455978,51 +7060179080,0.537320417038,3.77653030839,0.604127125897808,0.102564103,15.971663557720106,0,39,33.69963385248561,2.27638326796496,14.51532871475717,45.52734962113752,8.086865106465966,0,32.20338983050848,109,63.70931829333415,36,79.38197205001455,50,120.18339584165741,52,149.91268078924207,52 +7060243020,13.034034505,4.60956282463,0.6028059990324142,0.055555556,15.97484576209118,1,36,18.25396840521542,55.219301408309626,17.782003019636985,45.26829268292683,8.088476338599015,5,29.661016949152543,110,28.761467797923345,82,213.43769431442874,1,193.02723767689838,1,198.49355305010698,1 +7060262150,4.24885650674,10.0220712371,0.6101373227643184,0.076923077,7.592178614981789,1,39,25.274725307221352,18.00048081784126,39.0067473258576,46.70587625553264,3.844115796940989,5,32.20338983050848,110,52.6538649670702,62,102.67218437243679,12,169.5073722783726,3,174.5919286769523,2 +7060270660,3.61487500486,12.421554965,0.5893605870020964,0.083333333,2.365155699118383,1,36,27.3809522792517,15.314588308796951,48.416142140705254,42.63181062749853,1.1975393046269482,5,29.661016949152543,110,38.786115283980195,80,79.3344338271844,26,172.3462238850097,2,172.83482896069853,3 +7060134090,0.102787621168,3.52744819826,0.638920042221929,0.113636364,0.07851569209689041,1,44,37.337662467810766,0.4354646009370019,13.538571969846997,52.34981808381619,0.03975450314817798,5,36.440677966101696,110,83.60412631788338,24,95.44221776098107,14,140.61087652867712,10,169.61314378368203,4 +7060237380,0.185023369727,7.50307486762,0.6366887829151979,0.071428571,37.6348086298395,3,42,23.469387620991252,0.7838602250605538,29.12869268351622,51.91229522397826,19.05547408720344,15,34.74576271186441,110,99.5202157847807,6,91.8741912820628,18,159.596039186432,4,160.33141296424526,5 +7060271090,1.43194575502,4.75620642996,0.6186683599419449,0.075,4.06939007166689,3,40,24.64285714989796,6.066505671476192,18.357054879159396,48.378709068858655,2.06043711479188,15,33.05084745762712,110,90.57521571548435,14,110.31707772418358,11,153.6649987936492,6,159.15898223922036,6 +7060284520,2.28349082824,4.18573496235,0.6185050798258345,0.075,2.6638182191439785,2,40,24.64285714989796,9.674116503169037,16.119993961873703,48.34669182050935,1.3487598401704486,10,33.05084745762712,110,82.40620454526638,27,114.41165915377152,10,146.12996321202786,8,157.9872639605826,7 +7060287980,2.08895445233,4.45736928961,0.6488308337364941,0.066666667,2.6770973541204803,1,45,21.90476202054422,8.849953979114513,17.18518752861307,54.293203970713726,1.3554834086400676,5,37.28813559322034,110,94.52417186129263,10,114.95402047145774,9,139.47479883921824,11,157.54640109122897,8 +7060237270,7.18700776302,1.11690973464,0.5843720652266713,0.058823529,4.997863827681922,1,34,19.327730962665065,30.448097075224258,4.085826841032297,41.6536220740823,2.53054732015225,5,27.966101694915253,110,51.30315079505434,66,158.5191971298238,4,139.0054431002386,12,154.117940068774,9 +7060251010,2.64280027141,10.4097333253,0.6234974507833724,0.051282051,4.64760163615178,1,39,16.849816761957094,11.196347891588712,40.526935022989626,49.32563515180412,2.3532005403176433,5,32.20338983050848,110,72.4599259364638,45,86.25862055237984,22,153.39172554708037,7,153.13579655860758,10 +7060284340,13.1889798611,3.44782545406,0.5721185125869576,0,5.490446836815247,1,29,0,55.8757347112153,13.226337372167473,39.25084917452336,2.7799547999873044,5,23.728813559322035,110,34.20612609518113,81,205.1836238719078,2,158.1639659390327,5,151.70640194898192,11 +7060245440,7.5327055652,3.62944894063,0.6126834381551363,0.027777778,43.10067923264705,1,36,9.12698420260771,31.912662105142257,13.93856020281862,47.20513857072272,21.822985322617907,5,29.661016949152543,110,67.35248528203266,51,159.70058809093328,3,145.08821415395172,9,149.61060172154828,12 +7060252700,0.0895555484738,4.94995152514,0.6564709878640027,0.063829787,4.427231045571476,1,47,20.972644305992183,0.37940630140761206,19.116811685505542,55.7913454343195,2.241621227577849,5,38.983050847457626,110,107.31945755522509,2,94.91561338454736,17,129.47879626162245,14,148.3062650502033,13 +7060287970,2.41864333657,3.51534971511,0.6256327657616199,0.048780488,9.200561475741276,2,41,16.02787463315082,10.24669647376068,13.491128678902587,49.74434449370769,4.65848151495004,10,33.898305084745765,110,95.8698961016218,9,120.25208528591388,8,135.06916475912954,13,143.91401918198596,14 +7060255600,0.66061863259,3.5414469484,0.5859630935102633,0.085714286,1.8303090572004697,1,35,28.16326540804665,2.7987419685699657,13.593467014747734,41.96560340346892,0.926732657654512,5,28.8135593220339,110,65.86231026656372,52,80.87138718388269,24,118.95749824031365,19,138.07106667740493,15 +7060250850,4.68497299773,3.93423878478,0.6096967795081003,0.027027027,0.8022057934164567,1,37,8.880308873965802,19.84810888387661,15.13377063321949,46.61949107172123,0.40617746334986654,5,30.508474576271187,110,78.93346023626705,34,128.0667840338798,7,127.1710398907147,15,133.36760370223794,16 +7060254310,0.108559150741,4.46457099322,0.6451210044891483,0.046511628,28.313075364744204,1,43,15.282392061509254,0.4599159579559052,17.21342846720252,53.56575149716548,14.335640154172392,5,35.59322033898305,110,107.24171807490262,3,90.56253476508448,19,117.48989082014978,22,131.41813049251624,17 +7060168780,6.71488908267,3.37694764599,0.5447266569908079,0.033333333,0.01328095893483911,1,30,10.952380845986395,28.447944037364852,12.948395383235836,33.87963886268696,0.00672447553052674,5,24.57627118644068,110,41.357541539482796,79,131.42904978108893,6,124.03997253078987,16,129.27020987119096,18 +7060284470,0.908033277389,3.09514058192,0.6209609655488503,0.052631579,5.9079239848504495,1,38,17.293233104940924,3.846925770657104,11.843310194861427,48.82826119334178,2.99133424558244,5,31.35593220338983,110,91.96261894314253,12,94.92153900450457,16,113.64810937840167,24,128.11921488813962,19 +7060262320,1.34441091054,2.51837873119,0.6105668440574101,0.055555556,2.1691618884820776,1,36,18.25396840521542,5.695660177763834,9.581582013687042,46.79010016619503,1.0983025841804277,5,29.661016949152543,110,84.99622779189464,22,97.87688542769179,13,112.75250318974398,26,127.5680433547601,20 +7060130730,0.437133748302,2.9414277667,0.5472868579989699,0.096774194,1.5236883681960005,0,31,31.797235180513496,1.8519377245758104,11.240536960898917,34.38166319642164,0.7714826959385285,0,25.42372881355932,110,41.961899321661264,78,61.63934863706557,54,99.41337984577288,46,126.27643331079396,21 +7060022280,0.0478087727073,4.88720196746,0.5888756082984719,0.058823529,12.98641632571257,2,34,19.327730962665065,0.20254411855922624,18.87074401861417,42.5367121919513,6.575357451889009,10,27.966101694915253,110,81.29632989527238,32,75.34559193603896,33,120.36280507086303,18,125.65188854112247,22 +7060021750,0.0894464820733,5.66567642853,0.6049346879535559,0.05,60.04542145323073,1,40,16.428571433265308,0.378944236462148,21.923473017070062,45.68570273548039,30.402545265471215,5,33.05084745762712,110,87.64499198582614,16,74.00698816087119,35,113.3666702356528,25,125.34031166920943,23 +7060114090,0.314183848312,6.96750872858,0.5423587593398914,0.074074074,1.5180539174880985,1,27,24.33862432123961,1.331054679263561,27.028510384675904,33.41532288251059,0.7686298282487045,5,22.033898305084747,110,43.37052310746313,76,46.6422188149077,65,114.2176465352337,23,120.42126355036001,24 +7060243120,0.287557775836,2.47122330595,0.5939871449305412,0.057142857,25.54000020874178,1,35,18.775510162507288,1.218252068467362,9.396665563291474,43.53902246520491,12.931560692989502,5,28.8135593220339,110,82.56718798045408,26,82.11517315137125,23,102.34176358829535,39,118.15398130368884,25 +7060197330,0.00181679097342,3.74685069352,0.5756256322294058,0.060606061,4.423632952378654,1,33,19.913420048546698,0.00769692057502921,14.398942339214267,39.93855275569329,2.239799420209762,5,27.11864406779661,110,72.15279720626998,46,68.24364241293699,46,102.34449844130285,38,115.77522719571343,26 +7060319800,8.01933076371,3.82197830355,0.5386367048696261,0,6.997977270746812,1,29,0,33.97427269080506,14.693549606622932,32.68547319117693,3.543256333596944,5,23.728813559322035,110,44.11001163657412,74,140.5391467834385,5,118.39813032320684,20,115.64863246193505,27 +7060270960,0,2.07226727729,0.5893605870020964,0.055555556,12.029466576969265,1,36,18.25396840521542,0,7.8321895288109165,42.63181062749853,6.090829117095681,5,29.661016949152543,110,84.43236216016422,23,80.33710385285787,25,97.11125752865715,52,114.67453108395148,28 +7060151610,3.26779587168e-4,9.20225306165,0.5757575757575758,0.03030303,4.54357960378684,2,33,9.956709859987631,0.00138441712050023,35.79189206365988,39.96442527961192,2.300531502899753,10,27.11864406779661,110,78.0844045778807,36,53.285149988438,60,121.58867847607273,17,113.23489407679537,29 +7060233240,1.50641098214,5.49766022799,0.5864010203632846,0.03030303,6.0449225389264205,1,33,9.956709859987631,6.381981115338193,21.264610134280236,42.051475542379734,3.0607001463130645,5,27.11864406779661,110,76.92312303011352,38,79.17139459117998,27,108.64906750555366,28,111.86410424797923,30 +7060024680,0.158495002939,4.8351459852,0.6157939786386811,0.025641026,10.942003668258666,1,39,8.42490854526426,0.6714715490159401,18.666610402760178,47.81507779378686,5.5402186038487695,5,32.20338983050848,110,100.59075678677054,5,78.97521486460664,28,102.99254366098765,34,110.72412999629125,31 +7060147190,0.0306056903913,8.74306549924,0.566400580551524,0.03125,2.856119676054786,2,32,10.267857145790815,0.12966244963355655,33.991222603582074,38.129632125050534,1.4461270267104789,10,26.271186440677965,110,74.51885554704246,42,52.44886864459612,61,118.0082573624882,21,110.39978054945534,32 +7060024300,2.32402958778,5.83164056581,0.5514980302716151,0.035714286,0.17679456159362092,1,28,11.734693974781342,9.845860868346184,22.57428888825741,35.20742295031474,0.08951562910610433,5,22.88135593220339,110,54.86924782728611,58,74.56839741759302,34,108.57848236284647,30,109.4777079735299,33 +7060175330,0.100841200277,8.53002596937,0.5839238453000939,0.029411765,12.95179437644417,1,34,9.663865645618248,0.4272184971073451,33.155804124011574,41.5657315884176,6.557827466173095,5,27.966101694915253,110,77.2685021568349,37,52.44192244145675,62,110.632222846953,27,109.41642255062101,34 +7060151690,0.0296546459196,8.56780666552,0.5756256322294058,0.03030303,5.454065842845864,1,33,9.956709859987631,0.12563330491130165,33.30395827997506,39.93855275569329,2.7615341645785376,5,27.11864406779661,110,73.53473405896828,43,48.807855643889006,64,108.60280309466128,29,107.13652937042886,35 +7060233450,0.0315242776698,4.14780005319,0.6096967795081003,0.027027027,0.00798455427587731,1,37,8.880308873965802,0.13355408792727688,15.97123507120008,46.61949107172123,0.00404276927252472,5,30.508474576271187,110,98.22928281322609,7,77.25521557826022,30,98.5336289616366,49,106.5784661802122,36 +7060222910,0.662207774859,4.3867720897,0.5968795355587808,0.03125,1.4276614886773336,1,32,10.267857145790815,2.8054744446807924,16.90834592345775,44.10618515024928,0.7228618105788941,5,26.271186440677965,110,85.01323069673572,21,76.03726278730073,31,102.00294689558365,40,106.5277579426888,37 +7060191640,0.283259747734,2.76445267254,0.594062153163152,0.029411765,8.598756784091387,2,34,9.663865645618248,1.200043269868994,10.54654245117008,43.55373066892839,4.353772280741181,10,27.966101694915253,110,96.83604399235827,8,86.57953731049926,21,102.39899232644446,37,106.16635892001557,38 +7060024690,1.45308831333,4.51831341669,0.5679729075955492,0.033333333,10.9277388334542,1,30,10.952380845986395,6.156077116097946,17.424175335312576,38.437946368413975,5.532995950137865,5,24.57627118644068,110,69.23203642224779,50,75.76400468449775,32,101.08115353369982,41,105.30161363808573,39 +7060024580,0.146984114144,5.02742496208,0.5895708065519386,0.028571429,11.106676209959508,1,35,9.387755245539358,0.6227051261861702,19.42061793655675,42.6730321289006,5.6235965581470735,5,28.8135593220339,110,86.99154186898745,17,68.78894356029859,45,98.26536977095779,50,104.26717446357704,40 +7060022850,1.30816047803,8.05578602711,0.5323872493683814,0.037037037,53.30116632063729,1,27,12.169312160619803,5.542083512136365,31.29610788943855,31.46003084340235,26.987754976735367,5,22.033898305084747,110,47.05731737637256,73,49.75380635461757,63,106.58042396310685,31,104.10096551377673,41 +7060175260,1.7872776149,1.16416769595,0.5764314808745727,0.032258065,7.630228346271874,1,31,10.59907850302831,7.571885840844476,4.27114537890784,40.09656989102415,3.8633813570872033,5,25.42372881355932,110,78.47447130922905,35,95.25902167079747,15,91.73434601580729,68,102.53740301515896,42 +7060024660,0.109161793372,4.22309720904,0.5909032698710834,0.029411765,9.005270134280213,1,34,9.663865645618248,0.4624690818616245,16.266507199779102,42.93431200805345,4.559600472761621,5,27.966101694915253,110,88.02592234451186,15,71.01725265537794,39,95.56510615059703,56,102.3890035051997,43 +7060223010,0.275533916123,4.01849940947,0.5843720652266713,0.029411765,6.61592332404356,1,34,9.663865645618248,1.16731242016977,15.464192330118344,41.6536220740823,3.349812568299502,5,27.966101694915253,110,85.5250045543173,19,72.11212517282246,38,94.16074831496009,62,101.67990372999085,44 +7060191700,0.178144899012,4.31098763536,0.5839238453000939,0.029411765,6.845675864792661,1,34,9.663865645618248,0.7547192597290511,16.61116289053219,41.5657315884176,3.466142204343494,5,27.966101694915253,110,85.21332201095288,20,69.81674002669813,40,94.57722209791788,60,101.59608262437732,45 +7060024610,0.242165242165,4.26710108244,0.5837037373004355,0.03125,5.334558218669399,1,32,10.267857145790815,1.0259444604505,16.43906507687108,41.52257108206442,2.701024372697228,5,26.271186440677965,110,82.59479094390362,25,68.98142563307245,43,95.53269254907882,57,101.2535910295353,46 +7060257090,1.3222535866,3.53806974351,0.5586901306240929,0.03125,3.636022363059847,1,32,10.267857145790815,5.601789630729832,13.580223559994884,36.61770650855679,1.841011868606988,5,26.271186440677965,110,71.03327357703245,47,77.7171605791614,29,93.17347154610732,65,101.23438613621038,47 +7060024590,0.0964243905993,4.69111647861,0.5837037373004355,0.03125,3.658402297992403,1,32,10.267857145790815,0.40850647476595153,18.10180953466715,41.52257108206442,1.85234340677803,5,26.271186440677965,110,82.38085670069013,28,65.75354767668067,49,96.27231660860552,54,101.23284296144789,48 +7060123710,0.415755372111,0.980798082528,0.5334067363995796,0.068965517,0.2661832715995886,0,29,22.66009844933146,1.761367226388299,3.5520752432484355,31.659939872403097,0.13477543806200085,0,23.728813559322035,110,49.58307677644491,70,63.46653748007323,52,76.30298741861083,80,101.13915104928856,49 +7060152640,0.179260646679,9.83260119827,0.5323872493683814,0.037037037,2.977478869710479,1,27,12.169312160619803,0.7594461772998198,38.263754831177806,31.46003084340235,1.5075743159658177,5,22.033898305084747,110,48.35613124033947,72,30.662729889688002,80,106.3976360698118,32,100.98431664471357,50 +7060146370,0.016264722378,8.89657232638,0.543033381712627,0.033333333,0.7958465904150434,1,30,10.952380845986395,0.06890626282819255,34.59318807079487,33.54760813906482,0.4029576348845434,5,24.57627118644068,110,58.34453025886893,54,37.45932704563363,75,102.82648534605575,35,100.59493512377512,51 +7060024740,0.0238829473132,4.39755246825,0.5834542815674891,0.032258065,94.40746044709456,1,31,10.59907850302831,0.10118123177443354,16.950620366435214,41.47365584153079,47.80093170704215,5,25.42372881355932,110,81.96805335648897,30,65.24877946145106,50,95.02498002422956,58,99.94397801704756,52 +7060168790,0.177646158451,9.73236431041,0.5254281567489114,0.04,1.6229250273195908,1,25,13.142857146612243,0.7526063218392638,37.870683420890806,30.095437272604755,0.8217287754831967,5,20.338983050847457,110,43.45250983944494,75,27.832650723712742,82,105.48382345084559,33,99.50366496932764,53 +7060024730,0.00640809443508,4.15912530573,0.582939276183342,0.032258065,65.56381976712193,1,31,10.59907850302831,0.02714819405517556,16.015646196513263,41.372669538493646,33.196652635547174,5,25.42372881355932,110,82.33631505082595,29,65.87827113570411,48,93.84875224525419,63,99.27333233717445,54 +7060149790,1.06590007004,6.19757149933,0.5323872493683814,0.037037037,57.095664618925646,1,27,12.169312160619803,4.515735877183571,24.009259498151437,31.46003084340235,28.90900731444714,5,22.033898305084747,110,51.727089206968905,64,54.43898283404761,59,97.75910173070999,51,99.04108869975941,55 +7060245620,0.137400679926,6.29641766356,0.6235199755557254,0,0.01439207823851594,1,38,0,0.5821044555030102,24.39687729041183,49.33005198618431,0.00728706388657601,5,31.35593220338983,110,108.83411684765252,1,73.23634933832855,37,99.69769292478384,45,98.68777966251045,56 +7060023230,0.264801228459,7.55229234935,0.5395903886469925,0.037037037,52.31856312860436,1,27,12.169312160619803,1.1218428831041505,29.321695333213466,32.87247900103311,26.490237642075364,5,22.033898305084747,110,54.888048833476596,57,42.171279081617044,68,99.82358494941778,43,98.4258753034541,57 +7060023220,0.197926697029,8.0968012903,0.5323872493683814,0.037037037,92.76097906965012,1,27,12.169312160619803,0.8385257792437869,31.456946156563347,31.46003084340235,46.96727572758343,5,22.033898305084747,110,51.680455975702735,65,37.66999615992787,74,99.70905788203815,44,97.69004931461409,58 +7060152650,0.0464419655781,8.4593022801,0.5313721111979457,0.038461538,0.10716920927619047,1,26,12.637362489324962,0.1967535757456892,32.87846650035265,31.26097457319663,0.05426251778853962,5,21.1864406779661,110,49.907641610451684,69,33.58097215664583,78,100.51650258462766,42,97.32668413871734,59 +7060024600,0.117283950617,4.27124192797,0.5679729075955492,0.033333333,5.327239901453358,1,30,10.952380845986395,0.49687898378610473,16.4553030909097,38.437946368413975,2.6973189199722185,5,24.57627118644068,110,75.37567067676108,40,62.387467709784566,53,91.65131621279139,69,97.0069719486666,60 +7060024620,0.00332023684356,4.534885584,0.5679729075955492,0.033333333,0.04852966945325156,1,30,10.952380845986395,0.01406633985364873,17.489161841928304,38.437946368413975,0.02457180662970628,5,24.57627118644068,110,75.34155394518422,41,60.12973504740229,57,91.96333048632408,67,96.85757618209718,61 +7060150030,0.0331136903368,8.02661855609,0.5313721111979457,0.038461538,70.59533153530012,1,26,12.637362489324962,0.14028770959197248,31.181729847451155,31.26097457319663,35.744236792113334,5,21.1864406779661,110,50.812475803056145,67,35.13457440464604,77,98.73534483347669,48,96.40038780694132,62 +7060023450,0.0146498942447,7.16494304371,0.5395903886469925,0.037037037,9.451027269402305,1,27,12.169312160619803,0.06206496734281507,27.802734189345376,32.87247900103311,4.785298805079055,5,22.033898305084747,110,56.707307321171974,56,41.00382643902035,69,96.7201689544442,53,96.20380530026574,63 +7060023470,0.00237529691211,6.67905141395,0.5395903886469925,0.037037037,46.48804795771329,1,27,12.169312160619803,0.01006305730383895,25.897346739336314,32.87247900103311,23.538097458696853,5,22.033898305084747,110,57.712002956215485,55,42.777395093814334,67,94.73703438647524,59,95.17934423335221,64 +7060257230,0.395511053525,4.58034666727,0.5476202392272659,0.034482759,2.548073706051897,1,29,11.330049388951444,1.6756012166867482,17.667434057832207,34.44703520763536,1.2901554084710634,5,23.728813559322035,110,65.4809327155988,53,58.691212273093825,58,89.95215889456148,70,95.09380432609802,65 +7060023460,6.36765232618e-4,7.28576446632,0.5313721111979457,0.038461538,99.9999968926643,1,26,12.637362489324962,0.00269768591549894,28.27652630312812,31.26097457319663,50.63257712499792,5,21.1864406779661,110,52.40266759889414,63,37.691003237789175,73,95.62443292588652,55,94.75789935052042,66 +7060252580,0.118639367858,3.8476175895,0.5599212108646071,0.035714286,0.4434730965181305,1,28,11.734693974781342,0.5026212728015348,14.794092136446825,36.85910639690454,0.22454184821717427,5,22.88135593220339,110,70.93631739866842,48,60.591532238928146,56,88.9648864871279,72,94.34477686031795,67 +7060023480,0.0013069197964,6.94997321991,0.5313721111979457,0.038461538,99.23045872014224,1,26,12.637362489324962,0.00553682730594384,26.959746207433657,31.26097457319663,50.242940104055414,5,21.1864406779661,110,53.05821850535092,61,39.01498022677569,72,94.31189757928729,61,94.10342757472787,68 +7060023730,0.00159346678618,6.74071914856,0.5313721111979457,0.038461538,33.596885902986656,1,26,12.637362489324962,0.00675079713165174,26.139172118494255,31.26097457319663,17.01096968408775,5,21.1864406779661,110,53.46729157999492,60,39.83863158806399,71,93.49313847474303,64,93.69481591847918,69 +7060023720,0.0161323615808,6.49424649684,0.5313721111979457,0.038461538,87.58331737392719,1,26,12.637362489324962,0.06834551007336231,25.17264816830868,31.26097457319663,44.34569209391159,5,21.1864406779661,110,53.888958842145996,59,40.96129097338087,70,92.61870366915228,66,93.29656022142811,70 +7060295550,1.57398172203,8.20997086102,0.5699164205995696,0,1.6786415357535307,1,29,0,6.668247739148116,31.9007321091621,38.81904567188175,0.8499394804731374,5,23.728813559322035,110,73.33558655686952,44,61.270200708451696,55,102.7108428548606,36,92.70101062714309,71 +7060254300,0,4.69688181283,0.6126834381551363,0,9.59003445830375,1,36,0,0,18.1244178588182,47.20513857072272,4.855681729418779,5,29.661016949152543,110,107.21190118204362,4,73.8592607561775,36,89.80757681894454,71,90.92836444928436,72 +7060319640,2.24173535705,3.74963228847,0.5659675078421275,0,2.2124594433265505,1,31,0,9.49721748174922,14.409850154422683,38.044711824769294,1.1202252527186294,5,25.42372881355932,110,79.61847738528728,33,86.72371777665427,20,88.44834363463728,73,88.78038531704905,73 +7060021740,0.212179681957,6.44009947596,0.52429808317902,0.034482759,20.30485498148355,0,29,11.330049388951444,0.8989092215620813,24.96031470191188,29.873843566021858,10.280871664965018,0,23.728813559322035,110,49.14013029512022,71,36.84411748584672,76,79.52075538177746,78,88.09514776438397,74 +7060252330,0.0082304526749,10.638530257,0.5570291777188329,0,7.692342070900913,1,29,0,0.03486870061666537,41.424144967678515,36.29201380983137,3.894831137602682,5,23.728813559322035,110,70.87172498354064,49,31.983739471343284,79,99.04953681256856,47,85.78102181538218,75 +7060121810,9.82704402516e-5,6.43740372355,0.5132577872055376,0.038461538,0.08138121124487438,0,26,12.637362489324962,4.163273511128689e-4,24.949743511762172,27.70897556829372,0.04120538938636801,0,21.1864406779661,110,42.349308325452654,77,29.61800421141526,81,77.05150322932303,79,84.53936046865789,76 +7060284350,1.44792972104,5.31702626779,0.5562409288824384,0,7.738714775814976,1,30,0,6.134222496763095,20.556267656801214,36.13744778331761,3.918310833920467,5,24.57627118644068,110,75.78858431120983,39,68.97990002445212,44,87.10085043059132,74,84.45763497694959,77 +7060252480,0.758850579579,4.223123666,0.5754216505680397,0,20.08322928082942,1,29,0,3.214906241161838,16.266610948756163,39.89855442848581,10.168656857629136,5,23.728813559322035,110,86.45806148976258,18,69.40992960550412,41,83.30942158757371,76,81.19753501673054,78 +7060163780,0.0427392232742,3.73825518454,0.5609345006788707,0,14.421320337711188,2,31,0,0.1810667334837696,14.365235697786792,37.0578002269062,7.301886355245721,10,25.42372881355932,110,92.88872799397062,11,69.25157649560644,42,83.84956580127444,75,79.91403536769624,79 +7060024830,0.169643913404,4.36657870003,0.5794388001935171,0,1.4346010040777464,1,30,0,0.7187044335924638,16.82915906594928,40.6862686969411,0.7263754661764323,5,24.57627118644068,110,90.87189881558939,13,64.28625776912992,51,81.15840224788928,77,79.66899657583923,80 +7060114060,0.154908908694,2.90744277633,0.514943826264581,0.037037037,22.278355476913184,0,27,12.169312160619803,0.6562788917525811,11.10726737942524,28.03958735719954,11.280105856749966,0,22.033898305084747,110,50.544215113988535,68,46.31718286820437,66,64.0142609664579,82,78.84324924217336,81 +7060295390,0.688629995956,3.33832073212,0.5584957495334854,0,10.349077231274856,1,28,0,2.917413429503377,12.796922848183458,36.5795907367124,5.240004658922211,5,22.88135593220339,110,81.94871867990761,31,67.40592608652241,47,75.10377196965231,81,74.88570264503707,82 +7060135250,0.349819188966,3.51665031057,0.5435867198838897,0.09375,5.368288441320985,0,32,30.80357143737245,1.482025479256929,13.49622886609504,33.65611103624848,2.718102854231962,0,26.271186440677965,111,41.8996506166829,8,58.36414699802607,2,98.89821652502985,1,125.1939554931509,1 +7060118090,2.17104586188,2.39577906834,0.5389063158387565,0.064516129,0.5503875011065716,0,31,21.19815667748519,9.197738104224474,9.100816664662371,32.73834062881708,0.27867536827785333,0,25.42372881355932,111,44.52555829133081,4,79.59935252875229,1,92.48120497139638,2,114.26947597508263,2 +7060112520,5.56660039761e-4,3.56039440792,0.521200497615592,0.071428571,47.93323249115965,0,28,23.469387620991252,0.00235831649100918,13.667768050961913,29.266444645504063,24.269831655167884,0,22.88135593220339,111,40.440133201355245,9,45.31953366082735,4,81.7364639910661,3,102.01214993185228,3 +7060114730,0,7.04195032239,0.5171746492501209,0.037037037,20.750180025918688,0,27,12.169312160619803,0,27.32042749111856,28.477024659749347,10.50635121862526,0,22.033898305084747,111,43.84440879185942,5,28.950775597058737,8,79.81180584391595,4,86.48154233819635,4 +7060114740,0.216746180877,2.96338445276,0.522988803649181,0.035714286,0.00298455103491596,0,28,11.734693974781342,0.918255409432573,11.326638452466442,29.617109746472355,0.00151113869580349,0,22.88135593220339,111,54.20458693509333,2,49.41357403754655,3,66.10519777189066,10,80.94266609039543,5 +7060021560,9.08288471721e-4,7.03037072118,0.45090924613677114,0.058823529,0.096890115698319,0,17,19.327730962665065,0.00384800691347063,27.275018956642384,15.483183652116011,0.04905794764155812,0,13.559322033898304,111,5.221380394085319,47,5.9684158350296705,24,72.19120845865757,6,78.11949919366464,6 +7060021620,0.0565579520872,6.77059783377,0.4573455894210611,0.055555556,9.482505999914377,0,18,18.25396840521542,0.23961042930658033,26.2563391333902,16.745272425099937,4.801237298083993,0,14.40677966101695,111,9.688872893184698,32,9.815140300625648,22,71.77392830558203,7,78.07651447235176,7 +7060112450,0,5.15585583003,0.4763978160204575,0.047619048,9.762710061451145,0,21,15.64625863304179,0,19.924249917429876,20.48118274395055,4.943111840103603,0,16.949152542372882,111,24.914943361270513,15,22.223470712305463,14,66.55545564408138,9,76.07726773894832,8 +7060021690,0.152853063708,6.30812207901,0.44648995493086857,0.052631579,8.87132666807718,0,19,17.293233104940924,0.6475692075878546,24.442775274534625,14.616614302229094,4.4917814418030675,0,15.254237288135592,111,8.439903264440861,36,10.946794100770127,20,66.58078120381961,8,74.69020403004313,9 +7060021550,0.0456195282358,6.33305874919,0.4398080954684728,0.055555556,71.43879634595149,0,18,18.25396840521542,0.1932692811877385,24.54056254950673,13.306382787584775,36.171304776297845,0,14.40677966101695,111,4.693127822616852,48,7.401409552099095,23,65.54262675931179,11,73.7157815647218,10 +8060239530,0.00615151794879,3.5453147748,0.46913910320067226,0.052631579,9.432588460356442,0,19,17.293233104940924,0.02606119567986072,13.608634404819908,19.057837289626168,4.77596276057484,0,15.254237288135592,111,22.09812211368023,16,25.386911247301477,11,60.5596222098594,12,72.85661928108087,11 +7060021430,0.00111734657548,0.875072179187,0.4435517312875803,0.071428571,17.221543908508878,0,14,23.469387620991252,0.00473369142189275,3.1374790719451435,14.040464319402451,8.719711758919638,0,11.016949152542374,111,7.715849771972092,39,26.22779344564129,10,51.52361041509199,20,69.65989656895194,12 +7060108930,5.97411218055e-4,3.86143510503,0.5178910349447359,0,80.67279869857538,0,26,0,0.00253096077824787,14.848276483467108,28.6174991966664,40.84671828601462,0,21.1864406779661,111,62.857746000819304,1,39.73166228188488,6,51.852463479036885,19,57.23157107128626,13 +8060030970,0,7.81718080548,0.5406386066763426,0,10.978578616416998,0,3,0,0,30.360435474120347,33.07802182994206,5.558737443264926,0,1.694915254237288,111,43.26542412661988,6,9.925505248382674,21,73.12797885020704,5,49.95315482123952,14 +7060108890,0.536377788121,2.24399452111,0.47788375146865714,0,1.849586818537407,0,21,0,2.272389776136774,8.505604988469882,20.77255664427204,0.936493485337884,0,16.949152542372882,111,46.062659864101626,3,38.43844082335778,7,38.76046093966375,28,45.1106152180822,15 +7060059780,0.410459315328,5.52984225793,0.4985486211901306,0,0.3595849104502485,0,5,0,1.7389302322508493,21.390809542147743,24.824686699905666,0.1820670963739542,0,3.389830508474576,111,33.54628328908439,11,15.369141387116214,17,56.08721739672795,15,41.30980306921207,16 +8060129330,0,10.0060020291,0.43925979680696664,0,1.1839160832415991,0,10,0,0,38.943733136315146,13.198868077078558,0.5994472263079903,0,7.627118644067797,111,10.800057065982351,27,-15.917935068989035,50,56.008936306679345,16,40.29785328930393,17 +8060281800,0.00771408243791,2.52381957397,0.4641146589259797,0,3.833989969027144,0,20,0,0.03268107377374939,9.602917869082626,18.072604770246592,1.9412479725281413,0,16.10169491525424,111,42.2740479103502,7,27.666325333350898,9,33.01837886013641,33,39.020861459413155,18 +8060016910,0.0622501292873,9.33230851645,0.4529511369134011,0,53.285730187481384,0,6,0,0.2637256062582183,36.301894739572504,15.883573642366262,26.979939264464683,0,4.237288135593221,111,13.073469215849418,24,-12.865256941788896,46,57.23252377639648,13,38.63577435095278,19 +7060059430,1.31779964905,1.37132024815,0.4969521044992743,0,68.84061349916037,0,5,0,5.58292031440779,5.083478518694971,24.511629160490493,34.85577780124247,0,3.389830508474576,111,37.31885759078973,10,41.05530649726151,5,45.12220536417184,25,38.14813420385272,20 +8060031050,0,8.21466991422,0.4682510885341074,0,6.506503324848243,0,4,0,0,31.919159092558843,18.883708395095,3.294410401077223,0,2.542372881355932,111,18.980866533408168,19,-7.345793083592081,44,56.33445883571197,14,37.38566082273035,21 +8060031040,0.00906485984037,7.77670682268,0.4682510885341074,0,4.928973359582545,0,4,0,0.03840370589455276,30.20171979729938,18.883708395095,2.4956662996648538,0,2.542372881355932,111,19.80118247514335,18,-5.531004859437122,40,54.67443622860961,17,36.579941764683596,22 +8060031590,0,7.44997050878,0.4682510885341074,0,6.055099100725206,0,4,0,0,28.920447937821606,18.883708395095,3.065852801976293,0,2.542372881355932,111,20.480222110776786,17,-4.347081928854845,37,53.335747680974734,18,35.88630524536173,23 +8060293900,0.330466155239,2.86079271594,0.43887133953726626,0,29.81995173661833,0,17,0,1.4000354398622623,10.924332679246984,13.122696322835818,15.098610519295956,0,13.559322033898304,111,29.211240210699543,12,21.49372877652535,15,29.98421889685428,36,34.07636030340734,24 +8060017300,0.231274131274,8.47712165137,0.4255650010366992,0,85.33539305733517,0,7,0,0.9798037559180124,32.9483438234127,10.513484898069189,43.207510044864485,0,5.084745762711864,111,5.66836346237729,46,-13.114177089037247,47,48.006423345776795,23,33.42462042567742,25 +8060201080,0.0267699700089,6.78457368451,0.4126753749395259,0,3.1775959803949423,0,15,0,0.11341223947548988,26.311144380017623,7.985985716210746,1.6088987695548689,0,11.864406779661016,111,12.296679771723824,25,-4.842267425176745,38,36.80601983952248,29,33.162483839907836,26 +8060017310,0.00192459102441,8.86424623121,0.4255650010366992,0,47.98652864082002,0,7,0,0.00815362057111749,34.4664237219726,10.513484898069189,24.296816870096613,0,5.084745762711864,111,5.8809736484442325,45,-17.095277098127653,51,48.07180664853937,21,32.84269525603971,27 +8060190480,0,6.25155159519,0.4126753749395259,0,100,0,15,0,0,24.220938380647787,7.985985716210746,50.6325786983221,0,11.864406779661016,111,13.455195010884232,23,-3.0395482654075696,34,34.54625324605158,31,31.960861686195653,28 +8060017800,0,9.57603960699,0.4095609579100145,0,1.191795428229193,0,8,0,0,37.25766786396512,7.375286349548571,0.6034367418610427,0,5.932203389830509,111,-0.04312721473377934,52,-22.720963732994612,52,46.79339162903802,24,31.936323671361638,29 +8060016890,0,8.13000479748,0.4368650217706822,0,4.827239858762776,0,5,0,0,31.587151210534554,12.729281767955806,2.4441560047829847,0,3.389830508474576,111,9.435408201483284,33,-13.346491972778205,48,48.04521248627539,22,31.912687881697657,30 +7060100460,0.00145369821568,3.9324737028,0.430878084179971,0,4.542228188109672,0,16,0,0.00615866099614532,15.126848997103652,11.555315995148897,2.299847246293247,0,12.71186440677966,111,24.967305316017267,14,11.081828893518242,19,30.076263239283577,35,31.839104409999948,31 +8060192880,8.13472626614e-5,5.99230848427,0.4126753749395259,0,100,0,15,0,3.446315117485396e-4,23.20433603602156,7.985985716210746,50.6325786983221,0,11.864406779661016,111,13.963151551685598,21,-2.022072319972489,32,33.5301661537839,32,31.453036136557127,32 +8060018080,0.00427063799499,11.256508203,0.3719488059110701,0,0.3289603186711904,0,11,0,0.01809275911926335,43.84749896386153,0,0.1665610758353431,0,8.474576271186441,111,-13.467265969863588,53,-35.32705965211696,53,43.87454912175787,26,30.423295398055558,33 +7060099390,0,6.55055091039,0.40125786163522015,0,6.222929223301533,0,15,0,0,25.393441687660477,5.747149979787087,3.15082952089686,0,11.864406779661016,111,9.027856503561875,34,-6.824026598247861,43,32.824100247385196,34,30.30827760327834,34 +8060017600,0.0200528800064,6.86255626567,0.4255650010366992,0,1.253870388545248e-4,0,7,0,0.08495497113754706,26.616947201801096,10.513484898069189,6.347023491309158e-5,0,5.084745762711864,111,9.728910557963555,31,-9.051118084659846,45,40.33715444265735,27,29.023949810084098,35 +8060018140,0.00479777688496,7.52950675638,0.3976173197871311,0,0.0938454879131591,0,12,0,0.02032600786800104,29.23234334559537,5.033283923999454,0.04751637408166501,0,9.322033898305085,111,3.3209534559227993,50,-13.98662080283483,49,35.77041261839324,30,28.999541225417794,36 +8060281810,0.20430409932,1.67889578497,0.4320573294629898,0,35.207913046660394,0,16,0,0.8655439445842027,6.289612833204773,11.786551677671458,17.8266742707248,0,12.71186440677966,111,28.923260538369163,13,22.367281785734484,13,22.82284990326945,42,28.837751474348444,37 +8060199520,0.0204692109447,4.2542627512,0.4126753749395259,0,91.59253643534552,0,15,0,0.08671877677721856,16.388720527334723,7.985985716210746,46.37566309103212,0,11.864406779661016,111,17.284585160763548,20,5.012491603457049,25,26.843687072116914,38,28.164432519344786,38 +8060290300,0.878427009685,2.21564520804,0.40125786163522015,0,59.1295364993901,0,15,0,3.7214974223360113,8.394435291295563,5.747149979787087,29.938809095281048,0,11.864406779661016,111,13.80586227940832,22,19.60854303148043,16,21.38903753818494,46,26.944777635016628,39 +8060018980,0.182064848732,4.53933760087,0.4017209205888451,0,14.368594543442764,0,14,0,0.771326311445161,17.506620090952918,5.837950218491917,7.275189925959769,0,11.016949152542374,111,11.508265941563511,26,2.27649349357086,27,26.20787299818275,39,26.672709529591174,40 +8060293840,1.52665344478,1.9375803427,0.38963938818800936,0,7.449707070152696,0,13,0,6.467739262237053,7.304024853542201,3.4689083992412275,3.7719787798592384,0,10.169491525423728,111,6.001216415354739,44,23.30749343806231,12,21.45887847701652,45,26.21647784909353,41 +8060018840,0.00604381767817,5.48039441537,0.3976173197871311,0,6.601983674398322,0,12,0,0.02560491840801209,21.196903549796357,5.033283923999454,3.3427545642203125,0,9.322033898305085,111,7.333394443282295,40,-5.937799582643695,41,27.742865226549128,37,24.989106701792963,42 +8060018890,0.275184275184,4.56660407849,0.39125823378363295,0,0.5132813893802964,0,13,0,1.1658311498548941,17.613543530421843,3.7863443657810985,0.2598875870500535,0,10.169491525423728,111,6.692978221047412,41,-0.07140384179962123,30,24.252032203021393,40,24.371560148296936,43 +8060190630,3.47983435988e-5,5.01556696697,0.3869479577026747,0,27.776488249595992,0,14,0,1.4742482252559137e-4,19.374117701358166,2.941151558319053,14.063952260721615,0,11.016949152542374,111,6.375766755409838,43,-4.92545135932755,39,23.177039118247183,41,23.645363021137207,44 +8060193020,0,4.85702819818,0.3869479577026747,0,99.97375448977373,0,14,0,0,18.75241985375054,2.941151558319053,50.61928991969769,0,11.016949152542374,111,6.686763104036178,42,-4.304127216502604,36,22.55512085844588,43,23.334310637736696,45 +8060018900,9.96346728662e-4,4.35920876545,0.39125823378363295,0,15.830038337980447,0,13,0,0.00422106986873979,16.800258422274776,3.7863443657810985,8.015156605601305,0,10.169491525423728,111,8.2612308551071,37,-2.2026652154779223,33,21.702044811354043,44,22.361790560758347,46 +8060211920,0.00619223101553,3.93502076062,0.3869479577026747,0,68.37079466863278,0,14,0,0.02623367850570488,15.136837092611849,2.941151558319053,34.617896412058734,0,11.016949152542374,111,8.468320806099818,35,-0.6220451307796857,31,18.978759596974736,47,21.562724107593777,47 +8060290230,0.512031470486,1.96326773819,0.38963938818800936,0,36.04645801001881,0,13,0,2.1692454541577435,7.404756041305696,3.4689083992412275,18.251251209356063,0,10.169491525423728,111,10.249344629552303,28,12.31058027167917,18,15.133009086143407,53,20.334532983861294,48 +8060282670,6.08800206992e-5,3.30581861631,0.38963938818800936,0,0.1506673015457727,0,13,0,2.579210766584704e-4,12.6694682476716,3.4689083992412275,0.07628672359636275,0,10.169491525423728,111,9.785976059450434,30,1.5477368768053985,28,17.154907144689723,49,19.973490002927818,49 +8060283690,4.33087950289e-4,3.11909615041,0.38963938818800936,0,2.7914577145227057,0,13,0,0.00183479751063581,11.937250153409844,3.4689083992412275,1.4133870081392284,0,10.169491525423728,111,10.150508230147336,29,2.283952169469563,26,16.42504660994893,50,19.609557187979583,50 +7060100540,7.37807443785e-4,3.32962116267,0.3813497822931785,0,32.56940017578683,0,14,0,0.00312575600471439,12.762808141456157,1.8434173292009064,16.49072716448019,0,11.016949152542374,111,7.795101586992822,38,0.4127179898325588,29,15.150889666910047,52,19.24608437863171,51 +8060199600,0,4.39975682768,0.3737300435413643,0,93.07281435152296,0,13,0,0,16.95926459600407,0.34927907290121896,47.12516597213814,0,10.169491525423728,111,2.2891042874353515,51,-6.3822808188622515,42,17.41085774076524,48,18.99840289632698,52 +8060211930,0,3.83453770229,0.3737300435413643,0,4.566906293483514,0,13,0,0,14.742800343357535,0.34927907290121896,2.3123424074219736,0,10.169491525423728,111,3.397336413758618,49,-4.165816566215718,35,15.194393488118708,51,17.890170770003714,53 +8060047730,0,11.063688975,0.7641509433962264,0,60.92127236181162,0,2,0,0,43.09137287596596,76.90607734806629,30.846011166182535,0,0.847457627118644,112,111.24665569955299,9,47.47984165723001,9,142.5254930835668,1,99.29922141316791,1 +8060048550,0,9.3584540685,0.7641509433962264,0,0.07862650316137243,0,2,0,0,36.40442255379773,76.90607734806629,0.03981060964762652,0,0.847457627118644,112,114.5901308606371,8,54.16679197939824,8,135.83854276139857,2,95.9557462520838,2 +8060053140,0,3.19594068556,0.7641509433962264,0,0.15620018151347106,0,2,0,0,12.238590213432923,76.90607734806629,0.07908816340120182,0,0.847457627118644,112,126.6730470308195,7,78.33262431976304,7,111.67271042103378,3,83.8728300819014,3 +8060055670,0,3.08908036843,0.7641509433962264,0,6.336110446783843,0,2,0,0,11.819545523850472,76.90607734806629,3.20813609296689,0,0.847457627118644,112,126.88256937561073,6,78.7516690093455,6,111.25366573145132,4,83.66330773711017,4 +8060055680,0,2.9388804947,0.7641509433962264,0,34.17458525921793,0,2,0,0,11.230548025499973,76.90607734806629,17.303473765366316,0,0.847457627118644,112,127.17706812478599,5,79.340666507696,5,110.66466823310083,5,83.36880898793493,5 +8060056650,0,2.63671848526,0.7641509433962264,0,7.322727349706592,0,2,0,0,10.045642451100855,76.90607734806629,3.707685672952559,0,0.847457627118644,112,127.76952091198554,4,80.52557208209511,4,109.47976265870172,6,82.77635620073536,6 +8060057550,0,2.62802269837,0.7641509433962264,0,52.578642603056174,0,2,0,0,10.01154257739786,76.90607734806629,26.62192258669816,0,0.847457627118644,112,127.78657084883704,3,80.55967195579811,3,109.44566278499872,7,82.75930626388387,7 +8060055790,5.94968343444e-4,2.47276693527,0.7641509433962264,0,86.75296871223374,0,2,0,0.00252061142483809,9.402718789471244,76.90607734806629,43.925265154172536,0,0.847457627118644,112,128.0884621313755,2,81.17488520059234,2,108.84060751775972,8,82.45837304179646,8 +8060055800,0,2.14181324077,0.7641509433962264,0,2.2869617062857195,0,2,0,0,8.10490878943912,76.90607734806629,1.1579476696557218,0,0.847457627118644,112,128.73988774281642,1,82.46630574375685,1,107.53902899703998,9,81.8059893699045,9 +8060030130,0,8.43225829382,0.6658200290275762,0,0.27074723341838364,0,2,0,0,32.772415543925234,57.62457889772268,0.13708628962241468,0,0.847457627118644,112,83.3255876266706,10,35.30371746386986,10,107.27692159350606,10,74.85824429680395,10 +8060024130,3.30139046127e-5,4.59899819516,0.5655193862741033,0,0.31619993534158086,0,7,0,1.3986496266942826e-4,17.74057462043596,37.95684062602267,0.1601001647016711,0,5.084745762711864,112,61.335452384466485,11,31.62750641405268,16,66.81629484245283,16,51.912066725258455,11 +8060043200,0,7.4141861547,0.5587808417997098,0,197.50129769169513,0,1,0,0,28.7801222870085,36.63549386875085,100,0,0,112,48.46408737348516,31,13.96128722653415,33,76.14722547084797,11,51.0255550122551,12 +8060049710,0,6.16432765851,0.5587808417997098,0,0.8369692445336734,0,1,0,0,23.878896278847133,36.63549386875085,0.4237790951007648,0,0,112,50.914700377565836,30,18.862513234695516,30,71.24599946268661,12,48.57494200817442,13 +8060049910,0,5.29142493532,0.5587808417997098,0,3.0712040551555866e-4,0,1,0,0,20.455873958692152,36.63549386875085,1.5548652483875629e-4,0,0,112,52.62621153764333,29,22.285535554850497,29,67.82297714253163,13,46.863430848096925,14 +8060049920,0,5.0900103652,0.5587808417997098,0,0.16934305018559054,0,1,0,0,19.666041883698025,36.63549386875085,0.08574273672699266,0,0,112,53.02112757514039,28,23.075367629844624,28,67.0331450675375,14,46.468514810599864,15 +8060051220,0,5.04060596548,0.5587808417997098,0,0.2400437619993941,0,1,0,0,19.47230624917348,36.63549386875085,0.12154033028802534,0,0,112,53.11799539240266,27,23.269103264369168,27,66.83940943301296,15,46.37164699333759,16 +8060049770,0,4.99281365093,0.5587808417997098,0,0.7831175393592974,0,1,0,0,19.284892285291377,36.63549386875085,0.3965125880890985,0,0,112,53.211702374343716,26,23.456517228251272,26,66.65199546913085,17,46.27794001139654,17 +8060058620,0,3.77114716667,0.5587808417997098,0,2.5820032805806563,0,1,0,0,14.494219129724858,36.63549386875085,1.307334827001927,0,0,112,55.60703895212698,25,28.24719038381779,25,61.86132231356433,19,43.882603433613276,18 +8060053110,0,3.77087902501,0.5587808417997098,0,0.4559842884625933,0,1,0,0,14.493167632389865,36.63549386875085,0.23087658732661143,0,0,112,55.60756470079447,24,28.248241881152786,24,61.86027081622934,20,43.882077684945784,19 +8060040110,0,5.70986405631,0.5217706821480406,0,2.6126346819841473,0,5,0,0,22.096751473130873,29.3782509095809,1.3228442954289892,0,3.389830508474576,112,42.74462259750336,32,15.567705096521415,31,60.08075264915466,24,43.81645715462091,20 +8060056840,0,3.71966597402,0.5587808417997098,0,100.00964092714204,0,1,0,0,14.29233950805848,36.63549386875085,50.637460148346136,0,0,112,55.70797876296017,23,28.449070005484167,23,61.65944269189796,21,43.78166362278009,21 +8060052560,0,3.48890522512,0.5587808417997098,0,0.7031901405324692,0,1,0,0,13.387428602048567,36.63549386875085,0.35604328496342985,0,0,112,56.16043421596512,22,29.353980911494084,22,60.75453178588804,22,43.329208169775136,22 +8060038860,0.0694650499675,7.31631470883,0.5096758587324625,0,55.834070381307825,0,3,0,0.2942919577224697,28.396326779423713,27.006602883708386,28.27022961902419,0,1.694915254237288,112,33.536679794032764,39,5.552287731971397,46,63.75394534936571,18,43.305831062070894,23 +8060056660,0,3.33614175986,0.5587808417997098,0,3.57967045216987,0,1,0,0,12.788378172490704,36.63549386875085,1.8124794429683384,0,0,112,56.45995943074405,21,29.953031341051947,21,60.15548135633018,23,43.029682954996204,24 +8060057000,0,3.240108237,0.5587808417997098,0,70.34225883022631,0,1,0,0,12.411789941637696,36.63549386875085,35.61609955551122,0,0,112,56.64825354617056,20,30.329619571904953,20,59.77889312547717,25,42.841388839569696,25 +8060057560,0,3.15774938689,0.5587808417997098,0,1.7641767449867014,0,1,0,0,12.088825910595872,36.63549386875085,0.8932481626169728,0,0,112,56.80973556169147,19,30.652583602946777,19,59.45592909443535,26,42.679906824048786,26 +8060052790,0,3.08353318527,0.5587808417997098,0,0.23810073981732,0,1,0,0,11.797792662659624,36.63549386875085,0.12055652805224104,0,0,112,56.95525218565959,18,30.943616850883025,18,59.1648958464991,27,42.534390200080665,27 +8060056830,0,2.97183251232,0.5587808417997098,0,92.4815027498836,0,1,0,0,11.359766882092828,36.63549386875085,46.825769659988474,0,0,112,57.17426507594299,17,31.38164263144982,17,58.7268700659323,29,42.31537730979726,28 +8060057520,0,2.84404917209,0.5587808417997098,0,99.99999828547844,0,1,0,0,10.858674132430227,36.63549386875085,50.63257783021563,0,0,112,57.42481145077429,16,31.882735381112422,15,58.2257773162697,31,42.06483093496596,29 +8060056990,0,2.80567000608,0.5587808417997098,0,99.99999702178462,0,1,0,0,10.708173121961313,36.63549386875085,50.63257719037487,0,0,112,57.50006195600875,15,32.03323639158134,14,58.075276305800784,32,41.989580429731504,30 +8060056640,0,2.63958466152,0.5587808417997098,0,10.25103313084243,0,1,0,0,10.056881945549474,36.63549386875085,5.190362402595567,0,0,112,57.825707544214666,14,32.68452756799317,13,57.42398512938895,33,41.66393484152559,31 +8060057510,0,2.55077310008,0.5587808417997098,0,99.99999999747568,0,1,0,0,9.7086140927629,36.63549386875085,50.63257869704398,0,0,112,57.999841470607954,13,33.03279542077975,12,57.075717276602376,34,41.4898009151323,32 +8060056630,0,2.21424247537,0.5587808417997098,0,0.7369615607174831,0,1,0,0,8.388934580722598,36.63549386875085,0.37314262587170555,0,0,112,58.65968122662811,12,34.35247493282005,11,55.75603776456207,36,40.829961159112145,33 +8060039140,0,6.24226059416,0.5096758587324625,0,0.13167771745510531,0,3,0,0,24.184504419500268,27.006602883708386,0.06667180748404655,0,1.694915254237288,112,35.936882931716966,38,9.018114199063465,38,59.10213239035555,28,40.79377034769581,34 +8060041630,2.82865426773e-4,6.10539683319,0.5096758587324625,0,0.28194069684518824,0,3,0,0.00119837271053537,23.647803483445685,27.006602883708386,0.14275382880290147,0,1.694915254237288,112,36.20403502703372,37,9.557852870593592,37,58.56722311973049,30,40.52707374245907,35 +8060041930,0,5.54860983448,0.5096758587324625,0,22.70828259789708,0,3,0,0,21.46440518083598,27.006602883708386,11.49778904469832,0,1.694915254237288,112,37.29693255104911,36,11.738213437727754,36,56.38203315169126,35,39.43372072836367,36 +8060041740,0.0564627429402,5.21566602603,0.5096758587324625,0,13.623928065293631,0,3,0,0.23920707126859103,20.158791098757227,27.006602883708386,6.898146085248343,0,1.694915254237288,112,37.71053252081989,34,13.650189630696655,34,55.434053248296046,38,39.1110410933737,37 +8060041750,0.00118845500849,5.35451304177,0.5096758587324625,0,74.78029774625438,0,3,0,0.00503494564931907,20.7032692191004,27.006602883708386,37.863193103061626,0,1.694915254237288,112,37.67246558626758,35,12.512112401225561,35,55.628424846401884,37,39.06010142814313,38 +8060041920,0,4.97139118763,0.5096758587324625,0,34.41760888248746,0,3,0,0,19.20088570806291,27.006602883708386,17.42652289271377,0,1.694915254237288,112,38.42869228743564,33,14.001732910500824,32,54.11851367891819,39,38.301960991977126,39 +8060023560,3.30139046127e-5,5.20246097668,0.4682510885341074,0,64.1236497381148,0,4,0,1.3986496266942826e-4,20.10700849175766,18.883708395095,32.4674574119835,0,2.542372881355932,112,24.886801968846093,48,4.466712058626101,48,44.52251734449432,41,31.479778548635707,40 +8060023270,3.30139046127e-5,5.16344533112,0.4682510885341074,0,15.278225870078286,0,4,0,1.3986496266942826e-4,19.954011574645207,18.883708395095,7.735759723432782,0,2.542372881355932,112,24.963300427402316,47,4.619708975738554,47,44.36952042738187,42,31.403280090079484,41 +8060023160,0.0306900186045,4.84215696197,0.4682510885341074,0,99.99999998404506,0,4,0,0.13001971008273894,18.694103420403763,18.883708395095,50.632578690243705,0,2.542372881355932,112,25.463374659402973,46,6.208847435051803,44,43.30379328748387,43,30.95257195305659,42 +8060023080,0.0149444373483,4.82367057893,0.4682510885341074,0,71.60869120581282,0,4,0,0.06331281308153765,18.6216104608978,18.883708395095,36.257326924949496,0,2.542372881355932,112,25.566328036157152,45,6.112246167275652,45,43.13156804918267,44,30.824263918618694,43 +8060023570,3.30139046127e-5,4.75114378117,0.4682510885341074,0,22.16866954387655,0,4,0,1.3986496266942826e-4,18.337202083026575,18.883708395095,11.224569040366156,0,2.542372881355932,112,25.771705173211636,44,6.236518467357188,43,42.75271093576323,45,30.594875344270164,44 +8060023260,3.30139046127e-5,4.65778136844,0.4682510885341074,0,32.23900130648974,0,4,0,1.3986496266942826e-4,17.97108840947724,18.883708395095,16.323437696910602,0,2.542372881355932,112,25.954762009986304,43,6.602632140906524,42,42.3865972622139,46,30.411818507495497,45 +8060023090,0.00951813406895,4.49548656394,0.4682510885341074,0,99.99970557042828,0,4,0,0.0403240235244452,17.33466155057309,18.883708395095,50.632429621037446,0,2.542372881355932,112,26.2327912808766,42,7.340921169188194,41,41.810249014143096,47,30.14906285343411,46 +8060022890,0.00940960217077,4.49437758228,0.4682510885341074,0,50.1708794844312,0,4,0,0.03986422302324825,17.33031276247337,18.883708395095,25.40281003039497,0,2.542372881355932,112,26.23542547542766,41,7.34410441648256,40,41.805212786605516,48,30.146253893081692,47 +8060023170,3.30139046127e-5,4.24735641479,0.4682510885341074,0,97.4626543520374,0,4,0,1.3986496266942826e-4,16.36163784898594,18.883708395095,49.34785516585144,0,2.542372881355932,112,26.759487290231952,40,8.212082701397824,39,40.7771467017226,49,29.607093227249848,48 +8060033320,0,8.78876993546,0.42452830188679247,0,0.07067807431163424,0,2,0,0,34.1704491097607,10.310200781565824,0.03578611515369469,0,0.847457627118644,112,1.4510594733825464,65,-21.2944239041486,65,47.50080971622965,40,28.242882963564817,49 +8060142120,0,5.13096372175,0.4450290275761974,0,5.352628771112653,0,4,0,0,19.826637388594165,14.330144185419748,2.710173959387254,0,2.542372881355932,112,17.2147473437308,49,-0.5657629575818639,49,38.354500577823735,52,26.78583576107276,50 +8060034210,0,6.86131900143,0.42452830188679247,0,3.250127383019138e-8,0,2,0,0,26.612095363220533,10.310200781565824,0,0,0.847457627118644,112,5.230236346652632,64,-13.73607015760843,64,39.942455969689476,50,24.463706090294735,51 +8060034360,0,6.54484779553,0.42452830188679247,0,0.08506579564450086,0,2,0,0,25.371077352046026,10.310200781565824,0.04307098948282133,0,0.847457627118644,112,5.850745352239885,63,-12.495052146433922,63,38.70143795851497,51,23.84319708470748,52 +8060038790,0.0925903171504,6.17593334019,0.42452830188679247,0,66.08249700903458,0,2,0,0.39226324191926926,23.924407085923175,10.310200781565824,33.45927229833424,0,0.847457627118644,112,6.181817243382042,62,-10.054040174050597,58,37.841233391786176,53,23.661220724430567,53 +8060034220,0,6.30422144312,0.42452830188679247,0,0.07892585343702117,0,2,0,0,24.42747922451719,10.310200781565824,0.03996217841157728,0,0.847457627118644,112,6.322544416004304,61,-11.551454018905085,62,37.75783983098613,54,23.37139802094306,54 +8060034410,0,6.28073731348,0.42452830188679247,0,0.786538003522749,0,2,0,0,24.335387977930903,10.310200781565824,0.3982444572990689,0,0.847457627118644,112,6.368590039297446,60,-11.4593627723188,61,37.66574858439985,55,23.32535239764992,55 +8060035010,0.160740384276,5.74461682297,0.42452830188679247,0,8.993200773697745e-4,0,2,0,0.6809842128635638,22.233031831530475,10.310200781565824,4.55332489839e-4,0,0.847457627118644,112,6.738783899634097,59,-7.630790830520036,51,36.58151965460855,57,23.213994165731997,56 +8060034420,0,6.05293397692,0.42452830188679247,0,41.2009027714723,0,2,0,0,23.44207434178942,10.310200781565824,20.86107951050877,0,0.847457627118644,112,6.815246857368187,58,-10.566049136177318,60,36.772434948258365,56,22.87869557957918,57 +8060034350,0,5.95242116466,0.42452830188679247,0,0.00292961021554284,0,2,0,0,23.047920914738377,10.310200781565824,0.00148332074218786,0,0.847457627118644,112,7.0123235708937095,57,-10.171895709126273,59,36.37828152120732,58,22.681618866053654,58 +8060034890,0,5.88217241949,0.42452830188679247,0,98.79808813122756,0,2,0,0,22.7724457486156,10.310200781565824,50.02401972528364,0,0.847457627118644,112,7.1500611539550984,56,-9.896420543003495,57,36.10280635508454,59,22.543881282992267,59 +8060034900,0,5.75232147299,0.42452830188679247,0,7.272894784256064,0,2,0,0,22.263245036606826,10.310200781565824,3.6824541600252263,0,0.847457627118644,112,7.404661509959485,55,-9.387219830994722,56,35.59360564307577,60,22.289280926987878,60 +8060034180,0,5.68522404058,0.42452830188679247,0,0.01392703017340074,0,2,0,0,22.000127506253406,10.310200781565824,0.007051598058945,0,0.847457627118644,112,7.536220275136195,54,-9.124102300641303,55,35.33048811272235,61,22.157722161811172,61 +8060034100,0,5.67689581111,0.42452830188679247,0,0.17731837888943452,0,2,0,0,21.9674689813046,10.310200781565824,0.08978085131072877,0,0.847457627118644,112,7.552549537610599,53,-9.091443775692495,54,35.29782958777354,62,22.141392899336765,62 +8060036730,0,5.64715603401,0.42452830188679247,0,19.58913170866494,0,2,0,0,21.85084668410554,10.310200781565824,9.918482515475146,0,0.847457627118644,112,7.610860686210128,52,-8.974821478493437,53,35.181207290574484,63,22.083081750737236,63 +8060035020,0,5.44878231852,0.42452830188679247,0,8.68508059859795,0,2,0,0,21.072939091638855,10.310200781565824,4.397480254070815,0,0.847457627118644,112,7.999814482443471,51,-8.196913886026751,52,34.4032996981078,64,21.694127954503895,64 +8060034170,0.00666034037797999,4.87804908883,0.42452830188679247,0,0.01752666579619686,0,2,0,0.02821684587934213,18.83485169406091,10.310200781565824,0.00887418639910245,0,0.847457627118644,112,9.090641335353101,50,-5.887300065173262,50,32.207398797975685,65,20.614026056589125,65 +7060256760,7.23706279203,22.7037382577,0.52322206095791,0,9.789330762224104,1,26,0,30.660157564464523,88.73694991893439,29.662848672685616,4.956590587376897,5,21.1864406779661,113,2.6742497322323544,92,52.026081835148645,14,183.5786170913746,1,142.53155642397266,1 +7060093370,10.1363969965,25.5759214244,0.417478747667427,0,38.48767438808752,0,7,0,42.943323552603864,100,8.927868789342991,19.48730201357976,0,5.084745762711864,113,-72.54136675853728,102,24.3569244797474,33,175.74689173686698,2,123.27828732827285,2 +7060227150,11.399389918,1.57588541508,0.5126269956458636,0,2.040536820674506,1,25,0,48.29405258298325,5.885665421914432,27.585285002021283,1.0331763954758215,5,20.338983050847457,113,22.054140941097724,58,176.30595784164407,1,124.40530812054357,4,122.51726383083904,3 +7060184650,11.7052471042,5.20940410928,0.4727140783744558,0,27.59423133850866,1,20,0,49.589830965816,20.13423546359565,19.758846516641967,13.971670886752197,5,16.10169491525424,113,-4.030738794771445,100,151.97390229333647,3,130.4721414788465,3,119.36611366402833,4 +7060184050,8.30303316206,7.41982793653,0.47518833367889973,0,26.563520284755743,1,21,0,35.17619127086861,28.802246109762724,20.24401794136331,13.449795301138831,5,16.949152542372882,113,7.728743696745024,86,108.18248198105367,4,118.21787168230506,5,105.14062085814211,5 +7060178270,11.4475856749,0.717631554288,0.4496286177751217,0,20.7289455574694,1,17,0,48.49823617831144,2.5200875129419287,15.232067978788336,10.495599659673012,5,13.559322033898304,113,-4.440867778240012,101,158.99736987844074,2,105.3731652716963,8,101.983388675877,6 +7060227160,8.81728187247e-4,18.7624522583,0.4923802612481858,0,27.612678151199265,1,22,0,0.00373548301664516,73.28149355747681,23.61514620671068,13.981010983708137,5,17.796610169491526,113,27.29275224310516,35,-20.674410465067442,102,114.47004522349067,6,83.05765845955634,7 +7060253350,2.705602598,4.38797097626,0.5267109523277883,0,61.39223306782001,1,26,0,11.462412907742074,16.913047266855116,30.34697791091807,31.08447071636791,5,21.1864406779661,113,58.95768069721494,19,75.98408485626469,5,83.93704332412783,11,80.80910935743088,8 +7060032080,0.397758303115,9.9595739554,0.6076197387518143,0,1.509533626659698,1,10,0,1.685121795476248,38.761668940231395,46.212208597224105,0.7643157852882867,5,7.627118644067797,113,71.47072267058083,5,34.30128087440198,25,111.6804348607682,7,80.54578228887482,9 +7060244280,0.258547048401,9.61424056029,0.5281943772509811,0,39.95816766225775,1,27,0,1.0953467545606774,37.40747002670695,30.63785952776655,20.231850678119525,5,22.033898305084747,113,60.42404782336284,17,30.39717438434839,28,89.30794178865077,10,77.88717049390164,10 +7060220600,0.00428234529707,10.904623454,0.5180616029672633,0,0.07549184061678037,1,27,0,0.01814235765623098,42.467609409218745,28.65094551498,0.03822344916729327,5,22.033898305084747,113,55.56230836731494,20,20.28838076375807,36,90.18863297268462,9,76.94368662008203,11 +7060024840,0.276768241543,4.17310659323,0.5618287373004355,0,41.80208815774997,1,30,0,1.1725416979790908,16.070472762985766,37.233149171270725,21.165475174437553,5,24.57627118644068,113,84.87301650442595,1,62.16672931892318,7,76.61360046823422,14,76.4628703947863,12 +7060024900,0.630974706113,3.99409409255,0.5420174165457184,0,28.358839052082622,1,30,0,2.6731540770823923,15.36848871695705,33.348389704891524,14.358811489186802,5,24.57627118644068,113,77.05845942529606,3,62.14037187872484,8,73.1324356199136,16,74.29809979058055,13 +7060245520,0.0230932868516,7.86791858748,0.5267109523277883,0,31.25084402681465,1,26,0,0.09783579801617642,30.55939986688391,30.34697791091807,15.8231081844533,5,21.1864406779661,113,63.499081506926444,14,33.529850745535356,26,80.5924216224025,13,71.94814077750682,14 +7060024890,0.375629340431,3.88172213646,0.5414393673990291,0,11.533800003519255,1,29,0,1.591371402239811,14.927830550088414,33.2350412854481,5.839860349130761,5,23.728813559322035,113,77.31864590671042,2,58.85913930374801,9,70.92787219163858,20,71.6240066704168,15 +7060025090,0.318325412919,4.4134222098,0.5350332816175366,0,45.24217769109678,1,29,0,1.348600612892031,17.012852363309072,31.97888564139974,22.907281215268227,5,23.728813559322035,113,74.36376646761067,4,54.69320685063586,12,71.02581134687071,18,71.07531627347164,16 +7060025100,0.700376880532,4.78287975706,0.5195158614969936,0,41.74874734986611,1,28,0,2.967179659580637,18.461652323514283,28.93610795618611,21.13846734789866,5,22.88135593220339,113,65.95294978509335,9,52.949951640385834,13,70.96042325120476,19,70.14326650341404,17 +7060245300,0.145998947327,9.43619456946,0.5056543299467827,0,8.25331719809122,1,24,0,0.618531420540039,36.70927607629979,26.218029915105763,4.178867310447642,5,19.491525423728813,113,51.124650662762505,22,22.187856143863208,35,82.18234265469317,12,69.9178227130239,18 +7060025570,1.49304301428,4.5441512579,0.5012280897621971,0,40.181358751065744,1,26,0,6.325347089534842,17.525496484642066,25.350097954868183,20.34485808184461,5,21.1864406779661,113,55.21556159639009,21,56.52007784049887,10,70.40854560429813,21,69.02883828831426,19 +7060185280,0.738673692964,5.23860784893,0.514709166015407,0,14.095826286008036,1,26,0,3.1294259101831554,20.248755730285417,27.99357333139842,7.137080323305201,5,21.1864406779661,113,61.58516512422017,16,48.779584629892724,17,71.77146747551154,17,68.62328283652471,20 +7060220780,0.478461890593,4.60217510974,0.5180616029672633,0,0.5358062816056669,1,27,0,2.0270263469771694,17.753032651815246,28.65094551498,0.27129252083648314,5,22.033898305084747,113,65.91071275669576,10,50.0952448429286,15,68.47750244193799,25,67.35883994609922,21 +7060025560,0.350284548211,4.97423057576,0.5163414503037145,0,13.680999618066078,1,27,0,1.4839969956283905,19.21202015487624,28.31364446241147,6.927042884129597,5,22.033898305084747,113,65.14555353861334,11,46.866223182483004,19,68.68851014272826,24,67.00160299727216,22 +7060220950,0.827308363729,4.65614953923,0.5080986937590711,0,19.295390923905614,1,25,0,3.5049308697811448,17.964689314068192,26.697339981134615,9.769753981414476,5,20.338983050847457,113,59.28033660009931,18,49.65578258623037,16,68.37287368396039,26,65.85578947762815,23 +7060256770,1.05408264528,2.53561088567,0.5214804063860667,0,58.85767377750881,1,25,0,4.465670800292594,9.649156610308571,29.321331356959966,29.801157988628365,5,20.338983050847457,113,66.97924702047405,8,63.46800257168735,6,64.88636123968845,30,65.64792255046959,24 +7060221070,0.337754317091,4.401956449,0.514709166015407,0,0.3331729062237736,1,26,0,1.4309120810023293,16.967890245431228,27.99357333139842,0.16869401754383376,5,21.1864406779661,113,64.92411169582809,12,47.75491505938156,18,65.95118459358699,28,64.63874729816932,25 +7060253490,0,4.34542996957,0.5214804063860667,0,100,1,25,0,0,16.746225911447294,29.321331356959966,50.6325786983221,5,20.338983050847457,113,67.89638317019728,7,45.05097705585345,20,65.30688665579957,29,63.03342736353107,26 +7060228720,0,3.90101572893,0.5096371552975326,0,8.5632213777693,1,25,0,0,15.003488920610428,26.999013610025592,4.335779788163534,5,20.338983050847457,113,64.78343784436927,13,44.08434334193355,22,60.5615570224617,31,59.839741121178264,27 +7060178410,1.68242762937,7.09437345912,0.45452346395742627,0,25.236470484345855,1,18,0,7.127683936099099,27.526000875588657,16.191887885729688,12.777875766361984,5,14.40677966101695,113,26.920912575411563,38,31.089164629666456,27,69.76769127698441,22,59.19851685562796,28 +7060244230,0.116068799693,1.81690830336,0.5161884559562353,0,5.440410091191154,1,26,0,0.4917309396326846,6.8308185350077455,28.28364412840897,2.754619905372872,5,21.1864406779661,113,71.42949232487095,6,55.84968771338811,11,54.78500112523341,35,58.56412727110957,29 +7060032050,0.113475890931,4.68065220709,0.54657606544399,0,36.372594842863016,1,11,0,0.4807459594718449,18.06077468161248,34.24228540627947,18.41638269796379,5,8.474576271186441,113,63.336653113729994,15,38.83176967013484,24,73.70263568030589,15,57.41072194876497,30 +7060025870,0.889137489356,9.74177411867,0.4294800648851704,0,13.926870516231876,1,17,0,3.7668728741927366,37.90758327564742,11.281181385099524,7.051533660180128,5,13.559322033898304,113,15.818359078968271,70,5.611701768471839,60,68.77538937953358,23,53.99292051668029,31 +7060185140,0.0817262452004,5.25229183912,0.4710087082728592,0,0.3592117048924238,1,20,0,0.34623708913453627,20.302416467736176,19.424444144993924,0.18187813277612072,5,16.10169491525424,113,44.55504292053034,24,26.588800710840378,30,56.58475465526564,33,51.15518581079513,32 +7060156430,0.097233973316,6.95156544744,0.4820593452668925,0,5.014862191127117,0,18,0,0.4119363100967746,26.96599000783565,21.59133989129947,2.539154029903862,0,14.40677966101695,113,37.55530377496674,25,13.674896839555062,40,55.49794437575551,34,50.04962394347187,33 +7060198080,1.14284418604,8.14235271474,0.4427612481857765,0,2.237382974400396,0,16,0,4.84171325060314,31.63557263856486,13.885460180568652,1.1328446792080964,0,12.71186440677966,113,15.875130255122714,69,9.54917541257766,48,56.82724902321888,32,49.09711335655815,34 +7060031720,0.422002168681,2.78036815235,0.4802451217545557,0,46.93496008122782,1,18,0,1.7878320744369136,10.608953807187522,21.235592687418578,23.764380591421233,5,14.40677966101695,113,49.37258392019598,23,40.35463041039816,23,51.38828166561446,36,48.4142193095101,35 +7060027050,2.25657226673e-5,8.13311886135,0.507801161103048,0,15.558044079671769,0,4,0,9.560074748796771e-5,31.599362777585743,26.63899743969816,7.8774388986634865,0,2.542372881355932,113,32.44612884859892,28,2.022082786863219,68,66.04184583259355,27,44.981183647530145,36 +7060148740,2.09477234523,2.2088951188,0.419267053701016,0,4.376160801052295,1,16,0,8.87460175655312,8.367965324462238,9.278533890311282,2.215763045821845,5,12.71186440677966,113,21.19711403595116,59,44.91493881010594,21,44.28296316435581,45,43.42213451474605,37 +7060136810,0.143893366398,8.67277080603,0.4324655297532656,0,3.4555880686448655,0,16,0,0.6096110277089906,33.71556725567923,11.86659479854466,1.7496533324588672,0,12.71186440677966,113,15.603543236926951,71,-5.6140491803584,80,49.969653732581975,41,42.27756121982114,38 +7060028080,0,6.98753844579,0.46271072903874066,0,11.717745405148015,0,13,0,0,27.107055412953127,17.797311164781853,5.932996649402658,0,10.169491525423728,113,27.150145865512656,36,3.825965804716091,65,50.117720353277136,39,41.52033039668214,39 +7060121090,1.79085767159e-4,7.17286882841,0.44388001935171745,0,55.73076414853048,0,15,0,7.587052919721559e-4,27.833814557423157,14.104837622961854,28.21792300939593,0,11.864406779661016,113,22.14588389818479,57,0.48815934538695593,70,46.07150661876217,44,39.88719876329848,40 +7060114600,0.0454985552751,6.36853358628,0.44498367198838895,0,102.15888298693956,0,16,0,0.1927567735388915,24.679674452742823,14.32125050532272,51.72567682604424,0,12.71186440677966,113,24.74970500877243,47,5.228931550922779,64,43.484225918629186,50,39.63897393000937,41 +7060120880,0,7.34588554722,0.43216938444463415,0,39.26474867105273,0,17,0,0,28.512286596188577,11.808524299087637,19.880754761574423,0,13.559322033898304,113,19.56262283447967,61,-1.1763528800213656,72,43.779873568746325,48,39.62398963108023,42 +7060187940,0.925529120793,3.74097664398,0.44036540595919066,0,0.587858936445529,0,17,0,3.92104773572843,14.375907696119516,13.415664608384787,0.29764812227140824,0,13.559322033898304,113,25.467075151724497,46,24.774423121849384,32,37.58370121468439,68,39.574341211597016,43 +7060121880,0.743110530754,3.102269445,0.44593613933236576,0,20.533894919747222,0,18,0,3.148222782566131,11.871265494795642,14.50801778736019,10.396840491994652,0,14.40677966101695,113,30.213788383102283,30,27.441913599530093,29,35.33595778539697,79,39.195262542755366,44 +7060059690,0.231610808084,6.42389616942,0.4703374455732946,0,38.61131853509424,0,8,0,0.9812301030894464,24.89677465503926,19.292817679558,19.549906233639156,0,5.932203389830509,113,25.602552676920936,44,6.031020242417043,58,51.30804320889964,38,39.02759473827592,45 +7060114610,9.05387052965e-4,6.606006267,0.44388001935171745,0,58.87217597764232,0,15,0,0.0038357149161817,25.610905694135873,14.104837622961854,29.808500826526338,0,11.864406779661016,113,23.254261320204222,53,2.718868070279795,67,43.85319813707699,47,38.77999088339866,46 +7060148930,4.25396150165e-4,6.06669622442,0.419267053701016,0,0.9120770727001988,1,16,0,0.00180221083693499,23.496041959390432,9.278533890311282,0.4618081253181412,5,12.71186440677966,113,22.505875264203247,56,7.2953470476646185,56,46.14547719978702,43,38.740906490837126,47 +7060106320,8.63054782402e-5,6.4684620734,0.44388001935171745,0,185.03260258273383,0,15,0,3.6563722570365497e-4,25.071536492743157,14.104837622961854,93.68677813424944,0,11.864406779661016,113,23.527415998591056,51,3.2494410282245543,66,43.30864088510441,51,38.50551726145526,48 +7060137460,0.00537172998482,7.81217181453,0.4242561683599419,0,1.778766932637081,0,16,0,0.02275758722305378,30.340793093167928,10.256838700983678,0.9006355508636852,0,12.71186440677966,113,15.115985345503674,72,-5.604929031194612,79,43.636184760795025,49,38.17050718422527,49 +7060028910,1.49245378057e-4,5.74375733782,0.44498367198838895,0,15.59096986318158,0,16,0,6.322850773154833e-4,22.229661425213557,14.32125050532272,7.89411007191655,0,12.71186440677966,113,26.166836010998637,41,7.1919313402587495,57,40.746971032940976,57,38.14881823533622,50 +7060028410,0.0769240540662,5.97476924035,0.43417570221121826,0,73.72269566044054,0,17,0,0.32589238009160876,23.135557211277607,12.20193885396766,37.3277018944728,0,13.559322033898304,113,22.600061804854573,55,5.4854594413190565,61,39.39903720683161,62,37.77880047055427,51 +7060029460,0.130263430354,5.42890291053,0.4807173958117354,0,46.92581957202341,0,7,0,0.5518671613488931,20.99498348965315,21.32819989604788,23.759752515903376,0,5.084745762711864,113,30.627382822767938,29,10.371581235200527,46,49.395924541934775,42,37.67206402897733,52 +7060137470,0,7.36989225508,0.4242561683599419,0,1.0191695177859217,0,16,0,0,28.60642709392687,10.256838700983678,0.5160317918737506,0,12.71186440677966,113,16.005925932347257,68,-3.9282508693329223,77,41.8677943032795,55,37.27191665472677,53 +7060028850,0,5.28996408487,0.44498367198838895,0,2.3097215424191977,0,16,0,0,20.4501453436198,14.32125050532272,1.1694715616013598,0,12.71186440677966,113,27.057226336872834,37,8.969844652703033,49,38.96650963332998,65,37.258187583912274,54 +7060115860,0,5.6989265848,0.43417570221121826,0,8.279309577852533,0,17,0,0,22.053861001936134,12.20193885396766,4.192027922590133,0,13.559322033898304,113,23.46680228961692,52,5.741056361591104,59,37.830105176763006,66,36.78819138883403,55 +7060026040,0.107393853803,8.27359643054,0.4095156023222061,0,7.086375882687898,0,16,0,0.45497912256353934,32.15023499054116,7.366392669451544,3.5880148303707853,0,12.71186440677966,113,8.820012561594936,83,-9.690926631585262,88,42.35469093769787,53,36.78128693522069,56 +7060029000,0.069200014946,4.73531960239,0.44498367198838895,0,25.73499285648524,0,16,0,0.2931691243641299,18.27514875712548,14.32125050532272,13.03029049884624,0,12.71186440677966,113,27.85155550575586,33,11.887990880027358,43,37.229824918016135,71,36.575289213430096,57 +7060028800,2.71618975428e-4,4.91845378843,0.44498367198838895,0,1.1450271973632438,0,16,0,0.0011507265894241201,18.99329568202846,14.32125050532272,0.5797567805543317,0,12.71186440677966,113,27.78450044107908,34,10.429611272393144,45,37.51138040231169,69,36.53135085994816,58 +7060197970,0.103697028888,7.73897749429,0.41649733913884857,0,0.35225032372363013,0,15,0,0.43931734959855107,30.05376707613996,8.735426492386463,0.1783534059761955,0,11.864406779661016,113,11.385250862062751,77,-6.884410990875153,84,42.00487132164565,54,36.23301450978967,59 +7060028900,0.0201931518876,4.66316041077,0.44498367198838895,0,8.603900848135199,0,16,0,0.0855492395725525,17.99218191906025,14.32125050532272,4.356376853017302,0,12.71186440677966,113,28.200658809580055,32,11.644665451993005,44,36.636449334164155,76,36.14727156425526,60 +7060121180,3.69162616132e-4,7.79797156606,0.4159651669085632,0,39.93759560456224,0,15,0,0.00156397482000321,30.28510788773413,8.63107397924809,20.2214345148136,0,11.864406779661016,113,11.52830012175621,76,-8.347150304639179,85,41.44681453549435,56,35.640193129563954,61 +7060028420,0,5.07143592569,0.43417570221121826,0,9.621541466437169,0,17,0,0,19.59320361737352,12.20193885396766,4.871634540112604,0,13.559322033898304,113,24.697130981898226,48,8.20171374615372,52,35.36944779220039,78,35.557862696552725,62 +7060026050,1.43131322989e-4,7.7957559288,0.4095156023222061,0,92.45812322028256,0,16,0,6.063825948955248e-4,30.27641943300388,7.366392669451544,46.81393200126008,0,12.71186440677966,113,10.211293080332219,81,-8.968893135828962,86,39.80155089024025,60,35.21730365559035,63 +7060027290,0.0714672230884,7.58490243719,0.4564586357039187,0,5.146068426430202,0,5,0,0.3027742585014174,29.44957333791324,16.57135156986928,2.6055871302723945,0,3.389830508474576,113,16.793118539442865,67,-5.959001792265877,82,51.32783154004885,37,35.10382462441781,64 +7060028840,0,4.1314412238,0.44498367198838895,0,97.89577872794332,0,16,0,0,15.907085153178352,14.32125050532272,49.5671572064149,0,12.71186440677966,113,29.328756432093556,31,13.51290484314448,41,34.42344944288853,85,34.986657488691556,65 +7060115800,0.216719020916,4.11499499058,0.43417570221121826,0,0.5039733421128331,0,17,0,0.9181403449778854,15.842592487616718,12.20193885396766,0.25517468269054633,0,13.559322033898304,113,25.654296201798743,43,14.27970388992423,39,32.991531735590854,91,34.94967389736779,66 +7060106280,0,5.02938785367,0.4438109060750571,0,65.41485922114049,0,14,0,0,19.428315268167836,14.091285348528311,33.12123006984916,0,11.016949152542374,113,25.478683489909436,45,8.028466790990898,53,37.647350870305445,67,34.8223921351546,67 +7060102690,0,5.4288724915,0.4353652636671505,0,23.23034866511053,0,15,0,0,20.99486420371684,12.435197412747607,11.762124557123316,0,11.864406779661016,113,22.70157843172138,54,5.377272890816382,63,37.072695202016774,72,34.797036294267045,68 +7060027040,0.13970096427,7.1532689028,0.4564586357039187,0,48.257097145554965,0,5,0,0.5918497185270897,27.756954924552236,16.57135156986928,24.433812681233935,0,3.389830508474576,113,17.350352286097696,65,-3.533610701165376,75,50.06740463413606,40,34.656465713247854,69 +7060029010,2.89080002891e-4,4.87263645823,0.4438109060750571,0,31.73933145033405,0,14,0,0.0012247010551207,18.813626470605488,14.091285348528311,16.070441963678554,0,11.016949152542374,113,25.78480318763549,42,8.646260063320877,51,37.03449310120584,73,34.51673793466217,70 +7060030440,0,3.65267350757,0.4644412191582003,0,0.00938206996664618,0,12,0,0,14.029633593815763,18.136639266945153,0.00475036750470465,0,9.322033898305085,113,33.42357169914406,27,16.451812782592,38,37.47902577734081,70,34.47348996215812,71 +7060105110,7.97543565817e-5,4.90097925543,0.4353652636671505,0,0.6530261963966676,0,15,0,3.3788309007631357e-4,18.924770616286093,12.435197412747607,0.3306439864624327,0,11.864406779661016,113,23.736287342346678,50,7.44822297259174,54,35.00310677750103,81,33.76245580979363,72 +7060028790,0,4.10631258378,0.43417570221121826,0,6.127919566532297,0,17,0,0,15.808545082929456,12.20193885396766,3.102723681646536,0,13.559322033898304,113,26.589460249120258,39,11.986372280597783,42,31.584789257756327,93,33.665533429330694,73 +7060121890,0.00164019753953,5.88740515359,0.4188134978229318,0,7.9112906052060525,0,16,0,0.00694877417040219,22.792965521488203,9.189597089341058,4.005690426579585,0,12.71186440677966,113,17.074681372132225,66,0.6577098240476609,69,34.684853775471424,83,33.30753419406832,74 +7060030400,0.27245089667,2.22476722752,0.4644412191582003,0,0.1172055758939877,0,12,0,1.15425106297008,8.430206604015057,18.136639266945153,0.05934418901639954,0,9.322033898305085,113,35.06903413107434,26,24.97713200178198,31,33.60529873742324,88,33.26674739126625,75 +7060026460,0.108465124798,7.55979301104,0.40726726104084593,0,85.81424850605558,0,14,0,0.4595176126174203,29.351108613409195,6.925520241784885,43.44996690686786,0,11.016949152542374,113,7.763733648041653,85,-9.089562129746499,87,38.99233309902876,64,33.25219959174821,76 +7060102570,0.00478876558029,4.53674088876,0.4353652636671505,0,6.078361294247148,0,15,0,0.02028783105110954,17.496437279884276,12.435197412747607,3.077631050422074,0,11.864406779661016,113,24.43050406258655,49,8.927127107313385,50,33.60460024854259,89,33.0758218752041,77 +7060026200,0.0231740341761,6.61260191281,0.4095156023222061,0,95.55694819138922,0,16,0,0.09817788786163216,25.636770022684377,7.366392669451544,48.382946993988874,0,12.71186440677966,113,12.433546280225233,75,-4.081911305182153,78,35.30777887795889,80,33.032136457699174,78 +7060156440,0.24231124024,6.27786650385,0.4094823415578132,0,11.431283688700312,0,15,0,1.0265629881753855,24.32413031407061,7.359870637380391,5.7879536953345685,0,11.864406779661016,113,11.30283380026921,78,-1.2709899835638598,73,35.37471846513933,77,32.803092399386635,79 +7060030610,0.560229445507,2.35587762299,0.4324655297532656,0,0.00530185341535159,0,16,0,2.3734384466600895,8.944346150353109,11.86659479854466,0.002684448647637,0,12.71186440677966,113,26.225326370638914,40,23.628269335797253,34,27.83549919460569,98,32.32619212770145,80 +7060026370,0,6.63068018038,0.40726726104084593,0,0.9414951804001456,0,14,0,0,25.707662588096124,6.925520241784885,0.47670327185571504,0,11.016949152542374,113,10.044974273315608,82,-6.610939820138052,83,34.66187057747456,84,30.79630068837532,81 +7060120870,0.599528484882,2.78286382851,0.4188134978229318,0,1.9360379077730288,0,16,0,2.5399306789364955,10.618740413383843,9.189597089341058,0.9802659011448934,0,12.71186440677966,113,20.62881202141831,60,19.252749527954442,37,26.297644236459984,100,30.716165897725,82 +7060026210,6.56892896599e-4,6.44650237808,0.40726726104084593,0,6.261755271214001,0,14,0,0.00278295771246907,24.985423200589064,6.925520241784885,3.1704881501679782,0,11.016949152542374,113,10.403311009356669,80,-5.881645958429617,81,33.94379193985893,87,30.439021728116376,83 +7060093380,0,8.37402111459,0.417478747667427,0,99.66483441571442,0,7,0,0,32.544042829450646,8.927868789342991,50.462875720033864,0,5.084745762711864,113,4.129935379341264,91,-17.043450145838626,100,44.08714591062138,46,30.28463596678018,84 +7060028070,0.096727309614,7.84537753308,0.417478747667427,0,98.40799393859515,0,7,0,0.4097898054467634,30.47100681886012,8.927868789342991,49.82650497613725,0,5.084745762711864,113,4.756663579189764,90,-13.931644628417931,94,42.626779248502075,52,29.813664978051715,85 +7060026360,0.0208807774962,5.97784494073,0.40726726104084593,0,0.85742854925926,0,14,0,0.08846239786769051,23.14761833879062,6.925520241784885,0.43413816867044375,0,11.016949152542374,113,11.23653400010067,79,-3.826653678563284,76,32.234084863997474,92,29.638364678426846,86 +7060143810,0.00659138797342,5.2999857413399996,0.4094823415578132,0,4.720577090415011,0,15,0,0.027924725768046912,20.489444515074293,7.359870637380391,2.3901498946399404,0,11.864406779661016,113,14.218814962174708,73,0.03226394095804075,71,30.046986608248766,95,29.507538323262963,87 +7060109330,0,5.48758400613,0.4071601354620223,0,0.5248692318824405,0,15,0,0,21.225096988756334,6.904514216412882,0.2657548105262961,0,11.864406779661016,113,13.097675446935792,74,-1.3054236232802907,74,30.152145672603293,94,29.381469490452066,88 +7060136860,7.66569291649e-4,4.28663575126,0.4159651669085632,0,28.86971251418037,0,15,0,0.0032476069285901,16.515668810152302,8.63107397924809,14.617479897016358,0,11.864406779661016,113,18.411336028438537,62,5.426556584566745,62,27.679892625917482,99,28.75779715544779,89 +7060027430,0.133833646029,7.06828235794,0.417478747667427,0,18.647070818752415,0,7,0,0.5669925483021707,27.42368658635127,8.927868789342991,9.441492793849044,0,5.084745762711864,113,6.1231209525887795,89,-10.485833722159327,90,39.81449000203279,59,28.506958873430317,90 +7060026650,0.0632458545502,7.5408225951,0.39265844218674406,0,2.5675974032436257,0,12,0,0.26794404325797083,29.276717555322065,4.060908233391717,1.3000407598197004,0,9.322033898305085,113,1.3828796609400626,95,-14.53775039135179,96,34.92778307346912,82,28.391087937383542,91 +7060093860,0,8.42658876309,0.40248548621190133,0,63.89367357946645,0,8,0,0,32.75018290594849,5.9878722544131495,32.35101455243065,0,5.932203389830509,113,-0.16971927966864797,96,-19.832128552635975,101,40.49207834599782,58,28.295167097217906,92 +7060026580,0.185473319483,7.68991457368,0.38199173830523614,0,0.22356085598046688,0,13,0,0.7857664584056955,29.861370526240016,1.9692971090356832,0.11319460992350908,0,10.169491525423728,113,-2.168310698190153,99,-15.402539103075725,98,33.58231770739649,90,28.153902720266014,93 +7060093650,0,7.23839133625,0.417478747667427,0,17.63314028039048,0,7,0,0,28.09075613962971,8.927868789342991,8.928113615899765,0,5.084745762711864,113,6.356578724251731,88,-12.590163456017692,92,39.633859220800446,61,28.057992621869712,94 +7060093620,0,7.08748275112,0.417478747667427,0,93.4286481398314,0,7,0,0,27.498979482873235,8.927868789342991,47.305333795097184,0,5.084745762711864,113,6.652467052629968,87,-11.998386799261215,91,39.042082564043966,63,27.762104293491472,95 +7060096520,0,7.40225766629,0.39265844218674406,0,2.070362906693655,0,12,0,0,28.73334561764044,4.060908233391717,1.0482781119570048,0,9.322033898305085,113,1.9225096730388476,94,-14.673585447045017,97,33.983812828490336,86,27.749614940517024,96 +7060093830,0,6.50960642921,0.417478747667427,0,2.143605542027675,0,7,0,0,25.232880986859684,8.927868789342991,1.085362746945281,0,5.084745762711864,113,7.785516300636744,84,-9.732288303247664,89,36.77598406803042,75,26.629055045484698,97 +7060143720,0.170380243601,3.18983127915,0.4094823415578132,0,2.4023985016046585,0,15,0,0.7218239311715583,12.21463263608925,7.359870637380391,1.2163962959114012,0,11.864406779661016,113,17.662321696263717,63,10.066029619686867,47,22.809610918326022,101,26.32777608353547,98 +7060026740,0.0800452850739,7.15171576778,0.4061787269334439,0,2.184851904090476,0,7,0,0.33911562234350184,27.75086442248547,6.712071919456363,1.1062468436837103,0,5.084745762711864,113,2.3858490294941337,93,-13.975749416482847,95,36.93610447516477,74,26.140260141441587,99 +7060026470,0.0791562631282,6.95707992407,0.38199173830523614,0,28.617797676669458,0,13,0,0.3353492389754527,26.98761461283113,1.9692971090356832,14.48992891861944,0,10.169491525423728,113,-0.28101552205546776,97,-13.67053846682722,93,30.035151131495176,96,26.09540823900852,100 +7060109290,0.00321486966477,3.28404083414,0.4071601354620223,0,0.7703292892247788,0,15,0,0.01361994683528467,12.584068314241495,6.904514216412882,0.3900375672734956,0,11.864406779661016,113,17.404569837357926,64,7.370130032747246,55,21.53147993499629,102,25.07975191240171,101 +7060026850,0,6.66787619842,0.3880624092888244,0,47.720682587109266,0,8,0,0,25.853523972863616,3.159681983560164,24.16221215769139,0,5.932203389830509,113,-1.57361022962579,98,-16.23502493554625,99,29.938769365749486,97,22.01864735982248,102 +7060034010,2.87171749214,3.33328802181,0.53170947182432,0,22.222342457036586,2,23,0,12.16616648491784,12.777187453546295,31.327126896058765,11.251745020370423,10,18.64406779661017,114,65.0860891511694,9,87.75501242387764,1,92.77086865299208,5,83.15019917917033,1 +7060293910,3.10270188533,7.63409951077,0.4958750286456344,0,2.1463106006077863,2,19,0,13.1447427517891,29.642495958586505,24.30042766260752,1.0867323878601365,10,15.254237288135592,114,40.229582691454574,24,61.78263468658372,7,102.01420361664131,3,82.51684749698512,2 +7060032700,0.147194880521,10.6620570484,0.5770440251572327,0,22.097317675144215,2,12,0,0.6235980478746801,41.51640350914523,40.21668238781836,11.18844174926579,10,9.322033898305085,114,68.18849399977748,6,30.805841714909334,25,115.74656547946095,1,81.1575397809756,3 +7060034110,0.796542795347,3.57493293715,0.549288824383164,0,3.245020982320094,2,25,0,3.374591089505749,13.724779798931545,34.77422449804607,1.6430377867280621,10,20.338983050847457,114,81.0128402368369,2,70.23832785055399,5,85.0311886264979,7,76.632838544736,4 +7060032690,0.553021436337,6.57433493332,0.5770440251572327,0,15.284196353409312,2,12,0,2.3429013761345043,25.48670894320866,40.21668238781836,7.738782733105017,10,9.322033898305085,114,74.48403795448594,3,51.193770298992895,15,102.28737031577514,2,75.51548668406724,5 +7060034100,0.719648391577,4.62773733811,0.5197829242127847,0,7.850833224905375,2,23,0,3.04882432429126,17.853273006139773,28.988475712285336,3.975079295909952,10,18.64406779661017,114,67.65305204671205,7,56.83909826909198,10,81.19206973087645,8,70.76683349119088,6 +7060293920,1.93605186154,3.63651353516,0.4990203193033381,0,8.999350052312693,2,20,0,8.202174947709807,13.966263478471904,24.91718097291469,4.556602982599436,10,16.10169491525424,114,54.91586498183922,21,66.49703565635417,6,79.74584556232688,9,69.32175133352023,7 +7060032810,0.0861038132004,8.37655262858,0.5312046444121916,0,15.251038033094776,2,14,0,0.36478286225909273,32.55396997099958,31.228136369761486,7.721993820471261,10,11.016949152542374,114,59.20212852230199,18,30.320487085479428,26,94.77562757687184,4,69.02550386974494,8 +7060033460,2.89815698969,1.34313133548,0.4940799022229012,0,19.176266189331844,2,19,0,12.27817866224771,4.972937819614913,23.94842516613592,9.70943805641264,10,15.254237288135592,114,52.82700831436662,23,83.84488404261724,2,75.59394679508955,14,68.63412906537106,9 +7060033480,2.75566542818,1.29903209621,0.4940799022229012,0,8.755547175293078,2,19,0,11.67450644700668,4.800005972442512,23.94842516613592,4.433159298983585,10,15.254237288135592,114,53.51714645319385,22,82.48757701859726,3,74.5184755048027,15,67.71454085378252,10 +7060032950,0.0557828408399,3.51259241779,0.5770440251572327,0,18.141618061399477,2,12,0,0.23632663398033577,13.480316145021185,40.21668238781836,9.1855690286163,10,9.322033898305085,114,82.59380909573385,1,57.86024107637097,9,87.13147560800635,6,66.6050265005526,11 +7060034000,0.820288573499,3.18365262188,0.5183714001986097,0,0.6303117698903103,2,19,0,3.4751911976646728,12.190403496711031,28.711692990730423,0.31914308658199086,10,15.254237288135592,114,66.19342364187459,8,59.87001454135693,8,75.80879315677029,12,64.85721037693975,12 +7060033180,1.71471790611,1.68602080967,0.5040980107572782,0,9.57272323010242,2,17,0,7.264483215184924,6.317553081220757,25.91285461765894,4.846916608173246,10,13.559322033898304,114,58.843779116110625,20,70.38805291642282,4,71.98254478646047,19,62.65659744841831,13 +7060033700,0.303059882325,4.76145618647,0.4990203193033381,0,6.770929626733045,2,20,0,1.2839274731435906,18.377641404131435,24.91718097291469,3.4282962565216235,10,16.10169491525424,114,59.628423493575674,17,44.54870483005005,20,73.81387644404478,16,61.97963269570431,14 +7060033190,0.170677439556,3.42533561603,0.5404312668463611,0,15.986699773180538,2,14,0,0.7230830158402525,13.138145165283264,33.037365006641366,8.094478330094693,10,11.016949152542374,114,71.65576677027411,4,52.75532786074196,13,78.23469557185294,10,61.621306741061915,15 +7060033120,0.0132932394523,3.47084623056,0.5409735402478508,0,1.9734423521713724,2,13,0,0.05631743538255934,13.31661161429473,33.14369823681236,0.9992047358977102,10,10.169491525423728,114,71.5682734506297,5,50.16328600423254,17,77.55377417326359,11,60.04921872681187,16 +7060033400,0.183163416233,4.02453373755,0.5070149975810353,0,0.4370414402244635,2,18,0,0.7759804444330569,15.487855493442536,26.48484031801643,0.22128533478161935,10,14.40677966101695,114,62.57592281065226,10,46.28492473494714,19,72.19154077904767,17,59.70647096354688,17 +7060033470,0.0512930571163,5.01088992928,0.5092525399129173,0,0.1344810981301512,2,16,0,0.21730545365459047,19.35577705012664,26.923595202802854,0.06809123141101404,10,12.71186440677966,114,60.25847713744881,16,39.81779248352806,22,75.79147647444213,13,59.61324932634109,18 +7060033450,0.10826444483,3.99925211909,0.5092525399129173,0,0.08568288390832988,2,16,0,0.45866742247596026,15.388715529756816,26.923595202802854,0.04338343718374422,10,12.71186440677966,114,62.00064592881235,13,44.396678529514844,21,72.18527088122819,18,57.96281992584177,19 +7060032940,0.401270351183,2.7492606608,0.5013660035857593,0,7.293009492425443,2,17,0,1.700000752621326,10.486968120729188,25.377141181226545,3.692638755472336,10,13.559322033898304,114,61.40445052460708,14,51.488322857989026,14,67.13996284473718,20,56.52610216032883,20 +7060033690,0.336235181638,2.65901724746,0.4940799022229012,0,32.165610193375464,2,19,0,1.4244761920665527,10.133085368501188,23.94842516613592,16.286277883793364,10,15.254237288135592,114,61.10063701010464,15,51.1718627902485,16,64.52691950331155,22,56.235111195446535,21 +7060033110,0.187724311933,2.81165122108,0.5013660035857593,0,31.9600548224539,2,17,0,0.7953028939979672,10.731628006340438,25.377141181226545,16.18219989880905,10,13.559322033898304,114,62.186818440424815,11,48.95035909819298,18,66.03202527614434,21,55.39986718512485,22 +7060033440,0.359367171169,2.06177392816,0.4940799022229012,0,0.43494125761185487,2,19,0,1.522475955807868,7.791040650097487,23.94842516613592,0.2202219581671362,10,15.254237288135592,114,62.17365960556518,12,53.76232551441507,12,62.33139246446863,24,55.1993373789646,23 +7060033390,0.590713411422,2.0938942109,0.490041928721174,0,5.032112554738708,2,18,0,2.502585204813544,7.916997920968293,23.15662758837533,2.5478883338380864,10,14.40677966101695,114,58.92465656300416,19,54.34960975574258,11,62.89895511706948,23,54.975700270818194,24 +7060271330,1.90614473085,5.52269184467,0.43382619738751815,0,26.552311936089964,1,16,0,8.075471979170379,21.36276973480488,12.133405201455323,13.444120225178004,5,12.71186440677966,114,20.396837688968745,28,33.2251165324999,24,59.774149800792074,25,51.67153661883636,25 +7060252360,0.750208127623,6.48576537065,0.4433055152394775,0,26.114471679880417,1,16,0,3.1782920861753587,25.13939007038189,13.992184341732909,13.222430412807718,5,12.71186440677966,114,26.594745360868366,26,19.20329027136013,28,58.6323547877044,26,48.6600744908686,26 +7060239430,0.424391892176,4.82036639303,0.460513958849142,0,12.23509225245028,1,17,0,1.7979562506390174,18.608653344617643,17.3665512020736,6.1949426990914,5,13.559322033898304,114,37.87718237812253,25,27.019255122389463,27,54.40072060435605,28,47.711542245135476,27 +7060271320,1.49987477994,3.7795125246,0.43382619738751815,0,1.9102607492538084,1,16,0,6.354290186699865,14.527023251134665,12.133405201455323,0.967214261067216,5,12.71186440677966,114,25.535892723274365,27,35.69786730967509,23,50.365095456903646,29,45.8782767403338,28 +7060239440,0.0559489854987,8.32495767733,0.42298016448959846,0,25.04703793569573,1,15,0,0.23703051365689623,32.35164425354662,10.006629834254138,12.681961182055302,5,11.864406779661016,114,18.244555204264415,29,-0.961991210156512,30,56.2941416616542,27,43.373982300260195,29 +7060252370,0.466250723098,5.40632991804,0.3936865021770682,0,27.069275289336964,1,14,0,1.9752931604342696,20.90646519881361,4.262498315590878,13.705872101937349,5,11.016949152542374,114,11.526432551016251,30,7.340537131701115,29,40.02105184148003,30,33.458763388501374,30 +7060061880,0.716747013672,2.19560577575,0.7941633837860254,0.076923077,12.21516175051235,3,14,25.274725307221352,3.036532500069516,8.315852166063435,82.79115252083855,6.184851372009428,15,11.016949152542374,115,134.93698091182787,9,130.84425883889415,5,184.4003636077341,1,163.4937138024023,1 +7060063420,0.621784028467,2.73895117125,0.784893565553943,0.083333333,26.479064023183355,2,12,27.3809522792517,2.6342173381251337,10.446540233518467,80.97345371243769,13.407032918018633,10,9.322033898305085,115,121.51862916095621,13,116.80370366704047,9,175.64171401080904,2,159.35262855678548,2 +7060060320,2.34456322468,4.95943313075,0.790052472926203,0,6.751836880070258,2,13,0,9.932852588719095,19.153993088165542,81.98505281270407,3.418629106538775,10,10.169491525423728,115,142.56833541104425,7,126.34335304829,6,161.30580329095082,3,125.43977635532968,3 +7060062870,3.4905579362,2.89361529224,0.7792694726656991,0,56.9029459934645,2,12,0,14.78791318898653,11.05304394144731,79.87063738040696,28.81142890471249,10,9.322033898305085,115,137.2886681719678,8,143.43704064329066,1,157.72977804758062,5,125.12785172292391,4 +7060061510,2.01101442382,4.87319838,0.790052472926203,0,0.8977784225054296,2,13,0,8.519757375414029,18.815830004527182,81.98505281270407,0.4545683500031239,10,10.169491525423728,115,144.15051216616848,6,123.09948407959692,7,158.8549470359449,4,123.32049553722976,5 +7060061870,3.66083441408,3.615676128,0.7792694726656991,0,9.000045682819923,1,12,0,15.509297511791118,13.88455115485562,79.87063738040696,4.556955198263574,5,9.322033898305085,115,129.52653024245905,11,135.18415880629396,2,150.9895614281918,8,122.53918097874751,6 +7060061620,4.56875079588,7.45361886208,0.7185937751975487,0,0.07736106860082212,1,9,0,19.35572804877673,28.93475468065324,67.97286978394645,0.03916988749767187,5,6.779661016949152,115,95.2000695704238,15,113.46110768849692,11,156.4075216420457,6,120.93256449813128,7 +7060060310,3.10075466601,2.51751764493,0.7792694726656991,0,12.354005840012016,1,12,0,13.13649326537736,9.578205328737786,79.87063738040696,6.255151714916163,5,9.322033898305085,115,134.05250740193173,10,133.47572177522346,4,143.13567876153405,10,117.11132347222164,8 +7060063060,1.0898799094,1.49303269716,0.790052472926203,0,0.04086099441656131,3,13,0,4.617327596680303,5.560764725432203,81.98505281270407,0.02068895870537353,15,10.169491525423728,115,160.3054745844497,1,133.7123436405064,3,150.41568189160216,9,116.30725664196378,9 +7060059990,0,6.62169475008,0.790052472926203,0,1.3368576531886949,2,13,0,0,25.672426899564083,81.98505281270407,0.6768854870990713,10,10.169491525423728,115,149.24197109406407,5,94.64629290734771,15,152.97380831396936,7,114.99075778790984,10 +7060061630,2.26337447005,2.51924845368,0.7386792452830189,0,0.39090104708550966,2,10,0,9.588892603715262,9.584992564962135,71.91138660557876,0.19792326390623036,10,7.627118644067797,115,127.87140991009333,12,120.74547154852033,8,138.19801627034104,11,107.56454109834098,11 +7060062930,0.46585301097,1.96447436072,0.7792694726656991,0,69.49852130490738,2,12,0,1.973608234261844,7.409487720727085,79.87063738040696,35.18889348885799,10,9.322033898305085,115,151.9247512370526,4,114.59782383924366,10,134.92778556668185,12,105.62117310943697,12 +7060062880,0.0228815441981,2.13736026004,0.7792694726656991,0,16.090801034169388,2,12,0,0.09693874028626734,8.08744676071007,79.87063738040696,8.14718748300795,10,9.322033898305085,115,153.46244121103666,3,109.16272584941561,13,132.799969887803,13,103.37017889339882,13 +7060062940,0.0906753122203,1.74986247889,0.7792694726656991,0,0.4082464258421389,2,12,0,0.38415023328843995,6.567903381306192,79.87063738040696,0.2067056764585571,10,9.322033898305085,115,153.93500140773645,2,111.41031696689475,12,131.70983123236303,14,103.00678505603018,14 +7060061520,2.2290919506,4.37048604239,0.7185937751975487,0,0.19171609259088457,1,9,0,9.443653094504237,16.844481414883983,67.97286978394645,0.0970707850337439,5,6.779661016949152,115,111.15728115758093,14,100.42542351204055,14,129.49788385447891,15,101.20786740799277,15 +7060480440,16.2157873921,3.89916661518,0.8322132917027478,0.134453782,0.7931112686737808,20,119,44.177671241193615,68.69894745436973,14.996237760234132,90.25227749097212,0.4015726709507962,100,100,116,242.54995692326565,1,513.1234021297894,1,504.2971447819111,1,473.55355823295815,1 +7060474840,21.22326187,2.84407219512,0.8202820202127801,0.128440367,0.18736498561814957,12,109,42.20183488348624,89.91334905684408,10.858764415509286,87.91270001199175,0.09486770737080964,60,91.52542372881356,116,168.0892100165682,15,501.66818038609694,2,441.10537452718,5,446.32609522139535,2 +7060475060,18.7858728032,3.18153955789,0.8294237633860275,0.135135135,2.3690668775611403,13,111,44.40154436982901,79.58723541357291,12.182117275337758,89.70528485634266,1.199519635130653,65,93.22033898305084,116,185.72935291467417,10,485.38890351464,5,442.791238255092,4,445.25710115722285,3 +7060481890,15.4385031734,1.60019863234,0.8411758714638556,0.12173913,0.3845010559182889,18,114,39.99999986857143,65.40594623238795,5.981007873191952,92.009730565465,0.19468278334074848,90,95.76271186440678,116,242.4739200631535,2,496.7561913298233,3,465.95003131680005,2,444.3624043497009,4 +7060480630,16.3151687133,3.05625787162,0.8386960916442049,0.116071429,0.18714940105666775,17,112,38.137755253753646,69.11998110497068,11.690834573364196,91.52347585038598,0.09475855134802046,85,94.0677966101695,116,229.79927660920652,3,490.7936116940639,4,463.53535375310287,3,441.7477368392221,5 +7060453430,18.9574067307,2.10645886152,0.8173726048920786,0.137614679,1.2817978285381773,11,109,45.2162516843475,80.31394698094985,7.966269252554972,87.34219899145617,0.6490072780426791,55,91.52542372881356,116,169.21521389992876,14,472.5629243723167,6,416.35531987383376,6,431.5877338320578,6 +7060453370,14.2196303814,1.62434549555,0.8222320132697492,0.133928571,2.096642934104563,14,112,44.00510191257289,60.24213420979304,6.075697979584905,88.29506997516701,1.0615843675220982,70,94.0677966101695,116,212.61675509547408,4,448.87691075015914,7,416.07868156039615,7,419.21633273454523,7 +7060489890,15.6411428693,3.05059871933,0.8274254772803394,0.125,0.1514350091816365,12,104,41.07142858316327,66.264438853448425,11.668642633658663,89.31344521265018,0.07667543376939084,60,87.28813559322033,116,190.74254612943147,9,438.21377874910036,8,406.91343176198126,8,409.184443591388,8 +7060498570,17.1373802362,3.01967459164,0.8125761973875182,0.161616162,1.342451532179723,7,100,53.10245324374356,72.60331896839152,11.547375994774375,86.40168171405472,0.6797178122824131,35,83.89830508474576,116,134.71973781688996,21,412.36906686516136,9,374.7478449844031,9,408.62732302220354,9 +7060446640,12.929608719300001,2.84351582876,0.8073223483878312,0.147058824,0.14431958678552298,9,102,48.31932789951981,54.77689664613443,10.856582666709716,85.37146571335717,0.0730727119237897,45,85.59322033898304,116,169.33040682161305,13,382.4663552541807,12,361.2135120369741,12,385.5754864250304,10 +7060434140,11.2294469741,1.90587481933,0.8089413308027241,0.134615385,5.914814516486261,12,104,44.23076936978022,47.57408129260269,7.179694030319323,85.6889285084946,2.9948230994368092,60,87.28813559322033,116,201.98365519086394,6,391.35951981045645,11,373.8634707719061,10,383.3131924919867,11 +7060450680,13.8738076421,3.61574458057,0.8076852621641045,0.116504854,3.114995720687673,10,103,38.28016632522291,58.777039877878494,13.884819586456024,85.44262869866806,1.57720264378293,50,86.44067796610169,116,181.45377216484434,11,396.92190060609494,10,368.03532896267905,11,380.12365560817466,12 +7060399420,15.4704999318,5.00906285447,0.7517953744368839,0.181818182,72.93043713675549,5,77,59.74025981706864,65.54150200719434,19.348612313794547,74.48330028683081,36.92656097384342,25,64.40677966101696,116,79.3899020938692,45,339.3237924833005,17,343.8296468707382,15,373.54139989694676,13 +7060434190,12.5080931591,1.87653618814,0.8016981132075471,0.13,1.076318648331123,9,100,42.7142857264898,52.991126111458655,7.064644796609571,84.26862147958495,0.544967870381861,45,83.89830508474576,116,175.5906687661194,12,378.28291875855695,13,346.10718630770606,14,368.1413224053701,14 +7060446550,11.9522511191,2.32641573171,0.7947444809411045,0.157894737,0.37865269635751103,7,95,51.87969931482277,50.63627511498512,8.8288135614789791,82.90509861772068,0.19172160808261435,35,79.66101694915254,116,149.1548470500557,17,350.9851961954367,15,333.09115785463587,16,366.9759465518035,15 +7060419920,13.9470549728,2.47589325325,0.7517953744368839,0.181818182,2.0595404426285424,5,77,59.74025981706864,59.08735564616389,9.414978410092353,74.48330028683081,1.042798419320358,25,64.40677966101696,116,90.81086540675072,38,332.8969158439255,18,324.2465351289052,17,359.6672768812301,16 +7060396070,13.2356969536,2.2951479628300002,0.7597060957910015,0.175,8.024386551783497,5,80,57.50000001642857,56.07365387513096,8.706199359536123,76.03449669855814,4.062953820753633,25,66.94915254237289,116,101.84694511247086,31,330.1317250470029,19,318.1524291091466,18,355.1401325039778,17 +7060439770,9.26057748389,1.84244440257,0.7975176933550792,0.113402062,5.319313754637921,12,97,37.26067752493162,39.232872914504185,6.930956425798237,83.44889190191671,2.693305707446844,60,81.35593220338983,116,208.3409828688381,5,361.33784366654,14,349.2711005540971,13,350.72645955549933,18 +7060431350,5.18289404548,3.80002349478,0.8057739010475793,0.148514851,0.4517191901817521,9,101,48.79773677108507,21.957574867160695,14.607455476706829,85.06783398997491,0.22871705808230183,45,84.7457627118644,116,198.37965520240283,8,294.3604907029245,21,316.12036696726136,19,341.8832822813782,19 +7060363950,10.5328987722,7.15157448679,0.7050726879059698,0.196721311,99.68658119882647,5,61,64.63700220418201,44.6231220104727,27.75031039971829,65.32154872857488,50.47388667711101,25,50.84745762711864,116,61.443219425307824,48,254.05646315585034,27,315.4175659261124,20,335.12927892925666,20 +7060414850,9.17021298541,4.04304816227,0.7517953744368839,0.181818182,34.35960979390362,5,77,59.74025981706864,38.8500394582736,15.560458416285742,74.48330028683081,17.397156458532706,25,64.40677966101696,116,107.97544159154434,29,275.45219247773116,23,300.13556863779377,22,334.81068911370903,21 +7060400650,7.82577544415,3.96440934465,0.751776525361431,0.194805195,59.64769209654739,5,77,64.00742123257355,33.15426645820951,15.252082212623396,74.47960421198529,30.201164635876744,25,64.40677966101696,116,109.1251839188179,27,261.67373112272276,25,296.8023528404433,24,334.61525200413274,22 +7060392520,6.7740088448,4.25869503639,0.7644429891323586,0.170731707,7.509276511293116,7,82,56.09756088745645,28.698407695642853,16.406101400061544,76.96334397113004,3.802140324034615,35,68.64406779661017,116,141.4534271414684,19,270.20045758779236,24,305.619361531076,21,331.2623905223962,23 +7060383830,17.6439288971,2.04334051354,0.7368201997780244,0.132352941,2.769284304968993,3,68,43.487394912424975,74.7493362413612,7.718755402263294,71.5468503531314,1.4021600390931948,15,56.77966101694915,116,69.96007158989617,46,347.3870561912747,16,299.93740973984194,23,330.0736284028835,24 +7060422720,6.71571861686,3.03525253223,0.7923293085878393,0.14893617,0.7224170440310927,6,94,48.93617015683891,28.45145839805252,11.608463716149272,82.43151264238634,0.365778362011785,30,78.8135593220339,116,165.9027493665865,16,283.07434659835235,22,287.64921412033937,25,326.03120315862725,25 +7060399240,3.1344937251,2.82600064744,0.76496513150908,0.207317073,12.150885279777068,5,82,68.11846686231956,13.27943037916272,10.78789820164032,77.06572975175918,6.152306537369305,25,68.64406779661017,116,135.38416894458788,20,223.35453843524817,31,271.2618657344786,30,319.314418245092,26 +7060422540,4.41177609517,4.55959057786,0.7747578222567253,0.174418605,22.269614572555,5,86,57.30897023065971,18.69069733179807,17.586040615651253,78.98595751215124,11.275680111470423,25,72.03389830508475,116,145.1485706374021,18,235.00263337204063,29,274.7116930900959,28,315.674175331641,27 +7060335180,1.16761345799,3.86565235173,0.7262526265623984,0.23880597,5.296420180504199,6,67,78.46481873670425,4.946649438469358,14.864814098942686,69.47467754878753,2.681714100502961,30,55.932203389830505,116,110.18695572461564,26,184.69909579392328,37,277.0409969894382,27,313.51827955771756,28 +7060384130,15.2792417408,3.02193366875,0.7402031930333817,0.115942029,13.26859305061576,3,69,38.09523811088436,64.73122766799524,11.556234795606413,72.21021425683868,6.718230804240399,15,57.6271186440678,116,85.97637924875232,42,319.32687224211,20,282.71023391691705,26,309.791672380151,29 +7060363960,5.75946626502,2.33148987558,0.7178631238137769,0.2,16.66408119695633,5,65,65.71428573306123,24.40025024616357,8.848711434702713,67.82959791858862,8.437454012687258,25,54.23728813559322,116,97.62467562001235,33,228.10109521928956,30,270.91125693226616,31,305.64198578929427,30 +7060400750,1.3422789093,2.04178307312,0.7978618347223677,0.154639175,9.146879357383735,7,97,50.81001465737429,5.686627854040179,7.712648016894521,83.51637384574565,4.6313008741168975,35,81.35593220338983,116,198.58288753868436,7,240.47816193550796,28,264.18429672593055,33,304.72838466163284,31 +7060331860,5.14960861934,4.33441352499,0.683573030742842,0.218181818,2.3013894920506432,5,55,71.68831164905382,21.816559590745435,16.70302575330335,61.105726990971554,1.1652528296399465,25,45.76271186440678,116,69.69931011936792,47,197.87616865794297,34,273.9030735143473,29,301.7573496731416,32 +7060337970,3.88652775573,3.52622827259,0.7012941461054668,0.216666667,5.470803609404465,5,60,71.19047632034014,16.46545798947277,13.533788123163507,64.58062255760679,2.7700089274064172,25,50,116,87.38168607130874,40,195.73083263591457,35,266.5851430836853,32,299.5872119853138,33 +7060331850,4.32470338881,0.753544438517,0.7052273430250541,0.213114754,20.244183863527464,5,61,70.02341919143527,18.32180970800932,2.6609171850590725,65.35187471972536,10.250152313408766,25,50.84745762711864,116,94.4161988194816,35,212.95933638117305,33,257.98181651684877,35,296.1918149363842,34 +7060358930,2.6758428187,4.49289053988,0.701487663280116,0.216666667,9.800613563599446,5,60,71.19047632034014,11.336334200310304,17.324481437640728,64.61856892602074,4.9623033606644995,25,50,116,90.68056637024642,39,178.98267768880305,38,262.7564378846646,34,294.4418500078235,35 +7060343590,3.52356513718,3.21324078145,0.6905762228503043,0.210526316,9.209065227592516,5,57,69.1729324197637,14.927749751400114,12.306431237179396,62.478967935942805,4.6627871837998285,25,47.45762711864407,116,85.60426782279677,43,187.8978460099894,36,257.74314352298745,36,288.5084990272548,36 +7060337870,2.72230539192,4.06095182556,0.683573030742842,0.218181818,101.85738119233304,5,55,71.68831164905382,11.533175081302035,15.630666284157032,61.105726990971554,51.57301869256362,25,45.76271186440678,116,80.51887436338448,44,172.8813441380351,39,257.4562113032135,37,287.029168692504,37 +7060345050,0.432077020211,7.52006320359,0.6856987352270371,0.214285714,99.40259429766886,5,56,70.40816319154519,1.8305146577203648,29.19531116420453,61.52255183167458,50.33009678584271,25,46.610169491525426,116,86.40996408835802,41,135.9486575370162,43,255.40483255277604,38,279.33828530822433,38 +7060343600,1.57822825067,2.43119027013,0.6903088635958546,0.210526316,8.544499366668676,5,57,69.1729324197637,6.686238357848813,9.239679026859744,62.42654203221299,4.3263003511560205,25,47.45762711864407,116,95.28921015655459,34,170.01216159858336,40,242.28687325894725,40,275.54866545712923,39 +7060347220,0.707339086493,4.40551074412,0.6856987352270371,0.214285714,99.6161109852505,5,56,70.40816319154519,2.9966753732278355,16.981828146190335,61.52255183167458,50.43820579075168,25,46.610169491525426,116,91.35054488185766,37,151.11822236875864,42,244.93485539138942,39,274.8409511215239,40 +7060359070,0.465386484984,3.53000874293,0.6856987352270371,0.214285714,24.121852708157412,5,56,70.40816319154519,1.971631774937154,13.548612953022229,61.52255183167458,12.21351604346446,25,46.610169491525426,116,94.09219607673239,36,151.95307123137593,41,239.96911599880968,41,271.70969059517216,41 +7060379040,11.1555557882,1.85226146263,0.7151728568369459,0.06557377,2.8615037899401914,2,61,21.545667291870195,47.26103780142086,6.969453287832161,67.3020692275576,1.4488531424116,10,50.84745762711864,116,103.1191056427028,30,258.4937927361829,26,213.6941083619767,42,236.35915271664408,42 +7060378910,8.44188047894,3.46295254789,0.711465892597968,0.066666667,9.715359620703572,2,60,21.90476202054422,35.764424471999895,13.285657131911076,66.57517854736557,4.919137090920293,10,50,116,108.9680560303478,28,221.3694387242388,32,202.3445851639372,43,222.73487985517843,43 +7060288450,1.55433816125,5.25576733922,0.6582154088050315,0.0625,7.611187473449159,3,48,20.53571429158163,6.58502686820235,20.316045379755753,56.13340520145533,3.8537404721672615,15,39.83050847457627,116,113.67915995102419,23,125.15702276424453,45,161.1359926066749,44,167.85867890862838,44 +7060288400,2.19269462211,4.88629409806,0.6454765360425737,0.066666667,12.69655094782836,2,45,21.90476202054422,9.289454097135032,18.867183877103063,53.63546691820507,6.428591136264897,10,37.28813559322034,116,97.74021867412068,32,120.86874592289145,46,151.61372891176785,45,163.33621214959993,45 +7060293450,0.774793984343,3.39822552619,0.6634917755200774,0.0625,14.055502801168853,2,48,20.53571429158163,3.2824512267762516,13.031834988721323,57.168036652742224,7.11666350310346,10,39.83050847457627,116,116.77391932607898,22,118.02665795118858,47,139.60161371428927,46,155.69335190360636,46 +7060293670,2.03471386116,3.72656901119,0.6521896889001073,0.043478261,3.4805508936695,2,46,14.28571433265306,8.620161158539108,14.319409248685954,54.95183468769591,1.762292654488898,10,38.13559322033898,116,112.17025202729631,24,125.46824016092856,44,137.95486702844363,47,148.33421131277467,47 +7060293560,1.41252715698,4.15787862749,0.6457345589421061,0.044444444,37.449529856669486,2,45,14.603174461315191,5.984237865779788,16.010757441640354,53.686062076090366,18.96166266653636,10,37.28813559322034,116,110.59219866104436,25,114.79739559360114,48,134.4775895174054,48,144.01085271730602,48 +7060382790,15.2540182684,2.55417396668,0.8087916193651296,0.108910891,5.204525933815858,11,101,35.785007053081436,64.62436723851843,9.721950335130352,85.65957191326193,2.635185673714134,55,84.7457627118644,117,184.7348407455659,13,421.50732001830045,2,380.3319754679711,1,385.0596312048557,1 +7060402430,10.5872756888,1.42632392881,0.8091789141431933,0.126213592,3.014787413398188,13,103,41.470180240420056,44.85349238015663,5.299171311932913,85.7355157170088,1.5264645937158343,65,86.44067796610169,117,213.53862381132438,7,392.57051100537467,3,375.0706269403863,2,377.75632173737847,2 +7060402320,9.30874446643,3.6291234676,0.805389639388188,0.105769231,9.32648756496708,13,104,34.75274733850079,39.436934605900255,13.93728388483186,84.99248494397395,4.722241141199738,65,87.28813559322033,117,221.597968972817,5,369.6228566237865,7,365.99861606524104,3,362.38917130969537,3 +7060377320,19.8737933921,3.42358308253,0.7932111348477683,0.056179775,0.11550355351380807,9,89,18.45906893384545,84.19626225662213,13.131272737087146,82.60442806551102,0.05848241119501195,45,74.57627118644068,117,155.85572874041566,21,438.0328214944209,1,365.4385869664435,4,358.7864234845954,4 +7060382860,11.3746438647,2.51546322241,0.8104604012987596,0.082474227,3.4597536932261677,11,97,27.098674593456764,48.18921476202192,9.57014906547481,85.98679978939677,1.7517624956039572,55,81.35593220338983,117,207.9724416993232,10,376.2659951329929,5,344.8444132896118,5,343.31418733336227,5 +7060393390,3.88090512694,3.92686792723,0.8101611479358999,0.103092784,1.0460989384172503,12,97,33.873343323963816,16.441637457637988,15.104866370187604,85.92811983824114,0.5296668519723418,60,81.35593220338983,117,235.02484974725613,2,298.00095672495047,10,322.2132359142574,6,319.6285622765239,6 +7060393220,3.52197273579,4.15486152649,0.8059941944847605,0.1,10.97283927054673,12,100,32.857142866530616,14.921003467869587,15.998926107184875,85.11103085837487,5.555831464449449,60,83.89830508474576,117,238.35679820808298,1,294.7566856751886,11,318.4686419040608,8,317.83922935473515,7 +7060374800,16.221814105,3.11915565049,0.7574765105797877,0.052631579,18.002606074486646,8,76,17.293233104940924,68.72447990757897,11.937483478494626,75.59730210852561,9.115183674919685,40,63.559322033898304,117,144.5430116855412,24,373.4683591212141,6,319.901788748671,7,311.67562825646826,8 +7060377200,5.60989816797,5.33735589661,0.7975474660110778,0.081632653,5.876394536900977,10,98,26.822157421949186,23.766597954626132,20.635988765880835,83.45472995828165,2.9753700730310886,50,82.20338983050847,117,218.0445875343316,6,293.91199472486085,12,305.1162786278118,9,307.9501254460324,9 +7060380530,7.17198249403,2.36875430601,0.7989840348330914,0.074468085,2.810341369158379,9,93,24.468085078419456,30.384441815083463,8.994841093507763,83.73642366257916,1.4229482894368628,45,77.96610169491525,117,210.4578003197234,8,310.97378889089174,9,290.05154765334396,11,297.991381309407,10 +7060380380,3.62544464924,2.07969311305,0.8049302449571991,0.091836735,26.73110722389607,10,98,30.17492722290713,15.359367105306504,7.8613093847547635,84.90240327366628,13.534648890014743,50,82.20338983050847,117,231.63483033063972,3,287.34367117263935,13,285.96180035301734,12,297.5544642985115,11 +7060398520,17.707878817,2.00117608675,0.7367893865369284,0.028169014,7.2072472188233645,7,71,9.25553317407301,75.02026309065263,7.553410776585806,71.54080825066285,3.64921510478318,35,59.32203389830509,117,132.4588716374502,27,376.9218374937306,4,298.6838324482885,10,290.1427772522426,12 +7060400760,5.10137837887,4.46983700367,0.7776060787159567,0.082352941,4.98222118411608,9,85,27.058823479159663,21.612229904147892,17.23407873077673,79.54446602249578,2.5226270463357023,45,71.1864406779661,117,198.28893499826262,11,269.04363068705715,16,283.0922616536749,13,283.7826222366103,13 +7060034520,5.43319406762,3.08432391758,0.7899592378717227,0.074468085,5.814817386644721,8,94,24.468085078419456,23.01798270632617,11.800893459889933,81.96677055050789,2.944191973957272,40,78.8135593220339,117,208.60756312350526,9,281.0274815785246,14,268.90585097183737,15,283.30583178967726,14 +7060374950,2.77526347291,3.79663623634,0.7994958368344665,0.084210526,0.5910832144833034,9,95,27.669172836476907,11.75753448706168,14.594172597714444,83.83678182114767,0.29928065738686765,45,79.66101694915254,117,224.63094136035514,4,260.23617031534525,18,272.0544949312138,14,282.74816355844723,15 +7060034530,7.54686546733,2.71508254272,0.7746596608550275,0.063291139,2.027636080013661,6,79,20.79565996308447,31.972651197800303,10.352941203478672,78.96670925307755,1.0266444178059295,30,66.10169491525424,117,175.30758086280653,15,274.15650587357425,15,250.93685151075113,17,262.49540347462084,16 +7060034570,15.4260505427,1.83253118858,0.7353773584905661,0.033333333,0.7086320003170877,5,60,10.952380845986395,65.35319007559812,6.892082503365924,71.26392669451556,0.3587986389024247,25,50,117,119.54300710718226,28,329.07460134422735,8,264.09627843232715,16,259.98264945067626,17 +7060398580,5.97307018655,3.19929333307,0.7687815329324763,0.047619048,8.040354415128377,7,84,15.64625863304179,25.30519332579384,12.251737368268692,77.81407973511463,4.071038761730798,35,70.33898305084746,117,194.5747468371073,12,265.06991620951317,17,245.39543095829765,18,252.8871958163463,18 +7060400520,3.03836478334,2.13205012376,0.7408784873407516,0.055555556,2.285233029514775,4,72,18.25396840521542,12.872175587327463,8.066623461015142,72.3426312716166,1.157072396028949,20,60.16949152542373,117,169.8001894808662,17,199.65323693100117,21,186.95539696378174,21,207.7758104837228,19 +7060034340,2.8282148849,2.83680214944,0.7379339737830304,0.047619048,9.777984602698965,6,63,15.64625863304179,11.981865639288548,10.830255478636865,71.7652479129369,4.950845734224226,30,52.54237288135593,117,174.80945046185133,16,200.61473100930476,20,205.58351772515158,19,204.94361494147148,20 +7060388700,9.79447355062,3.20531657093,0.685265817341289,0.037037037,9.731190750369962,2,54,12.169312160619803,41.49474876101706,12.275357042129986,61.437661890431045,4.927152800110067,10,44.91525423728814,117,100.55288542427587,36,225.01564188577143,19,190.721064441232,20,202.06750874767403,21 +7060400540,1.77547770701,3.22608545927,0.7312494664048493,0.044117647,6.700531774124558,5,68,14.495798304141656,7.521894974998736,12.35680067435148,70.454497174156,3.3926520083861176,25,56.77966101694915,117,176.13513693889132,14,183.14488602712936,23,186.6154272013494,22,195.36908453251624,22 +7060386900,3.88104876991,3.05505968,0.7208136792452831,0.046875,31.89877504727669,2,64,15.401785718686224,16.442246007849555,11.686135955121724,68.40816601536181,16.151172368406208,10,53.389830508474574,117,142.77788766127463,25,178.97588545532676,24,165.85170135182634,24,188.56945912921844,23 +7060400660,2.20735914478,3.55399213713,0.7334012087602625,0.044776119,10.550552050026903,3,67,14.71215338991776,9.351581038490997,13.642662027997796,70.87642772527336,5.342016555117298,15,55.932203389830505,117,162.05096246480366,19,171.65989036324208,26,170.16047963842124,23,188.50827147399613,24 +7060386520,2.82769185623,2.69707478851,0.7218599977671095,0.061538462,15.519369503337948,1,65,20.21978037720565,11.979649803680406,10.28232515090018,68.61333637390773,7.857856963358658,5,54.23728813559322,117,138.21705589146976,26,163.3058563888137,28,153.59595479797056,27,186.5943853034443,25 +7060387700,1.97590736944,3.49870814085,0.7245841241487104,0.046153846,1.627132355803103,2,65,15.164835118618525,8.371024685115913,13.425869998157127,69.14750448311962,0.8238590543894002,10,54.23728813559322,117,152.35580064496935,22,158.46681716276595,30,156.17504665260788,26,179.45269695951367,26 +7060387450,2.7140739181,2.68330360934,0.7275716618287373,0.03125,16.78088375458476,2,64,10.267857145790815,11.498302054556031,10.22832250842761,69.73332434981809,8.496594159619347,10,53.389830508474574,117,156.3715844286613,20,169.01956653341668,27,152.10374477452186,28,172.93041828539862,27 +7060356130,8.37990162991,7.95231337864,0.6530731368713321,0.02173913,1.6709279065038467,0,46,7.142857002040816,35.50184815733579,30.89034768749533,55.12506810871614,0.846033871071525,0,38.13559322033898,117,73.90744898304891,44,162.14612003348336,29,164.44047002052753,25,170.79683630393833,28 +7060354130,0.131617431998,4.17580767169,0.6859915067462238,0.074074074,15.243620620068944,0,54,24.33862432123961,0.5576034531209229,16.081064838839627,61.579960771983416,7.718238192982357,0,44.91525423728814,117,115.19507033343729,29,104.11915557524983,41,127.87846083546584,33,159.92610191145516,29 +7060388530,0.774194197911,1.60935148268,0.7240652429331674,0.031746032,9.825881167508635,2,63,10.430839088694526,3.279910203292194,6.016900086808105,69.04575817660307,4.975097000103157,10,52.54237288135593,117,164.4893181232195,18,150.76228490508095,32,134.92607943748254,31,158.24635900229904,30 +7060356140,5.26711282562,0.993113310512,0.6523947750362845,0.042553191,15.39693277377155,0,47,13.981762761137643,22.314371698027365,3.6003684827436384,54.99204958900418,7.795864089885151,0,38.983050847457626,117,93.8363614307371,40,157.26955800876289,31,126.06983068722155,34,152.2043687500174,31 +7060360220,0.829789336547,2.70699376929,0.6648476052249638,0.02,9.577981801703157,4,50,6.571428573306123,3.5154416280402554,10.321221687365378,57.43389839644254,4.849579158578262,20,41.52542372881356,117,146.65799418372396,23,136.66927163987302,33,140.89927828275557,29,141.0191796062094,32 +7060343060,2.5822753656,3.54388927235,0.6454765360425737,0.044444444,14.270309929698753,0,45,14.603174461315191,10.9399312758931,13.603044404268696,53.63546691820507,7.225425891541318,0,37.28813559322034,117,95.50355754693173,38,115.20818749799075,35,118.11312332031568,36,139.59570642573294,33 +7060354140,1.65285881822,3.782039541,0.6564709878640027,0.042553191,0.5671332174421176,0,47,13.981762761137643,7.002414274234164,14.53693275572297,55.7913454343195,0.28715415628280216,0,38.983050847457626,117,105.0513587466298,31,108.45147394616788,38,115.14719654527755,37,137.34005978948338,34 +7060343940,1.62518691491,3.66413200352,0.6464925012094823,0.044444444,0.815529285104668,0,45,14.603174461315191,6.885180951825026,14.0745672231312,53.83468535237838,0.412923490766457,0,37.28813559322034,117,99.66433808839119,37,104.69076559674701,40,112.78003739734663,39,134.43476387639285,35 +7060343930,1.49687583967,2.78008017338,0.6454765360425737,0.044444444,8.40004371400288,0,45,14.603174461315191,6.341585034921179,10.60782451933464,53.63546691820507,4.253158729112065,0,37.28813559322034,117,101.59951373037069,34,106.54713435348435,39,108.24299889150228,40,131.75196253079332,36 +7060314550,11.7521732477,0.476950750933,0.5386429608127721,0,2.7235707876829585,1,28,0,49.78863578414467,1.5762758601311346,32.68669990567307,1.3790141064700494,5,22.88135593220339,117,34.00893241760575,55,192.89796563191027,22,128.92621171563383,32,130.06901690895617,37 +7060344050,7.28980203754,9.32228515539,0.5522496371552975,0,1.3602019350983376,1,30,0,30.883589863400545,36.26258888369664,35.354803934779675,0.6887052990123709,5,24.57627118644068,117,41.84330351146441,53,115.09726274860697,36,138.79760134957354,30,125.68451846957169,38 +7060343150,1.25320546907,3.27244034196,0.6276867786301749,0.023809524,6.0655121532188225,1,42,7.823129316520895,5.30926402692674,12.538577857399057,50.14711147900745,3.071125198976734,5,34.74576271186441,117,106.2222937081936,30,102.07244264166118,42,106.0385269770625,42,117.83183170006778,39 +7060293370,11.5883800023,0.974542689603,0.5014513788098693,0,5.685367582652945,1,22,0,49.09471798126343,3.527545190775504,25.393882226115064,2.87864820005501,5,17.796610169491526,117,16.130454881982335,56,175.594662303549,25,120.41091944656912,35,117.70941876604115,40 +7060334070,2.47123329345,7.17675697236,0.6093241281920527,0,9.309643006863226,0,37,0,10.469496304380485,27.849061621238224,46.54641867308624,4.713712307058646,0,30.508474576271187,117,85.97239949798822,42,83.5025238219469,47,103.68304493510605,43,105.42827642575051,41 +7060360130,2.02650426307,3.36567533399,0.5921198668146503,0,14.224707472063823,3,34,0,8.585380809354142,12.904191860265094,43.172871897714735,7.202336191283438,15,27.966101694915253,117,103.8737087895801,32,108.94320243360265,37,113.51026820218485,38,104.43967199721055,42 +7060320860,2.25606258905,5.36515269096,0.5758572206095791,0,3.550546753542847,2,32,0,9.557915475286933,20.744991802486204,39.98396442527961,1.797733363336356,10,26.271186440677965,117,86.18976945161559,41,90.90235747868329,46,108.03180277712667,41,99.81843509282291,43 +7060034330,1.19936535051,3.12676477769,0.5994648040638607,0,20.061818644343443,2,32,0,5.081167827435839,11.96732209802294,44.61312491577955,10.15781610025704,10,26.271186440677965,117,102.9974297088934,33,93.7326796868127,45,98.54620559243583,44,93.88044384152298,44 +7060314420,4.88395898173,0.49106846724,0.5386429608127721,0,8.867831923014275,1,28,0,20.691122382291855,1.6316374219004388,32.68669990567307,4.490011962258211,5,22.88135593220339,117,63.078765038573906,47,119.083791028235,34,85.47840569955105,49,89.93949593615255,45 +7060334080,1.79747128982,0.99116001859,0.6093241281920527,0,12.19948865628071,0,37,0,7.615071825019205,3.592708795507986,46.54641867308624,6.1769156802355525,0,30.508474576271187,117,100.95500039021462,35,100.52324250231946,43,75.15909354351109,52,89.36073591240941,46 +7060343960,4.82840645874,3.60363768617,0.5367868706039969,0,1.9134380146719867,0,26,0,20.455771500736333,13.837343311427908,32.32274315093342,0.9688229924810524,0,21.1864406779661,117,49.26692071058712,51,96.91196655224564,44,86.21141985528224,48,88.65867135667041,47 +7060321100,0.905082881193,3.41720047149,0.5757619738751815,0,2.847369792483362,2,30,0,3.834426278135555,13.106243808352746,39.96528769707587,1.441696735023726,10,24.57627118644068,117,94.0056744265818,39,82.3160211095627,48,91.81182160580244,46,86.38653605842299,48 +7060334690,1.65007495516,7.0916034073,0.5445172914268555,0,9.088410037439813,1,29,0,6.990620307191141,27.51513832589561,33.83858481754944,4.601696349672295,5,23.728813559322035,117,66.66122020989441,45,60.662433803137226,51,92.3678387539455,45,85.97265619906497,49 +7060334580,4.53253219458,6.2776764171,0.507721335268505,0,6.740935593120572,0,25,0,19.20228623757047,24.323384903189503,26.623344562727382,3.413109503843051,0,20.338983050847457,117,34.65168226207234,54,75.75172959243326,50,87.45447884714572,47,85.62491283647725,50 +7060314650,2.06297323007,3.87384653642,0.5514069010721476,0,5.997723117405958,1,31,0,8.739883306646917,14.896946977377109,35.18955362071889,3.0368018620587964,5,25.42372881355932,117,75.23377485666204,43,80.9858489772034,49,84.11164611127788,50,85.12358582580526,51 +7060341270,1.28087408008,6.35964427392,0.5410640108102698,0,1.7861701406990331,0,29,0,5.426483401351779,24.64481568347709,33.16143841567964,0.904383986013072,0,23.728813559322035,117,62.87376364626522,48,51.527847130122595,54,75.63324828552238,51,76.70169799507639,52 +7060338230,1.24874035401,3.40807138374,0.5217975595334086,0,3.8714351366794406,0,27,0,5.290347356556845,13.070444777944518,29.38352123852729,1.9602074265145712,0,22.033898305084747,117,60.62053849167957,50,56.654643697624294,53,58.97076304972818,53,65.2538000490994,53 +7060341150,0.529956769221,4.19464059148,0.5217975595334086,0,2.28859505386997,0,27,0,2.2451868269769,16.154916716124728,29.38352123852729,1.1587746756570034,0,22.033898305084747,117,62.12346305216941,49,45.8510439053926,55,57.50247039286427,55,62.59343890723076,54 +7060338280,0.850015590895,1.06439650596,0.52037512560008925,0,8.527788333158073,0,26,0,3.601131107746244,3.879900167762065,29.104599214287916,4.317839123959711,0,21.1864406779661,117,65.57903331904484,46,60.39035488216801,52,46.89407523164339,56,57.20087679904276,55 +7060293380,0.393342114077,4.9433081409,0.4760885341074021,0,14.63145061670339,1,20,0,1.6664124025041906,19.09076015429737,20.420536315860403,7.408280734160032,5,16.10169491525424,117,45.54965389799319,52,32.30905546759145,56,58.634745392576534,54,53.36741123027137,56 +7060038340,16.2450450343,2.56317862949,0.7546015305449267,0.068181818,19.670826503122644,4,44,22.40259734925789,68.82289883431417,9.757261442502609,75.03355342945694,9.95984669658482,20,36.440677966101696,118,89.32855648725217,17,319.5474911860683,1,281.1190556230472,1,272.4061192984396,1 +7060038180,7.6310141921,2.80583538363,0.7906159288824384,0.09375,2.0332693598510243,2,32,30.80357143737245,32.32915123579062,10.708821637574635,82.09553968467863,1.0294966926538065,10,26.271186440677965,118,106.80194702304138,8,210.35809790077326,7,226.15905203827694,2,224.8115056664284,2 +7060038330,7.11298259502,1.83373081187,0.7507256894049348,0.068181818,10.234636838831346,4,44,22.40259734925789,30.13448596256189,6.896786735794529,74.27354803934782,5.182060537136749,20,36.440677966101696,118,128.14329385029174,4,223.45066496041653,5,219.4335992600303,3,216.8223655781237,3 +7060038190,10.2006543637,2.11721715254,0.7422318247789946,0.045454545,19.54604682808633,3,44,14.935064789981448,43.215552916870166,8.008457080946208,72.60800431208733,9.896667529402013,15,36.440677966101696,118,114.23816637280575,7,245.68254956172905,2,217.68157734070707,4,215.07523686867518,4 +7060390740,10.5430197755,3.53167234341,0.7363215985418706,0.046511628,6.547806567148088,2,43,15.282392061509254,44.66600011790465,13.55513663707496,71.44908070434938,3.315323297746448,10,35.59322033898305,118,101.1715398192103,11,234.39199377338582,3,213.69545097098552,5,213.48071047596835,5 +7060035860,5.23166903979,2.62423379205,0.7180431165704981,0.097560976,11.376522386078506,3,41,32.05574926630164,22.164212429072883,9.9966846664786,67.86489231284983,5.760226635679345,15,33.898305084745765,118,104.7826871578128,9,183.68234182914682,9,204.11318330483027,8,211.11903234892137,6 +7060038320,6.11522091202,2.26723968596,0.7453475245928077,0.066666667,4.07719736119596,4,45,21.90476202054422,25.90742157308954,8.596759152620557,73.21895521717651,2.064390146808177,20,37.28813559322034,118,131.10612300346207,3,210.6111888925858,6,212.80909842230227,6,210.7187870916067,7 +7060039620,1.74256027426,3.28270241618,0.7398403483309144,0.166666667,0.8338445843219473,1,6,54.761904887074834,7.382438719921866,12.578819808962423,72.13906481606253,0.4221969990594932,5,4.237288135593221,118,59.718643289712674,25,106.34782641785495,23,198.06382909153757,9,198.2510220099348,8 +7060038980,1.14612413155,3.30043788034,0.7398403483309144,0.166666667,8.854115238858373,1,6,54.761904887074834,4.855608894323436,12.648368096606816,72.13906481606253,4.483066851355916,5,4.237288135593221,118,62.21069897148891,24,99.87305833974011,24,194.35555967271347,10,194.79854232204877,9 +7060034580,7.30750869392,2.74081757388,0.72105734490319,0.021276596,3.3170231139972106,5,47,6.990881544854537,30.958604947579236,10.45385919093624,68.4559458924788,1.6794943227257964,25,38.983050847457626,118,140.67985618445556,1,223.70349903081328,4,207.5028795741593,7,193.2082190123362,10 +7060035480,3.37021938672,2.88318429225,0.7512296403805838,0.083333333,12.501125134062466,2,36,27.3809522792517,14.278093253169589,11.012139560192985,74.37236670709248,6.329642007280885,10,29.661016949152543,118,118.60569820497426,6,158.39169072388847,12,185.08112349214792,11,189.44292677281305,11 +7060035470,4.66896139257,2.55558628943,0.6916774883507754,0.078947368,9.534905784479356,2,38,25.93984949312567,19.780274964070603,9.727488652480128,62.69491272987752,4.82776866025023,10,31.35593220338983,118,96.99139862406933,12,161.57485952880702,11,175.06859721735333,13,183.7695495174544,12 +7060390750,0.53479702027,3.7967873467,0.7283502660861151,0.071428571,16.713293089764196,3,42,23.469387620991252,2.2656927786424483,14.594765165616163,69.88599919148362,8.462371263050233,15,34.74576271186441,118,136.14215958018212,2,131.13371331260498,15,170.51630115984872,14,173.0832161992371,13 +7060034860,9.07690712598,3.96934308167,0.6490255027990877,0.035714286,0.6077524792242681,2,28,11.734693974781342,38.454744787766934,15.271429490954157,54.33137621036825,0.3077207359780114,10,22.88135593220339,118,68.34704594665698,23,183.9527297396144,8,179.4244213073488,12,169.43308038300114,14 +7060364000,1.87593174176,3.30182806496,0.6702195210449927,0.09375,6.214982357947949,2,32,30.80357143737245,7.9474732271058,12.653819600946274,58.4872658671338,3.1468058180413494,10,26.271186440677965,118,89.70729241608393,16,119.06539514375484,19,161.12761410626797,16,168.52680869188674,15 +7060034870,4.15179347956,2.41525075565,0.659143686502177,0.066666667,15.555337581329834,2,30,21.90476202054422,17.589268729105473,9.177173420693132,56.31542918744103,7.876068528760092,10,24.57627118644068,118,86.17145603392737,19,142.0125796172841,14,157.7976233646689,17,159.91380009041683,16 +7060363050,1.52978186531,5.55626926838,0.6762803234501348,0.057142857,5.202928845312221,2,35,18.775510162507288,6.480992963238976,21.494441074301452,59.67571563324157,2.634377026620385,10,28.8135593220339,118,104.56568110280907,10,109.43397589136775,22,153.8216239224125,18,152.60262092815964,17 +7060355150,1.86090754037,8.25632320224,0.6723685119911534,0.023809524,2.5634354937977033,3,42,7.823129316520895,7.883822489902725,32.08249932602639,58.90865690030222,1.297933477743456,15,34.74576271186441,118,120.15763075177594,5,113.77653050092542,21,162.06018815424875,15,149.91846152629918,18 +7060034790,7.62047957002,3.305254934,0.6387427431059507,0,0.5531540903359466,2,32,0,32.284520812905434,12.66725780992482,52.31505187980057,0.28007616374713123,10,26.271186440677965,118,88.65801729731135,18,170.97566207052105,10,149.8754307844311,19,139.4754276233421,19 +7060035360,4.45726112192,2.5074136402,0.6207910014513789,0.05,31.205806023508593,2,20,16.428571433265308,18.88339679110285,9.538583234780573,48.79493329739928,15.800304281977796,10,16.10169491525424,118,69.34322252715307,22,127.2267966018444,17,143.31772157818577,20,135.84576393410578,20 +7060035320,4.00688484135,2.46367827258,0.6182182597276936,0.047619048,2.6384816792864068,2,21,15.64625863304179,16.975356454520334,9.36707828289276,48.29044988161009,1.3359312966834622,10,16.949152542372882,118,72.17949369272617,21,122.75534207433026,18,138.6337544793934,21,132.0354771979307,21 +7060035370,2.55108023712,2.56768875139,0.6541944847605226,0.04,1.7542366965543583,2,25,13.142857146612243,10.80777164401954,9.77494754602844,55.344950815254016,0.8882152597701797,10,20.338983050847457,118,96.38985978569892,13,118.12482728478956,20,135.71747214328025,22,129.58234868886692,22 +7060034800,5.58178239394,3.07922931315,0.6306475022238869,0,0.0679664292077916,2,31,0,23.647484152994338,11.780915352120353,50.72767342893532,0.03441313931202613,10,25.42372881355932,118,94.16736163848539,14,147.26872174891116,13,134.02364246814656,23,124.67752809350175,23 +7060035330,1.81917393942,2.52118884814,0.6182182597276936,0.047619048,2.3196418635098723,2,21,15.64625863304179,7.707016122785304,9.592601675771428,48.29044988161009,1.1744944759863545,10,16.949152542372882,118,81.33507232802188,20,99.03565365449535,25,125.00234937630098,24,119.35709047274477,24 +7060038810,4.9273576399,1.61828216425,0.709433962264151,0,36.964394128994115,0,5,0,20.8749828427875,6.051921082316735,66.176741679019,18.716025937347613,0,3.389830508474576,118,93.0258511617854,15,127.45976223455995,16,122.82357932386999,25,101.4018981904175,25 +7060037900,9.78100053838,3.83572188717,0.8058140527618884,0.117647059,11.351724104215986,3,34,38.65546225390156,41.43766970974763,14.747444035223468,85.0757072536601,5.747670626095392,15,27.966101694915253,119,99.4699148969533,8,242.4846123573101,1,268.4313382547411,1,263.4716126464833,1 +7060037890,8.80071105558,2.93412169226,0.8091955214596724,0.071428571,0.9072482068864453,3,28,23.469387620991252,37.284627119798685,11.211886739956268,85.73877221013727,0.45936314603396144,15,22.88135593220339,119,118.1482682487765,5,229.91601339942142,2,239.98611458864804,2,223.70944175052495,2 +7060035870,2.98495495967,2.87917948786,0.7774552491533624,0.102564103,9.962414514216844,4,39,33.69963385248561,12.645902352415664,10.996435021244212,79.51489017652608,5.044227354347113,20,32.20338983050848,119,135.91039997235475,2,177.8385215125303,5,218.71228001967324,3,216.45164925243284,3 +7060037700,7.92082045614,2.65199939479,0.7963957426221577,0.066666667,2.929782956948559,2,30,21.90476202054422,33.55692913049406,10.105565387533344,83.22889098504245,1.4834246453929063,10,24.57627118644068,119,115.91402085367822,6,212.95938882713443,3,217.39617958846048,4,209.328274262495,4 +7060037350,2.81688402353,4.06050575663,0.8216877462160481,0.071428571,17.891574885035645,2,28,23.469387620991252,11.93386191112857,15.628917058426424,88.18834581400274,9.058965720522952,10,22.88135593220339,119,139.86816024026507,1,156.84557691154527,7,199.0185459309534,6,188.381180338764,5 +7060037340,7.14071965357,3.45613727137,0.7759928750494788,0.045454545,47.60485533282914,2,22,14.935064789981448,30.251995318215716,13.258931538066284,79.22813636976147,24.103565831994835,10,17.796610169491526,119,111.66533225969721,7,189.40038358644807,4,201.459580736325,5,182.7856556995227,6 +7060037690,5.01491659711,4.00543916398,0.7768650217706822,0.04,4.122248933459638,2,25,13.142857146612243,21.245930491216814,15.412977560555476,79.3991537528635,2.087200919596829,10,20.338983050847457,119,124.40158350130547,4,167.00955296905119,6,188.06178881725913,7,170.86117047263207,7 +7060063860,1.06087374377,1.90298114152,0.7755945070894273,0.076923077,16.063418286001355,2,26,25.274725307221352,4.4944416090754755,7.168346690612592,79.15002124946878,8.1333228914875,10,21.1864406779661,119,132.35036313774148,3,134.3588994235191,8,170.0745739455864,8,166.46036782663504,8 +7060305280,15.208985617,1.07818373543,0.7636593473477223,0.225806452,2.7827121811319304,5,31,74.19354853548387,64.4335842887021,3.933965750277879,76.80968133153084,1.408958919061117,25,25.42372881355932,120,37.31475972586661,15,316.8654975559747,1,348.38050265989074,1,354.1460760806259,1 +7060329370,7.25516408584,3.50824227514,0.7844702467343977,0.263157895,11.962035096067057,3,38,86.4661655247046,30.736844548712668,13.463257388081589,80.89044603153215,6.05668681944933,15,31.35593220338983,120,54.43039393033088,11,219.13470252511604,4,307.3116846184194,3,334.9189374830361,2 +7060298200,4.95032414638,3.71814103315,0.7586979058677171,0.257142857,10.214485900513951,5,35,84.48979589556852,20.972281529784876,14.286359567228589,75.83680289525863,5.171857597431428,25,28.8135593220339,120,65.99469279200123,7,199.45658116452188,6,305.7571419914851,4,320.6351475979155,3 +7060334780,1.48146267206,10.2255082474,0.7716900499919368,0.25,10.662587642536243,6,36,82.14285716632654,6.276286423997072,39.8045102477759,78.38440461752684,5.398743064683158,30,29.661016949152543,120,81.35652791030617,3,147.55987313643743,10,320.2251242119652,2,317.20475808367024,4 +7060301180,11.4942655368,0.62481488785,0.7143623398750553,0.260869565,1.4768899852256914,0,23,85.71428566734696,48.69599761303571,2.1561139423949407,67.14313669199628,0.7477874678438433,0,18.64406779661017,120,-10.22072915495444,23,225.4031620908981,2,272.1615604264941,7,311.213002100208,5 +7060305410,6.60391829855,1.19018531026,0.7636593473477223,0.225806452,4.999026345946844,4,31,74.19354853548387,27.977811080950772,4.373171494916334,76.80968133153084,2.5311359331278105,20,25.42372881355932,120,67.92593006129871,4,216.76514577308285,5,283.6650867555567,5,299.0534127612521,6 +7060289980,0.922635508165,4.94588948433,0.7396070910221854,0.285714286,14.775871985001832,2,28,93.87755114110789,3.9087888094686343,19.10088269824429,72.09332588984927,7.4814049971447,10,22.88135593220339,120,41.094646105316045,14,120.12080782221852,14,260.35982705175314,10,292.02844922348316,7 +7060290340,1.77783640753,0.809322665288,0.7335376014621298,0.296296296,8.830463060446833,1,27,97.35449728495844,7.531887720905297,2.8796473025663816,70.90317267813562,4.471091143503934,5,22.033898305084747,120,33.243165092532465,17,136.3299534723536,12,241.84427021350476,13,288.25482633057493,8 +7060295800,2.28835284865,4.1209923854,0.7636593473477223,0.225806452,20.023158301611055,5,31,74.19354853548387,9.69471468175834,15.86611081994202,76.80968133153084,10.138241371791658,25,25.42372881355932,120,86.08755679797831,2,166.1766830175461,8,278.4735508745832,6,284.5675548140198,9 +7060327530,4.52811983911,3.48075613434,0.7559748427672957,0.233333333,0.1876746320596981,2,30,76.66666657904761,19.1835930856899,13.355472555987712,75.30284328257648,0.0950244893490642,10,24.57627118644068,120,54.825884289887526,10,168.59118249691124,7,259.4356472406999,11,283.5875006719562,10 +7060256650,5.35103466633,8.13447559701,0.7018735981000132,0.227272727,19.46661773078381,2,22,74.6753246070501,22.669910531005595,31.604683114346475,64.69424605848268,9.856450529187876,10,17.796610169491526,120,19.425002684978452,21,139.85707833395327,11,266.6164149504631,9,276.4844876731407,11 +7060289830,11.1301657212,4.88565822011,0.7288824383164005,0.16,24.501441724454327,2,25,52.57142858644898,47.153471586070395,18.86469032958864,69.99035170462201,12.405711750933648,10,20.338983050847457,120,37.25442717703554,16,221.53922293439803,3,268.8617041062252,8,271.2186904000272,12 +7060290130,3.64891521251,4.24057115559,0.6911586840832125,0.25,29.82791656253197,1,24,82.14285716632654,15.458801252648351,16.335029965801937,62.59318151192563,15.102643316046173,5,19.491525423728813,120,18.52185000760835,22,129.46337562613485,13,236.81605871329845,14,267.1820047720142,13 +7060295790,1.9143611608,3.28214196311,0.7573536526366715,0.166666667,27.746529354280575,5,30,54.761904887074834,8.1102812718521875,12.57662203443722,75.57321115752593,14.048783299468958,25,24.57627118644068,120,107.72271929064411,1,161.54050754455673,9,246.19093409346783,12,243.02754110475115,14 +7060234190,3.03393378809,10.3183686211,0.6376018756280004,0.16,1.277213981400755,2,26,52.57142858644898,12.853403467140527,40.168655213060696,52.09134161889854,0.6466863580326586,10,21.1864406779661,120,31.041307394516423,18,93.25385294322717,17,215.74210121663498,15,217.48192230047238,15 +7060223480,0.576138732555,10.2763779224,0.659582555808971,0.15,9.007096337453632,2,21,49.28571429979592,2.4408388909628744,40.00399184901055,56.40148613009414,4.5605251265208935,10,16.949152542372882,120,48.30795518900156,13,67.541280140237,21,201.35091068477197,16,197.07835603985762,16 +7060245930,0.0896582512087,9.7514735389,0.659582555808971,0.142857143,72.56305961004044,2,21,46.938775570553936,0.3798414063838744,37.94561882194348,56.40148613009414,36.74054825844902,10,16.949152542372882,120,53.97977178928029,12,64.17968596732979,23,193.18860487819734,17,188.9020854783853,17 +7060256810,0.106152289805,4.71465695667,0.6800072568940494,0.15,7.400926063072918,2,20,49.28571429979592,0.4497191781774041,18.19412174734077,60.40652203207116,3.747279698051708,10,16.10169491525424,120,67.22784283684697,5,88.12897755406483,18,181.74238164285367,18,186.58307386840795,18 +7060234330,0.393518976386,5.02971613119,0.659582555808971,0.142857143,26.55213821070399,2,21,46.938775570553936,1.6671616880108922,19.429602583751016,56.40148613009414,13.444032263535204,10,16.949152542372882,120,61.95045962674949,9,85.95890943104189,19,176.59723797909314,19,181.42069584750737,19 +7060301390,3.25091196037,0.376262994719,0.6012145748987855,0.157894737,10.60338784674269,1,19,51.87969931482277,13.772641719084488,1.181436403533603,44.95623373215414,5.368768681478999,5,15.254237288135592,120,26.577939246988272,19,113.00709380292889,15,157.3629129650444,21,179.92146326448398,20 +7060348000,0.116574585635,3.07122212418,0.5894732348672415,0.176470588,62.43586120286352,1,17,57.983193216566626,0.4938737256110914,11.749515763325574,42.653899506170866,31.612886553333382,5,13.559322033898304,120,22.213880173687038,20,64.906534263066,22,152.9619507161036,23,174.07209075456888,21 +7060223370,0.30489394478,3.76403352744,0.6565596011863445,0.130434783,8.39816114580883,1,23,42.85714299795919,1.2916975651642506,14.466323528972422,55.808721430956815,4.252205536289353,5,18.64406779661017,120,64.35029010617147,8,83.38365098388402,20,154.39930590616953,22,167.04003935727897,22 +7060246020,2.32098116462,3.54880893364,0.6711863112061721,0.105263158,10.498406876104816,1,19,34.58646620988185,9.832946079972134,13.62233648568383,58.676841679728206,5.315614108885239,5,15.254237288135592,120,66.85967585967194,6,105.14579655986427,16,159.38183298336992,20,162.7211240452244,23 +7060330450,9.35859022478,3.52704298065,0.6854019382929912,0.290322581,28.847371755123714,4,31,95.39170521296909,39.64810851012758,13.53698293949264,61.46435355638532,14.606168194601516,20,25.42372881355932,142,2.028348839531091,1,221.04781195226144,1,317.73718197548595,1,343.2593445382289,1 +7060328380,3.5726937633,3.65488809987,0.6367924528301887,0.3,5.614426000269181,1,20,98.57142859959184,15.135885491140236,14.038317950814031,51.93262363562862,2.8427286475130416,5,16.10169491525424,142,-19.758058291404083,3,116.48343332266174,2,241.41122227317214,2,281.65665503337465,2 +7060328250,2.28878203002,4.08097666781,0.6185182741786516,0.227272727,19.36651811432,0,22,74.6753246070501,9.696532928857485,15.70919219564558,48.34927907290123,9.805767512088648,0,17.796610169491526,142,1.053676363985474,2,89.29743741364301,3,188.89126946681853,3,224.28734007592294,3 diff --git a/Analysis/Figures/Older/AIS_maps.png b/figs/v1/Older/AIS_maps.png similarity index 100% rename from Analysis/Figures/Older/AIS_maps.png rename to figs/v1/Older/AIS_maps.png diff --git a/Analysis/Figures/Older/PA_maps.png b/figs/v1/Older/PA_maps.png similarity index 100% rename from Analysis/Figures/Older/PA_maps.png rename to figs/v1/Older/PA_maps.png diff --git a/Analysis/Figures/Older/Rest_maps.png b/figs/v1/Older/Rest_maps.png similarity index 100% rename from Analysis/Figures/Older/Rest_maps.png rename to figs/v1/Older/Rest_maps.png diff --git a/Analysis/Figures/Older/SAR_maps.png b/figs/v1/Older/SAR_maps.png similarity index 100% rename from Analysis/Figures/Older/SAR_maps.png rename to figs/v1/Older/SAR_maps.png diff --git a/Analysis/Figures/SAR_vs_AIS.png b/figs/v1/SAR_vs_AIS.png similarity index 100% rename from Analysis/Figures/SAR_vs_AIS.png rename to figs/v1/SAR_vs_AIS.png diff --git a/Analysis/Figures/coauthor_weightings.png b/figs/v1/coauthor_weightings.png similarity index 100% rename from Analysis/Figures/coauthor_weightings.png rename to figs/v1/coauthor_weightings.png diff --git a/Analysis/Figures/national_priorities.png b/figs/v1/national_priorities.png similarity index 100% rename from Analysis/Figures/national_priorities.png rename to figs/v1/national_priorities.png diff --git a/Analysis/Figures/normalized_index_values.png b/figs/v1/normalized_index_values.png similarity index 100% rename from Analysis/Figures/normalized_index_values.png rename to figs/v1/normalized_index_values.png diff --git a/Analysis/Figures/priorities_by_feow.png b/figs/v1/priorities_by_feow.png similarity index 100% rename from Analysis/Figures/priorities_by_feow.png rename to figs/v1/priorities_by_feow.png diff --git a/Analysis/Figures/protection_vs_restoration.png b/figs/v1/protection_vs_restoration.png similarity index 100% rename from Analysis/Figures/protection_vs_restoration.png rename to figs/v1/protection_vs_restoration.png diff --git a/Analysis/Figures/scale_dependency.png b/figs/v1/scale_dependency.png similarity index 100% rename from Analysis/Figures/scale_dependency.png rename to figs/v1/scale_dependency.png diff --git a/figs/v2/.gitignore b/figs/v2/.gitignore new file mode 100644 index 0000000..aab52d9 --- /dev/null +++ b/figs/v2/.gitignore @@ -0,0 +1 @@ +*.png \ No newline at end of file diff --git a/Analysis/Calculating indices/FBCI_calculationcode.docx b/inst/Analysis/Calculating_indices/FBCI_calculationcode.docx similarity index 100% rename from Analysis/Calculating indices/FBCI_calculationcode.docx rename to inst/Analysis/Calculating_indices/FBCI_calculationcode.docx diff --git a/Analysis/Calculating indices/FBCI_level5_270123.csv b/inst/Analysis/Calculating_indices/FBCI_level5_270123.csv similarity index 100% rename from Analysis/Calculating indices/FBCI_level5_270123.csv rename to inst/Analysis/Calculating_indices/FBCI_level5_270123.csv diff --git a/Analysis/Calculating indices/FBCI_level6_270123.csv b/inst/Analysis/Calculating_indices/FBCI_level6_270123.csv similarity index 100% rename from Analysis/Calculating indices/FBCI_level6_270123.csv rename to inst/Analysis/Calculating_indices/FBCI_level6_270123.csv diff --git a/Analysis/Calculating indices/H5_importance_priority.csv b/inst/Analysis/Calculating_indices/H5_importance_priority.csv similarity index 100% rename from Analysis/Calculating indices/H5_importance_priority.csv rename to inst/Analysis/Calculating_indices/H5_importance_priority.csv diff --git a/Analysis/Calculating indices/calculate I and Q.R b/inst/Analysis/Calculating_indices/calculate_I_and_Q.R similarity index 69% rename from Analysis/Calculating indices/calculate I and Q.R rename to inst/Analysis/Calculating_indices/calculate_I_and_Q.R index f536ace..c28c30f 100644 --- a/Analysis/Calculating indices/calculate I and Q.R +++ b/inst/Analysis/Calculating_indices/calculate_I_and_Q.R @@ -19,10 +19,10 @@ for(i in 2:ncol(Ivals)){ } Ivals = Ivals %>% rowwise() %>% - mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% - mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) + dplyr::mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% + dplyr::mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) -Ivals = Ivals %>% mutate(Ii = QijSij / TotalQ) %>% mutate(Qi = QijSij / richness) +Ivals = Ivals %>% dplyr::mutate(Ii = QijSij / TotalQ) %>% dplyr::mutate(Qi = QijSij / richness) towrite = Ivals %>% select(HYBAS_ID, Ii, Qi) @@ -50,10 +50,10 @@ for(i in 2:ncol(Ivals)){ } Ivals = Ivals %>% rowwise() %>% - mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% - mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) + dplyr::mutate(QijSij = sum(c_across(Acipenser_brevirostrum:Percina_shumardi))) %>% + dplyr::mutate(richness = sum(c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 )) -Ivals = Ivals %>% mutate(Ii = QijSij / TotalQ) %>% mutate(Qi = QijSij / richness) +Ivals = Ivals %>% dplyr::mutate(Ii = QijSij / TotalQ) %>% dplyr::mutate(Qi = QijSij / richness) towrite = Ivals %>% select(HYBAS_ID, Ii, Qi) diff --git a/Analysis/Calculating indices/data carpentry_lvl5.R b/inst/Analysis/Calculating_indices/data_carpentry_lvl5.R similarity index 77% rename from Analysis/Calculating indices/data carpentry_lvl5.R rename to inst/Analysis/Calculating_indices/data_carpentry_lvl5.R index b21aa94..6b37a65 100644 --- a/Analysis/Calculating indices/data carpentry_lvl5.R +++ b/inst/Analysis/Calculating_indices/data_carpentry_lvl5.R @@ -47,12 +47,12 @@ colnames(data5)<- c("HYBAS_ID", #Standardize data5 = data5 %>% - mutate(FBCI_n = (100* (FBCI-min(FBCI)) / ( max(FBCI)-min(FBCI) ) ) ) %>% - mutate(WSI_n = (100* (WSI-min(WSI)) / ( max(WSI)-min(WSI) ) ) ) %>% - mutate(CCI_n = (100* (CCI-min(CCI)) / ( max(CCI)-min(CCI) ) ) ) %>% - mutate(Priority_n = (100* (Fish_priority-min(Fish_priority)) / ( max(Fish_priority)-min(Fish_priority) ) ) ) %>% - mutate(SARI_n = (100* (SARI-min(SARI)) / ( max(SARI)-min(SARI) ) ) ) %>% - mutate(Fish_richness_n = (100* (Fish_richness-min(Fish_richness)) / ( max(Fish_richness)-min(Fish_richness) ) ) ) + dplyr::mutate(FBCI_n = (100* (FBCI-min(FBCI)) / ( max(FBCI)-min(FBCI) ) ) ) %>% + dplyr::mutate(WSI_n = (100* (WSI-min(WSI)) / ( max(WSI)-min(WSI) ) ) ) %>% + dplyr::mutate(CCI_n = (100* (CCI-min(CCI)) / ( max(CCI)-min(CCI) ) ) ) %>% + dplyr::mutate(Priority_n = (100* (Fish_priority-min(Fish_priority)) / ( max(Fish_priority)-min(Fish_priority) ) ) ) %>% + dplyr::mutate(SARI_n = (100* (SARI-min(SARI)) / ( max(SARI)-min(SARI) ) ) ) %>% + dplyr::mutate(Fish_richness_n = (100* (Fish_richness-min(Fish_richness)) / ( max(Fish_richness)-min(Fish_richness) ) ) ) #join with feow feow5 = read_csv("hyc_5_feow_join.csv") diff --git a/Analysis/Calculating indices/data carpentry_lvl6.R b/inst/Analysis/Calculating_indices/data_carpentry_lvl6.R similarity index 77% rename from Analysis/Calculating indices/data carpentry_lvl6.R rename to inst/Analysis/Calculating_indices/data_carpentry_lvl6.R index 0134503..3dbe301 100644 --- a/Analysis/Calculating indices/data carpentry_lvl6.R +++ b/inst/Analysis/Calculating_indices/data_carpentry_lvl6.R @@ -47,12 +47,12 @@ colnames(data6)<- c("HYBAS_ID", #Standardize data6 = data6 %>% - mutate(FBCI_n = (100* (FBCI-min(FBCI)) / ( max(FBCI)-min(FBCI) ) ) ) %>% - mutate(WSI_n = (100* (WSI-min(WSI)) / ( max(WSI)-min(WSI) ) ) ) %>% - mutate(CCI_n = (100* (CCI-min(CCI)) / ( max(CCI)-min(CCI) ) ) ) %>% - mutate(Priority_n = (100* (Fish_priority-min(Fish_priority)) / ( max(Fish_priority)-min(Fish_priority) ) ) ) %>% - mutate(SARI_n = (100* (SARI-min(SARI)) / ( max(SARI)-min(SARI) ) ) ) %>% - mutate(Fish_richness_n = (100* (Fish_richness-min(Fish_richness)) / ( max(Fish_richness)-min(Fish_richness) ) ) ) + dplyr::mutate(FBCI_n = (100* (FBCI-min(FBCI)) / ( max(FBCI)-min(FBCI) ) ) ) %>% + dplyr::mutate(WSI_n = (100* (WSI-min(WSI)) / ( max(WSI)-min(WSI) ) ) ) %>% + dplyr::mutate(CCI_n = (100* (CCI-min(CCI)) / ( max(CCI)-min(CCI) ) ) ) %>% + dplyr::mutate(Priority_n = (100* (Fish_priority-min(Fish_priority)) / ( max(Fish_priority)-min(Fish_priority) ) ) ) %>% + dplyr::mutate(SARI_n = (100* (SARI-min(SARI)) / ( max(SARI)-min(SARI) ) ) ) %>% + dplyr::mutate(Fish_richness_n = (100* (Fish_richness-min(Fish_richness)) / ( max(Fish_richness)-min(Fish_richness) ) ) ) #join with feow feow6 = read_csv("hyc_6_feow_join.csv") diff --git a/Analysis/FEOWscalingcorrected/FEOW_scaling.R b/inst/Analysis/FEOWscalingcorrected/FEOW_scaling.R similarity index 54% rename from Analysis/FEOWscalingcorrected/FEOW_scaling.R rename to inst/Analysis/FEOWscalingcorrected/FEOW_scaling.R index 89bc941..c97063e 100644 --- a/Analysis/FEOWscalingcorrected/FEOW_scaling.R +++ b/inst/Analysis/FEOWscalingcorrected/FEOW_scaling.R @@ -1,44 +1,44 @@ -require(tidyverse) -require(readr) - -## load data -hyb5r = read_csv("level5ranks.csv") -hyb6r = read_csv("level6ranks.csv") - -#scaling ranks level 5 hydrobasins within FEOWs -maxrank = max(hyb5r$Prot_rank_feow-1) -hyb5r = hyb5r%>% group_by(FEOW_ID)%>% - mutate(Prot_feow_scaled=(((Prot_rank_feow-1)*maxrank/max(Prot_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb5r$Rest_rank_feow-1) -hyb5r = hyb5r%>% group_by(FEOW_ID)%>% - mutate(Rest_feow_scaled=(((Rest_rank_feow-1)*maxrank/max(Rest_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb5r$SAR_rank_feow-1) -hyb5r = hyb5r%>% group_by(FEOW_ID)%>% - mutate(SAR_feow_scaled=(((SAR_rank_feow-1)*maxrank/max(SAR_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb5r$AIS_rank_feow-1) -hyb5r = hyb5r%>% group_by(FEOW_ID)%>% - mutate(AIS_feow_scaled=(((AIS_rank_feow-1)*maxrank/max(AIS_rank_feow-1))/maxrank)*(100 - 1) + 1) - -#scaling ranks level 6 hydrobasins within FEOWs -maxrank = max(hyb6r$Prot_rank_feow-1) -hyb6r = hyb6r%>% group_by(FEOW_ID)%>% - mutate(Prot_feow_scaled=(((Prot_rank_feow-1)*maxrank/max(Prot_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb6r$Rest_rank_feow-1) -hyb6r = hyb6r%>% group_by(FEOW_ID)%>% - mutate(Rest_feow_scaled=(((Rest_rank_feow-1)*maxrank/max(Rest_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb6r$SAR_rank_feow-1) -hyb6r = hyb6r%>% group_by(FEOW_ID)%>% - mutate(SAR_feow_scaled=(((SAR_rank_feow-1)*maxrank/max(SAR_rank_feow-1))/maxrank)*(100 - 1) + 1) - -maxrank = max(hyb6r$AIS_rank_feow-1) -hyb6r = hyb6r%>% group_by(FEOW_ID)%>% - mutate(AIS_feow_scaled=(((AIS_rank_feow-1)*maxrank/max(AIS_rank_feow-1))/maxrank)*(100 - 1) + 1) - -## export data -write_csv(hyb5r, file = "E:/WS_duplicate/Analysis/FEOW_ranking/hyb5feowscaled.csv") -write_csv(hyb6r, file = "E:/WS_duplicate/Analysis/FEOW_ranking/hyb6feowscaled.csv") +require(tidyverse) +require(readr) + +## load data +hyb5r = read_csv("level5ranks.csv") +hyb6r = read_csv("level6ranks.csv") + +#scaling ranks level 5 hydrobasins within FEOWs +maxrank = max(hyb5r$Prot_rank_feow-1) +hyb5r = hyb5r%>% group_by(FEOW_ID)%>% + dplyr::mutate(Prot_feow_scaled=(((Prot_rank_feow-1)*maxrank/max(Prot_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb5r$Rest_rank_feow-1) +hyb5r = hyb5r%>% group_by(FEOW_ID)%>% + dplyr::mutate(Rest_feow_scaled=(((Rest_rank_feow-1)*maxrank/max(Rest_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb5r$SAR_rank_feow-1) +hyb5r = hyb5r%>% group_by(FEOW_ID)%>% + dplyr::mutate(SAR_feow_scaled=(((SAR_rank_feow-1)*maxrank/max(SAR_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb5r$AIS_rank_feow-1) +hyb5r = hyb5r%>% group_by(FEOW_ID)%>% + dplyr::mutate(AIS_feow_scaled=(((AIS_rank_feow-1)*maxrank/max(AIS_rank_feow-1))/maxrank)*(100 - 1) + 1) + +#scaling ranks level 6 hydrobasins within FEOWs +maxrank = max(hyb6r$Prot_rank_feow-1) +hyb6r = hyb6r%>% group_by(FEOW_ID)%>% + dplyr::mutate(Prot_feow_scaled=(((Prot_rank_feow-1)*maxrank/max(Prot_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb6r$Rest_rank_feow-1) +hyb6r = hyb6r%>% group_by(FEOW_ID)%>% + dplyr::mutate(Rest_feow_scaled=(((Rest_rank_feow-1)*maxrank/max(Rest_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb6r$SAR_rank_feow-1) +hyb6r = hyb6r%>% group_by(FEOW_ID)%>% + dplyr::mutate(SAR_feow_scaled=(((SAR_rank_feow-1)*maxrank/max(SAR_rank_feow-1))/maxrank)*(100 - 1) + 1) + +maxrank = max(hyb6r$AIS_rank_feow-1) +hyb6r = hyb6r%>% group_by(FEOW_ID)%>% + dplyr::mutate(AIS_feow_scaled=(((AIS_rank_feow-1)*maxrank/max(AIS_rank_feow-1))/maxrank)*(100 - 1) + 1) + +## export data +write_csv(hyb5r, file = "E:/WS_duplicate/Analysis/FEOW_ranking/hyb5feowscaled.csv") +write_csv(hyb6r, file = "E:/WS_duplicate/Analysis/FEOW_ranking/hyb6feowscaled.csv") diff --git a/Analysis/FEOWscalingcorrected/hyb6feowscaled.csv b/inst/Analysis/FEOWscalingcorrected/hyb6feowscaled.csv similarity index 100% rename from Analysis/FEOWscalingcorrected/hyb6feowscaled.csv rename to inst/Analysis/FEOWscalingcorrected/hyb6feowscaled.csv diff --git a/Analysis/FEOWscalingcorrected/temp b/inst/Analysis/FEOWscalingcorrected/temp similarity index 100% rename from Analysis/FEOWscalingcorrected/temp rename to inst/Analysis/FEOWscalingcorrected/temp diff --git a/Analysis/Results_and_plots.R b/inst/Analysis/Results_and_plots.R similarity index 96% rename from Analysis/Results_and_plots.R rename to inst/Analysis/Results_and_plots.R index 4ffc1bc..ada27d9 100644 --- a/Analysis/Results_and_plots.R +++ b/inst/Analysis/Results_and_plots.R @@ -51,19 +51,19 @@ map5<-read_sf("map5.gpkg") # maxrank = max(map6$Prot_rank_feow-1) map6 = map6 %>% group_by(FEOW_ID) %>% - mutate(Prot_rank_feow_scaled = ( (Prot_rank_feow-1)* maxrank/max(Prot_rank_feow-1) )+1) + dplyr::mutate(Prot_rank_feow_scaled = ( (Prot_rank_feow-1)* maxrank/max(Prot_rank_feow-1) )+1) maxrank = max(map6$Rest_rank_feow-1) map6 = map6 %>% group_by(FEOW_ID) %>% - mutate(Rest_rank_feow_scaled = ( (Rest_rank_feow-1)* maxrank/max(Rest_rank_feow-1) )+1) + dplyr::mutate(Rest_rank_feow_scaled = ( (Rest_rank_feow-1)* maxrank/max(Rest_rank_feow-1) )+1) maxrank = max(map6$SAR_rank_feow-1) map6 = map6 %>% group_by(FEOW_ID) %>% - mutate(SAR_rank_feow_scaled = ( (SAR_rank_feow-1)* maxrank/max(SAR_rank_feow-1) ) +1 ) + dplyr::mutate(SAR_rank_feow_scaled = ( (SAR_rank_feow-1)* maxrank/max(SAR_rank_feow-1) ) +1 ) maxrank = max(map6$AIS_rank_feow-1) map6 = map6 %>% group_by(FEOW_ID) %>% - mutate(AIS_rank_feow_scaled = ( (AIS_rank_feow-1)* maxrank/max(AIS_rank_feow-1) ) +1 ) + dplyr::mutate(AIS_rank_feow_scaled = ( (AIS_rank_feow-1)* maxrank/max(AIS_rank_feow-1) ) +1 ) ############ @@ -493,7 +493,7 @@ p1 cor(data$Prot_rank_feow_scaled, data$Rest_rank_feow_scaled, method="spearman") data = data %>% - mutate(wsh_fill = ifelse( + dplyr::mutate(wsh_fill = ifelse( Prot_rank_feow_scaled < perc1[2] & Rest_rank_feow_scaled < perc2[2], "a", ifelse(Prot_rank_feow_scaled < perc1[2], "b", ifelse(Rest_rank_feow_scaled < perc2[2], "c","d") @@ -558,7 +558,7 @@ p2 = ggplot()+ p2 data = data %>% - mutate(wsh_fill = ifelse( + dplyr::mutate(wsh_fill = ifelse( SAR_rank_feow_scaled < perc1[2] & AIS_rank_feow_scaled < perc2[2], "a", ifelse(SAR_rank_feow_scaled < perc1[2], "b", ifelse(AIS_rank_feow_scaled < perc2[2], "c","d") @@ -606,7 +606,7 @@ ggplot()+ ####### d5 = map5 %>% st_drop_geometry() %>%ungroup() -map6 = map6 %>% ungroup() %>% mutate( +map6 = map6 %>% ungroup() %>% dplyr::mutate( protection_score5 = d5$protection_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], restoration_score5 = d5$restoration_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], SAR_score5 = d5$SAR_score[match(map6$corresponding.HYBAS5, d5$HYBAS_ID)], @@ -674,19 +674,19 @@ data5 = map5 data5$watershed_rank = data5$Rest_rank_feow maxrank1 = max(data5$watershed_rank-1) data5 = data5 %>% group_by(FEOW_ID) %>% - mutate(watershed_rank = ( (watershed_rank-1)* maxrank1/max(watershed_rank-1) )+1) + dplyr::mutate(watershed_rank = ( (watershed_rank-1)* maxrank1/max(watershed_rank-1) )+1) data5$watershed_rank[which(is.nan(data5$watershed_rank))]<-(maxrank1+1)/2 #if there is only 1 watershed in feow data6=map6 data6$watershed_rank = data6$Rest_rank_feow maxrank2 = max(data6$watershed_rank-1) data6 = data6 %>% group_by(FEOW_ID) %>% - mutate(watershed_rank = ( (watershed_rank-1)* maxrank2/max(watershed_rank-1) )+1) + dplyr::mutate(watershed_rank = ( (watershed_rank-1)* maxrank2/max(watershed_rank-1) )+1) data6$watershed_rank[which(is.nan(data6$watershed_rank))]<-(maxrank2+1)/2 #if there is only 1 watershed in feow ##identify top 25th percentile -data5 = data5 %>% mutate(priority_wsh = ifelse(watershed_rank< quantile(data5$watershed_rank)[2],"high","low")) -data6 = data6 %>% mutate(priority_wsh = ifelse(watershed_rank< quantile(data6$watershed_rank)[2],"high","low")) +data5 = data5 %>% dplyr::mutate(priority_wsh = ifelse(watershed_rank< quantile(data5$watershed_rank)[2],"high","low")) +data6 = data6 %>% dplyr::mutate(priority_wsh = ifelse(watershed_rank< quantile(data6$watershed_rank)[2],"high","low")) ### diff --git a/Analysis/project.Rproj b/inst/Analysis/project.Rproj similarity index 100% rename from Analysis/project.Rproj rename to inst/Analysis/project.Rproj diff --git a/Analysis/watershed_prioritization_level5.csv b/inst/Analysis/watershed_prioritization_level5.csv similarity index 100% rename from Analysis/watershed_prioritization_level5.csv rename to inst/Analysis/watershed_prioritization_level5.csv diff --git a/Analysis/watershed_prioritization_level6.csv b/inst/Analysis/watershed_prioritization_level6.csv similarity index 100% rename from Analysis/watershed_prioritization_level6.csv rename to inst/Analysis/watershed_prioritization_level6.csv diff --git a/Manuscript/Watershed_prioritization_v2.2.docx b/inst/Manuscript/Watershed_prioritization_v2.2.docx similarity index 100% rename from Manuscript/Watershed_prioritization_v2.2.docx rename to inst/Manuscript/Watershed_prioritization_v2.2.docx diff --git a/WSPrioritization_methodsandfiles.docx b/inst/WSPrioritization_methodsandfiles.docx similarity index 100% rename from WSPrioritization_methodsandfiles.docx rename to inst/WSPrioritization_methodsandfiles.docx diff --git a/Analysis/Co_author_weightings.csv b/inst/extdata/Co_author_weightings.csv similarity index 100% rename from Analysis/Co_author_weightings.csv rename to inst/extdata/Co_author_weightings.csv diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.cpg b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.cpg similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.cpg rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.cpg diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.dbf b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.dbf similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.dbf rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.dbf diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.prj b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.prj similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.prj rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.prj diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.sbn b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.sbn similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.sbn rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.sbn diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.sbx b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.sbx similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.sbx rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.sbx diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shp similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shp diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.xml b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.xml similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.xml rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shp.xml diff --git a/Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shx b/inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shx similarity index 100% rename from Analysis/FEOW_CAN_Extent/FEOW__CAN_Extent.shx rename to inst/extdata/FEOW_CAN_Extent/FEOW__CAN_Extent.shx diff --git a/Analysis/H12LakeErie/LEH12.cpg b/inst/extdata/H12LakeErie/LEH12.cpg similarity index 100% rename from Analysis/H12LakeErie/LEH12.cpg rename to inst/extdata/H12LakeErie/LEH12.cpg diff --git a/Analysis/H12LakeErie/LEH12.dbf b/inst/extdata/H12LakeErie/LEH12.dbf similarity index 100% rename from Analysis/H12LakeErie/LEH12.dbf rename to inst/extdata/H12LakeErie/LEH12.dbf diff --git a/Analysis/H12LakeErie/LEH12.prj b/inst/extdata/H12LakeErie/LEH12.prj similarity index 100% rename from Analysis/H12LakeErie/LEH12.prj rename to inst/extdata/H12LakeErie/LEH12.prj diff --git a/Analysis/H12LakeErie/LEH12.sbn b/inst/extdata/H12LakeErie/LEH12.sbn similarity index 100% rename from Analysis/H12LakeErie/LEH12.sbn rename to inst/extdata/H12LakeErie/LEH12.sbn diff --git a/Analysis/H12LakeErie/LEH12.sbx b/inst/extdata/H12LakeErie/LEH12.sbx similarity index 100% rename from Analysis/H12LakeErie/LEH12.sbx rename to inst/extdata/H12LakeErie/LEH12.sbx diff --git a/Analysis/H12LakeErie/LEH12.shp b/inst/extdata/H12LakeErie/LEH12.shp similarity index 100% rename from Analysis/H12LakeErie/LEH12.shp rename to inst/extdata/H12LakeErie/LEH12.shp diff --git a/Analysis/H12LakeErie/LEH12.shx b/inst/extdata/H12LakeErie/LEH12.shx similarity index 100% rename from Analysis/H12LakeErie/LEH12.shx rename to inst/extdata/H12LakeErie/LEH12.shx diff --git a/Analysis/H12LakeErie/LEH12_wpdata.xlsx b/inst/extdata/H12LakeErie/LEH12_wpdata.xlsx similarity index 100% rename from Analysis/H12LakeErie/LEH12_wpdata.xlsx rename to inst/extdata/H12LakeErie/LEH12_wpdata.xlsx diff --git a/Analysis/Calculating indices/H6_importance_priority.csv b/inst/extdata/H6_importance_priority.csv similarity index 100% rename from Analysis/Calculating indices/H6_importance_priority.csv rename to inst/extdata/H6_importance_priority.csv diff --git a/Analysis/Hybas6_data.csv b/inst/extdata/Hybas6_data.csv similarity index 100% rename from Analysis/Hybas6_data.csv rename to inst/extdata/Hybas6_data.csv diff --git a/inst/extdata/ProtectedAreas/.gitignore b/inst/extdata/ProtectedAreas/.gitignore new file mode 100644 index 0000000..4c56a3d --- /dev/null +++ b/inst/extdata/ProtectedAreas/.gitignore @@ -0,0 +1,2 @@ +ProtectedConservedArea_2023.zip +ProtectedConservedArea_2023 \ No newline at end of file diff --git a/inst/extdata/ProtectedAreas/create_protected_areas.R b/inst/extdata/ProtectedAreas/create_protected_areas.R new file mode 100644 index 0000000..d1d67cf --- /dev/null +++ b/inst/extdata/ProtectedAreas/create_protected_areas.R @@ -0,0 +1,52 @@ +# Data found here; using 2023 +# https://data-donnees.az.ec.gc.ca/data/species/protectrestore/canadian-protected-conserved-areas-database/Database + +#------------- GET DATA +download.file( + "https://data-donnees.az.ec.gc.ca/api/file?path=%2Fspecies%2Fprotectrestore%2Fcanadian-protected-conserved-areas-database%2FDatabases%2FProtectedConservedArea_2023.zip", + "inst/extdata/ProtectedAreas/ProtectedConservedArea_2023.zip" +) + +unzip( + "inst/extdata/ProtectedAreas/ProtectedConservedArea_2023.zip", + exdir = "inst/extdata/ProtectedAreas/ProtectedConservedArea_2023" +) + + +#------------- READ AND COMPUTE +# takes a few minutes to run +cpa <- terra::vect("inst/extdata/ProtectedAreas/ProtectedConservedArea_2023/ProtectedConservedArea_2023/ProtectedConservedArea_2023.gdb") +hb6 <- terra::vect("inst/extdata/map6.gpkg") |> + terra::project(cpa) + +protected_area_overlap <- as.data.frame(hb6[, "HYBAS_ID"]) +protected_area_overlap$area_m2 <- terra::expanse(hb6) + +geom_intersect <- terra::intersect(cpa[, "ZONE_ID"], hb6[, "HYBAS_ID"]) + +df_intersect <- as.data.frame(geom_intersect) +df_intersect$area_m2 <- terra::expanse(geom_intersect) + + +protected_area_overlap <- protected_area_overlap |> + dplyr::inner_join( + df_intersect |> + dplyr::group_by(HYBAS_ID) |> + dplyr::summarise(overlap_area_m2 = sum(area_m2)) + ) |> + dplyr::mutate( + perc_overlap = 100 * overlap_area_m2 / area_m2 + ) + +# checks +# jj <- df_intersect[df_intersect$HYBAS_ID == 8060043200, ] +# cpa[cpa$ZONE_ID %in% jj$ZONE_ID, ] +# ll$Shape_Area |> sum() +# hb6[hb6$HYBAS_ID == 8060043200, ] |> terra::expanse() +# # +# hb6[hb6$HYBAS_ID == 8060043200, ] |> plot() +# plot(geom_intersect[geom_intersect$HYBAS_ID == 8060043200, ], col = "#99999999", add = TRUE) + +#------------- WRITE CSV +protected_area_overlap |> + readr::write_csv("inst/extdata/protected_area_overlap.csv") \ No newline at end of file diff --git a/inst/extdata/Scaling_calcs.xlsx b/inst/extdata/Scaling_calcs.xlsx new file mode 100644 index 0000000..c558651 Binary files /dev/null and b/inst/extdata/Scaling_calcs.xlsx differ diff --git a/Analysis/Calculating indices/Spp_dist_HYBAS6_20230125.csv b/inst/extdata/Spp_dist_HYBAS6_20230125.csv similarity index 100% rename from Analysis/Calculating indices/Spp_dist_HYBAS6_20230125.csv rename to inst/extdata/Spp_dist_HYBAS6_20230125.csv diff --git a/inst/extdata/Variable_data_20241018.xlsx b/inst/extdata/Variable_data_20241018.xlsx new file mode 100644 index 0000000..416495c Binary files /dev/null and b/inst/extdata/Variable_data_20241018.xlsx differ diff --git a/Analysis/Hybas5_data.csv b/inst/extdata/hybas5/Hybas5_data.csv similarity index 100% rename from Analysis/Hybas5_data.csv rename to inst/extdata/hybas5/Hybas5_data.csv diff --git a/Analysis/Calculating indices/Spp_dist_HYBAS5_20230125.csv b/inst/extdata/hybas5/Spp_dist_HYBAS5_20230125.csv similarity index 100% rename from Analysis/Calculating indices/Spp_dist_HYBAS5_20230125.csv rename to inst/extdata/hybas5/Spp_dist_HYBAS5_20230125.csv diff --git a/inst/extdata/hybas5/apply_weight_lvl.R b/inst/extdata/hybas5/apply_weight_lvl.R new file mode 100644 index 0000000..919c509 --- /dev/null +++ b/inst/extdata/hybas5/apply_weight_lvl.R @@ -0,0 +1,74 @@ +apply_weight_lvl5 <- function() { + ### read weightings + weights <- path_input_data("Co_author_weightings.csv") |> + readr::read_csv(show_col_types = FALSE) + + med_weights <- weights |> + dplyr::select(-Co_author) |> + dplyr::summarise_all(stats::median) |> + tidyr::pivot_longer( + cols = dplyr::everything(), + names_to = "Variable", + values_to = "Weight" + ) + + # ----------------------------------------------------------------- + # Level 5 (no longer used) + # priorities for Protected areas + data5 <- path_input_data("Hybas5_data.csv") |> + readr::read_csv(show_col_types = FALSE) |> + dplyr::mutate(protection_score = WSI_n * med_weights$Weight[1] + + FBCI_n * med_weights$Weight[2] + + CCI_n * med_weights$Weight[3] + + SARI_n * med_weights$Weight[4] + + Fish_richness_n * med_weights$Weight[5] + + Priority_n * med_weights$Weight[6]) |> + # ranked within FEOW + dplyr::arrange(FEOW_ID, -protection_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Prot_rank_feow = dplyr::row_number()) |> + # priorities for restoration + dplyr::mutate(restoration_score = WSI_n * med_weights$Weight[7] + + FBCI_n * med_weights$Weight[8] + + CCI_n * med_weights$Weight[9] + + SARI_n * med_weights$Weight[10] + + Fish_richness_n * med_weights$Weight[11] + + Priority_n * med_weights$Weight[12]) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -restoration_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(Rest_rank_feow = dplyr::row_number()) |> + # priorities for SAR + dplyr::mutate(SAR_score = WSI_n * med_weights$Weight[13] + + FBCI_n * med_weights$Weight[14] + + CCI_n * med_weights$Weight[15] + + SARI_n * med_weights$Weight[16] + + Fish_richness_n * med_weights$Weight[17] + + Priority_n * med_weights$Weight[18]) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -SAR_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(SAR_rank_feow = dplyr::row_number()) |> + # priorities for AIS + dplyr::mutate(AIS_score = WSI_n * med_weights$Weight[19] + + FBCI_n * med_weights$Weight[20] + + CCI_n * med_weights$Weight[21] + + SARI_n * med_weights$Weight[22] + + Fish_richness_n * med_weights$Weight[23] + + Priority_n * med_weights$Weight[24]) |> + # ranked within FEOW + dplyr::ungroup() |> + dplyr::arrange(FEOW_ID, -AIS_score) |> + dplyr::group_by(FEOW_ID) |> + dplyr::mutate(AIS_rank_feow = dplyr::row_number()) + + # write csv file + readr::write_csv( + data5, + path_output_data("watershed_prioritization_level5.csv") + ) + + data5 +} \ No newline at end of file diff --git a/inst/extdata/hybas5/rarity.R b/inst/extdata/hybas5/rarity.R new file mode 100644 index 0000000..94dcb51 --- /dev/null +++ b/inst/extdata/hybas5/rarity.R @@ -0,0 +1,42 @@ +rarity_lvl5 <- function() { + # ------------------------ Hydrobasin 5 + fishPA5 <- path_input_data("Spp_dist_HYBAS5_20230125.csv") |> + readr::read_csv() + + # change the SAR indicator of '2' to a presence indicator of '1' + fishPA5[fishPA5 == 2] <- 1 + + Pvals <- fishPA5 |> + dplyr::summarize_all(.funs = "mean") + Pvals <- purrr::as_vector(Pvals) + Pvals <- Pvals[-1] + Qvals <- 1 - Pvals + TotalQ <- sum(Qvals) + + # + Ivals <- fishPA5 + for (i in 2:ncol(Ivals)) { + Ivals[i] <- Ivals[i] * Qvals[i - 1] + } + + Ivals <- Ivals |> + dplyr::rowwise() |> + dplyr::mutate( + QijSij = sum( + dplyr::c_across(Acipenser_brevirostrum:Percina_shumardi) + ), + richness = sum( + dplyr::c_across(Acipenser_brevirostrum:Percina_shumardi) > 0 + ) + ) |> + dplyr::mutate( + Ii = QijSij / TotalQ, + Qi = QijSij / richness + ) + + hb_lvl5 <- Ivals |> dplyr::select(HYBAS_ID, Ii, Qi) + readr::write_csv( + hb_lvl5, + path_output_data("H5_importance_priority.csv") + ) +} \ No newline at end of file diff --git a/inst/extdata/hyc_6_feow_join.csv b/inst/extdata/hyc_6_feow_join.csv new file mode 100644 index 0000000..78fd108 --- /dev/null +++ b/inst/extdata/hyc_6_feow_join.csv @@ -0,0 +1,1382 @@ +HYBAS_ID,FEOW_ID +7060329370,120 +7060334780,120 +7060305410,120 +7060305280,120 +7060298200,120 +7060295790,120 +7060295800,120 +7060289980,120 +7060289830,120 +7060327530,120 +7060348000,120 +7060223480,120 +7060223370,120 +7060301180,120 +7060301390,120 +7060234190,120 +7060234330,120 +7060290130,120 +7060290340,120 +7060245930,120 +7060246020,120 +7060256650,120 +7060256810,120 +7060016090,103 +7060016100,103 +7060016260,103 +7060274850,103 +7060274860,103 +7060269780,103 +7060269970,103 +7060261880,103 +7060261890,103 +7060263330,103 +7060263190,103 +7060234050,103 +7060234040,103 +7060257410,103 +7060257320,103 +7060192750,103 +7060192890,103 +7060177760,103 +7060178710,103 +7060178720,103 +7060174580,103 +7060173970,103 +7060176450,103 +7060176340,103 +7060171990,103 +7060171730,103 +7060174770,103 +7060174890,103 +7060174100,103 +7060174230,103 +7060190090,103 +7060190200,103 +7060016270,103 +7060016850,103 +7060016860,103 +7060017140,103 +7060017150,103 +7060017930,103 +7060017940,103 +7060018020,103 +7060018030,103 +7060018590,103 +7060018600,103 +7060018610,103 +7060018620,103 +7060018780,103 +7060018790,103 +7060018950,103 +7060018960,103 +7060019010,103 +7060163080,103 +7060162660,103 +7060162570,103 +7060148380,103 +7060148370,103 +7060140470,103 +7060140620,103 +7060019020,103 +7060019190,103 +7060019200,103 +7060019440,103 +7060019450,103 +7060019840,103 +7060020090,103 +7060123570,103 +7060123580,103 +7060108080,103 +7060108050,103 +7060108990,103 +7060108980,103 +7060111430,103 +7060111530,103 +7060020500,103 +7060020510,103 +7060020680,103 +7060020780,103 +7060020790,103 +7060021430,111 +7060021550,111 +7060021560,111 +7060021620,111 +7060099390,111 +7060100460,111 +7060100540,111 +7060108890,111 +7060108930,111 +7060112450,111 +7060112520,111 +7060021690,111 +7060021740,110 +7060114060,110 +7060114090,110 +7060121810,110 +7060123710,110 +7060130730,110 +7060142810,108 +7060135250,111 +7060145540,108 +7060145630,108 +7060118090,111 +7060139370,108 +7060114740,111 +7060114730,111 +7060140020,108 +7060140080,108 +7060137710,108 +7060298300,120 +7060177910,103 +7060174590,103 +7060174110,103 +7060163190,103 +7060019800,103 +7060020100,103 +7060020430,103 +7060020440,103 +7060020690,103 +7060099500,111 +7060021630,111 +7060021700,111 +7060121920,110 +7060123800,110 +7060130660,110 +7060142610,111 +7060135300,111 +7060117980,111 +7060139360,108 +7060137570,108 +7060134520,108 +7060144640,108 +7060144740,108 +7060161120,108 +7060161180,108 +7060165930,108 +7060166020,108 +7060168960,108 +7060169010,108 +7060170490,108 +7060170140,108 +7060166730,108 +7060166920,108 +7060021750,110 +7060134090,110 +7060159850,109 +7060192440,109 +7060192420,109 +7060192560,109 +7060206680,109 +7060206690,109 +7060214090,109 +7060219980,109 +7060220090,109 +7060224340,109 +7060224350,109 +7060192820,109 +7060192810,109 +7060230950,109 +7060231030,109 +7060250980,109 +7060250990,109 +7060245400,109 +7060245390,109 +7060179770,109 +7060179920,109 +7060177100,109 +7060177090,109 +7060284070,109 +7060284240,109 +7060235410,109 +7060235660,109 +7060179090,109 +7060179080,109 +7060276840,109 +7060277090,109 +7060302030,109 +7060306440,109 +7060306430,109 +7060199390,109 +7060201290,109 +7060201280,109 +7060194860,108 +7060194980,108 +7060289500,109 +7060289200,109 +7060284140,109 +7060284060,109 +7060290680,109 +7060290770,109 +7060317700,109 +7060212920,108 +7060213040,108 +7060314930,109 +7060314820,109 +7060269450,108 +7060269280,109 +7060217900,108 +7060226990,108 +7060217780,108 +7060227100,108 +7060316050,109 +7060316210,109 +7060208410,107 +7060208540,107 +7060263820,108 +7060263970,108 +7060184430,107 +7060184580,107 +7060263060,108 +7060262850,108 +7060264520,108 +7060264650,108 +7060260120,108 +7060260000,108 +7060300250,109 +7060300390,109 +7060256540,107 +7060256690,107 +7060259190,107 +7060259200,107 +7060282770,107 +7060282720,107 +7060242640,107 +7060202930,107 +7060203140,107 +7060224620,107 +7060147190,110 +7060163780,110 +7060022280,110 +7060146370,110 +7060151610,110 +7060151690,110 +7060191640,110 +7060191700,110 +7060022850,110 +7060023220,110 +7060150030,110 +7060149790,110 +7060152640,110 +7060152650,110 +7060168790,110 +7060168780,110 +7060175260,110 +7060134420,108 +7060113180,111 +7060113260,111 +7060022240,110 +7060132960,110 +7060132870,110 +7060134100,110 +7060159950,110 +7060302170,109 +7060199540,109 +7060318020,109 +7060314300,109 +7060242880,107 +7060224630,107 +7060224750,107 +7060224740,107 +7060022250,110 +7060022270,110 +7060129240,110 +7060129300,110 +7060133990,110 +7060133910,110 +7060137410,110 +7060137520,110 +7060146980,110 +7060157540,110 +7060157640,110 +7060162040,110 +7060161960,110 +7060163620,110 +7060171020,110 +7060171100,110 +7060022840,110 +7060136230,110 +7060136320,110 +7060146310,110 +7060175330,110 +7060023230,110 +7060023450,110 +7060023460,110 +7060023470,110 +7060023480,110 +7060023720,110 +7060023730,110 +7060197330,110 +7060222910,110 +7060223010,110 +7060233450,110 +7060233240,110 +7060255600,110 +7060257090,110 +7060257230,110 +7060270660,110 +7060270960,110 +7060271090,110 +7060237380,110 +7060237270,110 +7060243120,110 +7060243020,110 +7060250850,110 +7060251010,110 +7060254310,110 +7060254300,110 +7060245620,110 +7060245440,110 +7060024300,110 +7060024580,110 +7060252580,110 +7060252700,110 +7060262320,110 +7060262150,110 +7060284470,110 +7060284520,110 +7060287970,110 +7060287980,110 +7060024610,110 +7060024620,110 +7060024660,110 +7060024680,110 +7060024730,110 +7060024740,110 +7060252330,110 +7060252480,110 +7060284340,110 +7060284350,110 +7060295550,110 +7060295390,110 +7060319640,110 +7060319800,110 +7060024840,113 +7060024890,113 +7060244280,113 +7060244230,113 +7060245300,113 +7060245520,113 +7060253350,113 +7060253490,113 +7060256760,113 +7060256770,113 +7060024900,113 +7060220600,113 +7060227160,113 +7060025100,113 +7060185280,113 +7060184650,113 +7060178410,113 +7060025570,113 +7060148740,113 +7060025870,113 +7060026040,113 +7060026050,113 +7060026200,113 +7060026210,113 +7060026360,113 +7060026370,113 +7060026460,113 +7060026470,113 +7060026580,113 +7060026650,113 +7060026740,113 +7060026850,113 +7060027040,113 +7060027050,113 +7060027290,113 +7060027430,113 +7060028070,113 +7060093380,113 +7060093370,113 +7060093620,113 +7060093650,113 +7060093860,113 +7060093830,113 +7060096520,113 +7060028080,113 +7060028410,113 +7060102690,113 +7060102570,113 +7060105110,113 +7060109290,113 +7060109330,113 +7060028420,113 +7060115800,113 +7060115860,113 +7060121880,113 +7060121890,113 +7060120870,113 +7060120880,113 +7060143720,113 +7060143810,113 +7060137470,113 +7060137460,113 +7060156430,113 +7060028790,113 +7060028800,113 +7060028840,113 +7060028850,113 +7060028900,113 +7060028910,113 +7060029000,113 +7060106280,113 +7060106320,113 +7060114610,113 +7060114600,113 +7060121180,113 +7060121090,113 +7060136810,113 +7060136860,113 +7060029010,113 +7060029460,113 +7060030400,113 +7060030440,113 +7060030610,113 +7060187940,113 +7060198080,113 +7060197970,113 +7060031720,113 +7060032050,113 +7060032080,113 +7060032690,114 +7060032700,114 +7060032810,114 +7060032940,114 +7060032950,114 +7060033110,114 +7060033190,114 +7060033390,114 +7060033400,114 +7060033440,114 +7060033460,114 +7060033480,114 +7060033690,114 +7060033700,114 +7060034000,114 +7060293910,114 +7060293920,114 +7060271330,114 +7060271320,114 +7060252360,114 +7060252370,114 +7060239430,114 +7060239440,114 +7060034010,114 +7060034100,114 +7060034110,114 +7060034330,117 +7060320860,117 +7060321100,117 +7060314650,117 +7060314550,117 +7060314420,117 +7060293370,117 +7060293380,117 +7060034340,117 +7060034520,117 +7060374800,117 +7060374950,117 +7060377200,117 +7060377320,117 +7060380380,117 +7060380530,117 +7060382790,117 +7060382860,117 +7060360220,117 +7060360130,117 +7060393220,117 +7060393390,117 +7060402320,117 +7060402430,117 +7060341270,117 +7060341150,117 +7060338280,117 +7060338230,117 +7060334690,117 +7060334580,117 +7060398580,117 +7060398520,117 +7060400760,117 +7060400540,117 +7060400520,117 +7060400660,117 +7060434140,116 +7060434190,116 +7060439770,116 +7060388700,117 +7060388530,117 +7060387450,117 +7060387700,117 +7060386900,117 +7060386520,117 +7060450680,116 +7060453370,116 +7060356130,117 +7060356140,117 +7060354140,117 +7060354130,117 +7060474840,116 +7060475060,116 +7060343940,117 +7060343930,117 +7060343150,117 +7060343060,117 +7060334070,117 +7060334080,117 +7060498570,116 +7060489890,116 +7060344050,117 +7060343960,117 +7060481890,116 +7060480440,116 +7060480630,116 +7060446640,116 +7060446550,116 +7060431350,116 +7060422540,116 +7060422720,116 +7060399240,116 +7060396070,116 +7060400750,116 +7060400650,116 +7060392520,116 +7060384130,116 +7060383830,116 +7060379040,116 +7060378910,116 +7060363950,116 +7060363960,116 +7060359070,116 +7060358930,116 +7060347220,116 +7060345050,116 +7060343600,116 +7060343590,116 +7060337970,116 +7060331850,116 +7060331860,116 +7060335180,116 +7060293670,116 +7060293560,116 +7060293450,116 +7060288450,116 +7060288400,116 +7060034530,117 +7060034570,117 +7060034580,118 +7060034790,118 +7060034860,118 +7060034870,118 +7060035320,118 +7060035330,118 +7060035360,118 +7060035370,118 +7060035470,118 +7060035480,118 +7060035860,118 +7060035870,119 +7060037340,119 +7060037350,119 +7060037690,119 +7060037700,119 +7060037890,119 +7060037900,119 +7060038180,118 +7060038190,118 +7060038320,118 +7060390740,118 +7060390750,118 +7060364000,118 +7060363050,118 +7060355150,118 +7060038330,118 +7060038340,118 +7060038810,118 +7060038980,118 +7060039620,118 +7060328250,142 +7060328380,142 +7060330450,142 +7060055790,103 +7060055920,103 +7060055930,103 +7060056620,103 +7060056630,103 +7060056700,103 +7060056710,103 +7060056760,103 +7060056770,103 +7060057190,103 +7060057510,103 +7060059990,115 +7060060310,115 +7060060320,115 +7060061510,115 +7060061520,115 +7060061620,115 +7060061630,115 +7060061870,115 +7060061880,115 +7060062870,115 +7060062880,115 +7060062930,115 +7060062940,115 +7060063060,115 +7060063420,115 +7060063860,119 +7060073760,108 +7060073860,109 +7060073880,108 +7060074540,108 +7060074670,108 +7060075500,109 +7060075830,107 +7060076630,108 +8060000060,103 +8060000070,103 +8060000290,103 +8060000300,103 +8060000400,103 +8060000410,103 +8060267640,103 +8060267770,103 +8060146840,102 +8060130480,102 +8060119700,102 +8060119620,102 +8060194180,102 +8060129020,102 +8060129130,102 +8060202520,102 +8060234860,102 +8060214160,102 +8060231240,102 +8060212970,102 +8060252130,102 +8060252250,102 +8060228670,102 +8060259590,102 +8060249330,102 +7060414850,116 +7060337870,116 +7060024590,110 +7060024600,110 +7060033120,114 +7060033180,114 +7060033450,114 +7060033470,114 +7060034800,118 +7060059430,111 +7060023850,110 +7060023860,110 +7060023960,110 +7060023970,110 +7060024030,110 +7060200040,110 +7060199890,110 +7060197200,110 +7060024040,110 +7060024100,110 +7060024110,110 +7060024290,110 +7060220180,110 +7060220300,110 +7060241270,110 +7060241310,110 +7060251370,110 +7060251360,110 +7060255780,110 +7060270810,110 +7060024690,110 +7060024830,110 +7060025090,113 +7060220780,113 +7060221070,113 +7060220950,113 +7060228720,113 +7060228380,113 +7060227150,113 +7060025560,113 +7060184130,113 +7060184050,113 +7060185140,113 +7060184500,113 +7060178270,113 +7060025860,113 +7060150240,113 +7060150330,113 +7060147220,113 +7060147110,113 +7060155100,113 +7060154870,113 +7060148930,113 +7060026590,113 +7060026660,113 +7060026750,113 +7060026840,113 +7060027300,113 +7060027400,113 +7060027410,113 +7060096470,113 +7060105150,113 +7060107620,113 +7060107570,113 +7060028670,113 +7060112210,113 +7060112130,113 +7060113160,113 +7060113240,113 +7060156440,113 +7060028680,113 +7060028740,113 +7060028750,113 +7060030200,113 +7060030210,113 +7060030410,113 +7060030450,113 +7060030510,113 +7060030520,113 +7060030620,113 +7060030660,113 +7060030670,113 +7060030870,113 +7060030880,113 +7060030940,113 +7060030950,113 +7060031660,113 +7060031670,113 +7060031710,113 +7060195660,113 +7060195540,113 +7060187840,113 +7060179020,113 +7060179010,113 +7060032060,113 +7060032070,113 +7060032800,114 +7060453430,116 +7060363990,118 +7060363040,118 +7060059690,113 +7060059780,111 +7060059960,112 +7060061820,115 +7060061830,115 +7060063050,115 +8060153970,102 +8060224890,102 +8060194110,102 +8060202510,102 +8060219290,102 +8060219130,102 +8060221500,102 +8060221510,102 +8060222000,102 +8060222130,102 +8060234870,102 +8060214100,102 +8060231190,102 +8060240040,102 +8060239840,102 +8060230530,102 +8060230650,102 +8060212940,102 +8060228740,102 +8060213720,102 +8060213590,102 +8060236260,102 +8060236470,102 +8060251940,102 +8060251780,102 +8060259520,102 +8060216310,102 +8060216240,102 +8060249210,102 +7060419920,116 +7060399420,116 +8060274780,102 +8060274770,102 +8060280670,102 +8060280610,102 +8060287740,102 +8060287840,102 +8060298170,102 +8060298100,102 +8060008980,101 +8060009130,101 +8060009140,101 +8060009240,101 +8060009250,101 +8060122010,105 +8060122100,105 +8060159800,105 +8060159890,105 +8060148430,105 +8060148510,105 +8060164230,105 +8060164290,105 +8060183170,105 +8060183070,106 +8060194580,105 +8060196880,105 +8060170630,105 +8060170460,106 +8060155650,106 +8060155560,106 +8060231560,105 +8060148890,106 +8060148880,106 +8060147790,106 +8060243490,105 +8060150880,106 +8060147910,106 +8060252610,105 +8060254850,105 +8060176280,106 +8060176270,106 +8060264660,105 +8060270510,105 +8060191300,106 +8060261020,105 +8060260870,105 +8060261290,105 +8060261410,105 +8060265470,105 +8060265410,105 +8060286860,105 +8060286910,105 +8060259990,105 +8060260060,105 +8060258940,105 +8060258800,105 +8060272020,105 +8060271080,104 +8060271000,104 +8060298780,105 +8060298770,105 +8060296490,105 +8060296400,105 +8060266590,104 +8060264770,104 +8060241560,105 +8060241570,105 +8060302210,105 +8060302220,105 +8060306980,105 +8060309320,105 +8060309340,105 +8060246160,105 +8060246110,105 +8060299210,105 +8060299220,105 +8060275110,105 +8060297380,105 +8060297330,105 +8060229140,105 +8060279900,105 +8060316070,105 +8060316110,105 +8060297840,105 +8060308720,104 +8060308670,104 +8060283050,105 +8060282950,105 +8060293870,105 +8060293820,105 +8060292670,105 +8060292590,105 +8060197650,105 +8060307300,104 +8060307380,104 +8060285990,105 +8060311240,104 +8060311330,104 +8060311100,104 +8060311060,104 +8060302950,104 +8060303080,104 +8060303200,105 +8060327990,104 +8060328000,104 +8060315160,104 +8060328810,104 +8060328820,104 +8060314130,104 +8060328010,104 +8060328070,104 +8060304890,105 +8060327140,104 +8060327190,104 +8060325210,104 +8060320050,104 +8060325830,104 +8060325760,104 +8060323980,104 +8060324030,104 +8060328330,104 +8060331970,104 +8060331980,104 +8060338740,104 +8060338780,104 +8060340700,104 +8060340710,104 +8060335620,104 +8060335660,104 +8060342260,104 +8060342280,104 +8060338970,104 +8060342750,104 +8060342780,104 +8060332620,104 +8060332600,104 +8060332270,104 +8060331810,104 +8060331910,104 +8060341320,104 +8060341350,104 +8060343130,104 +8060343100,104 +8060331800,104 +8060331740,104 +8060332890,104 +8060332940,104 +8060333190,104 +8060333260,104 +8060332850,104 +8060332260,104 +8060332210,104 +8060327650,104 +8060327690,104 +8060322730,104 +8060322700,104 +8060104840,105 +8060109640,105 +8060109650,105 +8060125280,105 +8060125380,105 +8060010200,106 +8060010430,106 +8060010440,106 +8060011270,106 +8060129850,106 +8060130010,106 +8060012110,106 +8060012500,106 +8060012510,106 +8060012600,106 +8060012610,106 +8060012680,106 +8060012690,106 +8060012760,106 +8060012770,106 +8060012900,106 +8060012910,106 +8060013040,106 +8060013050,106 +8060156300,106 +8060160010,106 +8060177370,106 +8060013490,111 +8060013680,111 +8060013690,111 +8060013760,111 +8060201080,111 +8060190480,111 +8060190630,111 +8060192880,111 +8060193020,111 +8060199520,111 +8060199600,111 +8060211930,111 +8060211920,111 +8060281810,111 +8060281800,111 +8060239530,111 +8060018140,111 +8060018840,111 +8060018890,111 +8060018900,111 +8060282670,111 +8060283690,111 +8060290230,111 +8060290300,111 +8060293840,111 +8060293900,111 +8060018980,111 +8060022890,112 +8060023080,112 +8060023090,112 +8060023160,112 +8060023170,112 +8060023260,112 +8060023560,112 +8060023570,112 +8060024130,112 +8060034410,112 +8060034420,112 +8060034890,112 +8060034900,112 +8060035020,112 +8060036730,112 +8060038790,112 +8060038860,112 +8060039140,112 +8060040110,112 +8060023270,112 +8060009470,105 +8060009560,105 +8060009570,105 +8060009900,105 +8060010040,105 +8060010050,106 +8060010210,106 +8060129330,111 +8060016890,111 +8060016910,111 +8060017300,111 +8060017310,111 +8060017600,111 +8060017800,111 +8060018080,111 +8060030970,111 +8060031040,111 +8060031050,111 +8060031590,111 +8060033320,112 +8060034100,112 +8060034170,112 +8060034180,112 +8060034210,112 +8060034220,112 +8060034350,112 +8060034360,112 +8060035010,112 +8060041630,112 +8060041740,112 +8060030130,112 +8060009460,105 +8060112340,105 +8060112350,105 +8060155680,105 +8060155780,105 +8060157910,105 +8060158000,105 +8060160210,105 +8060160330,105 +8060194590,105 +8060196780,105 +8060231700,105 +8060147670,106 +8060243400,105 +8060150960,106 +8060147850,106 +8060162560,106 +8060162570,106 +8060252760,105 +8060254970,105 +8060152450,106 +8060152640,106 +8060264760,105 +8060270520,105 +8060191160,106 +8060185500,106 +8060185510,106 +8060269310,105 +8060269450,105 +8060272130,104 +8060262310,105 +8060304100,105 +8060303960,105 +8060258570,105 +8060258460,105 +8060294870,104 +8060294970,104 +8060306890,105 +8060252880,105 +8060252780,105 +8060245940,105 +8060245770,105 +8060261310,105 +8060261430,105 +8060298840,104 +8060298910,104 +8060306950,104 +8060306940,104 +8060275180,105 +8060229150,105 +8060279860,105 +8060297770,105 +8060226210,105 +8060226220,105 +8060197790,105 +8060287650,105 +8060287560,105 +8060286130,105 +8060201890,105 +8060201750,105 +8060202910,105 +8060203090,105 +8060303240,105 +8060315230,104 +8060315580,104 +8060315650,104 +8060193730,106 +8060193680,106 +8060314150,104 +8060305540,105 +8060305580,105 +8060189340,106 +8060189330,106 +8060305050,105 +8060325250,104 +8060320060,104 +8060331290,104 +8060331230,104 +8060331570,104 +8060331600,104 +8060328340,104 +8060338810,104 +8060338830,104 +8060339000,104 +8060332200,104 +8060332820,104 +8060009890,105 +8060104850,105 +8060105600,105 +8060105550,105 +8060010700,106 +8060010730,106 +8060010740,106 +8060010850,106 +8060010860,106 +8060010990,106 +8060011000,106 +8060011250,106 +8060011260,106 +8060126470,106 +8060126630,106 +8060152090,106 +8060152250,106 +8060154280,106 +8060154140,106 +8060011280,106 +8060011310,106 +8060011320,106 +8060011370,106 +8060011380,106 +8060011450,106 +8060011460,106 +8060011680,106 +8060011690,106 +8060011800,106 +8060011810,106 +8060011880,106 +8060011890,106 +8060011980,106 +8060011990,106 +8060012100,106 +8060013480,111 +8060129410,106 +8060156310,106 +8060159820,106 +8060177260,106 +8060013770,111 +8060014090,111 +8060014500,111 +8060014510,111 +8060014730,111 +8060014740,111 +8060014810,111 +8060014820,111 +8060014830,111 +8060014840,111 +8060015210,111 +8060015220,111 +8060015920,111 +8060015930,111 +8060016020,111 +8060016030,111 +8060016080,111 +8060016090,111 +8060016570,111 +8060016580,111 +8060016860,111 +8060017610,111 +8060017810,111 +8060018090,111 +8060018120,111 +8060201110,111 +8060211690,111 +8060211650,111 +8060229590,111 +8060229750,111 +8060243800,111 +8060243620,111 +8060226940,111 +8060227070,111 +8060261050,111 +8060261040,111 +8060239620,111 +8060018730,111 +8060018740,111 +8060018810,111 +8060018820,111 +8060018830,111 +8060018950,111 +8060018970,111 +8060282510,111 +8060283540,111 +8060024230,112 +8060024240,112 +8060024290,112 +8060024300,112 +8060024340,112 +8060024350,112 +8060024670,112 +8060024680,112 +8060024850,112 +8060024860,112 +8060025160,112 +8060025170,112 +8060025650,112 +8060025660,112 +8060026280,112 +8060027930,112 +8060027950,112 +8060027960,112 +8060028390,112 +8060030930,111 +8060031580,111 +8060032190,111 +8060032200,111 +8060032250,111 +8060032260,111 +8060032440,111 +8060032840,112 +8060033310,112 +8060034090,112 +8060036300,112 +8060036310,112 +8060036720,112 +8060038800,112 +8060038870,112 +8060039130,112 +8060040100,112 +8060041620,112 +8060014080,111 +8060026290,112 +8060026320,112 +8060026330,112 +8060026580,112 +8060026590,112 +8060026830,112 +8060026840,112 +8060026850,112 +8060026860,112 +8060027540,112 +8060027550,112 +8060027600,112 +8060027610,112 +8060027940,112 +8060028180,112 +8060028930,112 +8060029020,112 +8060029030,112 +8060029740,112 +8060029750,112 +8060029760,112 +8060029770,112 +8060030000,112 +8060030010,112 +8060030100,112 +8060142120,112 +8060043200,112 +8060047730,112 +8060055670,112 +8060055680,112 +8060055790,112 +8060055800,112 +8060056830,112 +8060056990,112 +8060057000,112 +8060057510,112 +8060057520,112 +8060057550,112 +8060057560,112 +8060056650,112 +8060056840,112 +8060056660,112 +8060041750,112 +8060041920,112 +8060041930,112 +8060041990,112 +8060049770,112 +8060049910,112 +8060049920,112 +8060051220,112 +8060048550,112 +8060049710,112 +8060052790,112 +8060053140,112 +8060058620,112 +8060053110,112 +8060056630,112 +8060056640,112 +8060052560,112 +8060041980,112 +8060142230,112 +8060146880,112 +8060146950,112 +8060147990,112 +8060148000,112 +8060178540,112 +8060178550,112 +8060042220,112 +8060042230,112 +8060042460,112 +8060042470,112 +8060042570,112 +8060042580,112 +8060042710,112 +8060042720,112 +8060042770,112 +8060042780,112 +8060042910,112 +8060042920,112 +8060043700,112 +8060043890,112 +8060044350,112 +8060051210,112 +8060044560,112 +8060045460,112 +8060045910,112 +8060049390,112 +8060049610,112 +8060049760,112 +8060050500,112 +8060050510,112 +8060051550,112 +8060052070,112 +8060052080,112 +8060053040,112 +8060053050,112 +8060057950,112 +8060057960,112 +8060058090,112 +8060058100,112 +8060058500,112 +8060058510,112 +8060058610,112 +8060047650,112 +8060047690,112 +8060048860,112 +8060049370,112 +8060052780,112 +8060045500,112 +8060045520,112 +8060045610,112 +8060045900,112 +8060052550,112 diff --git a/Analysis/FEOWscalingcorrected/level6ranks.csv b/inst/extdata/level6ranks.csv similarity index 100% rename from Analysis/FEOWscalingcorrected/level6ranks.csv rename to inst/extdata/level6ranks.csv diff --git a/Analysis/map5.gpkg b/inst/extdata/map5.gpkg similarity index 100% rename from Analysis/map5.gpkg rename to inst/extdata/map5.gpkg diff --git a/Analysis/map6.gpkg b/inst/extdata/map6.gpkg similarity index 100% rename from Analysis/map6.gpkg rename to inst/extdata/map6.gpkg diff --git a/inst/extdata/protected_area_overlap.csv b/inst/extdata/protected_area_overlap.csv new file mode 100644 index 0000000..fd594f7 --- /dev/null +++ b/inst/extdata/protected_area_overlap.csv @@ -0,0 +1,940 @@ +HYBAS_ID,area_m2,overlap_area_m2,perc_overlap +7060329370,15552454903.051254,1860390113.8029926,11.962035096067055 +7060334780,8652472569.741781,922577470.9951253,10.662587642536243 +7060305410,1396587294.0994766,69815766.77617897,4.999026345946844 +7060305280,990029647.6769056,27549675.60272279,2.7827121811319304 +7060298200,15879957375.57525,1622056007.1357596,10.214485900513953 +7060295790,3392909937.127746,941414751.6694527,27.746529354280575 +7060295800,1076177058.6875787,215484636.06663558,20.023158301611055 +7060289980,7261764605.175557,1072989041.9129142,14.775871985001833 +7060289830,7079346077.417421,1734541853.6308727,24.501441724454327 +7060327530,65941882.66351605,123756.18566199159,0.1876746320596981 +7060348000,1572747283.0809999,981958310.73626,62.43586120286352 +7060223480,2814023044.963072,253461766.61797002,9.007096337453632 +7060223370,4440126913.288244,372889013.2563742,8.39816114580883 +7060301180,2992975276.6139226,44202952.12059195,1.4768899852256914 +7060301390,4323143617.672792,458399684.95354915,10.60338784674269 +7060234190,1638441636.5111523,20926405.658611774,1.277213981400755 +7060234330,3516124817.2799993,933606321.1450486,26.552138210703994 +7060290130,8817292983.627945,2630014794.2305293,29.82791656253197 +7060290340,2705790043.7074833,238933790.30283752,8.830463060446833 +7060245930,1822048982.1759024,1322134489.060435,72.56305961004044 +7060246020,818047143.3784935,85881917.55022678,10.498406876104815 +7060256650,4452331207.478846,866718296.2682979,19.46661773078381 +7060256810,1461561822.8815105,108169109.87756135,7.400926063072918 +7060016090,1044637552.0637504,712602728.4852237,68.21530846535528 +7060016100,698675097.0956411,20150111.52084926,2.884046047241745 +7060016260,19144610104.388687,6714549194.803594,35.07279154911783 +7060274850,16073854250.34221,3583903552.8141475,22.296479095782807 +7060274860,706280500.785156,15392564.203043265,2.1793839962920822 +7060269780,995753905.4979017,64719437.203727454,6.499541387323621 +7060269970,7248292271.012132,129743329.09839518,1.7899847887932667 +7060261880,5050420060.125253,659403819.6592537,13.0564153438536 +7060261890,3576785783.8567348,592168937.2585473,16.555896076617433 +7060263330,2000170364.8620512,99213368.10696045,4.960245879545518 +7060263190,20712039141.94157,7129050121.689071,34.419837046623044 +7060234050,25677598253.990406,5264226867.771748,20.50124320701865 +7060234040,19782943224.487793,5589517342.581541,28.254225264432364 +7060257410,11997930777.215378,684443023.6046841,5.704675550424686 +7060257320,3332804244.712159,374794736.4657612,11.245627073969677 +7060192750,2706307487.0187006,78862815.84548296,2.914037529872821 +7060192890,12326295638.200882,1724717113.9456408,13.992177086849239 +7060177760,312355557.84566885,220489.25504174395,0.07058918898785373 +7060178710,708916002.9521474,4878616.819766697,0.6881798124813961 +7060178720,3597473601.1409774,202124561.00949323,5.618514085701345 +7060174580,4451573823.5062475,31111981.65748748,0.6988984770555231 +7060173970,936306246.364054,1488670.4486498595,0.15899396745784772 +7060176450,3144483878.59629,14829394.081883958,0.47160025792543914 +7060176340,15573866889.137693,1083415649.6914458,6.9566258489540305 +7060171990,298015083.35022444,2656671.1814336525,0.891455275205503 +7060171730,5537321765.437938,1245162334.381278,22.486725300183096 +7060174770,14368719199.650576,4114182917.0478587,28.63291334378578 +7060174890,3613321695.1247153,577535587.6197106,15.983508703333891 +7060174100,6515058036.649688,429326961.7819255,6.589764194989477 +7060174230,5366329896.640583,145204752.7588697,2.7058484207199123 +7060190090,4724980970.002804,910225690.0297914,19.26411335428619 +7060190200,7202537015.703382,5215535477.64371,72.41247724617732 +7060016270,18544325847.847897,3643208931.0021553,19.64594971472072 +7060016850,5768175289.995562,644590209.1697458,11.174941411502108 +7060016860,5399092231.184344,239591679.1302228,4.4376289359603325 +7060017140,5861551785.647498,716327984.6058725,12.220790855415826 +7060017150,19005142043.086155,2744697151.219457,14.441866022348123 +7060017930,5379101701.42736,1889526345.071371,35.12717271305691 +7060017940,1051562382.6134439,389641747.6917127,37.053602728098504 +7060018020,7798834244.927813,4565699257.615057,58.543355509632555 +7060018030,11526301789.125757,4591022513.81345,39.83083731283829 +7060018590,3188009023.365662,3172628687.3582525,99.5175566977796 +7060018600,157043421.30524662,15527042.994652854,9.887101838206142 +7060018610,1310227179.4540071,113073510.80165441,8.630069088383129 +7060018620,2274996978.15828,378796023.5692217,16.650396778806947 +7060018780,2019526231.5492804,285191110.069748,14.12168386894205 +7060018790,2618538923.490894,1140142576.6037204,43.541173529081796 +7060018950,1375853047.2997653,539573499.7054006,39.21737868476302 +7060018960,491315484.3106533,138441576.97719547,28.177735365177377 +7060019010,3772353173.574324,731931858.0484092,19.402527397902674 +7060163080,2443029933.548235,60036876.46006928,2.4574760888366294 +7060162660,3085910573.4948897,378405411.9437615,12.26235831958039 +7060162570,4372155024.280905,626035922.7230773,14.318703688372588 +7060148380,12172390479.639633,2132524514.500241,17.519356761247895 +7060148370,2990791030.819144,752101611.6092925,25.147247128238856 +7060140470,12625816372.457361,938526933.4954218,7.433396034040026 +7060140620,10458975640.91423,713278393.7551178,6.819772970546563 +7060019020,4536693032.555141,1686759193.8693643,37.18036864661644 +7060019190,19924434040.584343,1365857333.7455103,6.855187610164371 +7060019200,3504955638.3379164,124898369.61314812,3.563479327583619 +7060019440,720697542.6960875,5202995.519642708,0.7219388455493555 +7060019450,607708919.1089271,7137780.1560010435,1.1745393117591634 +7060019840,1672124288.2481537,80674145.58179808,4.8246500663128655 +7060020090,240840579.99395022,356420.2142935274,0.14799009963457177 +7060123570,13156371572.381985,1536249823.5191875,11.676850376771826 +7060123580,9423289024.422588,1548625755.304396,16.43402586178543 +7060108080,5077373923.358236,1452957354.9196122,28.616315773698396 +7060108050,3623169106.700151,176140777.55771032,4.861511355679803 +7060108990,6964028615.476875,3156951919.582467,45.33226518579273 +7060108980,3597840802.71469,1651108803.7123013,45.89165819861971 +7060111430,4061956450.923453,2243761641.625804,55.23844651548893 +7060111530,3522490119.538714,3134552704.644757,88.98684164528589 +7060020500,16755605759.297321,3046547244.7529364,18.182256663937522 +7060020680,347138753.5938471,6632066.249116927,1.9104943428115362 +7060020780,1786939643.1028378,559135849.1461349,31.290136256379242 +7060020790,1067922718.2336665,1062342758.212468,99.47749402405937 +7060021430,2685560842.6762342,462495039.71120876,17.221543908508878 +7060021550,7930454376.541227,5665421151.365884,71.43879634595149 +7060021560,2330652396.0541077,2258171.8030624688,0.096890115698319 +7060021620,5877133940.945066,557299578.5731201,9.482505999914375 +7060099390,6780834747.122233,421966547.06245404,6.222929223301533 +7060100460,18854141959.20131,856398150.6970552,4.542228188109672 +7060100540,8366494843.555408,2724917186.284131,32.56940017578683 +7060108890,3017151488.082015,55804836.21887017,1.849586818537407 +7060108930,1423500611.5321593,1148377782.8143284,80.67279869857538 +7060112450,2537840016.463353,247761962.63080114,9.762710061451143 +7060112520,1514860688.6638868,726121695.8144431,47.93323249115965 +7060021690,14065222617.324602,1247771844.9751403,8.87132666807718 +7060021740,14400899568.594091,2924081773.4321203,20.30485498148355 +7060114060,20952108369.29511,4667785182.419642,22.278355476913184 +7060114090,9511481594.382965,144389418.95469004,1.5180539174880983 +7060121810,4312219745.500612,3509336.660429038,0.08138121124487438 +7060123710,6364100234.972692,16940170.213327415,0.2661832715995886 +7060130730,20420916767.97642,311151133.4726433,1.5236883681960003 +7060142810,3805169172.6221795,220391877.2803853,5.791907462776775 +7060135250,8363129157.066296,448956895.871535,5.368288441320985 +7060145540,8896586652.114193,761963249.0858041,8.564669562395938 +7060145630,15479186871.09102,4283840257.462327,27.674840372027816 +7060118090,2626543689.57591,14456168.178529201,0.5503875011065716 +7060139370,4559334636.791405,237437611.1041764,5.207725030494169 +7060114740,27606769588.25848,823938.1274532356,0.002984551034915969 +7060114730,17447724618.75868,3620434268.8189607,20.750180025918688 +7060140020,928200846.6480532,1530659.6446473943,0.16490608149895128 +7060140080,9756231191.04965,711418357.2682604,7.291938283718761 +7060137710,5193480131.219859,2188963.0575116863,0.04214828982117501 +7060174110,3177574415.797348,35415256.07965396,1.1145374252633269 +7060163190,101597017.03189848,1026329.5554149225,1.0101965445429222 +7060144640,27050628950.849415,2215927939.567564,8.191779731236089 +7060144740,5515682078.331569,100190477.72989993,1.8164657844131293 +7060161120,11241807818.20835,2095637668.6150339,18.641464989471984 +7060161180,252754771.0863684,1850428.056325893,0.7321041056406354 +7060165930,6759374494.9706745,763184393.6514926,11.290754702514876 +7060166020,1522245998.1082516,66981867.20864161,4.400199921161384 +7060168960,580894641.8592904,39411344.917570926,6.78459432702385 +7060169010,4512148603.261216,292256007.65473443,6.477091810396104 +7060170490,2642462086.606964,243436137.25368413,9.212474172761612 +7060170140,6166060414.640828,649077314.563195,10.526612957310824 +7060166730,4992029521.358282,404634717.0735687,8.10561546846525 +7060166920,6217773940.857428,79161617.05362462,1.273150452341924 +7060021750,17764641472.681046,10666853841.926748,60.04542145323073 +7060134090,16160016881.077372,12688149.097152222,0.07851569209689041 +7060159850,26017633504.23993,3308356507.8798747,12.715824086540126 +7060192440,9243453455.920742,7199656322.021761,77.88924730734853 +7060192420,7332101976.39872,36766311.44746994,0.5014429909160689 +7060192560,10847055478.33467,160170334.1997497,1.4766250114573989 +7060206680,8564906927.659856,393541348.755156,4.594811736765494 +7060206690,3201581999.785659,44600796.701268114,1.3930861900227471 +7060214090,4744668571.269089,286711499.94315827,6.042814068812178 +7060219980,19492258220.037277,7887158556.7688675,40.46303136217012 +7060220090,918260044.4166801,72380651.12175003,7.88236965790333 +7060224340,4320573929.687001,263573076.96590975,6.10041816794011 +7060224350,2245870911.120991,121472067.88376552,5.408684322962029 +7060192820,9907571993.21637,118176728.8870459,1.1927920278344735 +7060192810,5660470024.858727,108425467.48494649,1.9154852337134765 +7060230950,9792459187.183485,8182240344.9131775,83.55654272853354 +7060231030,8022869744.753228,1385299454.1095972,17.266882028286087 +7060250980,12830586889.280993,324960350.9100335,2.5327005982985384 +7060250990,15400717453.897789,2121386288.9025626,13.774593912608 +7060245400,19026766930.778652,762329973.4022814,4.006618550464809 +7060245390,6323529291.42305,337914314.3170752,5.343761351361287 +7060179770,3998429592.3297296,414875477.58617944,10.375960561667602 +7060179920,13571160836.267387,1395426520.7463012,10.282293000442396 +7060177100,19859539403.552593,1528168188.7854807,7.694882332024845 +7060177090,7465528520.731944,1121545270.1988118,15.02298554059843 +7060284070,5738508541.581528,576525526.3559116,10.046609187359016 +7060284240,12485841561.145105,87756911.3946708,0.7028513934356092 +7060235410,12287669350.692152,1510654093.717171,12.29406529914542 +7060235660,10013493667.959627,1535349331.383025,15.332803737577748 +7060179090,3537950161.9271984,211284483.81114894,5.971946300567945 +7060179080,11014166585.654007,1759145630.747486,15.971663557720106 +7060276840,52094828968.141785,2842718259.4904995,5.456814650891633 +7060277090,13558078548.493277,1281213855.040514,9.449818795915565 +7060302030,2608075705.671711,93057581.16151229,3.5680552124749485 +7060306430,4699835047.699231,55054149.654796906,1.1714059982115383 +7060199390,4120708682.3131056,972717877.9995418,23.605596827910663 +7060201290,11059892203.1011,874340744.5700684,7.905508738366461 +7060201280,15318423543.359497,1883677312.9256337,12.296809182706033 +7060194860,23347722055.952763,4043978104.9539733,17.32065378910452 +7060194980,4395355801.882713,221405538.2783889,5.037260878483415 +7060289500,2217643189.3301306,31656449.05128688,1.4274816257005323 +7060289200,2571351111.8983793,41955140.87128487,1.6316379617371737 +7060284140,9449221392.063297,548106025.275699,5.800541679932177 +7060284060,4061940396.737252,1035628991.2886106,25.495917963751463 +7060290680,5515372807.7694845,405782912.40881854,7.357307049800762 +7060290770,10565556235.60598,199268301.97152472,1.8860180905572157 +7060317700,4177143187.924555,250104458.9960748,5.987452374605839 +7060212920,2174907610.2772,13622742.132049529,0.6263595781116081 +7060213040,2139589928.8936338,89756465.81450056,4.195031234836339 +7060314930,9597386729.110819,4839623294.43053,50.426469527907756 +7060314820,12949207140.864971,762217693.4738623,5.88621129604502 +7060269450,17549126297.658688,627225322.0197749,3.5741113909668316 +7060269280,20922132001.077213,2052107789.1608922,9.80831107009188 +7060217900,10193397405.582317,351095765.40760034,3.4443449169883835 +7060226990,8325120238.084976,1538730756.0833097,18.482985375323096 +7060217780,1966799836.6928854,166042100.87665483,8.442247033935574 +7060227100,2927790042.7415104,260872777.7046923,8.910228325676574 +7060316050,197466038.12715644,139601692.18619093,70.69655800573449 +7060316210,469002625.30344784,6537343.523087052,1.3938820745102114 +7060208410,13984574641.202238,896786763.4368105,6.412685308244132 +7060208540,29556450826.94884,477689526.8027939,1.6161938035105636 +7060263820,1345717903.3182652,340375328.87029386,25.293215467446622 +7060263970,3956501301.6879816,183958058.90182236,4.649513417911411 +7060184430,27360733424.18821,662277329.1636288,2.420539387215928 +7060184580,8125395106.869493,17224265.843608502,0.21198065591969192 +7060263060,488611106.8525135,13539794.032204472,2.771077824944212 +7060262850,11106599138.083563,759425835.9485959,6.837609123251696 +7060264520,13355524561.865746,939551770.0847281,7.034929745608391 +7060264650,3726319358.3974795,32851912.672379784,0.8816182810082037 +7060260120,885600689.0444,59300311.31597935,6.696055236809589 +7060260000,4050188941.856919,568776197.1939873,14.043201573041094 +7060300250,5463950817.414329,495072748.5111817,9.060710190386779 +7060300390,13705544527.641335,1176268006.2466204,8.5824244624088 +7060256540,8114795834.179386,182085320.65939707,2.243868168468967 +7060256690,17946038854.453842,624845009.2551081,3.4817990439156676 +7060259190,6316238027.674259,23157685.386205528,0.3666373129818948 +7060259200,3866393557.9689393,3473633.9999126466,0.08984170772665434 +7060282770,26881013598.409073,2380177803.114776,8.854494248891138 +7060282720,24973217779.996277,6871564656.157881,27.51573592435514 +7060242640,14132490344.830418,248540057.8606263,1.7586430402306328 +7060202930,7075320129.069752,1282853876.5497322,18.131389861484603 +7060203140,13357072073.993732,3183226015.626195,23.83176491069437 +7060224620,5550247865.491813,1295010105.824023,23.332473381515744 +7060147190,15518950675.947977,443239803.77298737,2.856119676054786 +7060163780,18197484764.37036,2624317571.2760377,14.421320337711187 +7060022280,29674352717.89991,3853634985.906885,12.98641632571257 +7060146370,14908292158.07891,118647134.8291843,0.7958465904150434 +7060151610,20580813130.24351,935105627.6792282,4.54357960378684 +7060151690,14601348232.17656,796367146.5261202,5.454065842845864 +7060191640,24369594081.996834,2095482124.3812358,8.598756784091387 +7060191700,12127704069.926641,830223310.4684454,6.845675864792661 +7060022850,11036326261.500042,5882490616.330309,53.30116632063729 +7060023220,598412921.7416563,555093685.0868596,92.76097906965012 +7060150030,190762989.96970657,134669765.21576566,70.59533153530012 +7060149790,2796580784.454933,1596726385.4897084,57.095664618925646 +7060152640,8621197779.705925,256694342.2066929,2.977478869710479 +7060152650,6830095679.817452,7319759.53286761,0.10716920927619047 +7060168790,1705169096.4783504,27673616.024866484,1.6229250273195908 +7060168780,14605994152.815584,1939816.08546044,0.013280958934839115 +7060175260,4745929480.067237,362125256.4821637,7.630228346271874 +7060242880,4235862089.925043,1699928.2049162444,0.0401318118679904 +7060224630,2824327257.4676137,3230787.654255185,0.11439140580160731 +7060175330,25817188386.697624,3343789153.6243,12.95179437644417 +7060023230,4283681804.7014565,2241160769.22127,52.31856312860436 +7060023450,4782857748.61929,452029190.0787302,9.451027269402305 +7060023460,160187353.94982296,160187348.9722641,99.9999968926643 +7060023470,2714671359.964569,1261997723.7146366,46.48804795771329 +7060023480,5940814982.512004,5895097958.861601,99.23045872014225 +7060023720,2829814564.2585382,2478445470.90817,87.58331737392719 +7060023730,7019838972.421277,2358447290.1377673,33.596885902986656 +7060197330,13451970344.169632,595065792.888892,4.423632952378654 +7060222910,6794077635.677689,96996429.91540986,1.4276614886773336 +7060223010,3266373291.715946,216100752.4569647,6.61592332404356 +7060233450,2135079151.0316896,170476.55364706577,0.00798455427587731 +7060233240,6649830207.16013,401977084.9929601,6.0449225389264205 +7060255600,11224558279.673723,205444106.82361338,1.8303090572004694 +7060257090,4437648094.675625,161353877.11630493,3.636022363059847 +7060257230,4107568473.363847,104663872.2278615,2.548073706051897 +7060270660,8467060669.184781,200259167.96503496,2.365155699118383 +7060270960,8944528306.377794,1075979043.0832717,12.029466576969265 +7060271090,13295422999.674871,541042623.5348854,4.06939007166689 +7060237380,22444767182.64545,8447045176.601633,37.6348086298395 +7060237270,7893944874.534301,394528615.4615009,4.997863827681922 +7060243120,2860420796.383441,730551477.3672241,25.54000020874178 +7060243020,8662668140.44067,1383847874.3172092,15.97484576209118 +7060250850,2479546256.76639,19891063.722220868,0.8022057934164567 +7060251010,2497998898.548227,116097037.67998083,4.64760163615178 +7060254310,2848137510.334964,806395319.7926875,28.313075364744204 +7060254300,3728025295.9949384,357518910.50019497,9.59003445830375 +7060245620,1324578627.5980036,190634.39241456543,0.014392078238515944 +7060245440,3078031919.5084853,1326652664.3058412,43.10067923264705 +7060024300,6794441451.715845,12012202.977296282,0.17679456159362092 +7060024580,13729433541.160847,1524883728.878313,11.106676209959508 +7060252580,3922754551.0050435,17396361.07614795,0.4434730965181305 +7060252700,28871616625.00137,1278213174.5804365,4.427231045571476 +7060262320,2655309115.3768096,57597953.35214435,2.1691618884820776 +7060262150,24774807276.239582,1880947619.9296136,7.592178614981789 +7060284470,172972050.6656751,10219057.26836509,5.9079239848504495 +7060284520,8956076049.750324,238573585.53363946,2.6638182191439785 +7060287970,13188282058.584913,1213395998.394262,9.200561475741276 +7060287980,11804515951.823391,316018384.21299404,2.6770973541204803 +7060024610,1681543793.2346272,89702932.62252298,5.334558218669399 +7060024620,565301506.5196997,274338.9525282616,0.04852966945325156 +7060024660,6426806670.272167,578751301.665948,9.005270134280213 +7060024680,29322903074.6505,3208513130.068191,10.942003668258666 +7060024730,4245506707.4514766,2783516365.8745584,65.56381976712193 +7060024740,1622485826.4937022,1531747664.9067569,94.40746044709455 +7060252330,5587922834.539589,429842139.09076756,7.692342070900913 +7060252480,3094057380.307031,621386637.7674854,20.08322928082942 +7060284340,3920371513.982833,215245913.78087646,5.490446836815247 +7060284350,32085278811.376873,2482988212.2374535,7.738714775814976 +7060295550,3657415436.367626,61394894.64992822,1.6786415357535307 +7060295390,6097203286.8941145,631004277.1085008,10.349077231274855 +7060319640,2264184681.2938347,50094167.79563861,2.2124594433265505 +7060319800,9183870084.46016,642685141.085438,6.997977270746812 +7060024840,21521385545.784515,8996388558.618103,41.80208815774997 +7060024890,5244732650.571379,604916974.6361772,11.533800003519255 +7060244280,5180943570.397472,2070210118.3463848,39.95816766225775 +7060244230,5225332400.096506,284279511.19313127,5.440410091191154 +7060245300,3215432142.169133,265379813.982598,8.25331719809122 +7060245520,6886597215.070131,2152119754.436528,31.25084402681465 +7060253350,2537428492.6615043,1557784014.144023,61.39223306782001 +7060253490,69673318.99429092,69673318.99429092,100 +7060256760,2445737602.783667,239421343.51258388,9.789330762224104 +7060256770,11336866955.18175,6672616169.071069,58.85767377750881 +7060024900,13069648644.915642,3706400623.884324,28.358839052082622 +7060220600,2128067955.5306518,1606517.6692059762,0.07549184061678037 +7060227160,12220378102.384636,3374373674.271102,27.612678151199265 +7060025100,15760717970.894989,6579902326.1938925,41.74874734986611 +7060185280,10121289437.457596,1426679377.0081027,14.095826286008036 +7060184650,18305484408.67575,5051257715.364621,27.59423133850866 +7060178410,24664267234.2544,6224390520.752796,25.236470484345855 +7060025570,21896216909.44642,8798197469.296186,40.181358751065744 +7060148740,2903832752.922303,127076390.66150358,4.376160801052295 +7060025870,1807895670.7215447,251783289.12995133,13.926870516231876 +7060026040,15739516096.840738,1115361272.7383018,7.086375882687898 +7060026050,14372127825.10849,13288199653.915325,92.45812322028257 +7060026200,14438054429.19902,13796564190.754284,95.55694819138922 +7060026210,6364648115.257801,398538688.85137796,6.261755271214001 +7060026360,4128939734.550904,35402708.06574896,0.85742854925926 +7060026370,4293629547.272304,40424315.251805335,0.9414951804001456 +7060026460,10552263526.021807,9055345645.234217,85.81424850605558 +7060026470,4309429997.4364605,1233263957.684068,28.617797676669458 +7060026580,4058726329.279659,9073723.323642189,0.22356085598046688 +7060026650,12274045588.315475,315148075.79852694,2.5675974032436257 +7060026740,28304154174.91234,618403851.4272761,2.184851904090476 +7060026850,6754018734.895849,3223063842.3535414,47.720682587109266 +7060027040,8655897570.781534,4177084899.5517774,48.257097145554965 +7060027050,5175136037.564259,805149945.9072262,15.558044079671769 +7060027290,3013281713.1270804,155065538.8386278,5.146068426430202 +7060027430,21669822356.822266,4040787121.174492,18.647070818752418 +7060028070,223562388.07888618,220003261.30964893,98.40799393859517 +7060093380,425305185.6828219,423879709.07223123,99.66483441571442 +7060093370,9746341275.87652,3751140095.01113,38.48767438808752 +7060093620,1217166202.9383543,1137181929.0202212,93.42864813983141 +7060093650,4038950714.120251,712193845.276657,17.63314028039048 +7060093860,7844599240.26477,5012202632.192077,63.893673579466444 +7060093830,10454663977.756401,224106756.42755723,2.143605542027675 +7060096520,2767110314.0975747,57289225.530370474,2.070362906693655 +7060028080,13154065671.902905,1541359925.859555,11.717745405148015 +7060028410,1078793195.5145311,795315424.3347191,73.72269566044054 +7060102690,4918471147.456655,1142577996.5470433,23.230348665110526 +7060102570,4548039323.895116,276446261.9107804,6.078361294247148 +7060105110,3532670509.766265,23069263.86115341,0.6530261963966676 +7060109290,4196038318.8584237,32323312.157261454,0.7703292892247788 +7060109330,14112078948.050488,74069960.37727618,0.5248692318824405 +7060028420,10995958206.819601,1057980678.5012486,9.621541466437167 +7060115800,9474039775.399033,47746634.88917765,0.5039733421128331 +7060115860,3369606069.197449,278980118.0229647,8.279309577852533 +7060121880,20719530096.89224,4254526537.961252,20.533894919747222 +7060121890,15995680105.854836,1265464737.4533072,7.9112906052060525 +7060120870,6914414252.692742,133865681.03259268,1.9360379077730288 +7060120880,6461837930.520087,2537224422.949467,39.26474867105273 +7060143720,3685551878.9501476,88541643.11576068,2.4023985016046585 +7060143810,6557208743.143899,309538093.699541,4.720577090415011 +7060137470,2302936305.0079556,23470824.8346665,1.0191695177859215 +7060137460,2827644361.8224397,50297202.88067437,1.778766932637081 +7060156430,29751934458.52541,1492018512.289511,5.014862191127117 +7060028790,31732506093.153786,1944542449.833424,6.127919566532297 +7060028800,340552370.59326285,3899417.2645581253,1.1450271973632438 +7060028840,3261382403.858043,3192755701.5529485,97.89577872794331 +7060028850,2964390815.865767,68469173.27554783,2.3097215424191977 +7060028900,5258152243.536819,452406205.4779044,8.603900848135199 +7060028910,2660686706.9700522,414826862.6373792,15.590969863181579 +7060029000,1373328797.7440894,353426067.99549603,25.734992856485242 +7060106280,4490714725.574147,2937594715.7573543,65.41485922114049 +7060106320,2485687481.0701494,4599332238.2972975,185.03260258273386 +7060114610,3509697951.9172544,2066235554.5364342,58.87217597764232 +7060114600,1290221953.3354642,1318076335.579783,102.15888298693957 +7060121180,8307185980.304597,3317690342.9329395,39.93759560456224 +7060121090,3128783295.036269,1743694838.875284,55.73076414853048 +7060136810,10242684271.081913,353944975.58047086,3.4555880686448655 +7060136860,6111271446.431954,1764306497.5460978,28.86971251418037 +7060029010,14402147533.345345,4571145341.574588,31.739331450334046 +7060029460,19905534887.28122,9340835386.051758,46.92581957202341 +7060030400,4154026164.4440026,4868750.288823522,0.1172055758939877 +7060030440,1515090099.6930225,142146.8132109288,0.009382069966646185 +7060030610,5391322213.6581135,285840.000917442,0.005301853415351597 +7060187940,24707455054.234505,145244982.50458005,0.587858936445529 +7060198080,4566725801.830088,102175145.57769635,2.237382974400396 +7060197970,3621396300.3166475,12756380.191180956,0.35225032372363013 +7060031720,13819485946.153946,6486170212.258244,46.93496008122782 +7060032050,11348595189.294062,4127778548.5585723,36.372594842863016 +7060032080,22342904511.820263,337273656.77839375,1.5095336266596981 +7060032690,7158124998.971058,1094061880.0652149,15.284196353409312 +7060032700,4180912040.7314034,923869415.3587732,22.097317675144218 +7060032810,7288835379.506764,1111623055.8982446,15.251038033094776 +7060032940,19405522929.472477,1415246629.3012238,7.293009492425443 +7060032950,16099354726.551516,2920683444.84084,18.141618061399477 +7060033110,16136682400.993996,5157292541.882951,31.9600548224539 +7060033190,6890742874.154809,1101602375.432961,15.986699773180538 +7060033390,14380435926.972809,723639721.7073544,5.032112554738708 +7060033400,2459285022.332859,10748094.680828046,0.4370414402244635 +7060033440,5570049942.793673,24226445.270795204,0.43494125761185487 +7060033460,7624515629.922868,1462097412.8412206,19.176266189331844 +7060033480,8170519513.785006,715373690.4959728,8.755547175293078 +7060033690,19163809007.46177,6164156103.543129,32.165610193375464 +7060033700,18900301554.087593,1279726117.467603,6.770929626733045 +7060034000,425420453.36281747,2681475.189066557,0.6303117698903103 +7060293910,2146493132.6456435,46070409.64729159,2.1463106006077863 +7060293920,10959161486.451698,986253304.9640234,8.999350052312693 +7060271330,1934338550.1550837,513611605.73721784,26.552311936089964 +7060271320,2034381642.0618274,38861993.998332195,1.9102607492538084 +7060252360,3333046648.778351,870407523.1724257,26.114471679880417 +7060252370,13303176716.160822,3601073527.52455,27.069275289336964 +7060239430,8341947304.053089,1020644948.3016845,12.235092252450281 +7060239440,3322724006.154497,832243942.3199859,25.04703793569573 +7060034010,19901840442.799374,4422655138.451882,22.222342457036582 +7060034100,19037929983.585594,1494636132.4855602,7.850833224905375 +7060034110,7653896952.519434,248370562.07441387,3.245020982320094 +7060034330,7958710850.757013,1596662137.306555,20.061818644343443 +7060320860,8745800079.789907,310523720.80432826,3.550546753542847 +7060321100,3566657124.0190234,101555917.55077352,2.847369792483362 +7060314650,16851080604.306705,1010681156.937215,5.997723117405958 +7060314550,22066546006.00092,600998000.8700616,2.7235707876829585 +7060314420,4664720951.318904,413659613.64059293,8.867831923014275 +7060293370,14510303051.245735,824964065.8202262,5.685367582652945 +7060293380,9522184369.009302,1393233703.5830452,14.63145061670339 +7060034340,7623219188.356415,745397198.467483,9.777984602698963 +7060034520,24403861617.660385,1419039988.3564339,5.814817386644721 +7060374800,2468182484.2467475,444337169.8384204,18.002606074486646 +7060374950,165930350.3887214,980786.448881063,0.5910832144833034 +7060377200,4324188146.560675,254106356.0098111,5.876394536900977 +7060377320,3381263921.1492763,3905479.9826077404,0.11550355351380809 +7060380380,60938476.61140208,16289529.52360272,26.73110722389607 +7060380530,13506926324.291504,379590738.1933074,2.810341369158379 +7060382790,300398600.11190206,15634323.047643736,5.204525933815858 +7060382860,3966236908.698654,137222027.93080106,3.4597536932261677 +7060360220,5808431303.325766,556330493.1969712,9.577981801703155 +7060360130,6335704930.783474,901235492.6970731,14.224707472063825 +7060393220,5604643253.461104,614988495.889828,10.97283927054673 +7060393390,2327964737.3394833,24352814.404036265,1.0460989384172503 +7060402320,16933282156.128927,1579280454.6321537,9.32648756496708 +7060402430,4273042668.5384455,128823152.5402311,3.014787413398188 +7060341270,2529428911.144224,45179903.94106682,1.7861701406990333 +7060341150,111046649.94939733,2541408.138230207,2.28859505386997 +7060338280,4931661209.214795,420561629.2303017,8.527788333158073 +7060338230,2946262847.451134,114062655.09515539,3.8714351366794406 +7060334690,4535016410.4797325,412160886.6495827,9.088410037439813 +7060334580,12445366045.782213,838934109.4742756,6.740935593120572 +7060398580,782499675.6101176,62915747.216283314,8.040354415128377 +7060398520,9571580441.597095,689847465.1744478,7.2072472188233645 +7060400760,8697699699.20394,433338636.9445392,4.98222118411608 +7060400540,24200007812.679283,1621529212.8292007,6.700531774124558 +7060400520,4172991353.3701224,95362576.72600965,2.285233029514775 +7060400660,8508995854.579473,897746036.5720388,10.550552050026903 +7060434140,20716275498.362118,1225329270.452409,5.914814516486261 +7060434190,302690319.1760291,3257912.351984598,1.076318648331123 +7060439770,723298150.0371122,38474497.981965736,5.319313754637921 +7060388700,5388913516.143156,524405453.62835944,9.731190750369962 +7060388530,101211260.04789318,9944898.14044413,9.825881167508637 +7060387450,2917348771.273816,489556906.0232659,16.78088375458476 +7060387700,1338950073.6594684,21786489.876562692,1.627132355803103 +7060386900,4174171808.444461,1331509675.2625396,31.898775047276686 +7060386520,12701975462.548685,1971266506.25625,15.519369503337948 +7060450680,2531173487.837385,78845945.82931547,3.114995720687673 +7060453370,5816472653.583532,121950662.90548332,2.096642934104563 +7060356130,74486400.5908438,1244614.0540226551,1.6709279065038467 +7060356140,8060653555.068269,1241093409.0004878,15.39693277377155 +7060354140,1651577515.2580028,9366644.700833293,0.5671332174421176 +7060354130,8756400477.741411,1334792468.8008053,15.243620620068945 +7060474840,6697334974.259554,12548460.711320715,0.18736498561814957 +7060475060,4960126849.882565,117508722.28558461,2.3690668775611403 +7060343940,984990052.4769033,8032882.333316984,0.815529285104668 +7060343930,5051086481.071107,424293472.4420628,8.40004371400288 +7060343150,3986647876.7446666,241810611.4699879,6.0655121532188225 +7060343060,1882055160.7020667,268575104.4800748,14.270309929698751 +7060334070,4120318586.8709893,383586951.1831207,9.309643006863226 +7060334080,6971764300.636933,850519594.9988309,12.19948865628071 +7060498570,458353581.05075693,6153174.671616515,1.342451532179723 +7060489890,430235816.45526075,651527.6481517128,0.1514350091816365 +7060344050,4859649874.674467,66101051.63432604,1.3602019350983376 +7060343960,1715338659.9725657,32821942.000280123,1.9134380146719867 +7060481890,6360794422.611846,24457321.719734177,0.3845010559182889 +7060480440,3656250134.2465515,28998131.825609636,0.7931112686737808 +7060480630,3180935091.138757,5953100.971067553,0.18714940105666777 +7060446640,2672985859.190736,3857642.1468195315,0.14431958678552298 +7060446550,1131288357.1087265,4283653.867770782,0.37865269635751103 +7060431350,4108487587.5911317,18558826.859384462,0.4517191901817521 +7060422540,3386780613.377998,754222989.0172942,22.269614572555 +7060422720,973556665.52738,7033139.285070571,0.7224170440310927 +7060399240,28057593303.779476,3409245974.608657,12.150885279777068 +7060396070,1450847838.379621,116421638.82977588,8.024386551783497 +7060400750,24230913373.70726,2216372413.485164,9.146879357383735 +7060400650,195079454.57770678,116360392.41013457,59.64769209654739 +7060392520,7300764299.260611,548234578.6692505,7.509276511293116 +7060384130,3393867863.2527013,450318515.4506296,13.268593050615761 +7060383830,4335739733.329224,120068959.93939066,2.769284304968993 +7060379040,2680291161.044353,76696633.15471612,2.8615037899401914 +7060378910,7789149965.846175,756743930.5778654,9.715359620703572 +7060363950,152692891.35144556,152214323.1218947,99.68658119882649 +7060363960,5573830522.620107,928827644.07015,16.66408119695633 +7060359070,3025704189.860011,729855908.0625794,24.121852708157412 +7060358930,8347790189.252708,818134657.5487249,9.800613563599446 +7060347220,316355748.78577125,315141293.8186541,99.6161109852505 +7060345050,337086418.8209118,335072645.33309186,99.40259429766886 +7060343600,12368379249.267101,1056816086.6208073,8.544499366668676 +7060343590,3397447251.118348,312873133.4285376,9.209065227592516 +7060337970,337823502.5416384,18481660.370464537,5.470803609404465 +7060331850,3970348924.578862,803764736.3153303,20.244183863527464 +7060331860,1001922964.7117833,23058149.828319255,2.3013894920506432 +7060335180,15949952912.169537,844776524.8210645,5.296420180504199 +7060293670,1465559724.2400646,51009552.079297826,3.4805508936694998 +7060293560,1339243375.0286663,501540347.5848285,37.449529856669486 +7060293450,14974307263.100891,2104714176.8207762,14.055502801168851 +7060288450,1434979328.459706,109218966.89431001,7.611187473449159 +7060288400,5331091062.467103,676864692.82126,12.69655094782836 +7060034530,403466634.4560929,8180835.051048568,2.027636080013661 +7060034570,1999855824.772863,14171618.334545732,0.7086320003170877 +7060034580,7248438354.547601,240432375.624183,3.3170231139972106 +7060034790,1812113397.927474,10023779.382161532,0.5531540903359466 +7060034860,1684822986.7490387,10239553.472507644,0.6077524792242681 +7060034870,12393655215.888615,1927874907.4975667,15.555337581329834 +7060035320,2385639231.679203,62944654.06172477,2.6384816792864068 +7060035330,1726479950.7738054,40048151.70325383,2.3196418635098723 +7060035360,3135581250.99152,978483402.8939179,31.205806023508593 +7060035370,2347672675.3465223,41183735.58590816,1.7542366965543583 +7060035470,11997861304.01814,1143984771.490636,9.534905784479356 +7060035480,9499679347.610697,1187566802.579502,12.501125134062466 +7060035860,11783025697.822262,1340498556.2701325,11.376522386078506 +7060035870,27401017006.844757,2729802895.3329277,9.962414514216844 +7060037340,1946261142.3237705,926514801.2022988,47.60485533282914 +7060037350,8549870188.314229,1529706427.3155782,17.891574885035645 +7060037690,1609390134.4541333,66343067.65274014,4.122248933459638 +7060037700,4138227685.8104343,121241089.45860086,2.929782956948559 +7060037890,2483781584.8310165,22534063.891355127,0.9072482068864453 +7060037900,5249577146.415978,595917514.2991164,11.351724104215986 +7060038180,1987233245.5946987,40405804.69145006,2.0332693598510243 +7060038190,2039113296.371426,398566039.78649366,19.54604682808633 +7060038320,6149478029.569074,250726355.9489156,4.07719736119596 +7060390740,10116437266.507254,662404743.6977785,6.547806567148088 +7060390750,3833177312.3795047,640650158.8683327,16.713293089764196 +7060364000,4316800902.672293,268288414.5288208,6.214982357947949 +7060363050,8757180007.467064,455629844.6444188,5.202928845312221 +7060355150,2866787287.083106,73488242.84876859,2.5634354937977033 +7060038330,38668266.8335454,3957556.6822836413,10.234636838831346 +7060038340,5579392178.599928,1097512555.3811865,19.670826503122644 +7060038810,61041653.58841696,22563677.415277723,36.964394128994115 +7060038980,10897589.45862135,964885.1289240165,8.854115238858373 +7060039620,286645748.3708121,2390180.0489791334,0.8338445843219473 +7060328250,3528774915.8994546,683400833.3012483,19.36651811432 +7060328380,3072142645.7475595,172483175.4682085,5.614426000269181 +7060330450,20841941280.75808,6012352282.244876,28.847371755123714 +7060055790,1929904734.2670817,230734173.48986837,11.955728663337057 +7060055920,1441550803.9602516,282476476.27327746,19.595318839769888 +7060055930,13490577452.128622,2468604875.0955834,18.298733941192953 +7060056620,1835401463.1105804,313158994.14302325,17.062152364872333 +7060056630,1727829921.347671,198434238.60294956,11.484593254883272 +7060056700,1353270441.8872824,275600260.7334183,20.365497701188524 +7060056710,655848672.1257434,63913598.294066325,9.745174612751585 +7060056760,1774417270.4750755,990375513.0484085,55.81412723644475 +7060056770,9337134437.927883,1037822761.7230403,11.115002880405738 +7060057190,7391311946.258274,2292290227.7498994,31.013306493041906 +7060057510,10042040882.528458,4825141552.177354,48.0494115550986 +7060059990,8326214784.12079,111309639.56244734,1.3368576531886949 +7060060310,7731323550.359751,955128162.9216679,12.354005840012016 +7060060320,26223809307.5898,1770588828.189145,6.751836880070258 +7060061510,11292848265.426157,101384755.01327473,0.8977784225054296 +7060061520,2479801996.5046616,4754179.491689481,0.19171609259088454 +7060061620,5210266942.498457,4030718.183672189,0.07736106860082212 +7060061630,4011190603.435484,15679786.069424879,0.39090104708550966 +7060061870,1883276580.90019,169495752.61486623,9.000045682819923 +7060061880,21531902972.60373,2630156776.066922,12.21516175051235 +7060062870,1342822172.8785443,764105375.8213446,56.9029459934645 +7060062880,691552296.6785885,111276304.10578048,16.090801034169388 +7060062930,1224862223.2237306,851261133.1629066,69.49852130490738 +7060062940,2891116668.906896,11802880.467738707,0.4082464258421389 +7060063060,11983195112.503433,4896452.685845676,0.04086099441656131 +7060063420,7870459454.188392,2084023997.7932315,26.479064023183355 +7060063860,16791100902.834866,2697224772.8469143,16.063418286001355 +7060073760,24574452616.948685,2462648497.634061,10.02117335437862 +7060073860,9408735184.272455,1060918467.0920823,11.275888270992073 +7060073880,18909350245.926445,993413334.7573062,5.25355616051013 +7060074540,15163830596.631575,3049105171.470591,20.107750162732003 +7060074670,3904421498.9611707,310932434.72275823,7.963598059417674 +7060075500,2629505701.7523303,364201045.3437618,13.85055164934818 +7060075830,3144539217.0298405,53982408.25612643,1.7167032919727825 +7060076630,7598579225.428667,598557679.440707,7.877231541360152 +8060000060,26217550517.17886,15685272738.592094,59.82737681124876 +8060000070,218055996.14617825,217954441.40260226,99.95342721806746 +8060000290,2967223905.389022,2967223879.832142,99.99999913869391 +8060000400,1587615399.1776586,1581706387.0889568,99.6278058217524 +8060000410,223406168.17015836,219890923.6266205,98.42652305783228 +8060267640,2904960742.567587,2918296550.7003794,100.45907016702077 +8060267770,518328620.0622585,518328620.0622585,100 +8060146840,3938614869.5223346,368291324.53157115,9.350782869923927 +8060130480,4676618950.888691,47801257.364040405,1.0221328242908652 +8060119700,16272863705.766718,3051055718.1682982,18.749347215924118 +8060119620,6794030035.820235,5953024272.863655,87.62140057487916 +8060194180,4044740007.1804295,514655247.28104657,12.724062519900025 +8060129020,6509390574.596336,270141300.401075,4.150024450143356 +8060129130,23197508114.07078,5308047786.554447,22.881974048474518 +8060202520,7924734589.022524,395421932.48848355,4.9897183059761865 +8060234860,7654566185.298281,2525081356.1825743,32.9879093740461 +8060214160,3515153104.6576047,649061929.489103,18.46468447218105 +8060231240,18217900814.345192,110474099.72508058,0.6064041123667264 +8060212970,4086088021.33806,477573813.5823459,11.68780043622154 +8060252130,9296832273.993973,2636644747.093547,28.36067887842865 +8060252250,4513973756.007437,3607173182.604908,79.91125729971934 +8060228670,12526506678.90287,643574147.898115,5.1376985171933205 +8060259590,27143277072.674328,677341651.6723908,2.495430635950307 +8060249330,11791718425.371866,30512668.40199352,0.2587635432028328 +7060414850,232832582.39256284,80000366.78315374,34.35960979390362 +7060337870,21895821.48496243,22302510.35513094,101.85738119233304 +7060024590,95029386.15133101,3476557.246728368,3.658402297992403 +7060024600,63854110.625341274,3401661.6599513483,5.327239901453358 +7060033120,578077946.1073552,11408035.017044948,1.9734423521713724 +7060033180,5856514550.287102,560627928.8296616,9.572723230102419 +7060033450,77963491.85955746,66801.36822090484,0.08568288390832988 +7060033470,29924637.77294685,40242.981488528945,0.1344810981301512 +7060034800,738273368.4754381,501778.046344837,0.0679664292077916 +7060059430,2989681930.9635954,2058115382.9488833,68.84061349916037 +7060024690,556157937.4498724,60775486.90604763,10.927738833454201 +7060024830,379451528.4641657,5443615.437335276,1.4346010040777464 +7060025090,1185407555.344997,536304192.55286986,45.24217769109678 +7060220780,1853341778.7404177,9930321.670113359,0.5358062816056669 +7060221070,10927243424.28711,36406614.486843556,0.3331729062237736 +7060220950,11686474956.785261,2254951028.136046,19.295390923905614 +7060228720,3782020760.552383,323862810.2792947,8.5632213777693 +7060227150,2440174647.5739436,49792662.17251068,2.040536820674506 +7060025560,3781502727.05217,517347373.64516574,13.680999618066078 +7060184050,18909682798.334038,5023077425.918429,26.563520284755743 +7060185140,8469942096.40202,30425023.4078868,0.3592117048924238 +7060178270,9992433104.218864,2071326018.0400782,20.7289455574694 +7060148930,3349285211.397362,30548062.51249373,0.9120770727001989 +7060156440,9368673587.483381,1070959655.6535623,11.431283688700313 +7060453430,616853422.9136142,7906813.780170126,1.2817978285381773 +7060059690,607655596.0806061,234623837.79900843,38.61131853509424 +7060059780,3614311575.1838956,12996519.041017976,0.3595849104502485 +8060153970,7859785939.552635,9703524.456273347,0.12345787189244564 +8060213590,13004280509.90493,231058768.54673457,1.7767900990042838 +7060419920,257603814.3319807,5305454.737920884,2.0595404426285424 +7060399420,55010567.86587987,40119447.61599773,72.93043713675549 +8060274780,1517229290.6106842,18472098.449616317,1.2174889164037497 +8060274770,8373716683.362234,2988682513.9115424,35.69123039294804 +8060280670,1275593672.4076214,6184609.005338584,0.484841618386632 +8060280610,1879673259.496852,355211.37621866865,0.018897506490769097 +8060287740,4259481188.294795,1359149.6670543365,0.031908807832966325 +8060287840,4684427166.194562,428135757.2342718,9.139554144932344 +8060298170,4155588060.313766,1963470913.0975397,47.24893046663746 +8060298100,2879874125.3586907,535593234.707767,18.597800160486475 +8060008980,2184433026.4198117,2149464965.303888,98.39921569153188 +8060009130,3566994734.1380234,3530047739.504185,98.96419822882731 +8060009140,1466129172.7706604,1465719235.9128735,99.97203951292967 +8060009240,4329234961.147463,4376700300.435153,101.09639092619518 +8060009250,9623145983.628494,6566660189.333294,68.23818531387668 +8060122010,28700651347.071915,3890384953.1034074,13.55504063673562 +8060122100,22473497892.462303,620156858.8409895,2.7595030458030854 +8060159800,12401787799.21934,2021901926.1622982,16.303310126702634 +8060159890,12338531143.57794,245485114.14732325,1.9895813471694754 +8060148430,17547891460.815823,453900600.57532084,2.5866389793262288 +8060148510,14839689485.64571,8818210825.88127,59.423149213540086 +8060164230,14714150308.78465,1523894683.2081585,10.35666111347498 +8060164290,16980843404.514643,1890842462.0042343,11.135150457258925 +8060183170,4470425788.536782,18912325.058844943,0.42305422242643126 +8060183070,22404157921.562115,2890085093.365857,12.899771120540056 +8060194580,25253122853.561462,4735579863.962824,18.75245248448535 +8060196880,16152586555.9983,3175748514.0719895,19.660928626274213 +8060170630,12133985111.773798,51569824.687952094,0.4250031973247855 +8060170460,6325173398.070512,1643655886.14584,25.985941929232098 +8060155650,29562105459.964672,5681120229.778738,19.217576493232382 +8060155560,10702781761.091158,2478417592.634046,23.156760998753366 +8060231560,26685060385.00204,6466414164.304531,24.232338510797927 +8060148890,18319653369.869442,3785727130.7814207,20.664840400353057 +8060148880,1264294926.4724905,1310530.769333083,0.10365704566968366 +8060147790,7820024902.608866,1572071790.111985,20.103155804369887 +8060243490,12027647033.73311,3654934111.188579,30.387773277165834 +8060150880,11346727846.195751,2717975919.2398868,23.953830179783065 +8060147910,6797797536.337276,307188640.40916395,4.518943654427819 +8060252610,2684096060.2496743,968522802.3482383,36.08376081212781 +8060254850,4239375461.3109794,1476130431.0634308,34.819525765876705 +8060176280,7762754063.900786,109652.35070610046,0.0014125444372380402 +8060176270,2004866400.8938909,93265297.47384167,4.651945757196507 +8060264660,9295402218.60927,561541910.5614021,6.041071675598961 +8060270510,4344432717.624597,3107629697.353072,71.53131143557516 +8060191300,2735221285.4382143,299126.3238492012,0.010936092280419559 +8060261020,103187579.3191034,65439327.894735366,63.41783412940321 +8060260870,2201624096.281061,2095697541.733905,95.18870843001378 +8060261290,10622143269.840826,2502435147.9441047,23.558664992301537 +8060261410,4088538090.1329784,86195509.78386356,2.108223230006892 +8060265470,2908948534.8218117,2857161109.4977255,98.21972012553124 +8060265410,2171655339.4696765,2160285347.555636,99.47643662843768 +8060286860,7489436672.110809,33284896.30495542,0.44442456438548755 +8060286910,22868694587.997288,654080711.068594,2.8601576209421697 +8060259990,1143778380.9254897,1121759571.510396,98.07490596235284 +8060260060,8368265840.465403,6797108911.579411,81.22482054419758 +8060258940,6915734411.419848,6854567610.154877,99.11554149384384 +8060258800,2286736403.9410334,2266135749.259862,99.09912420838417 +8060272020,7338227898.184747,57072837.54297253,0.7777468666119051 +8060271080,18693603399.60693,11592487422.744423,62.01312382067643 +8060298780,2722054586.0140986,1483978.0694556108,0.05451683728461148 +8060298770,4101524273.470051,2620247.6802570196,0.06388472932381763 +8060296490,1421254176.787313,169114879.12559813,11.898989068083191 +8060296400,10673760503.701454,163987345.36921704,1.5363596111450073 +8060266590,14300190299.51891,9604045152.389915,67.16026116598614 +8060264770,16511621267.07936,8568521056.419853,51.89388078748906 +8060241560,6377766392.680619,3478604728.5817485,54.542680217543484 +8060241570,2391243601.4765453,2263766839.39856,94.66901816279734 +8060302210,7614267301.411565,1210269904.2454588,15.894765134146182 +8060302220,7303745424.15277,1014627835.1026086,13.89188390585649 +8060306980,572509796.1537732,1578583.2831091378,0.27573035321218126 +8060309320,20255266397.33528,8097821942.320519,39.97884690070452 +8060309340,4246293853.311495,371170796.8556259,8.741053014175323 +8060246160,20275585382.640022,11870971754.303837,58.54810862559744 +8060246110,27446066031.710964,9270978297.313456,33.7788967154777 +8060299210,422725249.85933733,8710194.215927212,2.0604859110794886 +8060299220,3815598135.395082,16105983.966956493,0.42210902184773225 +8060275110,5310001573.313804,336072.94469475746,0.006329055463631906 +8060297380,3883354176.529595,5522360.081933176,0.14220593412028923 +8060297330,9362070469.581936,56843252.139078304,0.6071653949173558 +8060229140,30326467983.61398,2250372277.121413,7.420489185675484 +8060279900,5206287092.807511,1023511619.1563116,19.659146737610637 +8060316070,7702188884.492134,173159312.6165431,2.248183149145931 +8060316110,11110947034.358086,428722275.95596814,3.8585574625658974 +8060297840,22911528715.625114,10518559734.300749,45.9094627200818 +8060308720,10963752323.588926,638931927.284316,5.827675675504178 +8060308670,21651309021.827965,745334528.404345,3.4424455706254493 +8060283050,28885179487.639523,1140698125.3977387,3.9490775049047677 +8060282950,27844564749.659443,2730335.5293726735,0.00980563192105945 +8060293870,717377945.8256681,2088007.0397387743,0.29106094658870185 +8060293820,9752725184.362167,7030697.924302683,0.07208957282602334 +8060292670,14624239554.636375,1125187049.3321948,7.693986720666598 +8060292590,2592354392.881425,9659157.1476363391,0.37260172352052917 +8060197650,4331787357.483643,1056244.6814565063,0.02438357643829692 +8060307300,1014269450.0285147,947593678.6138227,93.42622698408026 +8060307380,22103301866.628326,12732455432.364502,57.604314093850505 +8060285990,12516877318.81822,1837871.0079877637,0.014683143096918093 +8060311240,1321283680.900033,640515313.0353386,48.47674441865747 +8060311330,22639221428.901157,17670714333.61558,78.05354256157062 +8060311100,28985762908.332836,6312584777.598825,21.778225391418218 +8060311060,26799370170.9434,3026582710.6173077,11.293484478597225 +8060302950,2239418305.5607615,9056297.226506263,0.4044040009862526 +8060303080,9620417347.04958,299113096.30618626,3.1091488603446007 +8060303200,9667557183.960999,2387560148.9396725,24.696622978354494 +8060327990,28255686198.754116,634132131.6583549,2.2442637818023186 +8060328000,1532872821.7207236,17362102.658855688,1.1326512162545808 +8060315160,2374714383.4555864,87971529.57519042,3.7045099060366953 +8060328810,523953183.8687738,177668259.11448684,33.90918589378867 +8060328820,13329454911.17057,2525391426.8973455,18.945946730207066 +8060314130,9442660763.233463,814577670.7001957,8.626569259714236 +8060328010,1372288129.6401987,16254588.007887265,1.1844879844693452 +8060328070,2572699644.4202657,1506101913.8318946,58.54169246294901 +8060304890,13188836697.733727,1602809.809289381,0.012152776215394312 +8060327140,3016649336.630453,83963798.59054248,2.783346329684067 +8060327190,1155089593.9926293,687879513.2917037,59.552048331940306 +8060325210,10431194191.06573,34139530.27975881,0.32728304788917806 +8060320050,1382340647.5002556,12679002.626593096,0.9172126023727268 +8060325830,2486827003.325001,24115814.8068359,0.9697423574133608 +8060325760,6039948552.55583,534621447.4008724,8.851423861460626 +8060323980,2834840422.508122,55804874.73204963,1.9685367221720482 +8060324030,9482931232.63238,38864120.27900959,0.4098323537902663 +8060328330,7059215972.316137,42682008.9656405,0.6046281787244495 +8060331970,22896111133.85376,708002943.1240402,3.0922410316099502 +8060331980,1759821597.3570898,78779128.52620625,4.476540613237002 +8060338740,20226449519.594555,531483226.5881591,2.6276644651513354 +8060338780,1161138417.5182078,698824.381624223,0.060184416524420505 +8060340700,1751746565.4996517,144720403.40557218,8.261492059172012 +8060340710,14135888515.199974,119496446.48785657,0.8453408949806371 +8060335620,13404747106.346844,41334110.67114694,0.30835427437177215 +8060335660,3021396849.9895725,323003.07562796236,0.010690521360313099 +8060342260,1717945484.5033913,1252668.5316675527,0.07291666371064523 +8060342280,1852006579.4049072,13630816.859836478,0.7360026152939682 +8060338970,14927822470.737879,1314491376.1523714,8.805647164742819 +8060342750,4057959897.845103,10295536.593610626,0.25371213251954167 +8060342780,9726913440.930515,200611095.6082794,2.062433235646108 +8060332620,444018914.4347779,13931082.244249353,3.1374974784538585 +8060332600,15843893950.883339,714225254.2860056,4.507889641903249 +8060332270,13464279285.678082,2178711102.223504,16.181416442698076 +8060331810,1368851190.2241905,11814079.013213871,0.8630652548345273 +8060331910,1869370987.9343019,363778480.48785067,19.45994042037821 +8060341320,6887020256.321544,4329882871.213033,62.870192188539974 +8060341350,3786814838.2275357,975114729.425597,25.750261660060758 +8060343130,11886142487.092821,9313651805.218088,78.35722830457229 +8060343100,5665490632.599869,1555068001.671667,27.448072947533113 +8060331800,4899173746.768781,449973068.6029923,9.184672597083727 +8060331740,9406612771.215645,1404047409.565103,14.926174210779742 +8060332890,1100454068.5823462,3628224.915903886,0.32970253093597324 +8060332940,2294072573.4195004,1600853.6865329053,0.06978217276477455 +8060333190,209922584.42730197,482535.25701087713,0.2298634319538798 +8060333260,22699332053.157223,1930271926.3617666,8.503650776337656 +8060332850,11625836240.276398,2043681990.1706069,17.578795606035644 +8060332260,3211019888.9941897,5734152.999535153,0.1785773118126435 +8060332210,3375299115.6526384,978107388.9739361,28.97839140946215 +8060327650,5877070028.321819,835824569.0695835,14.221790195483699 +8060327690,5539418894.893784,610719874.1440204,11.024980882145957 +8060322730,11109133067.75042,3223414740.397057,29.015898187002207 +8060322700,2450635691.8341866,1763206970.356763,71.94896312952517 +8060104840,23239386783.622032,332435947.310297,1.4304850227140304 +8060109640,9053390921.121767,1055358889.1932858,11.657056437617308 +8060109650,7501499553.745779,789965067.8852202,10.530762045980008 +8060125280,5426817919.9798155,2011013.3736065107,0.037056953140119184 +8060125380,4528185950.596928,716122111.3801999,15.81476819179206 +8060010200,23944432474.57899,1721725071.5648263,7.190502733329448 +8060010430,15079159105.937216,11780780047.653723,78.12624009660591 +8060010440,8556879887.076499,5043385211.929341,58.93953495299604 +8060011270,1632943313.1169264,8323891.684871003,0.5097477431094984 +8060129850,3011230760.9991713,268394939.43706024,8.913130900270254 +8060130010,7938811036.118581,7729595.327375829,0.09736464682443127 +8060012110,9188882621.192934,626413835.4188906,6.817083874530626 +8060012500,6897580356.672615,2492821259.3327675,36.14051784001689 +8060012510,1108132548.5992465,1108132542.5978415,99.99999945842174 +8060012600,17787831289.743748,7142748430.524537,40.15525172336754 +8060012610,4525895557.425278,4504089797.327316,99.51820010379633 +8060012680,7460442545.503589,5579806160.4735775,74.79189239030504 +8060012690,1787516188.0662916,1787516187.5428188,99.99999997071508 +8060012760,5814754061.692707,5052787541.726815,86.89598026190502 +8060012770,8529143337.323964,7990114091.465425,93.68014788191306 +8060012900,7678526365.772663,7531352635.438482,98.08330761237973 +8060012910,3822673955.996006,3822673953.83325,99.99999994342296 +8060013040,5340008749.15562,5189512521.212026,97.18172319535262 +8060013050,17162107091.081003,2120366800.4028163,12.354932813027093 +8060156300,24778100679.097107,1262343671.405832,5.094594165043286 +8060160010,11177696276.236813,5506420123.155483,49.262567053837735 +8060177370,14540765387.13668,6942317798.803914,47.74382650410792 +8060201080,29138208376.169697,925894538.1202707,3.1775959803949423 +8060190480,8953937937.663708,8953937937.663708,100 +8060190630,20130794171.5455,5591627677.609691,27.776488249595992 +8060192880,5053266287.752303,5053266287.752303,100 +8060193020,1449893771.2650576,1449513239.24705,99.97375448977373 +8060199520,14273605520.957483,13073557337.420471,91.59253643534551 +8060199600,6650777611.271052,6190065899.07096,93.07281435152295 +8060211930,13459911616.733849,614701550.7219368,4.566906293483514 +8060211920,9035428021.956623,6177593940.324071,68.37079466863278 +8060281810,6068744163.117489,2136678167.9746835,35.207913046660394 +8060281800,7645058631.850058,293110781.071375,3.8339899690271437 +8060239530,8686149088.231821,819328696.5459111,9.432588460356442 +8060018140,20486746846.718758,19225887.535836954,0.0938454879131591 +8060018840,1427903377.8433812,94269947.8914022,6.601983674398322 +8060018890,4815044473.581,24714727.17327574,0.5132813893802964 +8060018900,707553438.4554709,112005980.56919993,15.830038337980449 +8060282670,11630864261.205805,17523909.32881046,0.1506673015457727 +8060283690,3410508594.1209383,95202905.25504881,2.7914577145227057 +8060290230,612930276.679058,220939654.81380874,36.04645801001881 +8060290300,3641137227.8262854,2152987566.1204243,59.1295364993901 +8060293840,3136877638.33395,233688195.2050032,7.449707070152696 +8060293900,8379415878.64649,2498737770.822916,29.81995173661833 +8060018980,6277954693.384663,902053855.5134774,14.368594543442763 +8060022890,7706416741.783521,3866377056.0882397,50.170879484431204 +8060023080,7292225519.650273,5221867254.397843,71.60869120581282 +8060023090,1182244283.6545045,1182240802.7777233,99.99970557042828 +8060023160,3775105344.1631474,3775105343.560832,99.99999998404506 +8060023170,1907546246.5481074,1859145204.8784447,97.46265435203739 +8060023260,11221380311.384449,3617660945.193415,32.23900130648974 +8060023560,10177325987.901901,6526072869.188349,64.1236497381148 +8060023570,17759314852.649673,3937003822.940494,22.168669543876554 +8060024130,6883919608.316771,21766949.350464035,0.31619993534158086 +8060034410,1937151383.3829966,15236431.816073935,0.786538003522749 +8060034420,11476317511.727667,4728346419.752365,41.2009027714723 +8060034890,3273100602.5596194,3233760817.9405932,98.79808813122756 +8060034900,3031370317.7839637,220468373.73359635,7.272894784256064 +8060035020,34181484263.458405,2968689458.078437,8.68508059859795 +8060036730,65590824884.05693,12848673075.33769,19.58913170866494 +8060038790,3904798670.223423,2580388464.4592156,66.08249700903458 +8060038860,4326014146.154914,2415389783.0694675,55.834070381307825 +8060039140,31531524174.057076,41519991.31120311,0.13167771745510531 +8060040110,55998799963.588936,1463044069.3436506,2.6126346819841473 +8060023270,9451454350.60878,1444014543.69335,15.278225870078286 +8060009470,2629664477.8693037,2980595.0405301293,0.1133450698982392 +8060009560,4175797735.755654,59340914.79661756,1.4210677468524275 +8060009570,8893561878.659727,522255882.26387405,5.87229154515737 +8060009900,12601937152.255836,381182816.39659286,3.0247954087626794 +8060010040,6793898812.992744,559869349.999033,8.240766685078253 +8060010050,5754287304.841297,62159937.59213401,1.0802369485415948 +8060010210,4285198612.741826,15967421.957918547,0.37261801379381126 +8060129330,23145433086.667274,274022504.8489764,1.1839160832415991 +8060016890,7167112370.323819,345973705.06258893,4.827239858762776 +8060016910,15973862403.066177,8511789220.617373,53.285730187481384 +8060017300,5760432246.749307,4915687499.565004,85.33539305733517 +8060017310,7130872858.000414,3421858346.3448296,47.98652864082002 +8060017600,3352371840.8378286,4203.439782619476,1.253870388545248e-4 +8060017800,11682095472.870045,139226679.7670347,1.191795428229193 +8060018080,30033811023.71756,98799320.4527244,0.3289603186711904 +8060030970,1410654556.034532,154869819.44031927,10.978578616416998 +8060031040,4681542142.726427,230751965.03261542,4.928973359582545 +8060031050,12268369520.232826,798241870.7386173,6.506503324848243 +8060031590,13751141738.084953,832645259.7222306,6.055099100725206 +8060033320,21449197186.365055,15159879.526628055,0.07067807431163424 +8060034100,1047572963.6015722,1857539.3967423139,0.17731837888943452 +8060034170,5041434012.439148,883595.290696007,0.01752666579619686 +8060034180,992857326.1133169,138275.5393866215,0.013927030173400749 +8060034210,3477392953.475282,1.130197005960781,3.250127383019138e-8 +8060034220,2954621038.428044,2331959.870409111,0.07892585343702117 +8060034350,1786564303.0655248,52339.37032984942,0.0029296102155428436 +8060034360,1720840385.0751474,1463846.5653360665,0.08506579564450086 +8060035010,5268969814.6203985,47384.90341343424,8.993200773697745e-4 +8060041630,4863803060.781661,13713040.242745409,0.28194069684518824 +8060041740,3540054179.8213587,482294434.93128246,13.623928065293633 +8060030130,24892290723.55158,67395188.46847685,0.27074723341838364 +8060009460,5604178060.248002,2931963035.626638,52.317449661777694 +8060112340,15730471456.94727,4744056761.770956,30.15838892530949 +8060112350,5635085929.894262,5703192.283858537,0.10120861251827534 +8060155680,9103640718.577085,8665110540.652658,95.18291427044619 +8060155780,1545697582.642007,1176659660.5815513,76.1248302252196 +8060157910,635326881.8628621,239322171.56663957,37.669139839465856 +8060158000,10444286709.946718,10281853960.241438,98.44476933450528 +8060160210,3207868517.4079022,645208808.7082933,20.113318398400263 +8060160330,9747099310.202255,9562586596.41603,98.10699872942614 +8060150960,614912524.4458112,49904196.88515604,8.115657902745127 +8060162560,4180016568.307991,1889521.6431154485,0.04520368788586642 +8060162570,3624033925.961127,10255228.501007214,0.28297826980986207 +8060304100,1889993070.3043234,5763908.488622795,0.3049698212753077 +8060303960,2191017305.9024477,5970.810384094715,2.725131548714731e-4 +8060306890,4072184123.7758784,660425619.397458,16.217970487667614 +8060332200,153916032.12543693,679705.1841638058,0.44160778755644287 +8060142120,24744710090.435883,1324492471.629087,5.352628771112653 +8060043200,11070772338.861681,21864919033.74505,197.50129769169513 +8060047730,19818506978.310852,12073686614.301397,60.92127236181162 +8060055670,2403040245.3106666,152259284.02354926,6.336110446783843 +8060055680,2731159892.599634,933362566.0620266,34.17458525921793 +8060055790,2449849668.1740103,2125317316.1277614,86.75296871223374 +8060055800,25715706922.268448,588108369.8129454,2.2869617062857195 +8060056830,4542822076.385598,4201270123.494866,92.48150274988359 +8060056990,3099168695.9635205,3099168603.6636014,99.99999702178462 +8060057000,15799694947.735435,11113862314.522251,70.34225883022631 +8060057510,8698676214.088472,8698676213.868889,99.99999999747567 +8060057520,1217381652.2078142,1217381631.3355434,99.99999828547844 +8060057550,4641202086.400565,2440281057.4941397,52.578642603056174 +8060057560,9015805946.33568,159054751.87838227,1.7641767449867014 +8060056650,2206976550.2672577,161610875.44803154,7.322727349706592 +8060056840,911937528.545768,912025447.778476,100.00964092714203 +8060056660,5880520878.421867,210503268.31854767,3.57967045216987 +8060041750,7573814931.499681,5663721356.525734,74.78029774625438 +8060041920,2750287382.2156353,946583154.3553802,34.41760888248746 +8060041930,1116665342.3497584,253575521.61355805,22.70828259789708 +8060049770,4062023966.5082426,31810422.13470428,0.7831175393592974 +8060049910,1983928875.6552913,6093.0504080527935,3.0712040551555866e-4 +8060049920,11865978019.169493,20094209.112013336,0.16934305018559054 +8060051220,8997805438.72238,21598670.672495283,0.24004376199939406 +8060048550,8066283349.724114,6342236.532976088,0.07862650316137243 +8060049710,1403298560.5566416,11745177.360842837,0.8369692445336734 +8060052790,6526597260.709258,15539876.362645686,0.23810073981732002 +8060053140,67379918889.299965,105247555.60871613,0.15620018151347106 +8060058620,14022165126.11941,362052763.56483984,2.5820032805806563 +8060053110,539501943.0956992,2460044.096466789,0.4559842884625933 +8060056630,2081627856.871953,15340797.14233344,0.7369615607174831 +8060056640,289035554.2157119,29629130.42256666,10.25103313084243 +8060052560,3885389824.133532,27321678.16455884,0.7031901405324692 diff --git a/man/apply_weight.Rd b/man/apply_weight.Rd new file mode 100644 index 0000000..d1bfe2a --- /dev/null +++ b/man/apply_weight.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/apply_weight.R +\name{apply_weight} +\alias{apply_weight} +\title{Applying expert weight} +\usage{ +apply_weight() +} +\value{ +write \code{watershed_prioritization_level6.csv} +} +\description{ +Median values of expert weights used to generate weighted-scores for: +\itemize{ +\item Area-based protection +\item Restoration +\item SAR management +\item Invasive species management +} +} diff --git a/man/compute_fish_priority_index.Rd b/man/compute_fish_priority_index.Rd new file mode 100644 index 0000000..f3a08c0 --- /dev/null +++ b/man/compute_fish_priority_index.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/compute_priority.R +\name{compute_fish_priority_index} +\alias{compute_fish_priority_index} +\title{Calculate rarity indices} +\usage{ +compute_fish_priority_index() +} +\description{ +Calculate rarity indices +} +\details{ +Calculation based on Q index in Minns (1987). +} +\references{ +\itemize{ +\item Minns, C. K. 'A Method of Ranking Species and Sites for Conservation Using +Presence-Absence Data and Its Application to Native Freshwater Fish in New +Zealand. New Zealand Journal of Zoology 14, no. 1 (January 1987): 43–49. +https://doi.org/10.1080/03014223.1987.10422680. +} +} diff --git a/man/feow_scaling.Rd b/man/feow_scaling.Rd new file mode 100644 index 0000000..1b02693 --- /dev/null +++ b/man/feow_scaling.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/feow_scaling.R +\name{feow_scaling} +\alias{feow_scaling} +\title{FEOW scaling} +\usage{ +feow_scaling() +} +\description{ +Scaling ranks level 6 hydrobasins within canadian FEOWs (Freshwater +Ecoregions of the World). +} +\details{ +The scaling enables comparison between regions, considering that regions +have varying numbers of watersheds and, consequently, different value ranges +for ranking. +} diff --git a/man/generate_priorization_data.Rd b/man/generate_priorization_data.Rd new file mode 100644 index 0000000..4bb4aaa --- /dev/null +++ b/man/generate_priorization_data.Rd @@ -0,0 +1,43 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/generate_priorization.R +\name{generate_priorization_data} +\alias{generate_priorization_data} +\title{Generate prirization main data frame.} +\usage{ +generate_priorization_data() +} +\value{ +A data frame with the following columns: +\itemize{ +\item HYBAS_ID: Hydrobassin identifier , +\item FEOW_ID: Freshwater Ecoregions of the World identifier, +\item WSI_n: Watershed stress index from Hirsh-Pearson (2022), +\item FBCI_n: Fish biodiversity change index. Calculate Jaccard dissimilarity +for native spp pool vs. current native + non-native spp pool. +\item CCI_n: Climate change velocities based on CMIP6 SSP2-4.5 forward +velocities for 2040-2070 period. +\item SARI_n: Species at risk management +\item Fish_richness_n: Species richness. +\item Priority_n: Index of priority based on Minns rarity index (1987). +Bote that columns ending with \verb{_n} are normalized. +} +} +\description{ +Generate prirization main data frame. +} +\details{ +Note that raw data are embeded in the R package in \code{extdata} folder. +} +\references{ +\itemize{ +\item Hirsh-Pearson, Kristen, Chris J. Johnson, Richard Schuster, Roger D. +Wheate, and Oscar Venter. 'Canada’s Human Footprint Reveals Large Intact +Areas Juxtaposed against Areas under Immense Anthropogenic Pressure.' Edited +by Raymond Bradley. FACETS 7 (January 1, 2022): 398–419. +https://doi.org/10.1139/facets-2021-0063. +\item Minns, C. K. 'A Method of Ranking Species and Sites for Conservation Using +Presence-Absence Data and Its Application to Native Freshwater Fish in New +Zealand. New Zealand Journal of Zoology 14, no. 1 (January 1987): 43–49. +https://doi.org/10.1080/03014223.1987.10422680. +} +} diff --git a/man/get_results.Rd b/man/get_results.Rd new file mode 100644 index 0000000..56c744b --- /dev/null +++ b/man/get_results.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/results.R +\name{get_results} +\alias{get_results} +\title{Results} +\usage{ +get_results() +} +\description{ +Results +} diff --git a/man/run_pipeline.Rd b/man/run_pipeline.Rd new file mode 100644 index 0000000..db21161 --- /dev/null +++ b/man/run_pipeline.Rd @@ -0,0 +1,11 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/pipeline.R +\name{run_pipeline} +\alias{run_pipeline} +\title{Pipeline} +\usage{ +run_pipeline() +} +\description{ +This function runs all the steps the reproduce the analysis. +} diff --git a/tests/testthat.R b/tests/testthat.R new file mode 100644 index 0000000..a862733 --- /dev/null +++ b/tests/testthat.R @@ -0,0 +1,12 @@ +# This file is part of the standard setup for testthat. +# It is recommended that you do not modify it. +# +# Where should you do additional test configuration? +# Learn more about the roles of various files in: +# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview +# * https://testthat.r-lib.org/articles/special-files.html + +library(testthat) +library(watershedPrioritization) + +test_check("watershedPrioritization") diff --git a/tests/testthat/test-rank-helper.R b/tests/testthat/test-rank-helper.R new file mode 100644 index 0000000..9ad8192 --- /dev/null +++ b/tests/testthat/test-rank-helper.R @@ -0,0 +1,11 @@ +test_that("rank helper works", { + expect_equal(scale_rank(c(1, 2)), c(1,100)) + expect_equal(scale_rank(c(1, 2, 3, 4)), c(1, 34, 67, 100)) + expect_error(scale_rank(1)) +}) + +test_that("rank helper works", { + expect_equal(scale_min_max(c(1, 2)), c(0, 100)) + expect_equal(scale_min_max(c(1, 2, 3, 4)), c(0, 100/3, 200/3, 100)) + expect_error(scale_min_max(1)) +})