From 2d650b5e6a3369acc40974ab1c5615dc2c62032f Mon Sep 17 00:00:00 2001 From: ychtw Date: Mon, 19 Apr 2021 09:42:38 -0400 Subject: [PATCH 01/27] fix internal/external trip table --- model-files/scripts/nonres/IxForecasts.job | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/model-files/scripts/nonres/IxForecasts.job b/model-files/scripts/nonres/IxForecasts.job index 5d333edf9..e9802f499 100644 --- a/model-files/scripts/nonres/IxForecasts.job +++ b/model-files/scripts/nonres/IxForecasts.job @@ -143,15 +143,20 @@ run pgm = matrix mato = nonres\ixDaily@token_year@.tpp, mo = 1-4, name = ix_daily_da, ix_daily_sr2, ix_daily_sr3, ix_daily_total jloop + + ; Populate 2005 base year values + mw[1] = mi.1.IX_Daily_DA + mw[2] = mi.1.IX_Daily_SR2 + mw[3] = mi.1.IX_Daily_SR3 ; Apply gateway-specific adjustment factors (no X/X trips mean the gateways act independently) ; - CA 1, Sonoma/Mendocino if (i == 4689 || j == 4689) - mw[1] = mi.1.IX_Daily_DA * pow(@base_4698@,@token_year@ - 2005) - mw[2] = mi.1.IX_Daily_SR2 * pow(@base_4698@,@token_year@ - 2005) - mw[3] = mi.1.IX_Daily_SR3 * pow(@base_4698@,@token_year@ - 2005) + mw[1] = mi.1.IX_Daily_DA * pow(@base_4689@,@token_year@ - 2005) + mw[2] = mi.1.IX_Daily_SR2 * pow(@base_4689@,@token_year@ - 2005) + mw[3] = mi.1.IX_Daily_SR3 * pow(@base_4689@,@token_year@ - 2005) endif From cf860b4ff8ec9e4082bcba0add1574e03351f845 Mon Sep 17 00:00:00 2001 From: Lisa Zorn Date: Thu, 17 Jun 2021 16:29:54 -0700 Subject: [PATCH 02/27] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b3c63297..91f51ff01 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ travel-model-two ================ -Placeholder for all things related to MTC's Travel Model Two (currently in development) +Development plan: + +* **TM2.0**: Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. (Todo: Tag a release) +* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. +* **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. +* **TM2.3**: TM2 with Emme only and ActivitySim core. From 81df29465cae7f3ff9ce9ffcea7afde37f4e0265 Mon Sep 17 00:00:00 2001 From: Lisa Zorn Date: Wed, 21 Jul 2021 14:39:38 -0700 Subject: [PATCH 03/27] Add links to Readme Link development tracks to where they're being performed --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 91f51ff01..76b9ff9f4 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ travel-model-two Development plan: -* **TM2.0**: Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. (Todo: Tag a release) -* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. -* **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. -* **TM2.3**: TM2 with Emme only and ActivitySim core. +* [**TM2.0**](https://github.com/BayAreaMetro/travel-model-two/releases/tag/TM2.0): Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. +* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [transit-ccr](https://github.com/BayAreaMetro/travel-model-two/tree/transit-ccr) +* **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. This work is being performed in [the tm2py repository](https://github.com/BayAreaMetro/tm2py) +* **TM2.3**: TM2 with Emme only and ActivitySim core. This work has not been started yet. From ea38671d25017f78e2bdd26429177ee9a758ca06 Mon Sep 17 00:00:00 2001 From: David Ory Date: Wed, 11 Aug 2021 12:12:15 -0400 Subject: [PATCH 04/27] Correct air passenger scaling error --- model-files/scripts/nonres/BuildAirPax.job | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model-files/scripts/nonres/BuildAirPax.job b/model-files/scripts/nonres/BuildAirPax.job index d2e94ab85..6852db615 100644 --- a/model-files/scripts/nonres/BuildAirPax.job +++ b/model-files/scripts/nonres/BuildAirPax.job @@ -435,7 +435,7 @@ endloop ; year Wait4Files Files=MTC_AIRPAX1.script.end,MTC_AIRPAX2.script.end ; step 3: build matrices by interpolating between the year 2007 and the year 2035 trip tables -token_scale = '(%MODEL_YEAR% - 2007)/(2035 - %MODEL_YEAR%)' +token_scale = '(%MODEL_YEAR% - 2007)/(2035 - 2007)' run pgm = matrix From d9bc1eb257b68aeb435714a40022eb3e837c0a0e Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Fri, 24 Sep 2021 18:30:58 -0700 Subject: [PATCH 05/27] Create ACS 2013-2017 create MAZ data for households by income for 2015.R --- ...Z data for households by income for 2015.R | 1228 +++++++++++++++++ 1 file changed, 1228 insertions(+) create mode 100644 misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R new file mode 100644 index 000000000..ec37a5654 --- /dev/null +++ b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R @@ -0,0 +1,1228 @@ +# ACS 2013-2017 create TAZ data for 2015.R +# Create "2015" TAZ data from ACS 2013-2017 +# SI +# Updated 4/24/20 with new employment data + +# Notes + +# The working directory is set as the location of the script. All other paths in Petrale will be relative. + +wd <- paste0(dirname(rstudioapi::getActiveDocumentContext()$path),"/") +setwd(wd) + +" + +1. ACS data here is downloaded for the 2013-2017 5-year dataset. The end year can be updated + by changing the *ACS_year* variable. + +2. ACS block group variables used in all instances where not suppressed. If suppressed at the block group + level, tract-level data used instead. Suppressed variables may change if ACS_year is changed. This + should be checked, as this change could cause the script not to work. + +3. Group quarters data start with the decennial census data. There are some small TAZ-specific + additions from university growth that are incorporated in the script, and then TAZs are scaled up to match + ACS 2013-2017 county-level totals. + +" +# Import Libraries + +suppressMessages(library(tidyverse)) +library(tidycensus) + +# Set up directories, import TAZ/census block equivalence, install census key, set ACS year,set CPI inflation + + +censuskey <- readLines("M:/Data/Census/API/api-key.txt") +baycounties <- c("01","13","41","55","75","81","85","95","97") +census_api_key(censuskey, install = TRUE, overwrite = TRUE) + +ACS_year <- 2017 +sf1_year <- 2010 +ACS_product="5" +state="06" +CPI_current <- 274.92 # CPI value for 2017 +CPI_reference <- 180.20 # CPI value for 2000 +CPI_ratio <- CPI_current/CPI_reference # 2017 CPI/2000 CPI + +USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) +block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") +#BOX_TM <- file.path(USERPROFILE, "Box", "Modeling and Surveys") +#PBA_TAZ_2010 <- file.path(BOX_TM, "Share Data", "plan-bay-area-2040", "2010_06_003","tazData.csv") + +# Make decennial census calls, configure file for later joining + +totalhhs <- "H016001" # 2010 variable for decennial total households + +sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, + state = "06", county=baycounties, + year=2010, + output="wide", + key=censuskey) %>% + rename(GEOID10 = GEOID,hhs=H016001) %>% + mutate(GEOID10 = as.numeric(GEOID10)) %>% + select(-NAME) + +# Bring in block to MAZ/TAZ equivalence and join with census HH file + +block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% + left_join(.,sf1_block_hhs,by="GEOID10") + +# Summarize by MAZ and create file with block group share of MAZ + +bg_MAZ <- block_MAZ_TAZ %>% + mutate(bg=as.numeric(substr(GEOID10,1,11))) %>% + select(-taz) + +bg_total <- bg_MAZ %>% + group_by(bg) %>% + summarize(total_bg_hhs=sum(hhs)) %>% + ungroup() %>% + select(bg,total_bg_hhs) + +combo_total <- bg_MAZ %>% + group_by(maz,bg) %>% + summarize(total_combo_hhs=sum(hhs)) %>% + ungroup() %>% + left_join(.,bg_total,by="bg") + + +# Bring in PBA (2017) 2010 land use data for county equivalencies and later summaries +# 1=San Francisco; 2=San Mateo; 3=Santa Clara; 4=Alameda; 5=Contra Costa; 6=Solano; 7= Napa; 8=Sonoma; 9=Marin + +PBA2010 <- read.csv(PBA_TAZ_2010,header=TRUE) + +PBA2010_county <- PBA2010 %>% # Create and join TAZ/county equivalence + select(ZONE,COUNTY) %>% + mutate(County_Name=case_when( + COUNTY==1 ~ "San Francisco", + COUNTY==2 ~ "San Mateo", + COUNTY==3 ~ "Santa Clara", + COUNTY==4 ~ "Alameda", + COUNTY==5 ~ "Contra Costa", + COUNTY==6 ~ "Solano", + COUNTY==7 ~ "Napa", + COUNTY==8 ~ "Sonoma", + COUNTY==9 ~ "Marin" + )) + + +# Income table - Guidelines for HH income values used from ACS +" + + 2000 income breaks 2017 CPI equivalent Nearest 2017 ACS breakpoint + ------------------ ------------------- --------------------------- + $30,000 $45,769 $45,000 + $60,000 $91,538 $91,538* + $100,000 $152,564 $150,000 + ------------------ ------------------- --------------------------- + + * Because the 2017$ equivalent of $60,000 in 2000$ ($91,538) doesn't closely align with 2017 ACS income + categories, households within the $75,000-$99,999 category will be apportioned above and below $91,538. + Using the ACS 2013-2017 PUMS data, the share of households above $91,538 within the $75,000-$99,999 + category is 0.3042492.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be + apportioned above this value (Q3) and 70 percent below it (Q2). The table below compares 2000$ and 2017$. + +Household Income Category Equivalency, 2000$ and 2017$ + + Year Lower Bound Upper Bound + ---- ------------ ----------- +HHINCQ1 2000 $-inf $29,999 + 2017 $-inf $44,999 +HHINCQ2 2000 $30,000 $59,999 + 2017 $45,000 $91,537 +HHINCQ3 2000 $60,000 $99,999 + 2017 $91,538 $149,999 +HHINCQ4 2000 $100,000 $inf + 2017 $150,000 $inf + ---- ------------- ----------- + +" + +shareabove91538 <- 0.3113032 # Use this value to later divvy up HHs in the 30-60k and 60-100k respective quartiles. + +# Import ACS library for variable inspection + +ACS_table <- load_variables(year=2017, dataset="acs5", cache=TRUE) + +# Set up ACS block group and tract variables for later API download. +# Block group calls broken up into 3 groups of <50 variables each, due to API limit +# Some variables skipped in sequence due to nesting + +ACS_BG_variables1 <- paste0("B25009_001E,", # Total HHs + "B11002_001E,", # HH pop + + "B23025_004E,", # Employed residents (employed residents is "employed" + "armed forces") + "B23025_006E,", # Armed forces + + "B19001_002E,", # Household income 0 to $10k + "B19001_003E,", # Household income $10 to $15k + "B19001_004E,", # Household income $15 to $20k + "B19001_005E,", # Household income $20 to $25k + "B19001_006E,", # Household income $25 to $30k + "B19001_007E,", # Household income $30 to $35k + "B19001_008E,", # Household income $35 to $40k + "B19001_009E,", # Household income $40 to $45k + "B19001_010E,", # Household income $45 to $50k + "B19001_011E,", # Household income 50 to $60k + "B19001_012E,", # Household income 60 to $75k + "B19001_013E,", # Household income 75 to $100k + "B19001_014E,", # Household income $100 to $1$25k + "B19001_015E,", # Household income $1$25 to $150k + "B19001_016E,", # Household income $150 to $200k + "B19001_017E,", # Household income $200k+ + + "B01001_003E,", # male aged 0 to 4 + "B01001_004E,", # male aged 5 to 9 + "B01001_005E,", # male aged 10 to 14 + "B01001_006E,", # male aged 15 to 17 + "B01001_007E,", # male aged 18 to 19 + "B01001_008E,", # male aged 20 + "B01001_009E,", # male aged 21 + "B01001_010E,", # male aged 22 to 24 + "B01001_011E,", # male aged 25 to 29 + "B01001_012E,", # male aged 30 to 34 + "B01001_013E,", # male aged 35 to 39 + "B01001_014E,", # male aged 40 to 44 + "B01001_015E,", # male aged 45 to 49 + "B01001_016E,", # male aged 50 to 54 + "B01001_017E,", # male aged 55 to 59 + "B01001_018E,", # male aged 60 to 61 + "B01001_019E,", # male aged 62 to 64 + "B01001_020E,", # male aged 65 to 66 + "B01001_021E,", # male aged 67 to 69 + "B01001_022E,", # male aged 70 to 74 + "B01001_023E,", # male aged 75 to 79 + "B01001_024E,", # male aged 80 to 84 + "B01001_025E,", # male aged 85+ + "B01001_027E,", # female aged 0 to 4 + "B01001_028E,", # female aged 5 to 9 + "B01001_029E,", # female aged 10 to 14 + "B01001_030E,", # female aged 15 to 17 + "B01001_031E") # female aged 18 to 19 + +ACS_BG_variables2 <- paste0("B01001_032E,", # female aged 20 + "B01001_033E,", # female aged 21 + "B01001_034E,", # female aged 22 to 24 + "B01001_035E,", # female aged 25 to 29 + "B01001_036E,", # female aged 30 to 34 + "B01001_037E,", # female aged 35 to 39 + "B01001_038E,", # female aged 40 to 44 + "B01001_039E,", # female aged 45 to 49 + "B01001_040E,", # female aged 50 to 54 + "B01001_041E,", # female aged 55 to 59 + "B01001_042E,", # female aged 60 to 61 + "B01001_043E,", # female aged 62 to 64 + "B01001_044E,", # female aged 65 to 66 + "B01001_045E,", # female aged 67 to 69 + "B01001_046E,", # female aged 70 to 74 + "B01001_047E,", # female aged 75 to 79 + "B01001_048E,", # female aged 80 to 84 + "B01001_049E,", # female aged 85+ + + "B25024_002E,", # 1 unit detached + "B25024_003E,", # 1 unit attached + "B25024_004E,", # 2 units + "B25024_005E,", # 3 or 4 units + "B25024_006E,", # 5 to 9 units + "B25024_007E,", # 10 to 19 units + "B25024_008E,", # 20 to 49 units + "B25024_009E,", # 50+ units + "B25024_010E,", # mobile homes + "B25024_011E,", # boats, RVs, vans + + "B25009_003E,", # own 1 person in HH + "B25009_004E,", # own 2 persons in HH + "B25009_005E,", # own 3 persons in HH + "B25009_006E,", # own 4 persons in HH + "B25009_007E,", # own 5 persons in HH + "B25009_008E,", # own 6 persons in HH + "B25009_009E,", # own 7+ persons in HH + "B25009_011E,", # rent 1 person in HH + "B25009_012E,", # rent 2 persons in HH + "B25009_013E,", # rent 3 persons in HH + "B25009_014E,", # rent 4 persons in HH + "B25009_015E,", # rent 5 persons in HH + "B25009_016E,", # rent 6 persons in HH + "B25009_017E") # rent 7+ persons in HH + + # these skip some numbers since there are nested levels +ACS_BG_variables3 <- paste0("C24010_005E,", # Management + "C24010_006E,", # Business and financial + "C24010_007E,", # Computer, engineering, and science + "C24010_012E,", # community and social service + "C24010_013E,", # Legal + "C24010_014E,", # Education, training, and library + "C24010_015E,", # Arts, design, entertainment, sports, and media + "C24010_016E,", # Healthcare practitioners and technical + "C24010_020E,", # Healthcare support + "C24010_022E,", # Fire fighting and prevention, and other protectiv + "C24010_023E,", # Law enforcement workers + "C24010_024E,", # Food preparation and serving related + "C24010_025E,", # Building and grounds cleaning and maintenance + "C24010_026E,", # Personal care and service + "C24010_028E,", # Sales and related + "C24010_029E,", # Office and administrative support + "C24010_030E,", # Natural resources, construction, and maintenance + "C24010_034E,", # Production, transportation, and material moving + + "C24010_041E,", # Management + "C24010_042E,", # Business and financial + "C24010_043E,", # Computer, engineering, and science + "C24010_048E,", # community and social service + "C24010_049E,", # Legal + "C24010_050E,", # Education, training, and library + "C24010_051E,", # Arts, design, entertainment, sports, and media + "C24010_052E,", # Healthcare practitioners and technical + "C24010_056E,", # Healthcare support + "C24010_058E,", # Fire fighting and prevention, and other protectiv + "C24010_059E,", # Law enforcement workers + "C24010_060E,", # Food preparation and serving related + "C24010_061E,", # Building and grounds cleaning and maintenance + "C24010_062E,", # Personal care and service + "C24010_064E,", # Sales and related + "C24010_065E,", # Office and administrative support + "C24010_066E,", # Natural resources, construction, and maintenance + "C24010_070E,", # Production, transportation, and material moving + + "B03002_003E,", # White alone, not Hispanic + "B03002_004E,", # Black alone, not Hispanic + "B03002_006E,", # Asian alone, not Hispanic + "B03002_002E,", # Total, not Hispanic + "B03002_012E") # Total Hispanic + + + +ACS_tract_variables <-c(hhwrks0 = "B08202_002", # 0-worker HH + hhwrks1 = "B08202_003", # 1-worker HH + hhwrks2 = "B08202_004", # 2-worker HH + hhwrks3p = "B08202_005", # 3+-worker HH + + ownkidsyes = "B25012_003", # Own with related kids under 18 + rentkidsyes = "B25012_011", # Rent with related kids under 18 + ownkidsno = "B25012_009", # Own without related kids under 18 + rentkidsno = "B25012_017" # Rent without related kids under 18 + ) + +sf1_table <- load_variables(year=2010, dataset="sf1", cache=TRUE) + +sf1_tract_variables <- + c(gq_noninst_m_0017_univ = "P043010", + gq_noninst_m_0017_mil = "P043011", + gq_noninst_m_0017_oth = "P043012", + gq_noninst_m_1864_univ = "P043020", + gq_noninst_m_1864_mil = "P043021", + gq_noninst_m_1864_oth = "P043022", + gq_noninst_m_65p_univ = "P043030", + gq_noninst_m_65p_mil = "P043031", + gq_noninst_m_65p_oth = "P043032", + gq_noninst_f_0017_univ = "P043041", + gq_noninst_f_0017_mil = "P043042", + gq_noninst_f_0017_oth = "P043043", + gq_noninst_f_1864_univ = "P043051", + gq_noninst_f_1864_mil = "P043052", + gq_noninst_f_1864_oth = "P043053", + gq_noninst_f_65p_univ = "P043061", + gq_noninst_f_65p_mil = "P043062", + gq_noninst_f_65p_oth = "P043063") + +# Bring in 2010 block/TAZ equivalency, create block group ID and tract ID fields for later joining to ACS data + +blockTAZ <- read.csv(blockTAZ2010,header=TRUE) %>% mutate( + blockgroup = paste0("0",substr(GEOID10,1,11)), + tract = paste0("0",substr(GEOID10,1,10))) + +# Summarize block population by block group and tract + +blockTAZBG <- blockTAZ %>% + group_by(blockgroup) %>% + summarize(BGTotal=sum(block_POPULATION)) + +blockTAZTract <- blockTAZ %>% + group_by(tract) %>% + summarize(TractTotal=sum(block_POPULATION)) + +# Create 2010 block share of total population for block/block group and block/tract, append to comnbined_block file +# Be mindful of divide by zero error associated with 0-pop block groups and tracts + +combined_block <- left_join(blockTAZ,blockTAZBG,by="blockgroup") %>% mutate( + sharebg=if_else(block_POPULATION==0,0,block_POPULATION/BGTotal)) + +combined_block <- left_join(combined_block,blockTAZTract,by="tract") %>% mutate( + sharetract=if_else(block_POPULATION==0,0,block_POPULATION/TractTotal)) + +# Function to make tract data API calls by county +# For a brief time, 2013-2017 API no longer supported vectorized county calls, and they had to be made individually +# TODO: Revert this process back to the API as the Census Bureau has fixed vectorized calls for BGs and tracts + +f.tract.call <- function (baycounty){ + get_acs(geography = "tract", variables = ACS_tract_variables, + state = "06", county=baycounty, + year=ACS_year, + output="wide", + survey = "acs5", + key = censuskey) +} + +# Now make tract calls by county and concatenate all counties into a single file + +Alameda_tracts <- f.tract.call(Alameda) +Contra_tracts <- f.tract.call(Contra) +Marin_tracts <- f.tract.call(Marin) +Napa_tracts <- f.tract.call(Napa) +Francisco_tracts <- f.tract.call(Francisco) +Mateo_tracts <- f.tract.call(Mateo) +Clara_tracts <- f.tract.call(Clara) +Solano_tracts <- f.tract.call(Solano) +Sonoma_tracts <- f.tract.call(Sonoma) +ACS_tract_raw <- rbind(Alameda_tracts,Contra_tracts,Marin_tracts,Napa_tracts,Francisco_tracts, + Mateo_tracts,Clara_tracts,Solano_tracts,Sonoma_tracts) + +# Create index of Bay Area tracts to pass into block group API calls +# 2013-2017 API no longer supports county->block group, and now relies on county -> tract -> block group calls + +tract_index <- ACS_tract_raw %>% + mutate( + county=substr(GEOID,3,5), + tract=substr(GEOID,6,11) + ) %>% + select(county,tract) + +# Manual function for converting API calls into data frame (due to tidycensus not working for county -> block group downloads) +# The "geography_fields" argument helps convert relevant (variable, not geographic) columns to numeric format + +f.data <- function(url,geography_fields){ + furl <- content(RETRY("GET",url,times=10)) # Retry the API up to 10 times to overcome choking of API call + for (i in 1:length(furl)){ + if (i==1) header <- furl [[i]] + if (i==2){ + temp <- lapply(furl[[i]], function(x) ifelse(is.null(x), NA, x)) + output_data <- data.frame(temp, stringsAsFactors=FALSE) + names (output_data) <- header + } + if (i>2){ + temp <- lapply(furl[[i]], function(x) ifelse(is.null(x), NA, x)) + tempdf <- data.frame(temp, stringsAsFactors=FALSE) + names (tempdf) <- header + output_data <- rbind (output_data,tempdf) + } + } + for(j in 2:(ncol(output_data)-geography_fields)) { + output_data[,j] <- as.numeric(output_data[,j]) + } + return (output_data) +} + +# Function for creating URLs to pass into tract -> block group API calls + +f.url <- function (ACS_BG_variables,county,tract) {paste0("https://api.census.gov/data/",ACS_year,"/acs/acs",ACS_product,"?get=NAME,", + ACS_BG_variables,"&for=block%20group:*&in=state:",state,"%20county:",county, + "%20tract:",tract,"&key=",censuskey)} + +# Create wrapper to either perform API calls or not depending on presence of cached block group data +# Block group calls done for all 1588 Bay Area tracts (done in 3 tranches because API limited to calls of 50 variables) +# The "4" in the call refers to the number of columns at the end of the API call devoted to geography (not numeric) +# Numeric values are changed by the f.data function from character to numeric +# Note that, because the API call process is so long, these data are also saved in the working directory (Petrale) +# Calls 1-3 are saved in "ACS 2013-2017 Block Group Vars1-3", respectively + +# Call 1 + +if (file.exists("ACS 2013-2017 Block Group Vars1.csv")) {source("Import block group data.R") + } else { # Wrapper checks for cached block group variables, then runs a script to import them + # Only checks for first of three BG files, but that should be sufficient + # Else run the API block group calls to retrieve the data +for(k in 1:nrow(tract_index)) { + if (k==1) { + bg_df1 <- f.data(f.url(ACS_BG_variables1,tract_index[k,"county"],tract_index[k,"tract"]),4) + } + if (k>=2) { + subsequent_df <- f.data(f.url(ACS_BG_variables1,tract_index[k,"county"],tract_index[k,"tract"]),4) + bg_df1 <- rbind(bg_df1,subsequent_df) + } + if (k%%10==0) {print(paste(k, "tracts have been called for Call 1"))} # Monitor progress of this step, as it's long. +} + +# Call 2 + +for(k in 1:nrow(tract_index)) { + if (k==1) { + bg_df2 <- f.data(f.url(ACS_BG_variables2,tract_index[k,"county"],tract_index[k,"tract"]),4) + } + if (k>=2) { + subsequent_df <- f.data(f.url(ACS_BG_variables2,tract_index[k,"county"],tract_index[k,"tract"]),4) + bg_df2 <- rbind(bg_df2,subsequent_df) + } + if (k%%10==0) {print(paste(k, "tracts have been called for Call 2"))} # Monitor progress of this step, as it's long. +} + +# Call 3 + +for(k in 1:nrow(tract_index)) { + if (k==1) { + bg_df3 <- f.data(f.url(ACS_BG_variables3,tract_index[k,"county"],tract_index[k,"tract"]),4) + } + if (k>=2) { + subsequent_df <- f.data(f.url(ACS_BG_variables3,tract_index[k,"county"],tract_index[k,"tract"]),4) + bg_df3 <- rbind(bg_df3,subsequent_df) + } + if (k%%10==0) {print(paste(k, "tracts have been called for Call 3"))} # Monitor progress of this step, as it's long. +} + +} # End of wrapper + +# Combine three data tranches into single data frame + +ACS_BG_preraw <- left_join (bg_df1,bg_df2,by=c("NAME","state","county","block group","tract")) +ACS_BG_preraw <- left_join (ACS_BG_preraw,bg_df3,by=c("NAME","state","county","block group","tract")) + + +# Rename block group variables +names(ACS_BG_preraw) <- str_replace_all(names(ACS_BG_preraw), c(" " = "_")) # Remove space in variable name, + # "block group" to "block_group" +ACS_BG_raw <- ACS_BG_preraw %>% + rename( tothhE = B25009_001E, #Total HHs, HH pop + hhpopE = B11002_001E, + + employedE = B23025_004E, # Employed residents is employedE +armed forcesE + armedforcesE = B23025_006E, + + hhinc0_10E = B19001_002E, # Income categories + hhinc10_15E = B19001_003E, + hhinc15_20E = B19001_004E, + hhinc20_25E = B19001_005E, + hhinc25_30E = B19001_006E, + hhinc30_35E = B19001_007E, + hhinc35_40E = B19001_008E, + hhinc40_45E = B19001_009E, + hhinc45_50E = B19001_010E, + hhinc50_60E = B19001_011E, + hhinc60_75E = B19001_012E, + hhinc75_100E = B19001_013E, + hhinc100_125E = B19001_014E, + hhinc125_150E = B19001_015E, + hhinc150_200E = B19001_016E, + hhinc200pE = B19001_017E, + + male0_4E = B01001_003E, # Age data + male5_9E = B01001_004E, + male10_14E = B01001_005E, + male15_17E = B01001_006E, + male18_19E = B01001_007E, + male20E = B01001_008E, + male21E = B01001_009E, + male22_24E = B01001_010E, + male25_29E = B01001_011E, + male30_34E = B01001_012E, + male35_39E = B01001_013E, + male40_44E = B01001_014E, + male45_49E = B01001_015E, + male50_54E = B01001_016E, + male55_59E = B01001_017E, + male60_61E = B01001_018E, + male62_64E = B01001_019E, + male65_66E = B01001_020E, + male67_69E = B01001_021E, + male70_74E = B01001_022E, + male75_79E = B01001_023E, + male80_84E = B01001_024E, + male85pE = B01001_025E, + female0_4E = B01001_027E, + female5_9E = B01001_028E, + female10_14E = B01001_029E, + female15_17E = B01001_030E, + female18_19E = B01001_031E, + female20E = B01001_032E, + female21E = B01001_033E, + female22_24E = B01001_034E, + female25_29E = B01001_035E, + female30_34E = B01001_036E, + female35_39E = B01001_037E, + female40_44E = B01001_038E, + female45_49E = B01001_039E, + female50_54E = B01001_040E, + female55_59E = B01001_041E, + female60_61E = B01001_042E, + female62_64E = B01001_043E, + female65_66E = B01001_044E, + female67_69E = B01001_045E, + female70_74E = B01001_046E, + female75_79E = B01001_047E, + female80_84E = B01001_048E, + female85pE = B01001_049E, + + white_nonhE = B03002_003E, # Demographic data + black_nonhE = B03002_004E, + asian_nonhE = B03002_006E, + total_nonhE = B03002_002E, + total_hispE = B03002_012E, + + unit1dE = B25024_002E, # Single and multi-family dwelling unit data + unit1aE = B25024_003E, + unit2E = B25024_004E, + unit3_4E = B25024_005E, + unit5_9E = B25024_006E, + unit10_19E = B25024_007E, + unit20_49E = B25024_008E, + unit50pE = B25024_009E, + mobileE = B25024_010E, + boat_RV_VanE = B25024_011E, + + own1E = B25009_003E, # Household size data + own2E = B25009_004E, + own3E = B25009_005E, + own4E = B25009_006E, + own5E = B25009_007E, + own6E = B25009_008E, + own7pE = B25009_009E, + rent1E = B25009_011E, + rent2E = B25009_012E, + rent3E = B25009_013E, + rent4E = B25009_014E, + rent5E = B25009_015E, + rent6E = B25009_016E, + rent7pE = B25009_017E, + + # these skip some numbers since there are nested levels + occ_m_manageE = C24010_005E, # Management + occ_m_prof_bizE = C24010_006E, # Business and financial + occ_m_prof_compE = C24010_007E, # Computer, engineering, and science + occ_m_svc_commE = C24010_012E, # community and social service + occ_m_prof_legE = C24010_013E, # Legal + occ_m_prof_eduE = C24010_014E, # Education, training, and library + occ_m_svc_entE = C24010_015E, # Arts, design, entertainment, sports, and media + occ_m_prof_healE = C24010_016E, # Healthcare practitioners and technical + occ_m_svc_healE = C24010_020E, # Healthcare support + occ_m_svc_fireE = C24010_022E, # Fire fighting and prevention, and other protectiv + occ_m_svc_lawE = C24010_023E, # Law enforcement workers + occ_m_ret_eatE = C24010_024E, # Food preparation and serving related + occ_m_man_buildE = C24010_025E, # Building and grounds cleaning and maintenance + occ_m_svc_persE = C24010_026E, # Personal care and service + occ_m_ret_salesE = C24010_028E, # Sales and related + occ_m_svc_offE = C24010_029E, # Office and administrative support + occ_m_man_natE = C24010_030E, # Natural resources, construction, and maintenance + occ_m_man_prodE = C24010_034E, # Production, transportation, and material moving + + occ_f_manageE = C24010_041E, # Management + occ_f_prof_bizE = C24010_042E, # Business and financial + occ_f_prof_compE = C24010_043E, # Computer, engineering, and science + occ_f_svc_commE = C24010_048E, # community and social service + occ_f_prof_legE = C24010_049E, # Legal + occ_f_prof_eduE = C24010_050E, # Education, training, and library + occ_f_svc_entE = C24010_051E, # Arts, design, entertainment, sports, and media + occ_f_prof_healE = C24010_052E, # Healthcare practitioners and technical + occ_f_svc_healE = C24010_056E, # Healthcare support + occ_f_svc_fireE = C24010_058E, # Fire fighting and prevention, and other protectiv + occ_f_svc_lawE = C24010_059E, # Law enforcement workers + occ_f_ret_eatE = C24010_060E, # Food preparation and serving related + occ_f_man_buildE = C24010_061E, # Building and grounds cleaning and maintenance + occ_f_svc_persE = C24010_062E, # Personal care and service + occ_f_ret_salesE = C24010_064E, # Sales and related + occ_f_svc_offE = C24010_065E, # Office and administrative support + occ_f_man_natE = C24010_066E, # Natural resources, construction, and maintenance + occ_f_man_prodE = C24010_070E # Production, transportation, and material moving + ) %>% + mutate( + GEOID=paste0(state,county,tract,block_group), + tract=paste0(state,county,tract) + ) + + +# Join 2013-2017 ACS block group and tract variables to combined_block file +# Combine and collapse ACS categories to get land use control totals, as appropriate +# Apply block share of 2013-2017 ACS variables using block/block group and block/tract shares of 2010 total population +# Note that "E" on the end of each variable is appended by tidycensus package to denote "estimate" + +workingdata <- left_join(combined_block,ACS_BG_raw, by=c("blockgroup"="GEOID","tract")) +workingdata <- left_join(workingdata,ACS_tract_raw, by=c("tract"="GEOID"))%>% mutate( + TOTHH=tothhE*sharebg, + HHPOP=hhpopE*sharebg, + EMPRES=(employedE+armedforcesE)*sharebg, + HHINCQ1=(hhinc0_10E+ + hhinc10_15E+ + hhinc15_20E+ + hhinc20_25E+ + hhinc25_30E+ + hhinc30_35E+ + hhinc35_40E+ + hhinc40_45E)*sharebg, + HHINCQ2=(hhinc45_50E+ + hhinc50_60E+ + hhinc60_75E+ + (hhinc75_100E*(1-shareabove91538)))*sharebg, # Apportions HHs below $91,538 within $75,000-$100,000 + HHINCQ3=((hhinc75_100E*shareabove91538)+ # Apportions HHs above $91,538 within $75,000-$100,000 + hhinc100_125E+ + hhinc125_150E)*sharebg, + HHINCQ4=(hhinc150_200E+hhinc200pE)*sharebg, + AGE0004=(male0_4E+female0_4E)*sharebg, + AGE0519=(male5_9E+ + male10_14E+ + male15_17E+ + male18_19E+ + female5_9E+ + female10_14E+ + female15_17E+ + female18_19E)*sharebg, + AGE2044=(male20E+ + male21E+ + male22_24E+ + male25_29E+ + male30_34E+ + male35_39E+ + male40_44E+ + female20E+ + female21E+ + female22_24E+ + female25_29E+ + female30_34E+ + female35_39E+ + female40_44E)*sharebg, + AGE4564=(male45_49E+ + male50_54E+ + male55_59E+ + male60_61E+ + male62_64E+ + female45_49E+ + female50_54E+ + female55_59E+ + female60_61E+ + female62_64E)*sharebg, + AGE65P=(male65_66E+ + male67_69E+ + male70_74E+ + male75_79E+ + male80_84E+ + male85pE+ + female65_66E+ + female67_69E+ + female70_74E+ + female75_79E+ + female80_84E+ + female85pE)*sharebg, + AGE62P=(male62_64E+ + male65_66E+ + male67_69E+ + male70_74E+ + male75_79E+ + male80_84E+ + male85pE+ + female62_64E+ + female65_66E+ + female67_69E+ + female70_74E+ + female75_79E+ + female80_84E+ + female85pE)*sharebg, + white_nonh=white_nonhE*sharebg, + black_nonh=black_nonhE*sharebg, + asian_nonh=asian_nonhE*sharebg, + other_nonh=(total_nonhE-(white_nonhE+black_nonhE+asian_nonhE))*sharebg, # "Other, non-Hisp is total non-Hisp minus white,black,Asian + hispanic=total_hispE*sharebg, + SFDU=(unit1dE+ + unit1aE+ + mobileE+ + boat_RV_VanE)*sharebg, + MFDU=(unit2E+ + unit3_4E+ + unit5_9E+ + unit10_19E+ + unit20_49E+ + unit50pE)*sharebg, + hh_size_1=(own1E+rent1E)*sharebg, + hh_size_2=(own2E+rent2E)*sharebg, + hh_size_3=(own3E+rent3E)*sharebg, + hh_size_4_plus=(own4E+ + own5E+ + own6E+ + own7pE+ + rent4E+ + rent5E+ + rent6E+ + rent7pE)*sharebg, + hh_wrks_0=hhwrks0E*sharetract, + hh_wrks_1=hhwrks1E*sharetract, + hh_wrks_2=hhwrks2E*sharetract, + hh_wrks_3_plus=hhwrks3pE*sharetract, + hh_kids_yes=(ownkidsyesE+rentkidsyesE)*sharetract, + hh_kids_no=(ownkidsnoE+rentkidsnoE)*sharetract, + pers_occ_management = (occ_m_manageE + occ_f_manageE )*sharebg, + pers_occ_professional = (occ_m_prof_bizE + occ_f_prof_bizE + + occ_m_prof_compE + occ_f_prof_compE + + occ_m_prof_legE + occ_f_prof_legE + + occ_m_prof_eduE + occ_f_prof_eduE + + occ_m_prof_healE + occ_f_prof_healE)*sharebg, + pers_occ_services = (occ_m_svc_commE + occ_f_svc_commE + + occ_m_svc_entE + occ_f_svc_entE + + occ_m_svc_healE + occ_f_svc_healE + + occ_m_svc_fireE + occ_f_svc_fireE + + occ_m_svc_lawE + occ_f_svc_lawE + + occ_m_svc_persE + occ_f_svc_persE + + occ_m_svc_offE + occ_f_svc_offE )*sharebg, + pers_occ_retail = (occ_m_ret_eatE + occ_f_ret_eatE + + occ_m_ret_salesE + occ_f_ret_salesE)*sharebg, + pers_occ_manual = (occ_m_man_buildE + occ_f_man_buildE + + occ_m_man_natE + occ_f_man_natE + + occ_m_man_prodE + occ_f_man_prodE )*sharebg, + pers_occ_military = (armedforcesE)*sharebg +) +# sf1 +workingdata <- left_join(workingdata,sf1_tract_raw, by=c("tract"="GEOID")) %>% + mutate(gq_type_univ =(gq_noninst_m_0017_univ + + gq_noninst_m_1864_univ + + gq_noninst_m_65p_univ + + gq_noninst_f_0017_univ + + gq_noninst_f_1864_univ + + gq_noninst_f_65p_univ)*sharetract, + gq_type_mil =(gq_noninst_m_0017_mil + + gq_noninst_m_1864_mil + + gq_noninst_m_65p_mil + + gq_noninst_f_0017_mil + + gq_noninst_f_1864_mil + + gq_noninst_f_65p_mil)*sharetract, + gq_type_othnon=(gq_noninst_m_0017_oth + + gq_noninst_m_1864_oth + + gq_noninst_m_65p_oth + + gq_noninst_f_0017_oth + + gq_noninst_f_1864_oth + + gq_noninst_f_65p_oth)*sharetract) + +# Summarize to TAZ and select only variables of interest + +temp0 <- workingdata %>% + group_by(TAZ1454) %>% + summarize( TOTHH=sum(TOTHH), + HHPOP=sum(HHPOP), + EMPRES=sum(EMPRES), + HHINCQ1=sum(HHINCQ1), + HHINCQ2=sum(HHINCQ2), + HHINCQ3=sum(HHINCQ3), + HHINCQ4=sum(HHINCQ4), + AGE0004=sum(AGE0004), + AGE0519=sum(AGE0519), + AGE2044=sum(AGE2044), + AGE4564=sum(AGE4564), + AGE65P=sum(AGE65P), + SFDU=sum(SFDU), + MFDU=sum(MFDU), + hh_size_1=sum(hh_size_1), + hh_size_2=sum(hh_size_2), + hh_size_3=sum(hh_size_3), + hh_size_4_plus=sum(hh_size_4_plus), + hh_wrks_0=sum(hh_wrks_0), + hh_wrks_1=sum(hh_wrks_1), + hh_wrks_2=sum(hh_wrks_2), + hh_wrks_3_plus=sum(hh_wrks_3_plus), + hh_kids_yes=sum(hh_kids_yes), + hh_kids_no=sum(hh_kids_no), + AGE62P=sum(AGE62P), + gq_type_univ =sum(gq_type_univ), + gq_type_mil =sum(gq_type_mil), + gq_type_othnon =sum(gq_type_othnon), + gqpop2010 =gq_type_univ+gq_type_mil+gq_type_othnon, + pers_occ_management =sum(pers_occ_management), + pers_occ_professional=sum(pers_occ_professional), + pers_occ_services =sum(pers_occ_services), + pers_occ_retail =sum(pers_occ_retail), + pers_occ_manual =sum(pers_occ_manual), + pers_occ_military =sum(pers_occ_military), + white_nonh =sum(white_nonh), + black_nonh =sum(black_nonh), + asian_nonh =sum(asian_nonh), + other_nonh =sum(other_nonh), + hispanic =sum(hispanic)) + + +# Correct GQ population to sum to ACS PUMS 2015 total, outlined in Steps 1-3 below +" +1. Add in additional GQ population for growth 2010-2015 from M. Reilly file, +petrale/applications/travel_model_lu_inputs/2015/Group Quarters/gq_add_00051015.csv: + +Location TAZ1454 extra_gq +------------------------------------------------------ ------- -------- +Kennedy Grad at Stanford 353 436 +Munger East AND Ng House at Stanford 354 120 +Metropolitan, Channing Bowditch, Maximo Commons at UCB 1008 348 +------------------------------------------------------ ------- -------- + +2. Sum total 2010 GQ to compare to ACS PUMS 2013-2017 GQ + +3. Create factor corrections to apply to TAZs; apply them +" + +# Create data frame for added GQ pop (only three TAZs have empirically-collected data for updates) +# Join to temp0 file and add GQ pop, then remove column + +added_gq <- data.frame(TAZ1454=1:1454,extra_gq=0) %>% + mutate(extra_gq=case_when( + TAZ1454 == 353 ~ 436, + TAZ1454 == 354 ~ 120, + TAZ1454 == 1008 ~ 348, + TRUE ~ extra_gq # All other values kept at zero + )) + +temp1 <- left_join(temp0,added_gq, by="TAZ1454") %>% + mutate(gqpop2010=gqpop2010+extra_gq) %>% + select(-extra_gq) + +# Sum GQ 2010 population by county + +sum_gq10 <- left_join(temp1,PBA2010_county,by=c("TAZ1454"="ZONE")) %>% + group_by(County_Name,COUNTY) %>% + summarize(sum10=sum(gqpop2010)) + +# Bring in 2013-2017 PUMS and perform the same summary, then join with the 2010 data +# Create GQ adjustment factor + +load (PUMS2013_2017) + +sum_gq15 <- pbayarea1317 %>% + mutate(County_Name=as.character(County_Name)) %>% # Bug fix to override County_Name as factor + filter(RELP==17) %>% + group_by(County_Name) %>% + summarize(sum15=sum(PWGTP)) + +gqcounty1015 <- left_join(sum_gq10,sum_gq15,by="County_Name") %>% + mutate(gqfactor=sum15/sum10) %>% # Factor is ratio of GQ15/GQ10, by county + arrange(COUNTY) # Sort by COUNTY variable, so factors in correct order + +gqfactor <- gqcounty1015$gqfactor # Ordered vector of factors to apply +counties <- c(1,2,3,4,5,6,7,8,9) # Matching county values for factor ordering + +# Apply GQ factor to reconcile adjust 2010 decennial with 2013-2017 PUMS + +temp2 <- left_join(temp1,PBA2010_county,by=c("TAZ1454"="ZONE")) %>% + mutate( + gqpop = gqpop2010*gqfactor[match(COUNTY,counties)] + ) + + +# Apply households by number of workers correction factors +# Values from ACS2013-2017_PUMS2013-2017_HH_Worker_Correction_Factors.csv, in +# petrale\applications\travel_model_lu_inputs\2015\Workers +# 1=San Francisco; 2=San Mateo; 3=Santa Clara; 4=Alameda; 5=Contra Costa; 6=Solano; 7= Napa; 8=Sonoma; 9=Marin +# "counties" vector is defined above with this county order + +workers0 <- c(0.72439,0.71045,0.65234,0.61093,0.81432,0.79221,0.71026,0.81646,0.81952) +workers1 <- c(1.05499,1.01626,1.04675,1.06364,1.02079,1.03487,1.06679,1.04652,1.04665) +workers2 <- c(1.07740,1.08066,1.08075,1.15069,1.07611,1.10324,1.08483,1.06913,1.06500) +workers3p <- c(1.21757,1.21119,1.20479,1.34201,1.15367,1.11889,1.26523,1.15975,1.18261) + +temp3 <- temp2 %>% + mutate( + hh_wrks_0 = hh_wrks_0*workers0[match(COUNTY,counties)], # Apply the above index values for correction factors + hh_wrks_1 = hh_wrks_1*workers1[match(COUNTY,counties)], + hh_wrks_2 = hh_wrks_2*workers2[match(COUNTY,counties)], + hh_wrks_3_plus = hh_wrks_3_plus*workers3p[match(COUNTY,counties)]) + +# Zero out ages for people in TAZ 1439 (San Quentin) +# Begin process of scaling constituent values so category subtotals match marginal totals + +### Beginning of recoding + +temp_rounded_adjusted <- temp3 %>% + mutate( + AGE0004 = if_else(TAZ1454==1439,0,AGE0004), # Zero out population components in San Quentin TAZ + AGE0519 = if_else(TAZ1454==1439,0,AGE0519), # All institutional group quarters + AGE2044 = if_else(TAZ1454==1439,0,AGE2044), # Total pop and gq pop already 0 + AGE4564 = if_else(TAZ1454==1439,0,AGE4564), + AGE65P = if_else(TAZ1454==1439,0,AGE65P), + AGE62P = if_else(TAZ1454==1439,0,AGE62P) + ) %>% + +# Sum constituent parts to compare with marginal totals + + mutate ( + sum_age = AGE0004 + AGE0519 + AGE2044 +AGE4564 + AGE65P, # First person totals by age + sum_groupquarters = gq_type_univ + gq_type_mil + gq_type_othnon, # GQ by type + sum_size = hh_size_1 + hh_size_2 + hh_size_3 + hh_size_4_plus, # Now housing totals + sum_hhworkers = hh_wrks_0 + hh_wrks_1 + hh_wrks_2 + hh_wrks_3_plus, # HHs by number of workers + sum_kids = hh_kids_yes + hh_kids_no, # HHs by kids or not + sum_income = HHINCQ1 + HHINCQ2 + HHINCQ3 + HHINCQ4, # HHs by income + sum_empres = pers_occ_management + pers_occ_professional+ # Employed residents by industry + pers_occ_services + pers_occ_retail + pers_occ_manual + pers_occ_military, + HHPOP = round(HHPOP,0), # Round and sum total pop from HH and GQ pop + gqpop = round(gqpop,0), + TOTPOP = HHPOP+gqpop, + sum_ethnicity = white_nonh+black_nonh+asian_nonh+other_nonh+hispanic, + +# Create inflation/deflation factors + + age_factor = if_else(sum_age==0,0,TOTPOP/sum_age), + gq_factor = if_else(sum_groupquarters==0,0,gqpop/sum_groupquarters), + size_factor = if_else(sum_size==0,0,TOTHH/sum_size), + hhworkers_factor = if_else(sum_hhworkers==0,0,TOTHH/sum_hhworkers), + kids_factor = if_else(sum_kids==0,0,TOTHH/sum_kids), + income_factor = if_else(sum_income==0,0,TOTHH/sum_income), + empres_factor = if_else(sum_empres==0,0,EMPRES/sum_empres), + ethnicity_factor = if_else(sum_ethnicity==0,0,TOTPOP/sum_ethnicity), + +# Apply factors to correct for scale up or down constituent parts to match marginal totals + + AGE0004 = AGE0004 * age_factor, # Persons by age correction + AGE0519 = AGE0519 * age_factor, + AGE2044 = AGE2044 * age_factor, + AGE4564 = AGE4564 * age_factor, + AGE65P = AGE65P * age_factor, + + white_nonh = white_nonh * ethnicity_factor, # Persons by ethnicity correction + black_nonh = black_nonh * ethnicity_factor, + asian_nonh = asian_nonh * ethnicity_factor, + other_nonh = other_nonh * ethnicity_factor, + hispanic = hispanic * ethnicity_factor, + + gq_type_univ = gq_type_univ * gq_factor, # Group quarters by type + gq_type_mil = gq_type_mil * gq_factor, + gq_type_othnon = gq_type_othnon * gq_factor, + + hh_size_1 = hh_size_1 * size_factor, # Households by size + hh_size_2 = hh_size_2 * size_factor, + hh_size_3 = hh_size_3 * size_factor, + hh_size_4_plus = hh_size_4_plus * size_factor, + + hh_wrks_0 = hh_wrks_0 * hhworkers_factor, # Households by number of workers + hh_wrks_1 = hh_wrks_1 * hhworkers_factor, + hh_wrks_2 = hh_wrks_2 * hhworkers_factor, + hh_wrks_3_plus = hh_wrks_3_plus * hhworkers_factor, + + hh_kids_yes = hh_kids_yes * kids_factor, # Households by presence of kids + hh_kids_no = hh_kids_no * kids_factor, + + HHINCQ1 = HHINCQ1 * income_factor, # Households by income + HHINCQ2 = HHINCQ2 * income_factor, + HHINCQ3 = HHINCQ3 * income_factor, + HHINCQ4 = HHINCQ4 * income_factor, + + pers_occ_management = pers_occ_management * empres_factor, # Employed residents by occupation + pers_occ_professional = pers_occ_professional * empres_factor, + pers_occ_services = pers_occ_services * empres_factor, + pers_occ_retail = pers_occ_retail * empres_factor, + pers_occ_manual = pers_occ_manual * empres_factor, + pers_occ_military = pers_occ_military * empres_factor) %>% + +# Round Data, remove sum variables and factors +# Add in population over age 62 variable that is also needed (but should not be rounded, so added at the end) + + select (-age_factor,-gq_factor,-size_factor,-hhworkers_factor,-kids_factor,-income_factor,-empres_factor, + -sum_age,-sum_groupquarters,-sum_size,-sum_hhworkers,-sum_kids,-sum_income,-sum_empres, -sum_ethnicity, + -ethnicity_factor) %>% + mutate_if(is.numeric,round,0) %>% + mutate(SHPOP62P = if_else(TOTPOP==0,0,AGE62P/TOTPOP)) %>% + +# Scaling adjustments were done above, now make fix small variations due to rounding for precisely-matching totals +# Find max value in categorical data to adjust totals so they match univariate totals +# For example, the households by income across categories should sum to equal total HHs +# If unequal, the largest constituent cell is adjusted up or down such that the category sums match the marginal total + + mutate ( + max_age = max.col(.[c("AGE0004","AGE0519","AGE2044","AGE4564","AGE65P")], ties.method="first"), + max_gq = max.col(.[c("gq_type_univ","gq_type_mil","gq_type_othnon")], ties.method="first"), + max_size = max.col(.[c("hh_size_1","hh_size_2","hh_size_3","hh_size_4_plus")], ties.method="first"), + max_workers= max.col(.[c("hh_wrks_0","hh_wrks_1","hh_wrks_2","hh_wrks_3_plus")], ties.method="first"), + max_kids = max.col(.[c("hh_kids_yes","hh_kids_no")], ties.method="first"), + max_income = max.col(.[c("HHINCQ1","HHINCQ2","HHINCQ3","HHINCQ4")], ties.method="first"), + max_occ = max.col(.[c("pers_occ_management","pers_occ_professional", + "pers_occ_services","pers_occ_retail", + "pers_occ_manual","pers_occ_military")], ties.method="first"), + max_eth = max.col(.[c("white_nonh","black_nonh","asian_nonh","other_nonh", + "hispanic")], ties.method="first"))%>% + +# Now use max values determined above to find appropriate column for adjustment + + mutate( + + # Balance population by age + + AGE0004 = if_else(max_age==1,AGE0004+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE0004), + AGE0519 = if_else(max_age==2,AGE0519+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE0519), + AGE2044 = if_else(max_age==3,AGE2044+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE2044), + AGE4564 = if_else(max_age==4,AGE4564+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE4564), + AGE65P = if_else(max_age==5,AGE65P +(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE65P), + + # Balance population by ethnicity + + white_nonh = if_else(max_eth==1,white_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ + hispanic)),white_nonh), + black_nonh = if_else(max_eth==2,black_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ + hispanic)),black_nonh), + asian_nonh = if_else(max_eth==3,asian_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ + hispanic)),asian_nonh), + other_nonh = if_else(max_eth==4,other_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ + hispanic)),other_nonh), + hispanic = if_else(max_eth==5,hispanic+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ + hispanic)),hispanic), + + # Balance GQ population by type + + gq_type_univ = if_else(max_gq==1,gq_type_univ+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_univ), + gq_type_mil = if_else(max_gq==2,gq_type_mil+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_mil), + gq_type_othnon = if_else(max_gq==3,gq_type_othnon+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_othnon), + + #Balance HH size categories + + hh_size_1 = if_else(max_size==1,hh_size_1 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_1), + hh_size_2 = if_else(max_size==2,hh_size_2 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_2), + hh_size_3 = if_else(max_size==3,hh_size_3 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_3), + hh_size_4_plus = if_else(max_size==4,hh_size_4_plus+(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_4_plus), + + #Balance HH worker categories + + hh_wrks_0 = if_else(max_workers==1,hh_wrks_0+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_0), + hh_wrks_1 = if_else(max_workers==2,hh_wrks_1+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_1), + hh_wrks_2 = if_else(max_workers==3,hh_wrks_2+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_2), + hh_wrks_3_plus = if_else(max_workers==4,hh_wrks_3_plus+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_3_plus), + + #Balance HH kids categories + + hh_kids_yes = if_else(max_kids==1,hh_kids_yes+(TOTHH-(hh_kids_yes+hh_kids_no)),hh_kids_yes), + hh_kids_no = if_else(max_kids==2,hh_kids_no +(TOTHH-(hh_kids_yes+hh_kids_no)),hh_kids_no), + + # Balance HH income categories + + HHINCQ1 = if_else(max_income==1,HHINCQ1+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ1), + HHINCQ2 = if_else(max_income==2,HHINCQ2+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ2), + HHINCQ3 = if_else(max_income==3,HHINCQ3+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ3), + HHINCQ4 = if_else(max_income==4,HHINCQ4+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ4), + + # Balance workers by occupation categories + + pers_occ_management = if_else(max_occ==1,pers_occ_management+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_management), + pers_occ_professional = if_else(max_occ==2,pers_occ_professional+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_professional), + pers_occ_services = if_else(max_occ==3,pers_occ_services+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_services), + pers_occ_retail = if_else(max_occ==4,pers_occ_retail+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_retail), + pers_occ_manual = if_else(max_occ==5,pers_occ_manual+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_manual), + pers_occ_military = if_else(max_occ==6,pers_occ_military+(EMPRES-(pers_occ_management+pers_occ_professional+ + pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_military) +) %>% + +# Remove max variables + + select(-max_age,-max_gq,-max_size,-max_workers,-max_kids,-max_income,-max_occ, -max_eth) + +### End of recoding + +# Write out ethnic variables + +ethnic <- temp_rounded_adjusted %>% + select(TAZ1454,hispanic, white_nonh,black_nonh,asian_nonh,other_nonh,TOTPOP, COUNTY, County_Name) + +write.csv (ethnic,file = "TAZ1454_Ethnicity.csv",row.names = FALSE) + +# Read in old PBA data sets and select variables for joining to new 2015 dataset +# Bring in updated 2015 employment for joining +# Bring in school and parking data from PBA 2040, 2015 TAZ data +# Add HHLDS variable (same as TOTHH), select new 2015 output + +PBA2010_joiner <- PBA2010%>% + select(ZONE,DISTRICT,SD,TOTACRE,RESACRE,CIACRE,AREATYPE,TOPOLOGY,ZERO,sftaz) + +employment_2015 <- read.csv(employment_2015_data,header=TRUE) + +parking_2015 <- read.csv(parking_2015_data, header=TRUE) %>% + select(ZONE,PRKCST,OPRKCST,TERMINAL) + +school_2015 <- read.csv(school_2015_data, header=TRUE) %>% + select(ZONE,HSENROLL,COLLFTE,COLLPTE) + +joined_10_15 <- left_join(PBA2010_joiner,temp_rounded_adjusted, by=c("ZONE"="TAZ1454")) # Join 2010 topology +joined_parking <- left_join(joined_10_15,parking_2015, by="ZONE") # Join PBA 2015 parking +joined_school <- left_join(joined_parking, school_2015, by="ZONE") # Join schools +joined_employment <- left_join(joined_school,employment_2015, by=c("ZONE"="TAZ1454")) # Join employment + +New2015 <- joined_employment %>% + mutate(hhlds=TOTHH) %>% + select(ZONE,DISTRICT,SD,COUNTY,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,TOTACRE, + RESACRE,CIACRE,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, + MWTEMPN,OTHEMPN,PRKCST,OPRKCST,AREATYPE,HSENROLL,COLLFTE,COLLPTE,TERMINAL,TOPOLOGY,ZERO,hhlds,sftaz, + gqpop) + +# Summarize ACS and employment data by superdistrict for both 2010 and 2015 + +summed10 <- PBA2010 %>% + group_by(DISTRICT) %>% + summarize(TOTHH=sum(TOTHH),HHPOP=sum(HHPOP),TOTPOP=sum(TOTPOP),EMPRES=sum(EMPRES),SFDU=sum(SFDU),MFDU=sum(MFDU), + HHINCQ1=sum(HHINCQ1),HHINCQ2=sum(HHINCQ2),HHINCQ3=sum(HHINCQ3),HHINCQ4=sum(HHINCQ4),TOTEMP=sum(TOTEMP), + AGE0004=sum(AGE0004),AGE0519=sum(AGE0519),AGE2044=sum(AGE2044),AGE4564=sum(AGE4564),AGE65P=sum(AGE65P), + RETEMPN=sum(RETEMPN),FPSEMPN=sum(FPSEMPN),HEREMPN=sum(HEREMPN),AGREMPN=sum(AGREMPN),MWTEMPN=sum(MWTEMPN), + OTHEMPN=sum(OTHEMPN),HSENROLL=sum(HSENROLL),COLLFTE=sum(COLLFTE),COLLPTE=sum(COLLPTE),gqpop=sum(gqpop)) + +summed15 <- New2015 %>% + group_by(DISTRICT) %>% + summarize(TOTHH=sum(TOTHH),HHPOP=sum(HHPOP),TOTPOP=sum(TOTPOP),EMPRES=sum(EMPRES),SFDU=sum(SFDU),MFDU=sum(MFDU), + HHINCQ1=sum(HHINCQ1),HHINCQ2=sum(HHINCQ2),HHINCQ3=sum(HHINCQ3),HHINCQ4=sum(HHINCQ4),TOTEMP=sum(TOTEMP), + AGE0004=sum(AGE0004),AGE0519=sum(AGE0519),AGE2044=sum(AGE2044),AGE4564=sum(AGE4564),AGE65P=sum(AGE65P), + RETEMPN=sum(RETEMPN),FPSEMPN=sum(FPSEMPN),HEREMPN=sum(HEREMPN),AGREMPN=sum(AGREMPN),MWTEMPN=sum(MWTEMPN), + OTHEMPN=sum(OTHEMPN),HSENROLL=sum(HSENROLL),COLLFTE=sum(COLLFTE),COLLPTE=sum(COLLPTE),gqpop=sum(gqpop)) + +# Export new 2015 data, 2010 and 2015 district summary data + +write.csv(New2015, "TAZ1454 2015 Land Use.csv", row.names = FALSE, quote = T) +write.csv(summed10, "TAZ1454 2010 District Summary.csv", row.names = FALSE, quote = T) +write.csv(summed15, "TAZ1454 2015 District Summary.csv", row.names = FALSE, quote = T) + +# Select out PopSim variables and export to separate csv + +popsim_vars <- temp_rounded_adjusted %>% + rename(TAZ=TAZ1454,gq_tot_pop=gqpop)%>% + select(TAZ,TOTHH,TOTPOP,hh_size_1,hh_size_2,hh_size_3,hh_size_4_plus,hh_wrks_0,hh_wrks_1,hh_wrks_2,hh_wrks_3_plus, + hh_kids_no,hh_kids_yes,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P, + gq_tot_pop,gq_type_univ,gq_type_mil,gq_type_othnon) + +write.csv(popsim_vars, "TAZ1454 2015 Popsim Vars.csv", row.names = FALSE, quote = T) + +# region popsim vars +popsim_vars_region <- popsim_vars %>% + mutate(REGION=1) %>% + group_by(REGION) %>% + summarize(gq_num_hh_region=sum(gq_tot_pop)) + +write.csv(popsim_vars_region, "TAZ1454 2015 Popsim Vars Region.csv", row.names = FALSE, quote = T) + +# county popsim vars +popsim_vars_county <- joined_10_15 %>% + group_by(COUNTY) %>% summarize( + pers_occ_management =sum(pers_occ_management), + pers_occ_professional=sum(pers_occ_professional), + pers_occ_services =sum(pers_occ_services), + pers_occ_retail =sum(pers_occ_retail), + pers_occ_manual =sum(pers_occ_manual), + pers_occ_military =sum(pers_occ_military)) + +write.csv(popsim_vars_county, "TAZ1454 2015 Popsim Vars County.csv", row.names = FALSE, quote = T) + +# Optional code below for other analyses + +# ------------------------------------------------------------------------------------------------ + +"# Output into Tableau-friendly format + +Tableau2015 <- New2015 %>% + select(ZONE,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, + MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) %>% + gather(Variable,Value2015,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, + MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) + +Tableau2010 <- PBA2010 %>% + select(ZONE,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, + MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) %>% + gather(Variable,Value2010,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, + MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop)" + +#Tableau10_15 <- left_join(Tableau2010,Tableau2015,by = c("ZONE","Variable")) + +#write.csv(Tableau10_15, "Tableau_2010_2015_Comparison.csv", row.names = FALSE, quote = T) + + +"RMWG_Summary <- New2015 %>% + mutate(housing_units=SFDU+MFDU) %>% + group_by(COUNTY) %>% + summarize(population=sum(TOTPOP),households=sum(TOTHH),units=sum(housing_units),group=sum(gqpop),jobs=sum(TOTEMP), + residents=sum(EMPRES))" + + +# write.csv(RMWG_Summary, "RMWG_Summary.csv", row.names = FALSE, quote = T) + + From fa734135b738c2cdeb3993242510be0b70ad659d Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Fri, 24 Sep 2021 19:54:39 -0700 Subject: [PATCH 06/27] Update ACS 2013-2017 create MAZ data for households by income for 2015.R --- ...Z data for households by income for 2015.R | 131 +++++++++++++++++- 1 file changed, 130 insertions(+), 1 deletion(-) diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R index ec37a5654..975119145 100644 --- a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R +++ b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R @@ -83,8 +83,137 @@ combo_total <- bg_MAZ %>% group_by(maz,bg) %>% summarize(total_combo_hhs=sum(hhs)) %>% ungroup() %>% - left_join(.,bg_total,by="bg") + left_join(.,bg_total,by="bg") %>% + mutate(sharebg=if_else(total_bg_hhs==0,0,total_combo_hhs/total_bg_hhs)) +# Household income variables + +hh_income_vars <- c("B19001_002E", # Household income 0 to $10k + "B19001_003E", # Household income $10 to $15k + "B19001_004E", # Household income $15 to $20k + "B19001_005E", # Household income $20 to $25k + "B19001_006E", # Household income $25 to $30k + "B19001_007E", # Household income $30 to $35k + "B19001_008E", # Household income $35 to $40k + "B19001_009E", # Household income $40 to $45k + "B19001_010E", # Household income $45 to $50k + "B19001_011E", # Household income 50 to $60k + "B19001_012E", # Household income 60 to $75k + "B19001_013E", # Household income 75 to $100k + "B19001_014E", # Household income $100 to $1$25k + "B19001_015E", # Household income $1$25 to $150k + "B19001_016E", # Household income $150 to $200k + "B19001_017E") # Household income $200k+ + + paste0("B19001_002E,", # Household income 0 to $10k + "B19001_003E,", # Household income $10 to $15k + "B19001_004E,", # Household income $15 to $20k + "B19001_005E,", # Household income $20 to $25k + "B19001_006E,", # Household income $25 to $30k + "B19001_007E,", # Household income $30 to $35k + "B19001_008E,", # Household income $35 to $40k + "B19001_009E,", # Household income $40 to $45k + "B19001_010E,", # Household income $45 to $50k + "B19001_011E,", # Household income 50 to $60k + "B19001_012E,", # Household income 60 to $75k + "B19001_013E,", # Household income 75 to $100k + "B19001_014E,", # Household income $100 to $1$25k + "B19001_015E,", # Household income $1$25 to $150k + "B19001_016E,", # Household income $150 to $200k + "B19001_017E") # Household income $200k+ + +acs_income <- get_acs(geography = "block group", variables = hh_income_vars, + state = "06", county=baycounties, + year=ACS_year, + output="wide", + survey = "acs5", + key = censuskey) %>% + select(GEOID,NAME,hhinc0_10E = B19001_002E, # Income categories + hhinc10_15E = B19001_003E, + hhinc15_20E = B19001_004E, + hhinc20_25E = B19001_005E, + hhinc25_30E = B19001_006E, + hhinc30_35E = B19001_007E, + hhinc35_40E = B19001_008E, + hhinc40_45E = B19001_009E, + hhinc45_50E = B19001_010E, + hhinc50_60E = B19001_011E, + hhinc60_75E = B19001_012E, + hhinc75_100E = B19001_013E, + hhinc100_125E = B19001_014E, + hhinc125_150E = B19001_015E, + hhinc150_200E = B19001_016E, + hhinc200pE = B19001_017E) %>% + mutate(bg=as.numeric(GEOID)) + +# Income table - Guidelines for HH income values used from ACS +" + + 2000 income breaks 2017 CPI equivalent Nearest 2017 ACS breakpoint + ------------------ ------------------- --------------------------- + $30,000 $45,769 $45,000 + $60,000 $91,538 $91,538* + $100,000 $152,564 $150,000 + ------------------ ------------------- --------------------------- + + * Because the 2017$ equivalent of $60,000 in 2000$ ($91,538) doesn't closely align with 2017 ACS income + categories, households within the $75,000-$99,999 category will be apportioned above and below $91,538. + Using the ACS 2013-2017 PUMS data, the share of households above $91,538 within the $75,000-$99,999 + category is 0.3042492.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be + apportioned above this value (Q3) and 70 percent below it (Q2). The table below compares 2000$ and 2017$. + +Household Income Category Equivalency, 2000$ and 2017$ + + Year Lower Bound Upper Bound + ---- ------------ ----------- +HHINCQ1 2000 $-inf $29,999 + 2017 $-inf $44,999 +HHINCQ2 2000 $30,000 $59,999 + 2017 $45,000 $91,537 +HHINCQ3 2000 $60,000 $99,999 + 2017 $91,538 $149,999 +HHINCQ4 2000 $100,000 $inf + 2017 $150,000 $inf + ---- ------------- ----------- + +" + +shareabove91538 <- 0.3113032 # Use this value to later divvy up HHs in the 30-60k and 60-100k respective quartiles. + + +# Join 2013-2017 ACS block group and tract variables to combined_block file +# Combine and collapse ACS categories to get land use control totals, as appropriate +# Apply block share of 2013-2017 ACS variables using block/block group and block/tract shares of 2010 total population +# Note that "E" on the end of each variable is appended by tidycensus package to denote "estimate" + +workingdata <- left_join(combo_total,acs_income, by="bg") %>% + mutate( + HHINCQ1=(hhinc0_10E+ + hhinc10_15E+ + hhinc15_20E+ + hhinc20_25E+ + hhinc25_30E+ + hhinc30_35E+ + hhinc35_40E+ + hhinc40_45E)*sharebg, + HHINCQ2=(hhinc45_50E+ + hhinc50_60E+ + hhinc60_75E+ + (hhinc75_100E*(1-shareabove91538)))*sharebg, # Apportions HHs below $91,538 within $75,000-$100,000 + HHINCQ3=((hhinc75_100E*shareabove91538)+ # Apportions HHs above $91,538 within $75,000-$100,000 + hhinc100_125E+ + hhinc125_150E)*sharebg, + HHINCQ4=(hhinc150_200E+hhinc200pE)*sharebg) + +temp0 <- workingdata %>% + group_by(maz) %>% + summarize( HHINCQ1=sum(HHINCQ1), + HHINCQ2=sum(HHINCQ2), + HHINCQ3=sum(HHINCQ3), + HHINCQ4=sum(HHINCQ4)) + +trial <- temp0%>% + mutate_if(. %in% c(.$HHINCQ1,.$HHINCQ2,.$HHINCQ3,.$HHINCQ4),round(.,0)) # Bring in PBA (2017) 2010 land use data for county equivalencies and later summaries # 1=San Francisco; 2=San Mateo; 3=Santa Clara; 4=Alameda; 5=Contra Costa; 6=Solano; 7= Napa; 8=Sonoma; 9=Marin From 9b2a6007b2aec1018861ba7cc62277e3ff8fb4fe Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Fri, 24 Sep 2021 22:27:35 -0700 Subject: [PATCH 07/27] Output data by MAZ --- ...Z data for households by income for 2015.R | 1160 +---------------- 1 file changed, 17 insertions(+), 1143 deletions(-) diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R index 975119145..621efa6d3 100644 --- a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R +++ b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R @@ -205,1153 +205,27 @@ workingdata <- left_join(combo_total,acs_income, by="bg") %>% hhinc125_150E)*sharebg, HHINCQ4=(hhinc150_200E+hhinc200pE)*sharebg) -temp0 <- workingdata %>% +hh_columns <- c("HHINCQ1","HHINCQ2","HHINCQ3","HHINCQ4") + +final <- workingdata %>% group_by(maz) %>% summarize( HHINCQ1=sum(HHINCQ1), HHINCQ2=sum(HHINCQ2), HHINCQ3=sum(HHINCQ3), - HHINCQ4=sum(HHINCQ4)) - -trial <- temp0%>% - mutate_if(. %in% c(.$HHINCQ1,.$HHINCQ2,.$HHINCQ3,.$HHINCQ4),round(.,0)) - -# Bring in PBA (2017) 2010 land use data for county equivalencies and later summaries -# 1=San Francisco; 2=San Mateo; 3=Santa Clara; 4=Alameda; 5=Contra Costa; 6=Solano; 7= Napa; 8=Sonoma; 9=Marin - -PBA2010 <- read.csv(PBA_TAZ_2010,header=TRUE) - -PBA2010_county <- PBA2010 %>% # Create and join TAZ/county equivalence - select(ZONE,COUNTY) %>% - mutate(County_Name=case_when( - COUNTY==1 ~ "San Francisco", - COUNTY==2 ~ "San Mateo", - COUNTY==3 ~ "Santa Clara", - COUNTY==4 ~ "Alameda", - COUNTY==5 ~ "Contra Costa", - COUNTY==6 ~ "Solano", - COUNTY==7 ~ "Napa", - COUNTY==8 ~ "Sonoma", - COUNTY==9 ~ "Marin" - )) - - -# Income table - Guidelines for HH income values used from ACS -" - - 2000 income breaks 2017 CPI equivalent Nearest 2017 ACS breakpoint - ------------------ ------------------- --------------------------- - $30,000 $45,769 $45,000 - $60,000 $91,538 $91,538* - $100,000 $152,564 $150,000 - ------------------ ------------------- --------------------------- - - * Because the 2017$ equivalent of $60,000 in 2000$ ($91,538) doesn't closely align with 2017 ACS income - categories, households within the $75,000-$99,999 category will be apportioned above and below $91,538. - Using the ACS 2013-2017 PUMS data, the share of households above $91,538 within the $75,000-$99,999 - category is 0.3042492.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be - apportioned above this value (Q3) and 70 percent below it (Q2). The table below compares 2000$ and 2017$. - -Household Income Category Equivalency, 2000$ and 2017$ - - Year Lower Bound Upper Bound - ---- ------------ ----------- -HHINCQ1 2000 $-inf $29,999 - 2017 $-inf $44,999 -HHINCQ2 2000 $30,000 $59,999 - 2017 $45,000 $91,537 -HHINCQ3 2000 $60,000 $99,999 - 2017 $91,538 $149,999 -HHINCQ4 2000 $100,000 $inf - 2017 $150,000 $inf - ---- ------------- ----------- - -" - -shareabove91538 <- 0.3113032 # Use this value to later divvy up HHs in the 30-60k and 60-100k respective quartiles. - -# Import ACS library for variable inspection - -ACS_table <- load_variables(year=2017, dataset="acs5", cache=TRUE) - -# Set up ACS block group and tract variables for later API download. -# Block group calls broken up into 3 groups of <50 variables each, due to API limit -# Some variables skipped in sequence due to nesting - -ACS_BG_variables1 <- paste0("B25009_001E,", # Total HHs - "B11002_001E,", # HH pop - - "B23025_004E,", # Employed residents (employed residents is "employed" + "armed forces") - "B23025_006E,", # Armed forces - - "B19001_002E,", # Household income 0 to $10k - "B19001_003E,", # Household income $10 to $15k - "B19001_004E,", # Household income $15 to $20k - "B19001_005E,", # Household income $20 to $25k - "B19001_006E,", # Household income $25 to $30k - "B19001_007E,", # Household income $30 to $35k - "B19001_008E,", # Household income $35 to $40k - "B19001_009E,", # Household income $40 to $45k - "B19001_010E,", # Household income $45 to $50k - "B19001_011E,", # Household income 50 to $60k - "B19001_012E,", # Household income 60 to $75k - "B19001_013E,", # Household income 75 to $100k - "B19001_014E,", # Household income $100 to $1$25k - "B19001_015E,", # Household income $1$25 to $150k - "B19001_016E,", # Household income $150 to $200k - "B19001_017E,", # Household income $200k+ - - "B01001_003E,", # male aged 0 to 4 - "B01001_004E,", # male aged 5 to 9 - "B01001_005E,", # male aged 10 to 14 - "B01001_006E,", # male aged 15 to 17 - "B01001_007E,", # male aged 18 to 19 - "B01001_008E,", # male aged 20 - "B01001_009E,", # male aged 21 - "B01001_010E,", # male aged 22 to 24 - "B01001_011E,", # male aged 25 to 29 - "B01001_012E,", # male aged 30 to 34 - "B01001_013E,", # male aged 35 to 39 - "B01001_014E,", # male aged 40 to 44 - "B01001_015E,", # male aged 45 to 49 - "B01001_016E,", # male aged 50 to 54 - "B01001_017E,", # male aged 55 to 59 - "B01001_018E,", # male aged 60 to 61 - "B01001_019E,", # male aged 62 to 64 - "B01001_020E,", # male aged 65 to 66 - "B01001_021E,", # male aged 67 to 69 - "B01001_022E,", # male aged 70 to 74 - "B01001_023E,", # male aged 75 to 79 - "B01001_024E,", # male aged 80 to 84 - "B01001_025E,", # male aged 85+ - "B01001_027E,", # female aged 0 to 4 - "B01001_028E,", # female aged 5 to 9 - "B01001_029E,", # female aged 10 to 14 - "B01001_030E,", # female aged 15 to 17 - "B01001_031E") # female aged 18 to 19 - -ACS_BG_variables2 <- paste0("B01001_032E,", # female aged 20 - "B01001_033E,", # female aged 21 - "B01001_034E,", # female aged 22 to 24 - "B01001_035E,", # female aged 25 to 29 - "B01001_036E,", # female aged 30 to 34 - "B01001_037E,", # female aged 35 to 39 - "B01001_038E,", # female aged 40 to 44 - "B01001_039E,", # female aged 45 to 49 - "B01001_040E,", # female aged 50 to 54 - "B01001_041E,", # female aged 55 to 59 - "B01001_042E,", # female aged 60 to 61 - "B01001_043E,", # female aged 62 to 64 - "B01001_044E,", # female aged 65 to 66 - "B01001_045E,", # female aged 67 to 69 - "B01001_046E,", # female aged 70 to 74 - "B01001_047E,", # female aged 75 to 79 - "B01001_048E,", # female aged 80 to 84 - "B01001_049E,", # female aged 85+ - - "B25024_002E,", # 1 unit detached - "B25024_003E,", # 1 unit attached - "B25024_004E,", # 2 units - "B25024_005E,", # 3 or 4 units - "B25024_006E,", # 5 to 9 units - "B25024_007E,", # 10 to 19 units - "B25024_008E,", # 20 to 49 units - "B25024_009E,", # 50+ units - "B25024_010E,", # mobile homes - "B25024_011E,", # boats, RVs, vans - - "B25009_003E,", # own 1 person in HH - "B25009_004E,", # own 2 persons in HH - "B25009_005E,", # own 3 persons in HH - "B25009_006E,", # own 4 persons in HH - "B25009_007E,", # own 5 persons in HH - "B25009_008E,", # own 6 persons in HH - "B25009_009E,", # own 7+ persons in HH - "B25009_011E,", # rent 1 person in HH - "B25009_012E,", # rent 2 persons in HH - "B25009_013E,", # rent 3 persons in HH - "B25009_014E,", # rent 4 persons in HH - "B25009_015E,", # rent 5 persons in HH - "B25009_016E,", # rent 6 persons in HH - "B25009_017E") # rent 7+ persons in HH - - # these skip some numbers since there are nested levels -ACS_BG_variables3 <- paste0("C24010_005E,", # Management - "C24010_006E,", # Business and financial - "C24010_007E,", # Computer, engineering, and science - "C24010_012E,", # community and social service - "C24010_013E,", # Legal - "C24010_014E,", # Education, training, and library - "C24010_015E,", # Arts, design, entertainment, sports, and media - "C24010_016E,", # Healthcare practitioners and technical - "C24010_020E,", # Healthcare support - "C24010_022E,", # Fire fighting and prevention, and other protectiv - "C24010_023E,", # Law enforcement workers - "C24010_024E,", # Food preparation and serving related - "C24010_025E,", # Building and grounds cleaning and maintenance - "C24010_026E,", # Personal care and service - "C24010_028E,", # Sales and related - "C24010_029E,", # Office and administrative support - "C24010_030E,", # Natural resources, construction, and maintenance - "C24010_034E,", # Production, transportation, and material moving - - "C24010_041E,", # Management - "C24010_042E,", # Business and financial - "C24010_043E,", # Computer, engineering, and science - "C24010_048E,", # community and social service - "C24010_049E,", # Legal - "C24010_050E,", # Education, training, and library - "C24010_051E,", # Arts, design, entertainment, sports, and media - "C24010_052E,", # Healthcare practitioners and technical - "C24010_056E,", # Healthcare support - "C24010_058E,", # Fire fighting and prevention, and other protectiv - "C24010_059E,", # Law enforcement workers - "C24010_060E,", # Food preparation and serving related - "C24010_061E,", # Building and grounds cleaning and maintenance - "C24010_062E,", # Personal care and service - "C24010_064E,", # Sales and related - "C24010_065E,", # Office and administrative support - "C24010_066E,", # Natural resources, construction, and maintenance - "C24010_070E,", # Production, transportation, and material moving - - "B03002_003E,", # White alone, not Hispanic - "B03002_004E,", # Black alone, not Hispanic - "B03002_006E,", # Asian alone, not Hispanic - "B03002_002E,", # Total, not Hispanic - "B03002_012E") # Total Hispanic - - - -ACS_tract_variables <-c(hhwrks0 = "B08202_002", # 0-worker HH - hhwrks1 = "B08202_003", # 1-worker HH - hhwrks2 = "B08202_004", # 2-worker HH - hhwrks3p = "B08202_005", # 3+-worker HH - - ownkidsyes = "B25012_003", # Own with related kids under 18 - rentkidsyes = "B25012_011", # Rent with related kids under 18 - ownkidsno = "B25012_009", # Own without related kids under 18 - rentkidsno = "B25012_017" # Rent without related kids under 18 - ) - -sf1_table <- load_variables(year=2010, dataset="sf1", cache=TRUE) - -sf1_tract_variables <- - c(gq_noninst_m_0017_univ = "P043010", - gq_noninst_m_0017_mil = "P043011", - gq_noninst_m_0017_oth = "P043012", - gq_noninst_m_1864_univ = "P043020", - gq_noninst_m_1864_mil = "P043021", - gq_noninst_m_1864_oth = "P043022", - gq_noninst_m_65p_univ = "P043030", - gq_noninst_m_65p_mil = "P043031", - gq_noninst_m_65p_oth = "P043032", - gq_noninst_f_0017_univ = "P043041", - gq_noninst_f_0017_mil = "P043042", - gq_noninst_f_0017_oth = "P043043", - gq_noninst_f_1864_univ = "P043051", - gq_noninst_f_1864_mil = "P043052", - gq_noninst_f_1864_oth = "P043053", - gq_noninst_f_65p_univ = "P043061", - gq_noninst_f_65p_mil = "P043062", - gq_noninst_f_65p_oth = "P043063") - -# Bring in 2010 block/TAZ equivalency, create block group ID and tract ID fields for later joining to ACS data - -blockTAZ <- read.csv(blockTAZ2010,header=TRUE) %>% mutate( - blockgroup = paste0("0",substr(GEOID10,1,11)), - tract = paste0("0",substr(GEOID10,1,10))) - -# Summarize block population by block group and tract - -blockTAZBG <- blockTAZ %>% - group_by(blockgroup) %>% - summarize(BGTotal=sum(block_POPULATION)) - -blockTAZTract <- blockTAZ %>% - group_by(tract) %>% - summarize(TractTotal=sum(block_POPULATION)) - -# Create 2010 block share of total population for block/block group and block/tract, append to comnbined_block file -# Be mindful of divide by zero error associated with 0-pop block groups and tracts - -combined_block <- left_join(blockTAZ,blockTAZBG,by="blockgroup") %>% mutate( - sharebg=if_else(block_POPULATION==0,0,block_POPULATION/BGTotal)) - -combined_block <- left_join(combined_block,blockTAZTract,by="tract") %>% mutate( - sharetract=if_else(block_POPULATION==0,0,block_POPULATION/TractTotal)) - -# Function to make tract data API calls by county -# For a brief time, 2013-2017 API no longer supported vectorized county calls, and they had to be made individually -# TODO: Revert this process back to the API as the Census Bureau has fixed vectorized calls for BGs and tracts - -f.tract.call <- function (baycounty){ - get_acs(geography = "tract", variables = ACS_tract_variables, - state = "06", county=baycounty, - year=ACS_year, - output="wide", - survey = "acs5", - key = censuskey) -} - -# Now make tract calls by county and concatenate all counties into a single file - -Alameda_tracts <- f.tract.call(Alameda) -Contra_tracts <- f.tract.call(Contra) -Marin_tracts <- f.tract.call(Marin) -Napa_tracts <- f.tract.call(Napa) -Francisco_tracts <- f.tract.call(Francisco) -Mateo_tracts <- f.tract.call(Mateo) -Clara_tracts <- f.tract.call(Clara) -Solano_tracts <- f.tract.call(Solano) -Sonoma_tracts <- f.tract.call(Sonoma) -ACS_tract_raw <- rbind(Alameda_tracts,Contra_tracts,Marin_tracts,Napa_tracts,Francisco_tracts, - Mateo_tracts,Clara_tracts,Solano_tracts,Sonoma_tracts) - -# Create index of Bay Area tracts to pass into block group API calls -# 2013-2017 API no longer supports county->block group, and now relies on county -> tract -> block group calls - -tract_index <- ACS_tract_raw %>% - mutate( - county=substr(GEOID,3,5), - tract=substr(GEOID,6,11) - ) %>% - select(county,tract) - -# Manual function for converting API calls into data frame (due to tidycensus not working for county -> block group downloads) -# The "geography_fields" argument helps convert relevant (variable, not geographic) columns to numeric format - -f.data <- function(url,geography_fields){ - furl <- content(RETRY("GET",url,times=10)) # Retry the API up to 10 times to overcome choking of API call - for (i in 1:length(furl)){ - if (i==1) header <- furl [[i]] - if (i==2){ - temp <- lapply(furl[[i]], function(x) ifelse(is.null(x), NA, x)) - output_data <- data.frame(temp, stringsAsFactors=FALSE) - names (output_data) <- header - } - if (i>2){ - temp <- lapply(furl[[i]], function(x) ifelse(is.null(x), NA, x)) - tempdf <- data.frame(temp, stringsAsFactors=FALSE) - names (tempdf) <- header - output_data <- rbind (output_data,tempdf) - } - } - for(j in 2:(ncol(output_data)-geography_fields)) { - output_data[,j] <- as.numeric(output_data[,j]) - } - return (output_data) + HHINCQ4=sum(HHINCQ4)) %>% + mutate(hh_total=rowSums(select(.,all_of(hh_columns)))) %>% + mutate_at(c(all_of(hh_columns),"hh_total"),~round(.,digits = 0)) %>% + mutate(hh_subtotal=rowSums(select(.,all_of(hh_columns))), + max_hh = hh_columns[max.col(select(.,hh_columns), ties.method="first")], + hh_diff = hh_total - hh_subtotal) + +for (col in hh_columns) { + final[col] <- if_else(final$max_hh==col, + final[[col]] + final[["hh_diff"]], + final[[col]]) } -# Function for creating URLs to pass into tract -> block group API calls - -f.url <- function (ACS_BG_variables,county,tract) {paste0("https://api.census.gov/data/",ACS_year,"/acs/acs",ACS_product,"?get=NAME,", - ACS_BG_variables,"&for=block%20group:*&in=state:",state,"%20county:",county, - "%20tract:",tract,"&key=",censuskey)} - -# Create wrapper to either perform API calls or not depending on presence of cached block group data -# Block group calls done for all 1588 Bay Area tracts (done in 3 tranches because API limited to calls of 50 variables) -# The "4" in the call refers to the number of columns at the end of the API call devoted to geography (not numeric) -# Numeric values are changed by the f.data function from character to numeric -# Note that, because the API call process is so long, these data are also saved in the working directory (Petrale) -# Calls 1-3 are saved in "ACS 2013-2017 Block Group Vars1-3", respectively - -# Call 1 - -if (file.exists("ACS 2013-2017 Block Group Vars1.csv")) {source("Import block group data.R") - } else { # Wrapper checks for cached block group variables, then runs a script to import them - # Only checks for first of three BG files, but that should be sufficient - # Else run the API block group calls to retrieve the data -for(k in 1:nrow(tract_index)) { - if (k==1) { - bg_df1 <- f.data(f.url(ACS_BG_variables1,tract_index[k,"county"],tract_index[k,"tract"]),4) - } - if (k>=2) { - subsequent_df <- f.data(f.url(ACS_BG_variables1,tract_index[k,"county"],tract_index[k,"tract"]),4) - bg_df1 <- rbind(bg_df1,subsequent_df) - } - if (k%%10==0) {print(paste(k, "tracts have been called for Call 1"))} # Monitor progress of this step, as it's long. -} - -# Call 2 - -for(k in 1:nrow(tract_index)) { - if (k==1) { - bg_df2 <- f.data(f.url(ACS_BG_variables2,tract_index[k,"county"],tract_index[k,"tract"]),4) - } - if (k>=2) { - subsequent_df <- f.data(f.url(ACS_BG_variables2,tract_index[k,"county"],tract_index[k,"tract"]),4) - bg_df2 <- rbind(bg_df2,subsequent_df) - } - if (k%%10==0) {print(paste(k, "tracts have been called for Call 2"))} # Monitor progress of this step, as it's long. -} - -# Call 3 - -for(k in 1:nrow(tract_index)) { - if (k==1) { - bg_df3 <- f.data(f.url(ACS_BG_variables3,tract_index[k,"county"],tract_index[k,"tract"]),4) - } - if (k>=2) { - subsequent_df <- f.data(f.url(ACS_BG_variables3,tract_index[k,"county"],tract_index[k,"tract"]),4) - bg_df3 <- rbind(bg_df3,subsequent_df) - } - if (k%%10==0) {print(paste(k, "tracts have been called for Call 3"))} # Monitor progress of this step, as it's long. -} - -} # End of wrapper - -# Combine three data tranches into single data frame - -ACS_BG_preraw <- left_join (bg_df1,bg_df2,by=c("NAME","state","county","block group","tract")) -ACS_BG_preraw <- left_join (ACS_BG_preraw,bg_df3,by=c("NAME","state","county","block group","tract")) - - -# Rename block group variables -names(ACS_BG_preraw) <- str_replace_all(names(ACS_BG_preraw), c(" " = "_")) # Remove space in variable name, - # "block group" to "block_group" -ACS_BG_raw <- ACS_BG_preraw %>% - rename( tothhE = B25009_001E, #Total HHs, HH pop - hhpopE = B11002_001E, - - employedE = B23025_004E, # Employed residents is employedE +armed forcesE - armedforcesE = B23025_006E, - - hhinc0_10E = B19001_002E, # Income categories - hhinc10_15E = B19001_003E, - hhinc15_20E = B19001_004E, - hhinc20_25E = B19001_005E, - hhinc25_30E = B19001_006E, - hhinc30_35E = B19001_007E, - hhinc35_40E = B19001_008E, - hhinc40_45E = B19001_009E, - hhinc45_50E = B19001_010E, - hhinc50_60E = B19001_011E, - hhinc60_75E = B19001_012E, - hhinc75_100E = B19001_013E, - hhinc100_125E = B19001_014E, - hhinc125_150E = B19001_015E, - hhinc150_200E = B19001_016E, - hhinc200pE = B19001_017E, - - male0_4E = B01001_003E, # Age data - male5_9E = B01001_004E, - male10_14E = B01001_005E, - male15_17E = B01001_006E, - male18_19E = B01001_007E, - male20E = B01001_008E, - male21E = B01001_009E, - male22_24E = B01001_010E, - male25_29E = B01001_011E, - male30_34E = B01001_012E, - male35_39E = B01001_013E, - male40_44E = B01001_014E, - male45_49E = B01001_015E, - male50_54E = B01001_016E, - male55_59E = B01001_017E, - male60_61E = B01001_018E, - male62_64E = B01001_019E, - male65_66E = B01001_020E, - male67_69E = B01001_021E, - male70_74E = B01001_022E, - male75_79E = B01001_023E, - male80_84E = B01001_024E, - male85pE = B01001_025E, - female0_4E = B01001_027E, - female5_9E = B01001_028E, - female10_14E = B01001_029E, - female15_17E = B01001_030E, - female18_19E = B01001_031E, - female20E = B01001_032E, - female21E = B01001_033E, - female22_24E = B01001_034E, - female25_29E = B01001_035E, - female30_34E = B01001_036E, - female35_39E = B01001_037E, - female40_44E = B01001_038E, - female45_49E = B01001_039E, - female50_54E = B01001_040E, - female55_59E = B01001_041E, - female60_61E = B01001_042E, - female62_64E = B01001_043E, - female65_66E = B01001_044E, - female67_69E = B01001_045E, - female70_74E = B01001_046E, - female75_79E = B01001_047E, - female80_84E = B01001_048E, - female85pE = B01001_049E, - - white_nonhE = B03002_003E, # Demographic data - black_nonhE = B03002_004E, - asian_nonhE = B03002_006E, - total_nonhE = B03002_002E, - total_hispE = B03002_012E, - - unit1dE = B25024_002E, # Single and multi-family dwelling unit data - unit1aE = B25024_003E, - unit2E = B25024_004E, - unit3_4E = B25024_005E, - unit5_9E = B25024_006E, - unit10_19E = B25024_007E, - unit20_49E = B25024_008E, - unit50pE = B25024_009E, - mobileE = B25024_010E, - boat_RV_VanE = B25024_011E, - - own1E = B25009_003E, # Household size data - own2E = B25009_004E, - own3E = B25009_005E, - own4E = B25009_006E, - own5E = B25009_007E, - own6E = B25009_008E, - own7pE = B25009_009E, - rent1E = B25009_011E, - rent2E = B25009_012E, - rent3E = B25009_013E, - rent4E = B25009_014E, - rent5E = B25009_015E, - rent6E = B25009_016E, - rent7pE = B25009_017E, - - # these skip some numbers since there are nested levels - occ_m_manageE = C24010_005E, # Management - occ_m_prof_bizE = C24010_006E, # Business and financial - occ_m_prof_compE = C24010_007E, # Computer, engineering, and science - occ_m_svc_commE = C24010_012E, # community and social service - occ_m_prof_legE = C24010_013E, # Legal - occ_m_prof_eduE = C24010_014E, # Education, training, and library - occ_m_svc_entE = C24010_015E, # Arts, design, entertainment, sports, and media - occ_m_prof_healE = C24010_016E, # Healthcare practitioners and technical - occ_m_svc_healE = C24010_020E, # Healthcare support - occ_m_svc_fireE = C24010_022E, # Fire fighting and prevention, and other protectiv - occ_m_svc_lawE = C24010_023E, # Law enforcement workers - occ_m_ret_eatE = C24010_024E, # Food preparation and serving related - occ_m_man_buildE = C24010_025E, # Building and grounds cleaning and maintenance - occ_m_svc_persE = C24010_026E, # Personal care and service - occ_m_ret_salesE = C24010_028E, # Sales and related - occ_m_svc_offE = C24010_029E, # Office and administrative support - occ_m_man_natE = C24010_030E, # Natural resources, construction, and maintenance - occ_m_man_prodE = C24010_034E, # Production, transportation, and material moving - - occ_f_manageE = C24010_041E, # Management - occ_f_prof_bizE = C24010_042E, # Business and financial - occ_f_prof_compE = C24010_043E, # Computer, engineering, and science - occ_f_svc_commE = C24010_048E, # community and social service - occ_f_prof_legE = C24010_049E, # Legal - occ_f_prof_eduE = C24010_050E, # Education, training, and library - occ_f_svc_entE = C24010_051E, # Arts, design, entertainment, sports, and media - occ_f_prof_healE = C24010_052E, # Healthcare practitioners and technical - occ_f_svc_healE = C24010_056E, # Healthcare support - occ_f_svc_fireE = C24010_058E, # Fire fighting and prevention, and other protectiv - occ_f_svc_lawE = C24010_059E, # Law enforcement workers - occ_f_ret_eatE = C24010_060E, # Food preparation and serving related - occ_f_man_buildE = C24010_061E, # Building and grounds cleaning and maintenance - occ_f_svc_persE = C24010_062E, # Personal care and service - occ_f_ret_salesE = C24010_064E, # Sales and related - occ_f_svc_offE = C24010_065E, # Office and administrative support - occ_f_man_natE = C24010_066E, # Natural resources, construction, and maintenance - occ_f_man_prodE = C24010_070E # Production, transportation, and material moving - ) %>% - mutate( - GEOID=paste0(state,county,tract,block_group), - tract=paste0(state,county,tract) - ) - - -# Join 2013-2017 ACS block group and tract variables to combined_block file -# Combine and collapse ACS categories to get land use control totals, as appropriate -# Apply block share of 2013-2017 ACS variables using block/block group and block/tract shares of 2010 total population -# Note that "E" on the end of each variable is appended by tidycensus package to denote "estimate" - -workingdata <- left_join(combined_block,ACS_BG_raw, by=c("blockgroup"="GEOID","tract")) -workingdata <- left_join(workingdata,ACS_tract_raw, by=c("tract"="GEOID"))%>% mutate( - TOTHH=tothhE*sharebg, - HHPOP=hhpopE*sharebg, - EMPRES=(employedE+armedforcesE)*sharebg, - HHINCQ1=(hhinc0_10E+ - hhinc10_15E+ - hhinc15_20E+ - hhinc20_25E+ - hhinc25_30E+ - hhinc30_35E+ - hhinc35_40E+ - hhinc40_45E)*sharebg, - HHINCQ2=(hhinc45_50E+ - hhinc50_60E+ - hhinc60_75E+ - (hhinc75_100E*(1-shareabove91538)))*sharebg, # Apportions HHs below $91,538 within $75,000-$100,000 - HHINCQ3=((hhinc75_100E*shareabove91538)+ # Apportions HHs above $91,538 within $75,000-$100,000 - hhinc100_125E+ - hhinc125_150E)*sharebg, - HHINCQ4=(hhinc150_200E+hhinc200pE)*sharebg, - AGE0004=(male0_4E+female0_4E)*sharebg, - AGE0519=(male5_9E+ - male10_14E+ - male15_17E+ - male18_19E+ - female5_9E+ - female10_14E+ - female15_17E+ - female18_19E)*sharebg, - AGE2044=(male20E+ - male21E+ - male22_24E+ - male25_29E+ - male30_34E+ - male35_39E+ - male40_44E+ - female20E+ - female21E+ - female22_24E+ - female25_29E+ - female30_34E+ - female35_39E+ - female40_44E)*sharebg, - AGE4564=(male45_49E+ - male50_54E+ - male55_59E+ - male60_61E+ - male62_64E+ - female45_49E+ - female50_54E+ - female55_59E+ - female60_61E+ - female62_64E)*sharebg, - AGE65P=(male65_66E+ - male67_69E+ - male70_74E+ - male75_79E+ - male80_84E+ - male85pE+ - female65_66E+ - female67_69E+ - female70_74E+ - female75_79E+ - female80_84E+ - female85pE)*sharebg, - AGE62P=(male62_64E+ - male65_66E+ - male67_69E+ - male70_74E+ - male75_79E+ - male80_84E+ - male85pE+ - female62_64E+ - female65_66E+ - female67_69E+ - female70_74E+ - female75_79E+ - female80_84E+ - female85pE)*sharebg, - white_nonh=white_nonhE*sharebg, - black_nonh=black_nonhE*sharebg, - asian_nonh=asian_nonhE*sharebg, - other_nonh=(total_nonhE-(white_nonhE+black_nonhE+asian_nonhE))*sharebg, # "Other, non-Hisp is total non-Hisp minus white,black,Asian - hispanic=total_hispE*sharebg, - SFDU=(unit1dE+ - unit1aE+ - mobileE+ - boat_RV_VanE)*sharebg, - MFDU=(unit2E+ - unit3_4E+ - unit5_9E+ - unit10_19E+ - unit20_49E+ - unit50pE)*sharebg, - hh_size_1=(own1E+rent1E)*sharebg, - hh_size_2=(own2E+rent2E)*sharebg, - hh_size_3=(own3E+rent3E)*sharebg, - hh_size_4_plus=(own4E+ - own5E+ - own6E+ - own7pE+ - rent4E+ - rent5E+ - rent6E+ - rent7pE)*sharebg, - hh_wrks_0=hhwrks0E*sharetract, - hh_wrks_1=hhwrks1E*sharetract, - hh_wrks_2=hhwrks2E*sharetract, - hh_wrks_3_plus=hhwrks3pE*sharetract, - hh_kids_yes=(ownkidsyesE+rentkidsyesE)*sharetract, - hh_kids_no=(ownkidsnoE+rentkidsnoE)*sharetract, - pers_occ_management = (occ_m_manageE + occ_f_manageE )*sharebg, - pers_occ_professional = (occ_m_prof_bizE + occ_f_prof_bizE + - occ_m_prof_compE + occ_f_prof_compE + - occ_m_prof_legE + occ_f_prof_legE + - occ_m_prof_eduE + occ_f_prof_eduE + - occ_m_prof_healE + occ_f_prof_healE)*sharebg, - pers_occ_services = (occ_m_svc_commE + occ_f_svc_commE + - occ_m_svc_entE + occ_f_svc_entE + - occ_m_svc_healE + occ_f_svc_healE + - occ_m_svc_fireE + occ_f_svc_fireE + - occ_m_svc_lawE + occ_f_svc_lawE + - occ_m_svc_persE + occ_f_svc_persE + - occ_m_svc_offE + occ_f_svc_offE )*sharebg, - pers_occ_retail = (occ_m_ret_eatE + occ_f_ret_eatE + - occ_m_ret_salesE + occ_f_ret_salesE)*sharebg, - pers_occ_manual = (occ_m_man_buildE + occ_f_man_buildE + - occ_m_man_natE + occ_f_man_natE + - occ_m_man_prodE + occ_f_man_prodE )*sharebg, - pers_occ_military = (armedforcesE)*sharebg -) -# sf1 -workingdata <- left_join(workingdata,sf1_tract_raw, by=c("tract"="GEOID")) %>% - mutate(gq_type_univ =(gq_noninst_m_0017_univ + - gq_noninst_m_1864_univ + - gq_noninst_m_65p_univ + - gq_noninst_f_0017_univ + - gq_noninst_f_1864_univ + - gq_noninst_f_65p_univ)*sharetract, - gq_type_mil =(gq_noninst_m_0017_mil + - gq_noninst_m_1864_mil + - gq_noninst_m_65p_mil + - gq_noninst_f_0017_mil + - gq_noninst_f_1864_mil + - gq_noninst_f_65p_mil)*sharetract, - gq_type_othnon=(gq_noninst_m_0017_oth + - gq_noninst_m_1864_oth + - gq_noninst_m_65p_oth + - gq_noninst_f_0017_oth + - gq_noninst_f_1864_oth + - gq_noninst_f_65p_oth)*sharetract) - -# Summarize to TAZ and select only variables of interest - -temp0 <- workingdata %>% - group_by(TAZ1454) %>% - summarize( TOTHH=sum(TOTHH), - HHPOP=sum(HHPOP), - EMPRES=sum(EMPRES), - HHINCQ1=sum(HHINCQ1), - HHINCQ2=sum(HHINCQ2), - HHINCQ3=sum(HHINCQ3), - HHINCQ4=sum(HHINCQ4), - AGE0004=sum(AGE0004), - AGE0519=sum(AGE0519), - AGE2044=sum(AGE2044), - AGE4564=sum(AGE4564), - AGE65P=sum(AGE65P), - SFDU=sum(SFDU), - MFDU=sum(MFDU), - hh_size_1=sum(hh_size_1), - hh_size_2=sum(hh_size_2), - hh_size_3=sum(hh_size_3), - hh_size_4_plus=sum(hh_size_4_plus), - hh_wrks_0=sum(hh_wrks_0), - hh_wrks_1=sum(hh_wrks_1), - hh_wrks_2=sum(hh_wrks_2), - hh_wrks_3_plus=sum(hh_wrks_3_plus), - hh_kids_yes=sum(hh_kids_yes), - hh_kids_no=sum(hh_kids_no), - AGE62P=sum(AGE62P), - gq_type_univ =sum(gq_type_univ), - gq_type_mil =sum(gq_type_mil), - gq_type_othnon =sum(gq_type_othnon), - gqpop2010 =gq_type_univ+gq_type_mil+gq_type_othnon, - pers_occ_management =sum(pers_occ_management), - pers_occ_professional=sum(pers_occ_professional), - pers_occ_services =sum(pers_occ_services), - pers_occ_retail =sum(pers_occ_retail), - pers_occ_manual =sum(pers_occ_manual), - pers_occ_military =sum(pers_occ_military), - white_nonh =sum(white_nonh), - black_nonh =sum(black_nonh), - asian_nonh =sum(asian_nonh), - other_nonh =sum(other_nonh), - hispanic =sum(hispanic)) - - -# Correct GQ population to sum to ACS PUMS 2015 total, outlined in Steps 1-3 below -" -1. Add in additional GQ population for growth 2010-2015 from M. Reilly file, -petrale/applications/travel_model_lu_inputs/2015/Group Quarters/gq_add_00051015.csv: - -Location TAZ1454 extra_gq ------------------------------------------------------- ------- -------- -Kennedy Grad at Stanford 353 436 -Munger East AND Ng House at Stanford 354 120 -Metropolitan, Channing Bowditch, Maximo Commons at UCB 1008 348 ------------------------------------------------------- ------- -------- - -2. Sum total 2010 GQ to compare to ACS PUMS 2013-2017 GQ - -3. Create factor corrections to apply to TAZs; apply them -" - -# Create data frame for added GQ pop (only three TAZs have empirically-collected data for updates) -# Join to temp0 file and add GQ pop, then remove column - -added_gq <- data.frame(TAZ1454=1:1454,extra_gq=0) %>% - mutate(extra_gq=case_when( - TAZ1454 == 353 ~ 436, - TAZ1454 == 354 ~ 120, - TAZ1454 == 1008 ~ 348, - TRUE ~ extra_gq # All other values kept at zero - )) - -temp1 <- left_join(temp0,added_gq, by="TAZ1454") %>% - mutate(gqpop2010=gqpop2010+extra_gq) %>% - select(-extra_gq) - -# Sum GQ 2010 population by county - -sum_gq10 <- left_join(temp1,PBA2010_county,by=c("TAZ1454"="ZONE")) %>% - group_by(County_Name,COUNTY) %>% - summarize(sum10=sum(gqpop2010)) - -# Bring in 2013-2017 PUMS and perform the same summary, then join with the 2010 data -# Create GQ adjustment factor - -load (PUMS2013_2017) - -sum_gq15 <- pbayarea1317 %>% - mutate(County_Name=as.character(County_Name)) %>% # Bug fix to override County_Name as factor - filter(RELP==17) %>% - group_by(County_Name) %>% - summarize(sum15=sum(PWGTP)) - -gqcounty1015 <- left_join(sum_gq10,sum_gq15,by="County_Name") %>% - mutate(gqfactor=sum15/sum10) %>% # Factor is ratio of GQ15/GQ10, by county - arrange(COUNTY) # Sort by COUNTY variable, so factors in correct order - -gqfactor <- gqcounty1015$gqfactor # Ordered vector of factors to apply -counties <- c(1,2,3,4,5,6,7,8,9) # Matching county values for factor ordering - -# Apply GQ factor to reconcile adjust 2010 decennial with 2013-2017 PUMS - -temp2 <- left_join(temp1,PBA2010_county,by=c("TAZ1454"="ZONE")) %>% - mutate( - gqpop = gqpop2010*gqfactor[match(COUNTY,counties)] - ) - - -# Apply households by number of workers correction factors -# Values from ACS2013-2017_PUMS2013-2017_HH_Worker_Correction_Factors.csv, in -# petrale\applications\travel_model_lu_inputs\2015\Workers -# 1=San Francisco; 2=San Mateo; 3=Santa Clara; 4=Alameda; 5=Contra Costa; 6=Solano; 7= Napa; 8=Sonoma; 9=Marin -# "counties" vector is defined above with this county order - -workers0 <- c(0.72439,0.71045,0.65234,0.61093,0.81432,0.79221,0.71026,0.81646,0.81952) -workers1 <- c(1.05499,1.01626,1.04675,1.06364,1.02079,1.03487,1.06679,1.04652,1.04665) -workers2 <- c(1.07740,1.08066,1.08075,1.15069,1.07611,1.10324,1.08483,1.06913,1.06500) -workers3p <- c(1.21757,1.21119,1.20479,1.34201,1.15367,1.11889,1.26523,1.15975,1.18261) - -temp3 <- temp2 %>% - mutate( - hh_wrks_0 = hh_wrks_0*workers0[match(COUNTY,counties)], # Apply the above index values for correction factors - hh_wrks_1 = hh_wrks_1*workers1[match(COUNTY,counties)], - hh_wrks_2 = hh_wrks_2*workers2[match(COUNTY,counties)], - hh_wrks_3_plus = hh_wrks_3_plus*workers3p[match(COUNTY,counties)]) - -# Zero out ages for people in TAZ 1439 (San Quentin) -# Begin process of scaling constituent values so category subtotals match marginal totals - -### Beginning of recoding - -temp_rounded_adjusted <- temp3 %>% - mutate( - AGE0004 = if_else(TAZ1454==1439,0,AGE0004), # Zero out population components in San Quentin TAZ - AGE0519 = if_else(TAZ1454==1439,0,AGE0519), # All institutional group quarters - AGE2044 = if_else(TAZ1454==1439,0,AGE2044), # Total pop and gq pop already 0 - AGE4564 = if_else(TAZ1454==1439,0,AGE4564), - AGE65P = if_else(TAZ1454==1439,0,AGE65P), - AGE62P = if_else(TAZ1454==1439,0,AGE62P) - ) %>% - -# Sum constituent parts to compare with marginal totals - - mutate ( - sum_age = AGE0004 + AGE0519 + AGE2044 +AGE4564 + AGE65P, # First person totals by age - sum_groupquarters = gq_type_univ + gq_type_mil + gq_type_othnon, # GQ by type - sum_size = hh_size_1 + hh_size_2 + hh_size_3 + hh_size_4_plus, # Now housing totals - sum_hhworkers = hh_wrks_0 + hh_wrks_1 + hh_wrks_2 + hh_wrks_3_plus, # HHs by number of workers - sum_kids = hh_kids_yes + hh_kids_no, # HHs by kids or not - sum_income = HHINCQ1 + HHINCQ2 + HHINCQ3 + HHINCQ4, # HHs by income - sum_empres = pers_occ_management + pers_occ_professional+ # Employed residents by industry - pers_occ_services + pers_occ_retail + pers_occ_manual + pers_occ_military, - HHPOP = round(HHPOP,0), # Round and sum total pop from HH and GQ pop - gqpop = round(gqpop,0), - TOTPOP = HHPOP+gqpop, - sum_ethnicity = white_nonh+black_nonh+asian_nonh+other_nonh+hispanic, - -# Create inflation/deflation factors - - age_factor = if_else(sum_age==0,0,TOTPOP/sum_age), - gq_factor = if_else(sum_groupquarters==0,0,gqpop/sum_groupquarters), - size_factor = if_else(sum_size==0,0,TOTHH/sum_size), - hhworkers_factor = if_else(sum_hhworkers==0,0,TOTHH/sum_hhworkers), - kids_factor = if_else(sum_kids==0,0,TOTHH/sum_kids), - income_factor = if_else(sum_income==0,0,TOTHH/sum_income), - empres_factor = if_else(sum_empres==0,0,EMPRES/sum_empres), - ethnicity_factor = if_else(sum_ethnicity==0,0,TOTPOP/sum_ethnicity), - -# Apply factors to correct for scale up or down constituent parts to match marginal totals - - AGE0004 = AGE0004 * age_factor, # Persons by age correction - AGE0519 = AGE0519 * age_factor, - AGE2044 = AGE2044 * age_factor, - AGE4564 = AGE4564 * age_factor, - AGE65P = AGE65P * age_factor, - - white_nonh = white_nonh * ethnicity_factor, # Persons by ethnicity correction - black_nonh = black_nonh * ethnicity_factor, - asian_nonh = asian_nonh * ethnicity_factor, - other_nonh = other_nonh * ethnicity_factor, - hispanic = hispanic * ethnicity_factor, - - gq_type_univ = gq_type_univ * gq_factor, # Group quarters by type - gq_type_mil = gq_type_mil * gq_factor, - gq_type_othnon = gq_type_othnon * gq_factor, - - hh_size_1 = hh_size_1 * size_factor, # Households by size - hh_size_2 = hh_size_2 * size_factor, - hh_size_3 = hh_size_3 * size_factor, - hh_size_4_plus = hh_size_4_plus * size_factor, - - hh_wrks_0 = hh_wrks_0 * hhworkers_factor, # Households by number of workers - hh_wrks_1 = hh_wrks_1 * hhworkers_factor, - hh_wrks_2 = hh_wrks_2 * hhworkers_factor, - hh_wrks_3_plus = hh_wrks_3_plus * hhworkers_factor, - - hh_kids_yes = hh_kids_yes * kids_factor, # Households by presence of kids - hh_kids_no = hh_kids_no * kids_factor, - - HHINCQ1 = HHINCQ1 * income_factor, # Households by income - HHINCQ2 = HHINCQ2 * income_factor, - HHINCQ3 = HHINCQ3 * income_factor, - HHINCQ4 = HHINCQ4 * income_factor, - - pers_occ_management = pers_occ_management * empres_factor, # Employed residents by occupation - pers_occ_professional = pers_occ_professional * empres_factor, - pers_occ_services = pers_occ_services * empres_factor, - pers_occ_retail = pers_occ_retail * empres_factor, - pers_occ_manual = pers_occ_manual * empres_factor, - pers_occ_military = pers_occ_military * empres_factor) %>% - -# Round Data, remove sum variables and factors -# Add in population over age 62 variable that is also needed (but should not be rounded, so added at the end) - - select (-age_factor,-gq_factor,-size_factor,-hhworkers_factor,-kids_factor,-income_factor,-empres_factor, - -sum_age,-sum_groupquarters,-sum_size,-sum_hhworkers,-sum_kids,-sum_income,-sum_empres, -sum_ethnicity, - -ethnicity_factor) %>% - mutate_if(is.numeric,round,0) %>% - mutate(SHPOP62P = if_else(TOTPOP==0,0,AGE62P/TOTPOP)) %>% - -# Scaling adjustments were done above, now make fix small variations due to rounding for precisely-matching totals -# Find max value in categorical data to adjust totals so they match univariate totals -# For example, the households by income across categories should sum to equal total HHs -# If unequal, the largest constituent cell is adjusted up or down such that the category sums match the marginal total - - mutate ( - max_age = max.col(.[c("AGE0004","AGE0519","AGE2044","AGE4564","AGE65P")], ties.method="first"), - max_gq = max.col(.[c("gq_type_univ","gq_type_mil","gq_type_othnon")], ties.method="first"), - max_size = max.col(.[c("hh_size_1","hh_size_2","hh_size_3","hh_size_4_plus")], ties.method="first"), - max_workers= max.col(.[c("hh_wrks_0","hh_wrks_1","hh_wrks_2","hh_wrks_3_plus")], ties.method="first"), - max_kids = max.col(.[c("hh_kids_yes","hh_kids_no")], ties.method="first"), - max_income = max.col(.[c("HHINCQ1","HHINCQ2","HHINCQ3","HHINCQ4")], ties.method="first"), - max_occ = max.col(.[c("pers_occ_management","pers_occ_professional", - "pers_occ_services","pers_occ_retail", - "pers_occ_manual","pers_occ_military")], ties.method="first"), - max_eth = max.col(.[c("white_nonh","black_nonh","asian_nonh","other_nonh", - "hispanic")], ties.method="first"))%>% - -# Now use max values determined above to find appropriate column for adjustment - - mutate( - - # Balance population by age - - AGE0004 = if_else(max_age==1,AGE0004+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE0004), - AGE0519 = if_else(max_age==2,AGE0519+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE0519), - AGE2044 = if_else(max_age==3,AGE2044+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE2044), - AGE4564 = if_else(max_age==4,AGE4564+(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE4564), - AGE65P = if_else(max_age==5,AGE65P +(TOTPOP-(AGE0004+AGE0519+AGE2044+AGE4564+AGE65P)),AGE65P), - - # Balance population by ethnicity - - white_nonh = if_else(max_eth==1,white_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ - hispanic)),white_nonh), - black_nonh = if_else(max_eth==2,black_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ - hispanic)),black_nonh), - asian_nonh = if_else(max_eth==3,asian_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ - hispanic)),asian_nonh), - other_nonh = if_else(max_eth==4,other_nonh+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ - hispanic)),other_nonh), - hispanic = if_else(max_eth==5,hispanic+(TOTPOP-(white_nonh+black_nonh+asian_nonh+other_nonh+ - hispanic)),hispanic), - - # Balance GQ population by type - - gq_type_univ = if_else(max_gq==1,gq_type_univ+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_univ), - gq_type_mil = if_else(max_gq==2,gq_type_mil+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_mil), - gq_type_othnon = if_else(max_gq==3,gq_type_othnon+(gqpop-(gq_type_univ+gq_type_mil+gq_type_othnon)),gq_type_othnon), - - #Balance HH size categories - - hh_size_1 = if_else(max_size==1,hh_size_1 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_1), - hh_size_2 = if_else(max_size==2,hh_size_2 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_2), - hh_size_3 = if_else(max_size==3,hh_size_3 +(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_3), - hh_size_4_plus = if_else(max_size==4,hh_size_4_plus+(TOTHH-(hh_size_1+hh_size_2+hh_size_3+hh_size_4_plus)),hh_size_4_plus), - - #Balance HH worker categories - - hh_wrks_0 = if_else(max_workers==1,hh_wrks_0+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_0), - hh_wrks_1 = if_else(max_workers==2,hh_wrks_1+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_1), - hh_wrks_2 = if_else(max_workers==3,hh_wrks_2+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_2), - hh_wrks_3_plus = if_else(max_workers==4,hh_wrks_3_plus+(TOTHH-(hh_wrks_0+hh_wrks_1+hh_wrks_2+hh_wrks_3_plus)),hh_wrks_3_plus), - - #Balance HH kids categories - - hh_kids_yes = if_else(max_kids==1,hh_kids_yes+(TOTHH-(hh_kids_yes+hh_kids_no)),hh_kids_yes), - hh_kids_no = if_else(max_kids==2,hh_kids_no +(TOTHH-(hh_kids_yes+hh_kids_no)),hh_kids_no), - - # Balance HH income categories - - HHINCQ1 = if_else(max_income==1,HHINCQ1+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ1), - HHINCQ2 = if_else(max_income==2,HHINCQ2+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ2), - HHINCQ3 = if_else(max_income==3,HHINCQ3+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ3), - HHINCQ4 = if_else(max_income==4,HHINCQ4+(TOTHH-(HHINCQ1+HHINCQ2+HHINCQ3+HHINCQ4)),HHINCQ4), - - # Balance workers by occupation categories - - pers_occ_management = if_else(max_occ==1,pers_occ_management+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_management), - pers_occ_professional = if_else(max_occ==2,pers_occ_professional+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_professional), - pers_occ_services = if_else(max_occ==3,pers_occ_services+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_services), - pers_occ_retail = if_else(max_occ==4,pers_occ_retail+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_retail), - pers_occ_manual = if_else(max_occ==5,pers_occ_manual+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_manual), - pers_occ_military = if_else(max_occ==6,pers_occ_military+(EMPRES-(pers_occ_management+pers_occ_professional+ - pers_occ_services+pers_occ_retail+pers_occ_manual+pers_occ_military)),pers_occ_military) -) %>% - -# Remove max variables - - select(-max_age,-max_gq,-max_size,-max_workers,-max_kids,-max_income,-max_occ, -max_eth) - -### End of recoding - -# Write out ethnic variables - -ethnic <- temp_rounded_adjusted %>% - select(TAZ1454,hispanic, white_nonh,black_nonh,asian_nonh,other_nonh,TOTPOP, COUNTY, County_Name) - -write.csv (ethnic,file = "TAZ1454_Ethnicity.csv",row.names = FALSE) - -# Read in old PBA data sets and select variables for joining to new 2015 dataset -# Bring in updated 2015 employment for joining -# Bring in school and parking data from PBA 2040, 2015 TAZ data -# Add HHLDS variable (same as TOTHH), select new 2015 output - -PBA2010_joiner <- PBA2010%>% - select(ZONE,DISTRICT,SD,TOTACRE,RESACRE,CIACRE,AREATYPE,TOPOLOGY,ZERO,sftaz) - -employment_2015 <- read.csv(employment_2015_data,header=TRUE) - -parking_2015 <- read.csv(parking_2015_data, header=TRUE) %>% - select(ZONE,PRKCST,OPRKCST,TERMINAL) - -school_2015 <- read.csv(school_2015_data, header=TRUE) %>% - select(ZONE,HSENROLL,COLLFTE,COLLPTE) - -joined_10_15 <- left_join(PBA2010_joiner,temp_rounded_adjusted, by=c("ZONE"="TAZ1454")) # Join 2010 topology -joined_parking <- left_join(joined_10_15,parking_2015, by="ZONE") # Join PBA 2015 parking -joined_school <- left_join(joined_parking, school_2015, by="ZONE") # Join schools -joined_employment <- left_join(joined_school,employment_2015, by=c("ZONE"="TAZ1454")) # Join employment - -New2015 <- joined_employment %>% - mutate(hhlds=TOTHH) %>% - select(ZONE,DISTRICT,SD,COUNTY,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,TOTACRE, - RESACRE,CIACRE,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, - MWTEMPN,OTHEMPN,PRKCST,OPRKCST,AREATYPE,HSENROLL,COLLFTE,COLLPTE,TERMINAL,TOPOLOGY,ZERO,hhlds,sftaz, - gqpop) - -# Summarize ACS and employment data by superdistrict for both 2010 and 2015 - -summed10 <- PBA2010 %>% - group_by(DISTRICT) %>% - summarize(TOTHH=sum(TOTHH),HHPOP=sum(HHPOP),TOTPOP=sum(TOTPOP),EMPRES=sum(EMPRES),SFDU=sum(SFDU),MFDU=sum(MFDU), - HHINCQ1=sum(HHINCQ1),HHINCQ2=sum(HHINCQ2),HHINCQ3=sum(HHINCQ3),HHINCQ4=sum(HHINCQ4),TOTEMP=sum(TOTEMP), - AGE0004=sum(AGE0004),AGE0519=sum(AGE0519),AGE2044=sum(AGE2044),AGE4564=sum(AGE4564),AGE65P=sum(AGE65P), - RETEMPN=sum(RETEMPN),FPSEMPN=sum(FPSEMPN),HEREMPN=sum(HEREMPN),AGREMPN=sum(AGREMPN),MWTEMPN=sum(MWTEMPN), - OTHEMPN=sum(OTHEMPN),HSENROLL=sum(HSENROLL),COLLFTE=sum(COLLFTE),COLLPTE=sum(COLLPTE),gqpop=sum(gqpop)) - -summed15 <- New2015 %>% - group_by(DISTRICT) %>% - summarize(TOTHH=sum(TOTHH),HHPOP=sum(HHPOP),TOTPOP=sum(TOTPOP),EMPRES=sum(EMPRES),SFDU=sum(SFDU),MFDU=sum(MFDU), - HHINCQ1=sum(HHINCQ1),HHINCQ2=sum(HHINCQ2),HHINCQ3=sum(HHINCQ3),HHINCQ4=sum(HHINCQ4),TOTEMP=sum(TOTEMP), - AGE0004=sum(AGE0004),AGE0519=sum(AGE0519),AGE2044=sum(AGE2044),AGE4564=sum(AGE4564),AGE65P=sum(AGE65P), - RETEMPN=sum(RETEMPN),FPSEMPN=sum(FPSEMPN),HEREMPN=sum(HEREMPN),AGREMPN=sum(AGREMPN),MWTEMPN=sum(MWTEMPN), - OTHEMPN=sum(OTHEMPN),HSENROLL=sum(HSENROLL),COLLFTE=sum(COLLFTE),COLLPTE=sum(COLLPTE),gqpop=sum(gqpop)) - -# Export new 2015 data, 2010 and 2015 district summary data - -write.csv(New2015, "TAZ1454 2015 Land Use.csv", row.names = FALSE, quote = T) -write.csv(summed10, "TAZ1454 2010 District Summary.csv", row.names = FALSE, quote = T) -write.csv(summed15, "TAZ1454 2015 District Summary.csv", row.names = FALSE, quote = T) - -# Select out PopSim variables and export to separate csv - -popsim_vars <- temp_rounded_adjusted %>% - rename(TAZ=TAZ1454,gq_tot_pop=gqpop)%>% - select(TAZ,TOTHH,TOTPOP,hh_size_1,hh_size_2,hh_size_3,hh_size_4_plus,hh_wrks_0,hh_wrks_1,hh_wrks_2,hh_wrks_3_plus, - hh_kids_no,hh_kids_yes,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P, - gq_tot_pop,gq_type_univ,gq_type_mil,gq_type_othnon) - -write.csv(popsim_vars, "TAZ1454 2015 Popsim Vars.csv", row.names = FALSE, quote = T) - -# region popsim vars -popsim_vars_region <- popsim_vars %>% - mutate(REGION=1) %>% - group_by(REGION) %>% - summarize(gq_num_hh_region=sum(gq_tot_pop)) - -write.csv(popsim_vars_region, "TAZ1454 2015 Popsim Vars Region.csv", row.names = FALSE, quote = T) - -# county popsim vars -popsim_vars_county <- joined_10_15 %>% - group_by(COUNTY) %>% summarize( - pers_occ_management =sum(pers_occ_management), - pers_occ_professional=sum(pers_occ_professional), - pers_occ_services =sum(pers_occ_services), - pers_occ_retail =sum(pers_occ_retail), - pers_occ_manual =sum(pers_occ_manual), - pers_occ_military =sum(pers_occ_military)) - -write.csv(popsim_vars_county, "TAZ1454 2015 Popsim Vars County.csv", row.names = FALSE, quote = T) - -# Optional code below for other analyses - -# ------------------------------------------------------------------------------------------------ - -"# Output into Tableau-friendly format - -Tableau2015 <- New2015 %>% - select(ZONE,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, - MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) %>% - gather(Variable,Value2015,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, - MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) - -Tableau2010 <- PBA2010 %>% - select(ZONE,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, - MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop) %>% - gather(Variable,Value2010,TOTHH,HHPOP,TOTPOP,EMPRES,SFDU,MFDU,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4,SHPOP62P,TOTEMP,AGE0004,AGE0519,AGE2044,AGE4564,AGE65P,RETEMPN,FPSEMPN,HEREMPN,AGREMPN, - MWTEMPN,OTHEMPN,PRKCST,OPRKCST,HSENROLL,COLLFTE,COLLPTE,gqpop)" - -#Tableau10_15 <- left_join(Tableau2010,Tableau2015,by = c("ZONE","Variable")) - -#write.csv(Tableau10_15, "Tableau_2010_2015_Comparison.csv", row.names = FALSE, quote = T) - - -"RMWG_Summary <- New2015 %>% - mutate(housing_units=SFDU+MFDU) %>% - group_by(COUNTY) %>% - summarize(population=sum(TOTPOP),households=sum(TOTHH),units=sum(housing_units),group=sum(gqpop),jobs=sum(TOTEMP), - residents=sum(EMPRES))" - - -# write.csv(RMWG_Summary, "RMWG_Summary.csv", row.names = FALSE, quote = T) - +final <- final %>% + select(MAZ=maz,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4) +write.csv(final,"MAZ Households by Income.csv",row.names = F) From ff126e27fec4bb315e6ef78b4439c9168ec79af3 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Sat, 25 Sep 2021 00:01:52 -0700 Subject: [PATCH 08/27] Update documentation --- ...Z data for households by income for 2015.R | 116 +++++++++--------- 1 file changed, 55 insertions(+), 61 deletions(-) diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R index 621efa6d3..0bd5b1e18 100644 --- a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R +++ b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R @@ -1,7 +1,6 @@ -# ACS 2013-2017 create TAZ data for 2015.R -# Create "2015" TAZ data from ACS 2013-2017 +# ACS 2013-2017 create MAZ data for households by income for 2015.R +# Create "2015" MAZ data from ACS 2013-2017 # SI -# Updated 4/24/20 with new employment data # Notes @@ -12,16 +11,13 @@ setwd(wd) " -1. ACS data here is downloaded for the 2013-2017 5-year dataset. The end year can be updated - by changing the *ACS_year* variable. +1. ACS households by income data here are downloaded for the 2013-2017 5-year dataset. The end year can + be updated by changing the *ACS_year* variable. -2. ACS block group variables used in all instances where not suppressed. If suppressed at the block group - level, tract-level data used instead. Suppressed variables may change if ACS_year is changed. This - should be checked, as this change could cause the script not to work. - -3. Group quarters data start with the decennial census data. There are some small TAZ-specific - additions from university growth that are incorporated in the script, and then TAZs are scaled up to match - ACS 2013-2017 county-level totals. +2. 2010 decennial census household data at the block level were used to develop the share of households by + each maz/block group combination relative to the block group total. That share was then applied to each + household income category. Data were then totaled, rounded, with the largest income column adjusted so subtotals + equal totals. " # Import Libraries @@ -29,32 +25,28 @@ setwd(wd) suppressMessages(library(tidyverse)) library(tidycensus) -# Set up directories, import TAZ/census block equivalence, install census key, set ACS year,set CPI inflation - +# Set up directories, import TAZ/census block equivalence, install census key, set ACS year censuskey <- readLines("M:/Data/Census/API/api-key.txt") -baycounties <- c("01","13","41","55","75","81","85","95","97") census_api_key(censuskey, install = TRUE, overwrite = TRUE) +baycounties <- c("01","13","41","55","75","81","85","95","97") + ACS_year <- 2017 sf1_year <- 2010 ACS_product="5" -state="06" -CPI_current <- 274.92 # CPI value for 2017 -CPI_reference <- 180.20 # CPI value for 2000 -CPI_ratio <- CPI_current/CPI_reference # 2017 CPI/2000 CPI +state_code ="06" + USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") -#BOX_TM <- file.path(USERPROFILE, "Box", "Modeling and Surveys") -#PBA_TAZ_2010 <- file.path(BOX_TM, "Share Data", "plan-bay-area-2040", "2010_06_003","tazData.csv") # Make decennial census calls, configure file for later joining totalhhs <- "H016001" # 2010 variable for decennial total households sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, - state = "06", county=baycounties, + state = state_code, county=baycounties, year=2010, output="wide", key=censuskey) %>% @@ -67,7 +59,11 @@ sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% left_join(.,sf1_block_hhs,by="GEOID10") -# Summarize by MAZ and create file with block group share of MAZ +# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) +# Summarize household total by block group and then by block group/MAZ combination +# Calculate share of block group/MAZ combination hhs vs. total block group housholds +# The calculated shares will be used to apportion block group households to MAZs +# Watch for divide-by-zero error when calculating shares in if/else statement bg_MAZ <- block_MAZ_TAZ %>% mutate(bg=as.numeric(substr(GEOID10,1,11))) %>% @@ -76,17 +72,18 @@ bg_MAZ <- block_MAZ_TAZ %>% bg_total <- bg_MAZ %>% group_by(bg) %>% summarize(total_bg_hhs=sum(hhs)) %>% - ungroup() %>% - select(bg,total_bg_hhs) + ungroup() combo_total <- bg_MAZ %>% group_by(maz,bg) %>% summarize(total_combo_hhs=sum(hhs)) %>% ungroup() %>% left_join(.,bg_total,by="bg") %>% - mutate(sharebg=if_else(total_bg_hhs==0,0,total_combo_hhs/total_bg_hhs)) + mutate(sharecombo=if_else(total_bg_hhs==0,0,total_combo_hhs/total_bg_hhs)) -# Household income variables +# ACS household income variables +# Make ACS API call, rename variables, and select estimates to remove margin-of-error values +# Change "bg" class type for easy merging hh_income_vars <- c("B19001_002E", # Household income 0 to $10k "B19001_003E", # Household income $10 to $15k @@ -105,25 +102,8 @@ hh_income_vars <- c("B19001_002E", # Household income 0 to $10k "B19001_016E", # Household income $150 to $200k "B19001_017E") # Household income $200k+ - paste0("B19001_002E,", # Household income 0 to $10k - "B19001_003E,", # Household income $10 to $15k - "B19001_004E,", # Household income $15 to $20k - "B19001_005E,", # Household income $20 to $25k - "B19001_006E,", # Household income $25 to $30k - "B19001_007E,", # Household income $30 to $35k - "B19001_008E,", # Household income $35 to $40k - "B19001_009E,", # Household income $40 to $45k - "B19001_010E,", # Household income $45 to $50k - "B19001_011E,", # Household income 50 to $60k - "B19001_012E,", # Household income 60 to $75k - "B19001_013E,", # Household income 75 to $100k - "B19001_014E,", # Household income $100 to $1$25k - "B19001_015E,", # Household income $1$25 to $150k - "B19001_016E,", # Household income $150 to $200k - "B19001_017E") # Household income $200k+ - acs_income <- get_acs(geography = "block group", variables = hh_income_vars, - state = "06", county=baycounties, + state = state_code, county=baycounties, year=ACS_year, output="wide", survey = "acs5", @@ -147,8 +127,15 @@ acs_income <- get_acs(geography = "block group", variables = hh_income_vars, mutate(bg=as.numeric(GEOID)) # Income table - Guidelines for HH income values used from ACS +# Use CPI values from 2017 and 2000 to get inflation values right + " +CPI_current <- 274.92 # CPI value for 2017 +CPI_reference <- 180.20 # CPI value for 2000 +CPI_ratio <- CPI_current/CPI_reference = 1.525638 # 2017 CPI/2000 CPI + + 2000 income breaks 2017 CPI equivalent Nearest 2017 ACS breakpoint ------------------ ------------------- --------------------------- $30,000 $45,769 $45,000 @@ -158,8 +145,8 @@ acs_income <- get_acs(geography = "block group", variables = hh_income_vars, * Because the 2017$ equivalent of $60,000 in 2000$ ($91,538) doesn't closely align with 2017 ACS income categories, households within the $75,000-$99,999 category will be apportioned above and below $91,538. - Using the ACS 2013-2017 PUMS data, the share of households above $91,538 within the $75,000-$99,999 - category is 0.3042492.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be + Using the ACS 2013-2017 PUMS data, the share of Bay Area households above $91,538 within the $75,000-$99,999 + category is 0.3113032.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be apportioned above this value (Q3) and 70 percent below it (Q2). The table below compares 2000$ and 2017$. Household Income Category Equivalency, 2000$ and 2017$ @@ -181,9 +168,9 @@ HHINCQ4 2000 $100,000 $inf shareabove91538 <- 0.3113032 # Use this value to later divvy up HHs in the 30-60k and 60-100k respective quartiles. -# Join 2013-2017 ACS block group and tract variables to combined_block file -# Combine and collapse ACS categories to get land use control totals, as appropriate -# Apply block share of 2013-2017 ACS variables using block/block group and block/tract shares of 2010 total population +# Join 2013-2017 ACS block group and block group/MAZ combination datasets +# Combine and collapse ACS categories to get appropriate TM2 categories +# Apply share of 2013-2017 ACS variables using block group/MAZ combination share of 2010 total households # Note that "E" on the end of each variable is appended by tidycensus package to denote "estimate" workingdata <- left_join(combo_total,acs_income, by="bg") %>% @@ -195,15 +182,18 @@ workingdata <- left_join(combo_total,acs_income, by="bg") %>% hhinc25_30E+ hhinc30_35E+ hhinc35_40E+ - hhinc40_45E)*sharebg, + hhinc40_45E)*sharecombo, HHINCQ2=(hhinc45_50E+ hhinc50_60E+ hhinc60_75E+ - (hhinc75_100E*(1-shareabove91538)))*sharebg, # Apportions HHs below $91,538 within $75,000-$100,000 + (hhinc75_100E*(1-shareabove91538)))*sharecombo, # Apportions HHs below $91,538 within $75,000-$100,000 HHINCQ3=((hhinc75_100E*shareabove91538)+ # Apportions HHs above $91,538 within $75,000-$100,000 hhinc100_125E+ - hhinc125_150E)*sharebg, - HHINCQ4=(hhinc150_200E+hhinc200pE)*sharebg) + hhinc125_150E)*sharecombo, + HHINCQ4=(hhinc150_200E+hhinc200pE)*sharecombo) + +# Summarize data by MAZ +# Now set up dataset to round and adjust column values such that subtotals match totals hh_columns <- c("HHINCQ1","HHINCQ2","HHINCQ3","HHINCQ4") @@ -213,19 +203,23 @@ final <- workingdata %>% HHINCQ2=sum(HHINCQ2), HHINCQ3=sum(HHINCQ3), HHINCQ4=sum(HHINCQ4)) %>% - mutate(hh_total=rowSums(select(.,all_of(hh_columns)))) %>% - mutate_at(c(all_of(hh_columns),"hh_total"),~round(.,digits = 0)) %>% - mutate(hh_subtotal=rowSums(select(.,all_of(hh_columns))), - max_hh = hh_columns[max.col(select(.,hh_columns), ties.method="first")], - hh_diff = hh_total - hh_subtotal) + mutate(hh_total=rowSums(select(.,all_of(hh_columns)))) %>% # Sum rows before rounding to get best total + mutate_at(c(all_of(hh_columns),"hh_total"),~round(.,digits = 0)) %>% # Round columns + mutate(hh_subtotal=rowSums(select(.,all_of(hh_columns))), # Sum rows after rounding to ensure subtotals match totals + max_hh = hh_columns[max.col(select(.,hh_columns), ties.method="first")], # Find max column for adjustment + hh_diff = hh_total - hh_subtotal) # Calculate subtotal and total difference for (col in hh_columns) { final[col] <- if_else(final$max_hh==col, final[[col]] + final[["hh_diff"]], - final[[col]]) + final[[col]]) # Adjust largest column to resolve total/subtotal discrepancy } +# Clean up file and export relevant variables +# Remove "0" MAZ + final <- final %>% - select(MAZ=maz,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4) + select(MAZ=maz,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4) %>% + filter (MAZ !=0) write.csv(final,"MAZ Households by Income.csv",row.names = F) From 79f5bf3b7650c09895fd59da09e22e045758cf89 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Sat, 25 Sep 2021 00:30:36 -0700 Subject: [PATCH 09/27] Add ungroup () for consistency. --- ...13-2017 create MAZ data for households by income for 2015.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R index 0bd5b1e18..f5757c72d 100644 --- a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R +++ b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R @@ -202,7 +202,8 @@ final <- workingdata %>% summarize( HHINCQ1=sum(HHINCQ1), HHINCQ2=sum(HHINCQ2), HHINCQ3=sum(HHINCQ3), - HHINCQ4=sum(HHINCQ4)) %>% + HHINCQ4=sum(HHINCQ4)) %>% + ungroup() %>% mutate(hh_total=rowSums(select(.,all_of(hh_columns)))) %>% # Sum rows before rounding to get best total mutate_at(c(all_of(hh_columns),"hh_total"),~round(.,digits = 0)) %>% # Round columns mutate(hh_subtotal=rowSums(select(.,all_of(hh_columns))), # Sum rows after rounding to ensure subtotals match totals From 5e747b01973c66999375bd1b0f7053763a5433f5 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Sat, 25 Sep 2021 08:49:27 -0700 Subject: [PATCH 10/27] Changed script directories --- ...Z data for households by income for 2015.R | 226 ------------------ 1 file changed, 226 deletions(-) delete mode 100644 misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R diff --git a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R b/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R deleted file mode 100644 index f5757c72d..000000000 --- a/misc_scripts/ACS 2013-2017 create MAZ data for households by income for 2015.R +++ /dev/null @@ -1,226 +0,0 @@ -# ACS 2013-2017 create MAZ data for households by income for 2015.R -# Create "2015" MAZ data from ACS 2013-2017 -# SI - -# Notes - -# The working directory is set as the location of the script. All other paths in Petrale will be relative. - -wd <- paste0(dirname(rstudioapi::getActiveDocumentContext()$path),"/") -setwd(wd) - -" - -1. ACS households by income data here are downloaded for the 2013-2017 5-year dataset. The end year can - be updated by changing the *ACS_year* variable. - -2. 2010 decennial census household data at the block level were used to develop the share of households by - each maz/block group combination relative to the block group total. That share was then applied to each - household income category. Data were then totaled, rounded, with the largest income column adjusted so subtotals - equal totals. - -" -# Import Libraries - -suppressMessages(library(tidyverse)) -library(tidycensus) - -# Set up directories, import TAZ/census block equivalence, install census key, set ACS year - -censuskey <- readLines("M:/Data/Census/API/api-key.txt") -census_api_key(censuskey, install = TRUE, overwrite = TRUE) -baycounties <- c("01","13","41","55","75","81","85","95","97") - - -ACS_year <- 2017 -sf1_year <- 2010 -ACS_product="5" -state_code ="06" - - -USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) -block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") - -# Make decennial census calls, configure file for later joining - -totalhhs <- "H016001" # 2010 variable for decennial total households - -sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, - state = state_code, county=baycounties, - year=2010, - output="wide", - key=censuskey) %>% - rename(GEOID10 = GEOID,hhs=H016001) %>% - mutate(GEOID10 = as.numeric(GEOID10)) %>% - select(-NAME) - -# Bring in block to MAZ/TAZ equivalence and join with census HH file - -block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% - left_join(.,sf1_block_hhs,by="GEOID10") - -# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) -# Summarize household total by block group and then by block group/MAZ combination -# Calculate share of block group/MAZ combination hhs vs. total block group housholds -# The calculated shares will be used to apportion block group households to MAZs -# Watch for divide-by-zero error when calculating shares in if/else statement - -bg_MAZ <- block_MAZ_TAZ %>% - mutate(bg=as.numeric(substr(GEOID10,1,11))) %>% - select(-taz) - -bg_total <- bg_MAZ %>% - group_by(bg) %>% - summarize(total_bg_hhs=sum(hhs)) %>% - ungroup() - -combo_total <- bg_MAZ %>% - group_by(maz,bg) %>% - summarize(total_combo_hhs=sum(hhs)) %>% - ungroup() %>% - left_join(.,bg_total,by="bg") %>% - mutate(sharecombo=if_else(total_bg_hhs==0,0,total_combo_hhs/total_bg_hhs)) - -# ACS household income variables -# Make ACS API call, rename variables, and select estimates to remove margin-of-error values -# Change "bg" class type for easy merging - -hh_income_vars <- c("B19001_002E", # Household income 0 to $10k - "B19001_003E", # Household income $10 to $15k - "B19001_004E", # Household income $15 to $20k - "B19001_005E", # Household income $20 to $25k - "B19001_006E", # Household income $25 to $30k - "B19001_007E", # Household income $30 to $35k - "B19001_008E", # Household income $35 to $40k - "B19001_009E", # Household income $40 to $45k - "B19001_010E", # Household income $45 to $50k - "B19001_011E", # Household income 50 to $60k - "B19001_012E", # Household income 60 to $75k - "B19001_013E", # Household income 75 to $100k - "B19001_014E", # Household income $100 to $1$25k - "B19001_015E", # Household income $1$25 to $150k - "B19001_016E", # Household income $150 to $200k - "B19001_017E") # Household income $200k+ - -acs_income <- get_acs(geography = "block group", variables = hh_income_vars, - state = state_code, county=baycounties, - year=ACS_year, - output="wide", - survey = "acs5", - key = censuskey) %>% - select(GEOID,NAME,hhinc0_10E = B19001_002E, # Income categories - hhinc10_15E = B19001_003E, - hhinc15_20E = B19001_004E, - hhinc20_25E = B19001_005E, - hhinc25_30E = B19001_006E, - hhinc30_35E = B19001_007E, - hhinc35_40E = B19001_008E, - hhinc40_45E = B19001_009E, - hhinc45_50E = B19001_010E, - hhinc50_60E = B19001_011E, - hhinc60_75E = B19001_012E, - hhinc75_100E = B19001_013E, - hhinc100_125E = B19001_014E, - hhinc125_150E = B19001_015E, - hhinc150_200E = B19001_016E, - hhinc200pE = B19001_017E) %>% - mutate(bg=as.numeric(GEOID)) - -# Income table - Guidelines for HH income values used from ACS -# Use CPI values from 2017 and 2000 to get inflation values right - -" - -CPI_current <- 274.92 # CPI value for 2017 -CPI_reference <- 180.20 # CPI value for 2000 -CPI_ratio <- CPI_current/CPI_reference = 1.525638 # 2017 CPI/2000 CPI - - - 2000 income breaks 2017 CPI equivalent Nearest 2017 ACS breakpoint - ------------------ ------------------- --------------------------- - $30,000 $45,769 $45,000 - $60,000 $91,538 $91,538* - $100,000 $152,564 $150,000 - ------------------ ------------------- --------------------------- - - * Because the 2017$ equivalent of $60,000 in 2000$ ($91,538) doesn't closely align with 2017 ACS income - categories, households within the $75,000-$99,999 category will be apportioned above and below $91,538. - Using the ACS 2013-2017 PUMS data, the share of Bay Area households above $91,538 within the $75,000-$99,999 - category is 0.3113032.That is, approximately 30 percent of HHs in the $75,000-$99,999 category will be - apportioned above this value (Q3) and 70 percent below it (Q2). The table below compares 2000$ and 2017$. - -Household Income Category Equivalency, 2000$ and 2017$ - - Year Lower Bound Upper Bound - ---- ------------ ----------- -HHINCQ1 2000 $-inf $29,999 - 2017 $-inf $44,999 -HHINCQ2 2000 $30,000 $59,999 - 2017 $45,000 $91,537 -HHINCQ3 2000 $60,000 $99,999 - 2017 $91,538 $149,999 -HHINCQ4 2000 $100,000 $inf - 2017 $150,000 $inf - ---- ------------- ----------- - -" - -shareabove91538 <- 0.3113032 # Use this value to later divvy up HHs in the 30-60k and 60-100k respective quartiles. - - -# Join 2013-2017 ACS block group and block group/MAZ combination datasets -# Combine and collapse ACS categories to get appropriate TM2 categories -# Apply share of 2013-2017 ACS variables using block group/MAZ combination share of 2010 total households -# Note that "E" on the end of each variable is appended by tidycensus package to denote "estimate" - -workingdata <- left_join(combo_total,acs_income, by="bg") %>% - mutate( - HHINCQ1=(hhinc0_10E+ - hhinc10_15E+ - hhinc15_20E+ - hhinc20_25E+ - hhinc25_30E+ - hhinc30_35E+ - hhinc35_40E+ - hhinc40_45E)*sharecombo, - HHINCQ2=(hhinc45_50E+ - hhinc50_60E+ - hhinc60_75E+ - (hhinc75_100E*(1-shareabove91538)))*sharecombo, # Apportions HHs below $91,538 within $75,000-$100,000 - HHINCQ3=((hhinc75_100E*shareabove91538)+ # Apportions HHs above $91,538 within $75,000-$100,000 - hhinc100_125E+ - hhinc125_150E)*sharecombo, - HHINCQ4=(hhinc150_200E+hhinc200pE)*sharecombo) - -# Summarize data by MAZ -# Now set up dataset to round and adjust column values such that subtotals match totals - -hh_columns <- c("HHINCQ1","HHINCQ2","HHINCQ3","HHINCQ4") - -final <- workingdata %>% - group_by(maz) %>% - summarize( HHINCQ1=sum(HHINCQ1), - HHINCQ2=sum(HHINCQ2), - HHINCQ3=sum(HHINCQ3), - HHINCQ4=sum(HHINCQ4)) %>% - ungroup() %>% - mutate(hh_total=rowSums(select(.,all_of(hh_columns)))) %>% # Sum rows before rounding to get best total - mutate_at(c(all_of(hh_columns),"hh_total"),~round(.,digits = 0)) %>% # Round columns - mutate(hh_subtotal=rowSums(select(.,all_of(hh_columns))), # Sum rows after rounding to ensure subtotals match totals - max_hh = hh_columns[max.col(select(.,hh_columns), ties.method="first")], # Find max column for adjustment - hh_diff = hh_total - hh_subtotal) # Calculate subtotal and total difference - -for (col in hh_columns) { - final[col] <- if_else(final$max_hh==col, - final[[col]] + final[["hh_diff"]], - final[[col]]) # Adjust largest column to resolve total/subtotal discrepancy -} - -# Clean up file and export relevant variables -# Remove "0" MAZ - -final <- final %>% - select(MAZ=maz,HHINCQ1,HHINCQ2,HHINCQ3,HHINCQ4) %>% - filter (MAZ !=0) - -write.csv(final,"MAZ Households by Income.csv",row.names = F) From 35983aa8ccf1475d3015db9529aa5ab40dd9b7d0 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Mon, 27 Sep 2021 16:01:43 -0700 Subject: [PATCH 11/27] Create Census 2010 MAZ and TAZ2 crosswalks to blockgroup --- ...nsus 2010 hhs maz share of blockgroups.csv | 40102 ++++++++++++++++ ...sus 2010 hhs taz2 share of blockgroups.csv | 5367 +++ ...s 2010 MAZ and TAZ shares of blockgroups.R | 81 + 3 files changed, 45550 insertions(+) create mode 100644 maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv create mode 100644 maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv create mode 100644 maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R diff --git a/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv new file mode 100644 index 000000000..c6a19e4be --- /dev/null +++ b/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv @@ -0,0 +1,40102 @@ +"blockgroup","maz","maz_share" +60014001001,310247,0.00228310502283105 +60014001001,310948,0.0646879756468798 +60014001001,313627,0.0471841704718417 +60014001001,315991,0.0030441400304414 +60014001001,316202,0 +60014001001,316203,0.0570776255707763 +60014001001,316208,0.0898021308980213 +60014001001,317388,0.101978691019787 +60014001001,318108,0.0418569254185693 +60014001001,319584,0 +60014001001,320096,0.015220700152207 +60014001001,320099,0.0555555555555556 +60014001001,325229,0.0121765601217656 +60014001001,325884,0.0365296803652968 +60014001001,329851,0.0319634703196347 +60014001001,330244,0 +60014001001,330637,0.0121765601217656 +60014001001,332624,0.0494672754946728 +60014001001,332786,0.0342465753424658 +60014001001,332899,0.0273972602739726 +60014001001,333453,0.0692541856925419 +60014001001,333542,0.0624048706240487 +60014001001,333756,0.0806697108066971 +60014001001,333940,0.105022831050228 +60014002001,310262,0.0853391684901532 +60014002001,313833,0.148796498905908 +60014002001,315989,0.164113785557987 +60014002001,323847,0.0984682713347921 +60014002001,324350,0.0240700218818381 +60014002001,325015,0.107221006564551 +60014002001,325228,0.157549234135667 +60014002001,325230,0.0525164113785558 +60014002001,331565,0.102844638949672 +60014002001,331566,0.0590809628008753 +60014002002,315624,0.533834586466165 +60014002002,319414,0.050125313283208 +60014002002,324318,0.0927318295739348 +60014002002,330911,0.117794486215539 +60014002002,332427,0.12280701754386 +60014002002,333937,0.0827067669172932 +60014003001,310263,0.269387755102041 +60014003001,310264,0.0816326530612245 +60014003001,316200,0.177551020408163 +60014003001,316885,0.348979591836735 +60014003001,319395,0.122448979591837 +60014003001,333091,0 +60014003002,310265,0.142638036809816 +60014003002,310266,0.0613496932515337 +60014003002,313990,0.0552147239263804 +60014003002,315559,0.044478527607362 +60014003002,315993,0.0736196319018405 +60014003002,318678,0.147239263803681 +60014003002,319391,0.0383435582822086 +60014003002,322350,0.0797546012269939 +60014003002,325209,0.0782208588957055 +60014003002,325210,0.0429447852760736 +60014003002,329702,0.0690184049079755 +60014003002,332426,0.0644171779141104 +60014003002,333931,0.0567484662576687 +60014003002,333933,0.0460122699386503 +60014003003,311972,0.187919463087248 +60014003003,313991,0.0738255033557047 +60014003003,318127,0.335570469798658 +60014003003,323575,0.0335570469798658 +60014003003,324319,0.105704697986577 +60014003003,330912,0 +60014003003,330913,0.263422818791946 +60014003004,314618,0 +60014003004,316178,0.0617647058823529 +60014003004,316179,0.0617647058823529 +60014003004,318677,0.0558823529411765 +60014003004,322352,0.05 +60014003004,322353,0.0764705882352941 +60014003004,324321,0.0647058823529412 +60014003004,324322,0.0632352941176471 +60014003004,324323,0.05 +60014003004,325211,0.0764705882352941 +60014003004,330914,0.0779411764705882 +60014003004,330915,0.0514705882352941 +60014003004,332428,0.0544117647058824 +60014003004,332429,0.075 +60014003004,332430,0.0647058823529412 +60014003004,332431,0.116176470588235 +60014004001,316494,0.0859154929577465 +60014004001,316495,0.0605633802816901 +60014004001,317912,0.145070422535211 +60014004001,317913,0.107042253521127 +60014004001,317914,0.136619718309859 +60014004001,324531,0.071830985915493 +60014004001,331105,0.0901408450704225 +60014004001,331592,0.0676056338028169 +60014004001,332422,0.0746478873239437 +60014004001,333928,0.101408450704225 +60014004001,333935,0.0591549295774648 +60014004002,313988,0.239051094890511 +60014004002,314446,0.133211678832117 +60014004002,314631,0.0821167883211679 +60014004002,315434,0.0346715328467153 +60014004002,318676,0.140510948905109 +60014004002,324527,0.133211678832117 +60014004002,324532,0.10036496350365 +60014004002,330910,0.0602189781021898 +60014004002,333936,0.0766423357664234 +60014004003,311956,0.0921305182341651 +60014004003,316169,0.0479846449136276 +60014004003,322344,0.165067178502879 +60014004003,326560,0.036468330134357 +60014004003,327439,0.166986564299424 +60014004003,327457,0.157389635316699 +60014004003,329863,0.0882917466410749 +60014004003,330835,0.113243761996161 +60014004003,331106,0.132437619961612 +60014005001,311955,0.0841638981173865 +60014005001,315548,0.0631229235880399 +60014005001,316293,0.035437430786268 +60014005001,316493,0.0598006644518272 +60014005001,316851,0.0598006644518272 +60014005001,317557,0.194905869324474 +60014005001,319910,0.0686600221483942 +60014005001,322325,0.0542635658914729 +60014005001,322326,0.0299003322259136 +60014005001,327886,0.0985603543743079 +60014005001,331103,0.0498338870431894 +60014005001,331104,0.0387596899224806 +60014005001,331122,0.0598006644518272 +60014005001,333420,0.102990033222591 +60014005002,310480,0.0811594202898551 +60014005002,315588,0.194202898550725 +60014005002,320997,0.202898550724638 +60014005002,320998,0.165217391304348 +60014005002,320999,0.188405797101449 +60014005002,324825,0.0927536231884058 +60014005002,327618,0.0753623188405797 +60014005003,316849,0.154545454545455 +60014005003,316850,0.1 +60014005003,320823,0.248484848484848 +60014005003,324122,0.336363636363636 +60014005003,332905,0.160606060606061 +60014006001,315589,0.171837708830549 +60014006001,323930,0.114558472553699 +60014006001,324522,0.331742243436754 +60014006001,327619,0.140811455847255 +60014006001,330905,0.0978520286396181 +60014006001,332423,0.0787589498806683 +60014006001,333929,0.0644391408114559 +60014006002,310662,0.136531365313653 +60014006002,315591,0.199261992619926 +60014006002,315592,0.254612546125461 +60014006002,324828,0.191881918819188 +60014006002,333930,0.217712177121771 +60014007001,311595,0.16359918200409 +60014007001,312479,0.0429447852760736 +60014007001,314009,0.100204498977505 +60014007001,314636,0.0756646216768916 +60014007001,314785,0.114519427402863 +60014007001,315574,0.175869120654397 +60014007001,316235,0.0879345603271984 +60014007001,317741,0.124744376278119 +60014007001,318696,0.114519427402863 +60014007002,311596,0.0761523046092184 +60014007002,312275,0.112224448897796 +60014007002,314423,0.0240480961923848 +60014007002,315121,0.0460921843687375 +60014007002,315576,0.0721442885771543 +60014007002,316853,0.118236472945892 +60014007002,319576,0.168336673346693 +60014007002,324127,0.0420841683366733 +60014007002,325046,0.120240480961924 +60014007002,327797,0.0761523046092184 +60014007002,327800,0.0741482965931864 +60014007002,332906,0.0701402805611222 +60014007003,310477,0.124610591900312 +60014007003,310659,0.11214953271028 +60014007003,315578,0.127725856697819 +60014007003,318878,0.0996884735202492 +60014007003,321000,0.115264797507788 +60014007003,321001,0.149532710280374 +60014007003,327615,0.161993769470405 +60014007003,327801,0.109034267912773 +60014007004,310476,0.0695067264573991 +60014007004,310478,0.100896860986547 +60014007004,310661,0.105381165919283 +60014007004,312276,0.10762331838565 +60014007004,315590,0.0986547085201794 +60014007004,318891,0.118834080717489 +60014007004,324826,0.116591928251121 +60014007004,327616,0.0964125560538117 +60014007004,327799,0.112107623318386 +60014007004,328503,0.0717488789237668 +60014007004,330061,0.00224215246636771 +60014008001,310278,0.0347003154574132 +60014008001,315566,0.0252365930599369 +60014008001,320090,0.0630914826498423 +60014008001,321651,0.0362776025236593 +60014008001,325014,0.127760252365931 +60014008001,325024,0.10410094637224 +60014008001,325680,0.0331230283911672 +60014008001,326831,0.100946372239748 +60014008001,330646,0 +60014008001,330925,0.176656151419558 +60014008001,331474,0.0772870662460568 +60014008001,333082,0.220820189274448 +60014008002,310269,0.0784313725490196 +60014008002,314453,0.294117647058824 +60014008002,325878,0.208333333333333 +60014008002,332227,0.227941176470588 +60014008002,332231,0.191176470588235 +60014008003,310272,0.0590476190476191 +60014008003,310277,0.12 +60014008003,310279,0.020952380952381 +60014008003,319406,0.125714285714286 +60014008003,319586,0.0857142857142857 +60014008003,320089,0.0647619047619048 +60014008003,320968,0.0476190476190476 +60014008003,325679,0.0457142857142857 +60014008003,332230,0.171428571428571 +60014008003,333099,0.0666666666666667 +60014008003,333750,0.0876190476190476 +60014008003,333752,0.104761904761905 +60014009001,310281,0.0658135283363803 +60014009001,314465,0.0731261425959781 +60014009001,315577,0.120658135283364 +60014009001,316912,0.0621572212065814 +60014009001,320824,0.0310786106032907 +60014009001,320826,0.093235831809872 +60014009001,325682,0.20109689213894 +60014009001,325684,0.0658135283363803 +60014009001,325685,0.138939670932358 +60014009001,325881,0.0639853747714808 +60014009001,332233,0.0840950639853748 +60014009002,310275,0.0847457627118644 +60014009002,311597,0.139830508474576 +60014009002,316688,0.0508474576271186 +60014009002,325678,0.0911016949152542 +60014009002,325683,0.105932203389831 +60014009002,325686,0.048728813559322 +60014009002,325880,0.108050847457627 +60014009002,326176,0.0889830508474576 +60014009002,332234,0.114406779661017 +60014009002,333944,0.167372881355932 +60014010001,314644,0.204481792717087 +60014010001,314786,0.481792717086835 +60014010001,314794,0.0420168067226891 +60014010001,316298,0.145658263305322 +60014010001,330939,0.126050420168067 +60014010002,310004,0.400593471810089 +60014010002,318694,0.130563798219585 +60014010002,325242,0.204747774480712 +60014010002,332214,0.100890207715134 +60014010002,333053,0.163204747774481 +60014010003,313122,0.196660482374768 +60014010003,314915,0.102040816326531 +60014010003,321502,0.0649350649350649 +60014010003,321503,0.14100185528757 +60014010003,321504,0.11317254174397 +60014010003,324297,0.098330241187384 +60014010003,325846,0.0816326530612245 +60014010003,325984,0.0760667903525046 +60014010003,333054,0.0927643784786642 +60014010003,333055,0.0333951762523191 +60014010004,311321,0.732441471571906 +60014010004,315290,0.197324414715719 +60014010004,316914,0.0702341137123746 +60014010005,313134,0.197969543147208 +60014010005,313315,0.114213197969543 +60014010005,313814,0.139593908629442 +60014010005,313962,0.16497461928934 +60014010005,315438,0.195431472081218 +60014010005,315446,0.050761421319797 +60014010005,330678,0.137055837563452 +60014010006,314646,0.207943925233645 +60014010006,314797,0.114485981308411 +60014010006,316971,0.0327102803738318 +60014010006,316972,0.184579439252336 +60014010006,318662,0.151869158878505 +60014010006,325702,0.147196261682243 +60014010006,328511,0.161214953271028 +60014011001,313133,0.106707317073171 +60014011001,314457,0.198170731707317 +60014011001,315551,0.213414634146341 +60014011001,318674,0.307926829268293 +60014011001,327182,0.173780487804878 +60014011002,311605,0.428965517241379 +60014011002,312260,0.172413793103448 +60014011002,313999,0.117241379310345 +60014011002,318700,0.166896551724138 +60014011002,320832,0.11448275862069 +60014011003,312167,0 +60014011003,312477,0.271111111111111 +60014011003,315119,0.237777777777778 +60014011003,324360,0.153333333333333 +60014011003,326509,0.164444444444444 +60014011003,327186,0.122222222222222 +60014011003,330849,0.0511111111111111 +60014011004,310287,0.0158730158730159 +60014011004,315106,0.21031746031746 +60014011004,315116,0.176587301587302 +60014011004,315444,0.166666666666667 +60014011004,316273,0.0654761904761905 +60014011004,316951,0 +60014011004,318671,0.0833333333333333 +60014011004,320972,0.162698412698413 +60014011004,325002,0.119047619047619 +60014012001,312259,0.161616161616162 +60014012001,314617,0.094949494949495 +60014012001,315557,0.115151515151515 +60014012001,316211,0.0666666666666667 +60014012001,320275,0.105050505050505 +60014012001,326812,0.0161616161616162 +60014012001,327012,0.23030303030303 +60014012001,327188,0.21010101010101 +60014012002,310467,0.15211970074813 +60014012002,316212,0.102244389027431 +60014012002,320278,0.0723192019950125 +60014012002,327009,0.119700748129676 +60014012002,327185,0.154613466334165 +60014012002,333545,0.214463840399002 +60014012002,333547,0.184538653366584 +60014012003,312261,0.296875 +60014012003,316213,0.115625 +60014012003,316214,0.203125 +60014012003,321006,0.078125 +60014012003,324135,0.2 +60014012003,325042,0.10625 +60014012003,328505,0 +60014013001,310461,0.310502283105023 +60014013001,310663,0 +60014013001,311973,0.10958904109589 +60014013001,315447,0.0296803652968037 +60014013001,318262,0.00684931506849315 +60014013001,318850,0.0479452054794521 +60014013001,320636,0.30365296803653 +60014013001,321437,0.0936073059360731 +60014013001,321579,0.0182648401826484 +60014013001,321580,0.0228310502283105 +60014013001,326335,0.0547945205479452 +60014013001,327626,0 +60014013001,327778,0 +60014013001,327809,0.00228310502283105 +60014013001,328506,0 +60014013001,329451,0 +60014013002,310638,0.194528875379939 +60014013002,310640,0.115501519756839 +60014013002,315075,0.0349544072948328 +60014013002,318260,0.0668693009118541 +60014013002,320642,0 +60014013002,321582,0.413373860182371 +60014013002,324599,0.174772036474164 +60014013003,310639,0.395522388059702 +60014013003,310641,0.298507462686567 +60014013003,310643,0.0634328358208955 +60014013003,326340,0.242537313432836 +60014014001,316695,0.14713216957606 +60014014001,321534,0.182044887780549 +60014014001,321535,0.167082294264339 +60014014001,326504,0.214463840399002 +60014014001,328832,0.15211970074813 +60014014001,331804,0.13715710723192 +60014014002,310284,0.150234741784038 +60014014002,312645,0.0453834115805947 +60014014002,313828,0.0954616588419405 +60014014002,314799,0.0766823161189358 +60014014002,315285,0.07981220657277 +60014014002,316148,0.118935837245696 +60014014002,318853,0.111111111111111 +60014014002,320079,0.0985915492957746 +60014014002,325005,0.0766823161189358 +60014014002,325327,0 +60014014002,327459,0.147104851330203 +60014014003,310459,0.0758426966292135 +60014014003,316318,0.0702247191011236 +60014014003,316880,0.0421348314606742 +60014014003,317546,0.123595505617978 +60014014003,317580,0.185393258426966 +60014014003,321541,0.0646067415730337 +60014014003,324596,0.0786516853932584 +60014014003,324802,0.00842696629213483 +60014014003,325006,0.0280898876404494 +60014014003,326514,0.0449438202247191 +60014014003,333526,0.106741573033708 +60014014003,333527,0.171348314606742 +60014015001,311505,0.0701298701298701 +60014015001,311507,0.111688311688312 +60014015001,313280,0.181818181818182 +60014015001,313963,0.119480519480519 +60014015001,322378,0.228571428571429 +60014015001,331524,0.119480519480519 +60014015001,333242,0.168831168831169 +60014015002,311506,0.117216117216117 +60014015002,316659,0.146520146520146 +60014015002,317223,0.347985347985348 +60014015002,318658,0.139194139194139 +60014015002,324501,0.128205128205128 +60014015002,333243,0.120879120879121 +60014015003,311504,0.166666666666667 +60014015003,317874,0.156028368794326 +60014015003,317878,0.0425531914893617 +60014015003,318657,0.173758865248227 +60014015003,321495,0.177304964539007 +60014015003,322379,0.024822695035461 +60014015003,325843,0.152482269503546 +60014015003,332208,0.106382978723404 +60014016001,311790,0.0562347188264059 +60014016001,312172,0.23960880195599 +60014016001,312825,0.163814180929095 +60014016001,317395,0.0220048899755501 +60014016001,317588,0 +60014016001,318652,0.0244498777506112 +60014016001,318653,0.0171149144254279 +60014016001,321492,0.0709046454767726 +60014016001,324549,0.154034229828851 +60014016001,325204,0 +60014016001,332206,0.0904645476772616 +60014016001,333738,0.0660146699266504 +60014016001,333916,0.0953545232273839 +60014016002,312824,0.126404494382022 +60014016002,313123,0 +60014016002,313812,0 +60014016002,314467,0 +60014016002,314926,0.0365168539325843 +60014016002,316905,0.216292134831461 +60014016002,316928,0.0449438202247191 +60014016002,317544,0.0758426966292135 +60014016002,318116,0.207865168539326 +60014016002,321009,0.0561797752808989 +60014016002,327773,0.0393258426966292 +60014016002,332210,0.196629213483146 +60014017001,310288,0 +60014017001,313274,0.271910112359551 +60014017001,313276,0.0764044943820225 +60014017001,313622,0.132584269662921 +60014017001,316865,0 +60014017001,317200,0.208988764044944 +60014017001,318702,0.0224719101123595 +60014017001,321476,0.0224719101123595 +60014017001,323933,0 +60014017001,324498,0 +60014017001,325038,0 +60014017001,326169,0 +60014017001,328245,0 +60014017001,330900,0.0921348314606742 +60014017001,330901,0.0426966292134831 +60014017001,331747,0 +60014017001,331748,0 +60014017001,332411,0 +60014017001,333235,0 +60014017001,333239,0.130337078651685 +60014017002,311147,0.097770154373928 +60014017002,311770,0.0737564322469983 +60014017002,313614,0.039451114922813 +60014017002,313784,0.0222984562607204 +60014017002,313787,0.46483704974271 +60014017002,323657,0.00171526586620926 +60014017002,324628,0.0360205831903945 +60014017002,325506,0.0531732418524871 +60014017002,327625,0.0703259005145798 +60014017002,329017,0 +60014017002,329019,0 +60014017002,331270,0.14065180102916 +60014017003,0,0 +60014017003,312466,0.6 +60014017003,313994,0 +60014017003,315088,0 +60014017003,315605,0 +60014017003,316234,0 +60014017003,317198,0 +60014017003,317933,0 +60014017003,318691,0 +60014017003,318845,0 +60014017003,332799,0.4 +60014018001,310484,0.163009404388715 +60014018001,312920,0.125391849529781 +60014018001,313120,0.106583072100313 +60014018001,316286,0.0815047021943574 +60014018001,318114,0.134796238244514 +60014018001,323937,0.128526645768025 +60014018001,324832,0.109717868338558 +60014018001,327808,0.0940438871473354 +60014018001,333472,0.0564263322884013 +60014018002,311772,0.210691823899371 +60014018002,312639,0.176100628930818 +60014018002,312640,0.10377358490566 +60014018002,316868,0.0754716981132075 +60014018002,323935,0.223270440251572 +60014018002,324630,0.0345911949685535 +60014018002,325510,0.176100628930818 +60014022001,313613,0.00289017341040462 +60014022001,313992,0.161849710982659 +60014022001,315284,0.326589595375723 +60014022001,317578,0.176300578034682 +60014022001,318472,0.0606936416184971 +60014022001,329025,0.0809248554913295 +60014022001,329027,0.190751445086705 +60014022002,310292,0.321678321678322 +60014022002,311775,0.412587412587413 +60014022002,313303,0.048951048951049 +60014022002,328254,0.216783216783217 +60014022003,311774,0.202764976958525 +60014022003,311777,0.129032258064516 +60014022003,312641,0.161290322580645 +60014022003,313615,0.124423963133641 +60014022003,316237,0.105990783410138 +60014022003,316869,0.101382488479263 +60014022003,329026,0.175115207373272 +60014024001,310974,0.0745454545454545 +60014024001,316876,0 +60014024001,318656,0.105454545454545 +60014024001,318659,0.147272727272727 +60014024001,320969,0.189090909090909 +60014024001,321496,0.205454545454545 +60014024001,325844,0.08 +60014024001,326187,0.0836363636363636 +60014024001,332209,0.114545454545455 +60014024002,310669,0.0648535564853557 +60014024002,311320,0.0857740585774059 +60014024002,316660,0.144351464435146 +60014024002,324293,0.0899581589958159 +60014024002,332211,0.190376569037657 +60014024002,332457,0.424686192468619 +60014025001,310464,0 +60014025001,310646,0.460732984293194 +60014025001,312171,0.0418848167539267 +60014025001,315816,0.128272251308901 +60014025001,316915,0.0968586387434555 +60014025001,316916,0.081151832460733 +60014025001,318473,0.0837696335078534 +60014025001,326640,0.107329842931937 +60014025002,310647,0.615120274914089 +60014025002,315291,0 +60014025002,318267,0.384879725085911 +60014026001,310204,0.116504854368932 +60014026001,310209,0.0922330097087379 +60014026001,310267,0 +60014026001,310873,0 +60014026001,310874,0.134304207119741 +60014026001,311766,0.144012944983819 +60014026001,313285,0.249190938511327 +60014026001,316961,0.00809061488673139 +60014026001,321616,0 +60014026001,321622,0 +60014026001,328655,0.255663430420712 +60014027001,310206,0 +60014027001,310871,0.0986547085201794 +60014027001,310872,0.260089686098655 +60014027001,320104,0.125560538116592 +60014027001,326332,0.103139013452915 +60014027001,328996,0.0941704035874439 +60014027001,330643,0.318385650224215 +60014027002,310960,0.110236220472441 +60014027002,311757,0.112860892388451 +60014027002,312818,0.20997375328084 +60014027002,316661,0.178477690288714 +60014027002,317566,0.078740157480315 +60014027002,321500,0.0997375328083989 +60014027002,324295,0.20997375328084 +60014028001,310875,0.0521831735889244 +60014028001,311764,0.120340788072417 +60014028001,315603,0.173588924387646 +60014028001,316668,0.0234291799787007 +60014028001,325953,0.073482428115016 +60014028001,326159,0.476038338658147 +60014028001,326161,0.080937167199148 +60014028002,311520,0.000920810313075506 +60014028002,312648,0 +60014028002,313826,0.0451197053406998 +60014028002,314641,0.261510128913444 +60014028002,316671,0 +60014028002,316937,0.333333333333333 +60014028002,318263,0 +60014028002,321583,0 +60014028002,321624,0.0883977900552486 +60014028002,324356,0.112338858195212 +60014028002,326333,0 +60014028002,326548,0.157458563535912 +60014028002,329614,0.000920810313075506 +60014028002,331316,0 +60014029001,310228,0 +60014029001,310229,0 +60014029001,310462,0 +60014029001,310644,0 +60014029001,312472,0.0358306188925081 +60014029001,314001,0 +60014029001,314458,0 +60014029001,315292,0 +60014029001,316317,0 +60014029001,316673,0.00325732899022801 +60014029001,316674,0 +60014029001,316680,0.485342019543974 +60014029001,316954,0 +60014029001,318265,0 +60014029001,318690,0 +60014029001,323607,0.121606948968512 +60014029001,326620,0 +60014029001,326621,0.277958740499457 +60014029001,327413,0.0488599348534202 +60014029001,327415,0.00217155266015201 +60014029001,327417,0.0249728555917481 +60014029001,327812,0 +60014030001,311516,0.330386740331492 +60014030001,311518,0.0165745856353591 +60014030001,311521,0 +60014030001,312455,0.205524861878453 +60014030001,316676,0.107182320441989 +60014030001,316677,0.0640883977900552 +60014030001,316894,0.0773480662983425 +60014030001,319908,0 +60014030001,326181,0 +60014030001,326633,0.12817679558011 +60014030001,328072,0.0707182320441989 +60014030001,330202,0 +60014030002,310230,0.0201680672268908 +60014030002,310232,0.0117647058823529 +60014030002,310233,0.026890756302521 +60014030002,311517,0 +60014030002,311519,0.0168067226890756 +60014030002,312456,0.00168067226890756 +60014030002,315099,0 +60014030002,316678,0 +60014030002,316701,0.00840336134453781 +60014030002,323609,0.0336134453781513 +60014030002,326624,0.2 +60014030002,327411,0.0773109243697479 +60014030002,327412,0.0184873949579832 +60014030002,327418,0.0336134453781513 +60014030002,328814,0.0319327731092437 +60014030002,330042,0.519327731092437 +60014030002,330205,0 +60014031001,310210,0.208273894436519 +60014031001,311765,0 +60014031001,312451,0.159771754636234 +60014031001,312454,0 +60014031001,314417,0 +60014031001,321623,0 +60014031001,321673,0 +60014031001,321674,0 +60014031001,325950,0.0156918687589158 +60014031001,325955,0 +60014031001,326615,0.132667617689016 +60014031001,326616,0.0556348074179743 +60014031001,326804,0.021398002853067 +60014031001,326805,0.249643366619116 +60014031001,326806,0 +60014031001,326807,0.0884450784593438 +60014031001,326808,0 +60014031001,329615,0.0684736091298146 +60014033001,0,0 +60014033001,310236,0.0539956803455724 +60014033001,310239,0 +60014033001,311937,0 +60014033001,312181,0.0669546436285097 +60014033001,312183,0.131029517638589 +60014033001,313794,0.046796256299496 +60014033001,313795,0 +60014033001,314269,0.110151187904968 +60014033001,318129,0.0539956803455724 +60014033001,319206,0.0921526277897768 +60014033001,325893,0 +60014033001,327867,0.311015118790497 +60014033001,328048,0 +60014033001,328051,0 +60014033001,329433,0.0583153347732181 +60014033001,329435,0 +60014033001,329850,0.00215982721382289 +60014033001,330324,0.0734341252699784 +60014033002,312457,0.0541353383458647 +60014033002,313093,0.0330827067669173 +60014033002,313094,0 +60014033002,314459,0.240601503759398 +60014033002,316679,0.0496240601503759 +60014033002,317937,0.0586466165413534 +60014033002,321688,0.112781954887218 +60014033002,323610,0.0902255639097744 +60014033002,326626,0.0330827067669173 +60014033002,326628,0.13984962406015 +60014033002,328815,0.102255639097744 +60014033002,328816,0 +60014033002,328818,0.0857142857142857 +60014034001,0,0 +60014034001,310963,0.00321027287319422 +60014034001,311936,0.235955056179775 +60014034001,317587,0 +60014034001,317591,0.0738362760834671 +60014034001,318254,0.292134831460674 +60014034001,318256,0.394863563402889 +60014034002,310234,0.856978085351788 +60014034002,316315,0 +60014034002,318703,0 +60014034002,323814,0 +60014034002,328492,0.0899653979238754 +60014034002,328817,0.0530565167243368 +60014034003,323594,1 +60014034004,318255,0.765289256198347 +60014034004,327420,0.234710743801653 +60014035011,310487,0.0492063492063492 +60014035011,310642,0 +60014035011,311125,0.019047619047619 +60014035011,312923,0.119047619047619 +60014035011,316502,0.0174603174603175 +60014035011,318264,0.191269841269841 +60014035011,323672,0.571428571428571 +60014035011,326338,0.0119047619047619 +60014035011,327628,0.0206349206349206 +60014035011,332257,0 +60014035012,310664,0.180645161290323 +60014035012,311308,0.0989247311827957 +60014035012,312922,0.145161290322581 +60014035012,315595,0.354838709677419 +60014035012,316003,0.010752688172043 +60014035012,324834,0.0720430107526882 +60014035012,327627,0.0548387096774194 +60014035012,327777,0.0032258064516129 +60014035012,327811,0.0795698924731183 +60014035013,310465,0.0448179271708683 +60014035013,312263,0.739495798319328 +60014035013,315596,0.215686274509804 +60014035021,331273,1 +60014035022,311316,0.419504643962848 +60014035022,323943,0.0619195046439628 +60014035022,324839,0.278637770897833 +60014035022,327814,0.239938080495356 +60014036001,310456,1 +60014036001,323807,0 +60014036002,324840,0.540603248259861 +60014036002,328232,0.160092807424594 +60014036002,328418,0.299303944315545 +60014036003,311130,0.143878462913315 +60014036003,311959,0.190348525469169 +60014036003,312928,0.236818588025022 +60014036003,316223,0.109919571045576 +60014036003,324615,0.13047363717605 +60014036003,327630,0.188561215370867 +60014037011,310964,0.0347043701799486 +60014037011,316222,0.341902313624679 +60014037011,327813,0.623393316195373 +60014037012,311129,0.196035242290749 +60014037012,312927,0.384361233480176 +60014037012,323940,0.200440528634361 +60014037012,332123,0.219162995594714 +60014037021,321465,0.694267515923567 +60014037021,331085,0.305732484076433 +60014037022,311938,0.299101412066752 +60014037022,311960,0.227214377406932 +60014037022,312929,0.225930680359435 +60014037022,325253,0.0718870346598203 +60014037022,328417,0.17586649550706 +60014038001,318687,0.285123966942149 +60014038001,323903,0.18595041322314 +60014038001,325656,0.210743801652893 +60014038001,325657,0.165289256198347 +60014038001,327162,0.152892561983471 +60014038002,316475,0.0747863247863248 +60014038002,323811,0.277777777777778 +60014038002,325044,0.196581196581197 +60014038002,330885,0.13034188034188 +60014038002,332609,0.320512820512821 +60014038003,311318,0.0776053215077605 +60014038003,311933,0.141906873614191 +60014038003,316471,0.0399113082039911 +60014038003,316474,0.42350332594235 +60014038003,317531,0.146341463414634 +60014038003,323592,0.170731707317073 +60014038004,311930,0.078909612625538 +60014038004,314263,0.0430416068866571 +60014038004,316473,0.0803443328550933 +60014038004,317742,0.109038737446198 +60014038004,323589,0.193687230989957 +60014038004,323810,0.134863701578192 +60014038004,323812,0.0616929698708752 +60014038004,331087,0.189383070301291 +60014038004,332605,0.109038737446198 +60014039001,311285,0.402777777777778 +60014039001,311928,0.0606060606060606 +60014039001,314913,0.277777777777778 +60014039001,327815,0.258838383838384 +60014039002,311286,0.313984168865435 +60014039002,317529,0.0686015831134565 +60014039002,323805,0.100263852242744 +60014039002,329620,0.0897097625329815 +60014039002,331086,0.189973614775726 +60014039002,332602,0.237467018469657 +60014039003,311127,0.106986899563319 +60014039003,321463,0.152838427947598 +60014039003,321466,0.0491266375545851 +60014039003,331084,0.117903930131004 +60014039003,332455,0.0534934497816594 +60014039003,332787,0.519650655021834 +60014040001,311126,0.0840579710144927 +60014040001,312925,0.239613526570048 +60014040001,312926,0.219323671497585 +60014040001,316227,0.146859903381643 +60014040001,323804,0.14975845410628 +60014040001,324833,0.129468599033816 +60014040001,324838,0.0309178743961353 +60014040002,310471,0.15592203898051 +60014040002,313820,0.124437781109445 +60014040002,314271,0.116941529235382 +60014040002,317611,0.0659670164917541 +60014040002,320282,0.170914542728636 +60014040002,327190,0.110944527736132 +60014040002,329672,0.131934032983508 +60014040002,333553,0.122938530734633 +60014041011,310673,0.0621019108280255 +60014041011,312930,0.0509554140127389 +60014041011,313312,0.119426751592357 +60014041011,315437,0.135350318471338 +60014041011,316226,0.0143312101910828 +60014041011,316921,0.117834394904459 +60014041011,320279,0.256369426751592 +60014041011,328420,0.0445859872611465 +60014041011,328421,0.089171974522293 +60014041011,328835,0.109872611464968 +60014041012,310470,0.0728346456692913 +60014041012,314270,0.0836614173228346 +60014041012,314912,0.0275590551181102 +60014041012,315288,0.0354330708661417 +60014041012,316217,0.062992125984252 +60014041012,316252,0.031496062992126 +60014041012,318261,0.0816929133858268 +60014041012,320280,0.187992125984252 +60014041012,320281,0.077755905511811 +60014041012,327014,0.103346456692913 +60014041012,327015,0.0728346456692913 +60014041012,329853,0.062992125984252 +60014041012,333556,0.0994094488188976 +60014041021,311961,0.226315789473684 +60014041021,315594,0.487368421052632 +60014041021,325324,0.286315789473684 +60014041022,311131,0.385521885521886 +60014041022,311984,0.436026936026936 +60014041022,312264,0.0101010101010101 +60014041022,324136,0.143097643097643 +60014041022,332640,0.0252525252525253 +60014042001,310955,0.219321148825065 +60014042001,311598,0.234986945169713 +60014042001,320816,0.10443864229765 +60014042001,326530,0.0783289817232376 +60014042001,326531,0.0443864229765013 +60014042001,326821,0.0443864229765013 +60014042001,332902,0.0939947780678851 +60014042001,333422,0.112271540469974 +60014042001,333761,0.0678851174934726 +60014042002,315078,0.239350912778905 +60014042002,317357,0.371196754563895 +60014042002,317726,0.154158215010142 +60014042002,320829,0.0588235294117647 +60014042002,326359,0.176470588235294 +60014042003,311114,0.179226069246436 +60014042003,311295,0.120162932790224 +60014042003,311495,0.0712830957230143 +60014042003,311786,0 +60014042003,311941,0.0692464358452139 +60014042003,315561,0.0916496945010183 +60014042003,316321,0.346232179226069 +60014042003,328419,0.122199592668024 +60014043001,310953,0.11353711790393 +60014043001,315077,0.235807860262009 +60014043001,315572,0.0589519650655022 +60014043001,315992,0.100436681222707 +60014043001,315994,0 +60014043001,316206,0.0611353711790393 +60014043001,316840,0.0698689956331878 +60014043001,320094,0.187772925764192 +60014043001,325016,0.0240174672489083 +60014043001,325869,0 +60014043001,326347,0.0786026200873362 +60014043001,326526,0.0698689956331878 +60014043001,329622,0 +60014043002,315564,0.157746478873239 +60014043002,315616,0.0591549295774648 +60014043002,318111,0.129577464788732 +60014043002,318113,0.140845070422535 +60014043002,319397,0.28169014084507 +60014043002,325873,0.146478873239437 +60014043002,332895,0.0845070422535211 +60014043003,311985,0.137404580152672 +60014043003,314930,0.124045801526718 +60014043003,315562,0.0648854961832061 +60014043003,315563,0.129770992366412 +60014043003,315570,0.179389312977099 +60014043003,317386,0.169847328244275 +60014043003,325871,0.0610687022900763 +60014043003,325887,0.0610687022900763 +60014043003,333094,0.0725190839694656 +60014044001,311788,0.427509293680297 +60014044001,315436,0.0855018587360595 +60014044001,315581,0.0241635687732342 +60014044001,319572,0.0306691449814126 +60014044001,319577,0.0613382899628253 +60014044001,329852,0.0947955390334572 +60014044001,333758,0.276022304832714 +60014044002,310306,0.424 +60014044002,311603,0.252 +60014044002,327003,0.084 +60014044002,327006,0.088 +60014044002,327179,0.152 +60014044003,310904,0.10099573257468 +60014044003,313809,0.058321479374111 +60014044003,318079,0.0369843527738265 +60014044003,320268,0.206258890469417 +60014044003,321433,0.0867709815078236 +60014044003,326989,0.0768136557610242 +60014044003,328474,0.069701280227596 +60014044003,328646,0.103840682788051 +60014044003,331443,0.260312944523471 +60014045011,311943,0.196220930232558 +60014045011,317358,0.0654069767441861 +60014045011,319687,0.109011627906977 +60014045011,319689,0.122093023255814 +60014045011,321589,0.0843023255813953 +60014045011,323555,0.156976744186047 +60014045011,324810,0.0276162790697674 +60014045011,324814,0.0392441860465116 +60014045011,325297,0.117732558139535 +60014045011,329268,0.0813953488372093 +60014045021,310906,0.150395778364116 +60014045021,318080,0.174142480211082 +60014045021,320269,0.150395778364116 +60014045021,323629,0.116094986807388 +60014045021,331444,0.189973614775726 +60014045021,331445,0.218997361477573 +60014045022,310905,0.387387387387387 +60014045022,313306,0.0648648648648649 +60014045022,317362,0.0522522522522523 +60014045022,323630,0.144144144144144 +60014045022,326636,0.282882882882883 +60014045022,330025,0.0684684684684685 +60014045023,310908,0.0217076700434153 +60014045023,314011,0.040520984081042 +60014045023,314427,0.118668596237337 +60014045023,320296,0.117221418234443 +60014045023,323556,0.137481910274964 +60014045023,323558,0.0636758321273517 +60014045023,327864,0.21273516642547 +60014045023,328647,0.121562952243126 +60014045023,329266,0.0463096960926194 +60014045023,332121,0.120115774240232 +60014045024,312165,0.0916870415647922 +60014045024,312166,0.0488997555012225 +60014045024,312185,0.0953545232273839 +60014045024,313781,0.0440097799511002 +60014045024,314440,0.0427872860635697 +60014045024,314441,0.0611246943765281 +60014045024,317604,0.0207823960880196 +60014045024,319192,0.0281173594132029 +60014045024,323649,0.0660146699266504 +60014045024,325695,0.0709046454767726 +60014045024,329269,0.0256723716381418 +60014045024,329270,0.0293398533007335 +60014045024,330638,0.154034229828851 +60014045024,330656,0.0232273838630807 +60014045024,330659,0.118581907090465 +60014045024,330662,0.0647921760391198 +60014045024,332134,0.0146699266503667 +60014046001,322317,0.163755458515284 +60014046001,322318,0.139737991266376 +60014046001,322333,0.0327510917030568 +60014046001,329089,0.074235807860262 +60014046001,329633,0.0829694323144105 +60014046001,329856,0.231441048034935 +60014046001,332136,0.0807860262008734 +60014046001,332138,0.122270742358079 +60014046001,332800,0.0720524017467249 +60014046002,317233,0.132450331125828 +60014046002,318081,0.23841059602649 +60014046002,329857,0.178807947019868 +60014046002,331281,0.105960264900662 +60014046002,332141,0.175496688741722 +60014046002,332802,0.16887417218543 +60014046003,310650,0.0677966101694915 +60014046003,311293,0.0169491525423729 +60014046003,312168,0.0656779661016949 +60014046003,312833,0.0805084745762712 +60014046003,312835,0.163135593220339 +60014046003,315091,0.26271186440678 +60014046003,315092,0.0720338983050847 +60014046003,323826,0.0635593220338983 +60014046003,328468,0.0656779661016949 +60014046003,329091,0.0635593220338983 +60014046003,331768,0.0783898305084746 +60014046004,310248,0.322183098591549 +60014046004,318082,0.227112676056338 +60014046004,330639,0.336267605633803 +60014046004,330658,0.0211267605633803 +60014046004,333233,0.0933098591549296 +60014047001,310249,0.135135135135135 +60014047001,313776,0.208108108108108 +60014047001,315089,0.205405405405405 +60014047001,328488,0.383783783783784 +60014047001,329094,0.0675675675675676 +60014047002,310250,0.106818181818182 +60014047002,315090,0.188636363636364 +60014047002,329854,0.645454545454546 +60014047002,329855,0.0590909090909091 +60014048001,318099,0.129692832764505 +60014048001,320298,0.179180887372014 +60014048001,323626,0.278156996587031 +60014048001,329682,0.139931740614334 +60014048001,331284,0.133105802047782 +60014048001,332804,0.139931740614334 +60014048002,311499,0.458730158730159 +60014048002,319550,0.0968253968253968 +60014048002,320988,0.0952380952380952 +60014048002,329238,0.0111111111111111 +60014048002,329425,0.201587301587302 +60014048002,329859,0.0603174603174603 +60014048002,330466,0.0761904761904762 +60014049001,313107,0.0645994832041344 +60014049001,313108,0.149870801033592 +60014049001,313623,0.175710594315245 +60014049001,318097,0.160206718346253 +60014049001,327433,0.131782945736434 +60014049001,327434,0.0723514211886305 +60014049001,328826,0.155038759689922 +60014049001,330219,0.0904392764857881 +60014049002,310293,0.31390977443609 +60014049002,310897,0.131578947368421 +60014049002,318282,0.133458646616541 +60014049002,319412,0.0808270676691729 +60014049002,323621,0.0469924812030075 +60014049002,323622,0.0883458646616541 +60014049002,323625,0.142857142857143 +60014049002,327244,0.0432330827067669 +60014049002,330235,0.018796992481203 +60014049003,310878,0.0292792792792793 +60014049003,313105,0.0585585585585586 +60014049003,313106,0.0518018018018018 +60014049003,314610,0.0630630630630631 +60014049003,316009,0.0675675675675676 +60014049003,316948,0.146396396396396 +60014049003,317360,0.0585585585585586 +60014049003,318096,0.11036036036036 +60014049003,323652,0.135135135135135 +60014049003,325961,0.00675675675675676 +60014049003,326811,0.0788288288288288 +60014049003,328828,0.0675675675675676 +60014049003,331807,0.126126126126126 +60014049004,317382,0.113026819923372 +60014049004,321016,0.0517241379310345 +60014049004,321596,0.0153256704980843 +60014049004,321627,0.0191570881226054 +60014049004,323618,0.118773946360153 +60014049004,323619,0.0402298850574713 +60014049004,323620,0.0977011494252874 +60014049004,327431,0.0957854406130268 +60014049004,327432,0.111111111111111 +60014049004,328210,0.0478927203065134 +60014049004,328827,0.10536398467433 +60014049004,329420,0.0919540229885057 +60014049004,331132,0.0919540229885057 +60014050001,311497,0.132132132132132 +60014050001,317383,0.177177177177177 +60014050001,318870,0.18018018018018 +60014050001,320402,0.0720720720720721 +60014050001,325303,0.129129129129129 +60014050001,327241,0.153153153153153 +60014050001,327791,0.0720720720720721 +60014050001,328397,0.0840840840840841 +60014050002,312432,0.109227871939736 +60014050002,320401,0.0244821092278719 +60014050002,327429,0.0508474576271186 +60014050002,327604,0.150659133709981 +60014050002,327605,0.0659133709981168 +60014050002,330016,0.598870056497175 +60014050003,310971,0.19023569023569 +60014050003,312828,0.28956228956229 +60014050003,314606,0.153198653198653 +60014050003,317381,0.0387205387205387 +60014050003,323593,0 +60014050003,325959,0.0723905723905724 +60014050003,325960,0.116161616161616 +60014050003,326163,0.0622895622895623 +60014050003,330447,0.0774410774410774 +60014051001,311294,0.204301075268817 +60014051001,319003,0.147849462365591 +60014051001,319005,0.0698924731182796 +60014051001,324611,0.134408602150538 +60014051001,326988,0.443548387096774 +60014051001,332116,0 +60014051002,312618,0.256603773584906 +60014051002,319002,0.158490566037736 +60014051002,319004,0.169811320754717 +60014051002,324609,0.177358490566038 +60014051002,324610,0.120754716981132 +60014051002,329240,0.116981132075472 +60014051003,311947,0.101851851851852 +60014051003,317535,0.0925925925925926 +60014051003,318253,0.262345679012346 +60014051003,323813,0.104938271604938 +60014051003,330886,0.185185185185185 +60014051003,331088,0.253086419753086 +60014051004,316477,0.181818181818182 +60014051004,324121,0.260869565217391 +60014051004,327164,0.1699604743083 +60014051004,330836,0.387351778656127 +60014051005,311292,0.0958904109589041 +60014051005,311494,0.104109589041096 +60014051005,319000,0.265753424657534 +60014051005,320810,0.126027397260274 +60014051005,321553,0.13972602739726 +60014051005,321554,0.175342465753425 +60014051005,326345,0.0931506849315069 +60014052001,311121,0.233587786259542 +60014052001,312830,0.0458015267175573 +60014052001,316664,0.0793893129770992 +60014052001,316665,0.114503816793893 +60014052001,316666,0.0641221374045802 +60014052001,320404,0.116030534351145 +60014052001,321506,0.0717557251908397 +60014052001,329239,0.152671755725191 +60014052001,333058,0.0534351145038168 +60014052001,333901,0.0687022900763359 +60014052002,310864,0.2 +60014052002,321490,0.13469387755102 +60014052002,322362,0.126530612244898 +60014052002,324510,0.0938775510204082 +60014052002,331536,0.220408163265306 +60014052002,331538,0.0795918367346939 +60014052002,333060,0.144897959183673 +60014052003,317888,0.526 +60014052003,322365,0.07 +60014052003,325189,0.036 +60014052003,325190,0.144 +60014052003,330238,0.224 +60014052004,314642,0.698539176626826 +60014052004,317885,0.127490039840637 +60014052004,333893,0.173970783532537 +60014053011,314602,0.240480961923848 +60014053011,314603,0.093186372745491 +60014053011,317879,0.114228456913828 +60014053011,317884,0.233466933867735 +60014053011,322359,0.162324649298597 +60014053011,333894,0.156312625250501 +60014053012,317880,0.402922755741127 +60014053012,318258,0.350730688935282 +60014053012,319684,0.246346555323591 +60014053021,317183,0.00739827373612824 +60014053021,318257,0.0727496917385943 +60014053021,321481,0.192355117139334 +60014053021,324492,0.394574599260173 +60014053021,324505,0.17632552404439 +60014053021,331743,0.156596794081381 +60014053022,310291,0.146218487394958 +60014053022,313964,0.114285714285714 +60014053022,316945,0.250420168067227 +60014053022,326836,0.0739495798319328 +60014053022,328070,0.146218487394958 +60014053022,331578,0.0487394957983193 +60014053022,333247,0.220168067226891 +60014054011,310194,0.0945736434108527 +60014054011,317889,0.142635658914729 +60014054011,318666,0.0496124031007752 +60014054011,322361,0.192248062015504 +60014054011,322363,0.161240310077519 +60014054011,326537,0.0465116279069767 +60014054011,332397,0.102325581395349 +60014054011,333067,0.12093023255814 +60014054011,333897,0.089922480620155 +60014054012,316308,0.0979284369114878 +60014054012,317934,0.145009416195857 +60014054012,319358,0.101694915254237 +60014054012,321508,0.0979284369114878 +60014054012,321510,0.101694915254237 +60014054012,325852,0.137476459510358 +60014054012,331761,0.128060263653484 +60014054012,333064,0.190207156308851 +60014054013,310189,0.0786802030456853 +60014054013,313969,0.0761421319796954 +60014054013,316512,0.116751269035533 +60014054013,319357,0.131979695431472 +60014054013,321509,0.0964467005076142 +60014054013,331533,0.154822335025381 +60014054013,333063,0.190355329949239 +60014054013,333065,0.154822335025381 +60014054021,313476,0.0622222222222222 +60014054021,313478,0.0533333333333333 +60014054021,314006,0.131851851851852 +60014054021,314921,0.0474074074074074 +60014054021,318875,0.08 +60014054021,321511,0.0577777777777778 +60014054021,321517,0.0785185185185185 +60014054021,324306,0.137777777777778 +60014054021,324345,0.0296296296296296 +60014054021,325236,0.0296296296296296 +60014054021,325258,0.0637037037037037 +60014054021,325851,0 +60014054021,325853,0.0755555555555556 +60014054021,332871,0.077037037037037 +60014054021,332872,0.0755555555555556 +60014054022,313477,0.0969267139479905 +60014054022,313481,0.0732860520094563 +60014054022,319363,0.219858156028369 +60014054022,319365,0.08274231678487 +60014054022,319367,0.0969267139479905 +60014054022,321515,0.0543735224586288 +60014054022,324305,0.118203309692671 +60014054022,333071,0.257683215130024 +60014055001,313978,0.115740740740741 +60014055001,317366,0.111111111111111 +60014055001,319368,0.12962962962963 +60014055001,321516,0.12037037037037 +60014055001,324307,0.296296296296296 +60014055001,332876,0.226851851851852 +60014055002,313482,0.207894736842105 +60014055002,317363,0.163157894736842 +60014055002,324299,0.2 +60014055002,324304,0.134210526315789 +60014055002,332219,0.0868421052631579 +60014055002,332220,0.0947368421052632 +60014055002,332869,0.113157894736842 +60014055003,312831,0.160458452722063 +60014055003,318665,0.226361031518625 +60014055003,321507,0.106017191977077 +60014055003,322364,0.166189111747851 +60014055003,325187,0.0773638968481375 +60014055003,332217,0.111747851002865 +60014055003,332218,0.151862464183381 +60014055004,317600,0.401851851851852 +60014055004,318664,0.218518518518519 +60014055004,332399,0.22037037037037 +60014055004,333061,0.0777777777777778 +60014055004,333896,0.0814814814814815 +60014056001,310962,0.446564885496183 +60014056001,311768,0.118320610687023 +60014056001,313835,0.297709923664122 +60014056001,325481,0.137404580152672 +60014056002,313974,0.104116222760291 +60014056002,313975,0.198547215496368 +60014056002,319356,0.116222760290557 +60014056002,325482,0.203389830508475 +60014056002,325957,0.0847457627118644 +60014056002,327602,0.0726392251815981 +60014056002,329000,0.220338983050847 +60014056003,316667,0.187315634218289 +60014056003,319354,0.275811209439528 +60014056003,319355,0.323008849557522 +60014056003,333062,0.213864306784661 +60014057001,310877,0.192224622030238 +60014057001,312433,0.0950323974082073 +60014057001,312434,0.0885529157667387 +60014057001,312435,0 +60014057001,313976,0.127429805615551 +60014057001,320643,0 +60014057001,326165,0.172786177105832 +60014057001,328213,0.218142548596112 +60014057001,329002,0.105831533477322 +60014057002,313100,0.0699481865284974 +60014057002,314611,0.367875647668394 +60014057002,316520,0.134715025906736 +60014057002,323615,0.212435233160622 +60014057002,326166,0.0958549222797927 +60014057002,327424,0.119170984455959 +60014057003,313977,0.148837209302326 +60014057003,325962,0.441860465116279 +60014057003,327446,0.165116279069767 +60014057003,329001,0.158139534883721 +60014057003,330212,0.086046511627907 +60014058001,310218,0.240896358543417 +60014058001,310893,0.0812324929971989 +60014058001,315120,0.0756302521008403 +60014058001,315255,0.204481792717087 +60014058001,325982,0.0700280112044818 +60014058001,327235,0.207282913165266 +60014058001,327236,0.120448179271709 +60014058002,310217,0.379310344827586 +60014058002,313127,0.227586206896552 +60014058002,314931,0.231034482758621 +60014058002,316280,0.162068965517241 +60014058003,313979,0.135693215339233 +60014058003,314466,0.126843657817109 +60014058003,330049,0.206489675516224 +60014058003,330059,0.132743362831858 +60014058003,330676,0.398230088495575 +60014058004,310876,0.219409282700422 +60014058004,311769,0.30379746835443 +60014058004,329007,0.122362869198312 +60014058004,329008,0.181434599156118 +60014058004,329009,0.172995780590717 +60014059011,311977,0.0884718498659517 +60014059011,312439,0.206434316353887 +60014059011,315260,0.109919571045576 +60014059011,316909,0.115281501340483 +60014059011,321545,0.142091152815013 +60014059011,324548,0.243967828418231 +60014059011,327451,0.0938337801608579 +60014059012,310223,0.0261904761904762 +60014059012,310238,0.164285714285714 +60014059012,312436,0.245238095238095 +60014059012,312438,0.0404761904761905 +60014059012,313096,0.219047619047619 +60014059012,314014,0.180952380952381 +60014059012,315261,0.123809523809524 +60014059013,310891,0.328413284132841 +60014059013,314919,0.129151291512915 +60014059013,315258,0.143911439114391 +60014059013,315259,0.0959409594095941 +60014059013,325964,0.177121771217712 +60014059013,326788,0.125461254612546 +60014059021,310216,0.210401891252955 +60014059021,310220,0.0378250591016548 +60014059021,314154,0.099290780141844 +60014059021,314614,0.0307328605200946 +60014059021,321519,0.139479905437352 +60014059021,325988,0.198581560283688 +60014059021,333073,0.0638297872340425 +60014059021,333075,0.219858156028369 +60014059022,310221,0.0705128205128205 +60014059022,314007,0.0341880341880342 +60014059022,314008,0.0128205128205128 +60014059022,314639,0.0555555555555556 +60014059022,315830,0.0641025641025641 +60014059022,316152,0.0363247863247863 +60014059022,316153,0.0876068376068376 +60014059022,317005,0.0662393162393162 +60014059022,317365,0.0256410256410256 +60014059022,319361,0.205128205128205 +60014059022,319900,0.0897435897435897 +60014059022,320081,0.115384615384615 +60014059022,324309,0.0726495726495726 +60014059022,333072,0.0641025641025641 +60014060001,0,0 +60014060001,313625,0.0220588235294118 +60014060001,313796,0 +60014060001,315832,0.0392156862745098 +60014060001,316681,0.0294117647058824 +60014060001,317559,0.147058823529412 +60014060001,317883,0.132352941176471 +60014060001,318855,0.0196078431372549 +60014060001,318856,0.154411764705882 +60014060001,319362,0 +60014060001,319553,0.0245098039215686 +60014060001,320083,0 +60014060001,320797,0.0196078431372549 +60014060001,321520,0.0196078431372549 +60014060001,325018,0.0441176470588235 +60014060001,326517,0.0490196078431373 +60014060001,328841,0.16421568627451 +60014060001,333557,0.134803921568627 +60014060002,310190,0.171314741035857 +60014060002,310191,0.0677290836653386 +60014060002,316903,0.239043824701195 +60014060002,317920,0.123505976095618 +60014060002,324300,0.398406374501992 +60014060002,331535,0 +60014060003,310185,0.13953488372093 +60014060003,310186,0.197674418604651 +60014060003,310187,0.0755813953488372 +60014060003,311976,0.0151162790697674 +60014060003,313970,0.0453488372093023 +60014060003,314442,0.0790697674418605 +60014060003,314454,0 +60014060003,315295,0.173255813953488 +60014060003,316925,0.063953488372093 +60014060003,321483,0.0686046511627907 +60014060003,321484,0.05 +60014060003,323815,0.00116279069767442 +60014060003,331757,0.0906976744186047 +60014061001,311139,0.215116279069767 +60014061001,311325,0.0581395348837209 +60014061001,312269,0.0348837209302326 +60014061001,312273,0.063953488372093 +60014061001,312610,0.0930232558139535 +60014061001,312649,0.0755813953488372 +60014061001,312936,0.0406976744186047 +60014061001,316255,0.156976744186047 +60014061001,316284,0.232558139534884 +60014061001,316848,0 +60014061001,316854,0 +60014061001,325497,0.0290697674418605 +60014061001,330936,0 +60014061002,0,0 +60014061002,311135,0.37603305785124 +60014061002,312607,0.268595041322314 +60014061002,313472,0 +60014061002,317593,0.0867768595041322 +60014061002,323662,0.0454545454545455 +60014061002,324349,0.00413223140495868 +60014061002,325495,0.103305785123967 +60014061002,326545,0.115702479338843 +60014061003,0,0 +60014061003,312266,0 +60014061003,312267,0.0150862068965517 +60014061003,312268,0.228448275862069 +60014061003,314267,0.321120689655172 +60014061003,316858,0.0301724137931034 +60014061003,318887,0.0603448275862069 +60014061003,323854,0.0193965517241379 +60014061003,323923,0.0732758620689655 +60014061003,324819,0.241379310344828 +60014061003,327193,0.0107758620689655 +60014061004,310222,0.029126213592233 +60014061004,310297,0 +60014061004,310676,0.0728155339805825 +60014061004,311330,0.223300970873786 +60014061004,315995,0.366504854368932 +60014061004,320293,0.0898058252427184 +60014061004,327608,0.218446601941748 +60014062011,310242,0.118181818181818 +60014062011,310894,0.184848484848485 +60014062011,313098,0.2 +60014062011,317380,0.142424242424242 +60014062011,327239,0.184848484848485 +60014062011,330217,0.16969696969697 +60014062012,313097,0.182572614107884 +60014062012,313099,0.257261410788382 +60014062012,327234,0.219917012448133 +60014062012,330216,0.340248962655602 +60014062013,310895,0.1727078891258 +60014062013,313104,0.119402985074627 +60014062013,315296,0.707889125799574 +60014062014,310958,0.0807692307692308 +60014062014,316846,0.273076923076923 +60014062014,327610,0.153846153846154 +60014062014,327611,0.25 +60014062014,328824,0.242307692307692 +60014062021,310294,0.853372434017595 +60014062021,329250,0.146627565982405 +60014062022,316231,0.109473684210526 +60014062022,316307,0.218947368421053 +60014062022,316857,0.185263157894737 +60014062022,317935,0.235789473684211 +60014062022,320990,0.113684210526316 +60014062022,327612,0.136842105263158 +60014062023,310243,0.0711297071129707 +60014062023,314414,0.196652719665272 +60014062023,315111,0.0523012552301255 +60014062023,316918,0.177824267782427 +60014062023,316932,0.163179916317992 +60014062023,329256,0.142259414225941 +60014062023,330824,0.196652719665272 +60014063001,313799,0.127604166666667 +60014063001,314910,0.255208333333333 +60014063001,315102,0.205729166666667 +60014063001,317014,0.309895833333333 +60014063001,319549,0.1015625 +60014063002,313103,0.084375 +60014063002,313797,0.05625 +60014063002,319562,0.125 +60014063002,327240,0.125 +60014063002,327869,0.15 +60014063002,327872,0.278125 +60014063002,330821,0.18125 +60014063003,310240,0.579166666666667 +60014063003,310900,0.0458333333333333 +60014063003,318863,0.2 +60014063003,323617,0.175 +60014063004,317378,0.397003745318352 +60014063004,317379,0.119850187265918 +60014063004,318100,0.0936329588014981 +60014063004,323616,0.123595505617978 +60014063004,330213,0.123595505617978 +60014063004,330811,0.142322097378277 +60014064001,310244,0.235537190082645 +60014064001,310898,0.338842975206612 +60014064001,312822,0.425619834710744 +60014064002,0,0 +60014064002,313778,0.0982905982905983 +60014064002,316974,0.0769230769230769 +60014064002,317361,0.153846153846154 +60014064002,321689,0.061965811965812 +60014064002,321690,0.0790598290598291 +60014064002,324636,0.0170940170940171 +60014064002,326361,0.185897435897436 +60014064002,329241,0.104700854700855 +60014064002,332118,0.0576923076923077 +60014064002,332119,0.164529914529915 +60014065001,313805,0.115727002967359 +60014065001,319568,0.183976261127596 +60014065001,321695,0.0459940652818991 +60014065001,326552,0.105341246290801 +60014065001,326559,0.13946587537092 +60014065001,328053,0.0608308605341246 +60014065001,328054,0.0652818991097923 +60014065001,328641,0.0712166172106825 +60014065001,330820,0.136498516320475 +60014065001,330826,0.0756676557863502 +60014065002,315535,0.132780082987552 +60014065002,319211,0.112033195020747 +60014065002,323627,0.136929460580913 +60014065002,328472,0.153526970954357 +60014065002,330019,0.145228215767635 +60014065002,331095,0.182572614107884 +60014065002,333953,0.136929460580913 +60014065003,313779,0.142857142857143 +60014065003,313800,0.148571428571429 +60014065003,313802,0.161904761904762 +60014065003,319204,0.123809523809524 +60014065003,321692,0.08 +60014065003,327878,0.100952380952381 +60014065003,328643,0.241904761904762 +60014065004,313801,0.169082125603865 +60014065004,319567,0.277777777777778 +60014065004,327877,0.118357487922705 +60014065004,330825,0.434782608695652 +60014066011,315812,0.106896551724138 +60014066011,319210,0.148275862068966 +60014066011,323852,0.137931034482759 +60014066011,329688,0.137931034482759 +60014066011,331101,0.182758620689655 +60014066011,331979,0.182758620689655 +60014066011,333451,0.103448275862069 +60014066012,311306,0.292817679558011 +60014066012,311948,0.0976058931860037 +60014066012,315532,0.121546961325967 +60014066012,315534,0.0755064456721915 +60014066012,319566,0.191528545119705 +60014066012,322525,0.0626151012891344 +60014066012,329686,0.158379373848987 +60014066013,311307,0.19488188976378 +60014066013,311949,0.0846456692913386 +60014066013,315533,0.062992125984252 +60014066013,315807,0.0649606299212598 +60014066013,315809,0.0728346456692913 +60014066013,322524,0.0255905511811024 +60014066013,330487,0.143700787401575 +60014066013,331093,0.0669291338582677 +60014066013,333443,0.283464566929134 +60014066014,316163,0.0766961651917404 +60014066014,316483,0.138643067846608 +60014066014,326173,0.230088495575221 +60014066014,327900,0.256637168141593 +60014066014,333449,0.176991150442478 +60014066014,333469,0.12094395280236 +60014066021,310252,0.0969162995594714 +60014066021,313803,0.0286343612334802 +60014066021,313804,0.162995594713656 +60014066021,315806,0.118942731277533 +60014066021,319565,0.0682819383259912 +60014066021,321677,0.0947136563876652 +60014066021,327875,0.0969162995594714 +60014066021,329426,0.0947136563876652 +60014066021,330017,0.143171806167401 +60014066021,330018,0.0704845814977974 +60014066021,330222,0.0242290748898678 +60014066022,310246,0.124121779859485 +60014066022,313798,0.203747072599532 +60014066022,321693,0.182669789227166 +60014066022,328642,0.166276346604215 +60014066022,330828,0.189695550351288 +60014066022,331442,0.133489461358314 +60014067001,316496,0.099236641221374 +60014067001,323560,0.639312977099237 +60014067001,329858,0.190839694656489 +60014067001,331974,0.0706106870229008 +60014067002,311305,0.141818181818182 +60014067002,315808,0.167272727272727 +60014067002,322522,0.192727272727273 +60014067002,331975,0.178181818181818 +60014067002,331976,0.141818181818182 +60014067002,333444,0.178181818181818 +60014067003,315531,0.0704787234042553 +60014067003,315829,0.113031914893617 +60014067003,316893,0.0970744680851064 +60014067003,329096,0.074468085106383 +60014067003,329439,0.296542553191489 +60014067003,329683,0.0226063829787234 +60014067003,329697,0.271276595744681 +60014067003,330843,0.0545212765957447 +60014067004,313782,0.168975069252078 +60014067004,315528,0.177285318559557 +60014067004,329684,0.155124653739612 +60014067004,331970,0.10803324099723 +60014067004,331972,0.10803324099723 +60014067004,331973,0.282548476454294 +60014067005,315526,0.160130718954248 +60014067005,315527,0.130718954248366 +60014067005,315804,0.147058823529412 +60014067005,329243,0.284313725490196 +60014067005,330663,0.150326797385621 +60014067005,331971,0.127450980392157 +60014068001,316170,0.366935483870968 +60014068001,316497,0.173387096774194 +60014068001,317610,0.0846774193548387 +60014068001,332157,0.375 +60014068002,317008,0.281138790035587 +60014068002,329708,0.149466192170818 +60014068002,331766,0.302491103202847 +60014068002,332628,0.266903914590747 +60014068003,312627,0.0825688073394495 +60014068003,316499,0.0917431192660551 +60014068003,316500,0.073394495412844 +60014068003,317203,0.073394495412844 +60014068003,322329,0.105504587155963 +60014068003,323820,0.0756880733944954 +60014068003,326185,0.0871559633027523 +60014068003,329709,0.0802752293577982 +60014068003,330294,0.0802752293577982 +60014068003,330850,0.0321100917431193 +60014068003,331112,0.103211009174312 +60014068003,332635,0.00229357798165138 +60014068003,332637,0.112385321100917 +60014068004,310300,0.0765432098765432 +60014068004,313119,0.0666666666666667 +60014068004,313788,0.0641975308641975 +60014068004,315530,0.0641975308641975 +60014068004,316484,0.120987654320988 +60014068004,319590,0.0864197530864197 +60014068004,322521,0.0592592592592593 +60014068004,323818,0.054320987654321 +60014068004,327250,0.0814814814814815 +60014068004,329685,0.0864197530864197 +60014068004,330640,0.138271604938272 +60014068004,333458,0.101234567901235 +60014069001,323817,0.101818181818182 +60014069001,326538,0.134545454545455 +60014069001,330291,0.112727272727273 +60014069001,331110,0.425454545454545 +60014069001,332632,0.192727272727273 +60014069001,333254,0.0327272727272727 +60014069002,316503,0.0749464668094218 +60014069002,322330,0.229122055674518 +60014069002,323825,0.69593147751606 +60014069003,316171,0.0522788203753351 +60014069003,316702,0.0160857908847185 +60014069003,317206,0.388739946380697 +60014069003,317237,0.310991957104558 +60014069003,329276,0.0201072386058981 +60014069003,331113,0.0361930294906166 +60014069003,331765,0.175603217158177 +60014070001,316165,0.133333333333333 +60014070001,316907,0.116666666666667 +60014070001,321441,0.322222222222222 +60014070001,323674,0.122222222222222 +60014070001,323822,0.0666666666666667 +60014070001,329254,0.133333333333333 +60014070001,332623,0.105555555555556 +60014070002,311953,0.0902061855670103 +60014070002,315110,0.0927835051546392 +60014070002,318085,0.152061855670103 +60014070002,325993,0.190721649484536 +60014070002,326536,0.177835051546392 +60014070002,329693,0.188144329896907 +60014070002,332622,0.108247422680412 +60014070003,310296,0.255411255411255 +60014070003,316488,0.0844155844155844 +60014070003,316490,0.0909090909090909 +60014070003,317585,0.346320346320346 +60014070003,322324,0.0844155844155844 +60014070003,330649,0.138528138528139 +60014070004,311951,0.134615384615385 +60014070004,316487,0.0854700854700855 +60014070004,322529,0.0918803418803419 +60014070004,329631,0.493589743589744 +60014070004,332620,0.0961538461538462 +60014070004,333280,0.0982905982905983 +60014070005,315600,0.755351681957186 +60014070005,316486,0.244648318042813 +60014071011,317026,0.229617304492512 +60014071011,318128,0.0732113144758735 +60014071011,319569,0.56738768718802 +60014071011,319570,0.0748752079866889 +60014071011,327442,0.0549084858569052 +60014071012,315813,0.119700748129676 +60014071012,319571,0.0997506234413965 +60014071012,324625,0.104738154613466 +60014071012,325975,0.109725685785536 +60014071012,331096,0.0997506234413965 +60014071012,331097,0.174563591022444 +60014071012,333447,0.291770573566085 +60014071021,314928,0.0637898686679174 +60014071021,315244,0.0956848030018762 +60014071021,315632,0.367729831144465 +60014071021,316692,0.187617260787992 +60014071021,325706,0.210131332082552 +60014071021,329882,0.075046904315197 +60014071022,310866,0.174273858921162 +60014071022,315245,0.170124481327801 +60014071022,322368,0.211618257261411 +60014071022,325194,0.20746887966805 +60014071022,332404,0.236514522821577 +60014071023,311143,0.187234042553191 +60014071023,318644,0 +60014071023,318645,0.25531914893617 +60014071023,324626,0.131914893617021 +60014071023,325192,0.217021276595745 +60014071023,333903,0.208510638297872 +60014071024,313114,0.28740157480315 +60014071024,325196,0.125984251968504 +60014071024,330237,0.232283464566929 +60014071024,331541,0.118110236220472 +60014071024,332405,0.236220472440945 +60014072001,314917,0.251989389920424 +60014072001,315633,0.180371352785146 +60014072001,318991,0.190981432360743 +60014072001,323599,0.376657824933687 +60014072002,311970,0.271028037383178 +60014072002,313611,0.329439252336449 +60014072002,314916,0.128504672897196 +60014072002,314927,0.0724299065420561 +60014072002,329078,0.10981308411215 +60014072002,331744,0.088785046728972 +60014072003,311141,0.241035856573705 +60014072003,311142,0.131474103585657 +60014072003,311324,0.125498007968127 +60014072003,313609,0.0617529880478088 +60014072003,324618,0.260956175298805 +60014072003,325496,0.179282868525896 +60014072004,311137,0.0955882352941176 +60014072004,311138,0.0588235294117647 +60014072004,311966,0.0900735294117647 +60014072004,311968,0.0588235294117647 +60014072004,312823,0.112132352941176 +60014072004,316230,0.139705882352941 +60014072004,316232,0.0496323529411765 +60014072004,316864,0.220588235294118 +60014072004,319203,0.0882352941176471 +60014072004,323849,0.0863970588235294 +60014073001,312470,0.129577464788732 +60014073001,314162,0.366197183098592 +60014073001,323845,0.0140845070422535 +60014073001,332242,0.256338028169014 +60014073001,332882,0.12112676056338 +60014073001,333726,0.112676056338028 +60014073002,0,0 +60014073002,312281,0.0130548302872063 +60014073002,312469,0.0261096605744125 +60014073002,312612,0.00261096605744125 +60014073002,314415,0.00261096605744125 +60014073002,317189,0.135770234986945 +60014073002,317192,0.0469973890339426 +60014073002,317235,0 +60014073002,317369,0.0783289817232376 +60014073002,317371,0.0757180156657963 +60014073002,317372,0.0835509138381201 +60014073002,317400,0 +60014073002,317595,0.0417754569190601 +60014073002,318120,0.0365535248041775 +60014073002,319374,0.0992167101827676 +60014073002,319375,0.0130548302872063 +60014073002,321522,0.0652741514360313 +60014073002,323603,0.140992167101828 +60014073002,324494,0 +60014073002,333723,0.138381201044386 +60014074001,311971,0.121276595744681 +60014074001,313115,0.278723404255319 +60014074001,314164,0.0914893617021277 +60014074001,320060,0.15531914893617 +60014074001,320061,0.0957446808510638 +60014074001,325860,0.0829787234042553 +60014074001,325865,0.102127659574468 +60014074001,332885,0.0723404255319149 +60014074002,314160,0.141104294478528 +60014074002,315623,0.0828220858895705 +60014074002,317928,0.214723926380368 +60014074002,322374,0.0521472392638037 +60014074002,324315,0.254601226993865 +60014074002,332003,0.254601226993865 +60014074003,310868,0 +60014074003,311500,0.115789473684211 +60014074003,315249,0.2 +60014074003,317228,0.0526315789473684 +60014074003,331543,0.16140350877193 +60014074003,331544,0.210526315789474 +60014074003,331545,0.259649122807018 +60014075001,313318,0.0954356846473029 +60014075001,319560,0.278008298755187 +60014075001,320266,0.369294605809129 +60014075001,321564,0.257261410788382 +60014075002,310446,0.408199643493761 +60014075002,318088,0.0552584670231729 +60014075002,320062,0.0748663101604278 +60014075002,321527,0.0926916221033868 +60014075002,323913,0.0677361853832442 +60014075002,324117,0.0677361853832442 +60014075002,324992,0.124777183600713 +60014075002,325664,0.0481283422459893 +60014075002,327174,0.0606060606060606 +60014075003,310007,0.131979695431472 +60014075003,310447,0.0888324873096447 +60014075003,316838,0.0989847715736041 +60014075003,320263,0.243654822335025 +60014075003,323667,0.15989847715736 +60014075003,323915,0.0786802030456853 +60014075003,324991,0.134517766497462 +60014075003,325663,0.0634517766497462 +60014076001,317205,0.178571428571429 +60014076001,318647,0.0571428571428571 +60014076001,318648,0.0571428571428571 +60014076001,321530,0.238095238095238 +60014076001,321531,0.0928571428571429 +60014076001,325202,0.0952380952380952 +60014076001,329692,0.0761904761904762 +60014076001,332197,0.204761904761905 +60014076002,315251,0.2 +60014076002,318089,0.0552631578947368 +60014076002,325193,0.144736842105263 +60014076002,325201,0.184210526315789 +60014076002,332196,0.163157894736842 +60014076002,332408,0.118421052631579 +60014076002,333730,0.134210526315789 +60014076003,320068,0.139473684210526 +60014076003,321521,0.176315789473684 +60014076003,321532,0.0657894736842105 +60014076003,324312,0.0736842105263158 +60014076003,326501,0.215789473684211 +60014076003,332891,0.0947368421052632 +60014076003,333076,0.234210526315789 +60014076004,314157,0.0863930885529158 +60014076004,314158,0.0993520518358531 +60014076004,324311,0.183585313174946 +60014076004,325203,0.237580993520518 +60014076004,331546,0.153347732181426 +60014076004,332198,0.190064794816415 +60014076004,333906,0.0496760259179266 +60014076005,310867,0.303430079155673 +60014076005,315250,0.197889182058047 +60014076005,318649,0.0923482849604222 +60014076005,318650,0.0765171503957784 +60014076005,322375,0.0844327176781003 +60014076005,332409,0.100263852242744 +60014076005,333904,0.145118733509235 +60014077001,310443,0.100884955752212 +60014077001,313132,0.125663716814159 +60014077001,314793,0.0619469026548673 +60014077001,323912,0.0265486725663717 +60014077001,325246,0.146902654867257 +60014077001,325662,0.0619469026548673 +60014077001,327460,0.0778761061946903 +60014077001,329251,0.0513274336283186 +60014077001,329259,0.031858407079646 +60014077001,330655,0.0619469026548673 +60014077001,332830,0.253097345132743 +60014077002,318091,0.106796116504854 +60014077002,320069,0.0558252427184466 +60014077002,320070,0.114077669902913 +60014077002,321533,0.058252427184466 +60014077002,323909,0.172330097087379 +60014077002,324114,0.12621359223301 +60014077002,324993,0.0558252427184466 +60014077002,324994,0.12621359223301 +60014077002,327171,0.0849514563106796 +60014077002,333732,0.0995145631067961 +60014077003,314790,0.113207547169811 +60014077003,320064,0.0943396226415094 +60014077003,320065,0.102425876010782 +60014077003,320066,0.105121293800539 +60014077003,320067,0.0646900269541779 +60014077003,320258,0.110512129380054 +60014077003,325868,0.134770889487871 +60014077003,325907,0.164420485175202 +60014077003,332890,0.110512129380054 +60014077004,310442,0.133879781420765 +60014077004,316835,0.213114754098361 +60014077004,320259,0.0983606557377049 +60014077004,321559,0.147540983606557 +60014077004,323907,0.122950819672131 +60014077004,325659,0.087431693989071 +60014077004,327170,0.0901639344262295 +60014077004,327173,0.10655737704918 +60014078001,317908,0 +60014078001,323648,0.4 +60014078001,323828,0.1 +60014078001,324543,0.5 +60014078002,316834,0.135064935064935 +60014078002,319548,0.161038961038961 +60014078002,320257,0.114285714285714 +60014078002,320813,0.106493506493506 +60014078002,321558,0.0623376623376623 +60014078002,323908,0.124675324675325 +60014078002,331261,0.220779220779221 +60014078002,332130,0.0753246753246753 +60014078003,312628,0.08125 +60014078003,313786,0.2625 +60014078003,314788,0.153125 +60014078003,316175,0.090625 +60014078003,323669,0.325 +60014078003,333728,0.0875 +60014079001,314151,0.241157556270096 +60014079001,318679,0.0707395498392283 +60014079001,318680,0.231511254019293 +60014079001,319194,0.154340836012862 +60014079001,324327,0.0932475884244373 +60014079001,330919,0.0964630225080386 +60014079001,330922,0.112540192926045 +60014079002,314622,0.166666666666667 +60014079002,314623,0.25 +60014079002,318683,0.255952380952381 +60014079002,318684,0.0803571428571429 +60014079002,324326,0.142857142857143 +60014079002,330921,0.0238095238095238 +60014079002,332437,0.0803571428571429 +60014079003,314260,0.104803493449782 +60014079003,316181,0.220524017467249 +60014079003,317210,0.0633187772925764 +60014079003,327168,0.279475982532751 +60014079003,330295,0.0589519650655022 +60014079003,331792,0.0720524017467249 +60014079003,333255,0.0764192139737991 +60014079003,333257,0.0458515283842795 +60014079003,333487,0.0786026200873362 +60014080001,316975,0.134948096885813 +60014080001,317212,0.193771626297578 +60014080001,318280,0.259515570934256 +60014080001,328469,0.26643598615917 +60014080001,331282,0.145328719723183 +60014080002,312633,0.0438472418670438 +60014080002,312817,0.186704384724187 +60014080002,312834,0.0480905233380481 +60014080002,325214,0.434229137199434 +60014080002,331297,0.243281471004243 +60014080002,333261,0.0438472418670438 +60014081001,314634,0.277477477477477 +60014081001,315604,0 +60014081001,316177,0.207207207207207 +60014081001,320408,0.0702702702702703 +60014081001,325308,0.0810810810810811 +60014081001,328403,0.0504504504504504 +60014081001,329086,0.167567567567568 +60014081001,331128,0.145945945945946 +60014081002,314624,0 +60014081002,315538,0.0217041800643087 +60014081002,318685,0.0466237942122186 +60014081002,320651,0.538585209003215 +60014081002,325484,0.0715434083601286 +60014081002,331590,0.0498392282958199 +60014081002,332912,0.22588424437299 +60014081002,333923,0.0184887459807074 +60014081002,333924,0.0273311897106109 +60014081003,315100,0.462395543175487 +60014081003,317398,0.192200557103064 +60014081003,321607,0.0779944289693593 +60014081003,321608,0.158774373259053 +60014081003,327588,0.108635097493036 +60014081004,310675,0.301298701298701 +60014081004,318686,0.436363636363636 +60014081004,321635,0.215584415584416 +60014081004,329249,0.0467532467532468 +60014082001,313289,0.0924956369982548 +60014082001,315537,0.0767888307155323 +60014082001,317214,0.0785340314136126 +60014082001,317215,0.043630017452007 +60014082001,317217,0.0907504363001745 +60014082001,317893,0.0471204188481675 +60014082001,317907,0.0401396160558464 +60014082001,317911,0.0558464223385689 +60014082001,322336,0.137870855148342 +60014082001,322337,0.075043630017452 +60014082001,331770,0.0453752181500873 +60014082001,333266,0.106457242582897 +60014082001,333267,0.109947643979058 +60014082002,313985,0.104434907010014 +60014082002,314924,0.107296137339056 +60014082002,315262,0.0472103004291846 +60014082002,326794,0.151645207439199 +60014082002,329083,0.36623748211731 +60014082002,330298,0.223175965665236 +60014082003,311987,0.0819672131147541 +60014082003,313290,0.144808743169399 +60014082003,323830,0.336065573770492 +60014082003,324536,0.0792349726775956 +60014082003,328481,0.12568306010929 +60014082003,333269,0.23224043715847 +60014083001,313983,0.142335766423358 +60014083001,313986,0.109489051094891 +60014083001,319551,0.324817518248175 +60014083001,328220,0.0328467153284672 +60014083001,330903,0.160583941605839 +60014083001,331783,0.109489051094891 +60014083001,333927,0.12043795620438 +60014083002,311123,0.0962962962962963 +60014083002,312440,0.0790123456790123 +60014083002,321601,0.135802469135802 +60014083002,321665,0.0641975308641975 +60014083002,322341,0.301234567901235 +60014083002,322358,0.0641975308641975 +60014083002,327000,0.0962962962962963 +60014083002,327001,0.0592592592592593 +60014083002,328221,0.103703703703704 +60014083003,310224,0.182767624020888 +60014083003,321658,0.154046997389034 +60014083003,321659,0.114882506527415 +60014083003,321664,0.154046997389034 +60014083003,325309,0.0992167101827676 +60014083003,326999,0.135770234986945 +60014083003,328229,0.159268929503916 +60014083004,321668,0.165584415584416 +60014083004,325968,0.13961038961039 +60014083004,329604,0.279220779220779 +60014083004,329842,0.415584415584416 +60014083005,310882,0.204946996466431 +60014083005,312441,0.123674911660777 +60014083005,315263,0.120141342756184 +60014083005,315265,0.102473498233216 +60014083005,315266,0.11660777385159 +60014083005,316963,0.219081272084806 +60014083005,326799,0.113074204946996 +60014084001,310226,0.172774869109948 +60014084001,310227,0.0759162303664921 +60014084001,310880,0.104712041884817 +60014084001,315834,0.12303664921466 +60014084001,321660,0.0994764397905759 +60014084001,321661,0.0968586387434555 +60014084001,325965,0.12565445026178 +60014084001,328223,0.0759162303664921 +60014084001,329596,0.12565445026178 +60014084002,312443,0.135036496350365 +60014084002,325967,0.182481751824818 +60014084002,326796,0.178832116788321 +60014084002,326797,0.135036496350365 +60014084002,326798,0.12043795620438 +60014084002,329597,0.248175182481752 +60014084003,310881,0.127358490566038 +60014084003,315267,0.283018867924528 +60014084003,315280,0.080188679245283 +60014084003,321666,0.0660377358490566 +60014084003,325970,0.0471698113207547 +60014084003,325971,0.0707547169811321 +60014084003,328225,0.120283018867925 +60014084003,329602,0.0754716981132075 +60014084003,331262,0.129716981132075 +60014085001,317901,0.312693498452012 +60014085001,324514,0.219814241486068 +60014085001,329841,0.213622291021672 +60014085001,330303,0.130030959752322 +60014085001,330304,0.123839009287926 +60014085002,310969,0.13855421686747 +60014085002,317902,0.126506024096386 +60014085002,317905,0.0753012048192771 +60014085002,321662,0.0632530120481928 +60014085002,321663,0.114457831325301 +60014085002,322339,0.171686746987952 +60014085002,325966,0.0933734939759036 +60014085002,329599,0.102409638554217 +60014085002,331293,0.114457831325301 +60014085003,310888,0.153191489361702 +60014085003,312450,0.140425531914894 +60014085003,321671,0.106382978723404 +60014085003,322340,0.131914893617021 +60014085003,326609,0.136170212765957 +60014085003,326800,0.131914893617021 +60014085003,329608,0.2 +60014085004,310973,0.200913242009132 +60014085004,313981,0.100456621004566 +60014085004,324519,0.292237442922374 +60014085004,329609,0.168949771689498 +60014085004,330306,0.123287671232877 +60014085004,331782,0.114155251141553 +60014085005,313296,0.177111716621253 +60014085005,322338,0.226158038147139 +60014085005,324518,0.171662125340599 +60014085005,329861,0.00272479564032698 +60014085005,330300,0.171662125340599 +60014085005,330305,0.250681198910082 +60014086001,313299,0.151515151515152 +60014086001,313980,0.119429590017825 +60014086001,314272,0 +60014086001,315298,0.10873440285205 +60014086001,315543,0.144385026737968 +60014086001,317899,0.103386809269162 +60014086001,323831,0.0499108734402852 +60014086001,324516,0.117647058823529 +60014086001,330302,0.0998217468805704 +60014086001,331771,0.105169340463458 +60014086002,313293,0.202626641651032 +60014086002,313294,0.099437148217636 +60014086002,313295,0.120075046904315 +60014086002,321574,0.0956848030018762 +60014086002,323832,0.0975609756097561 +60014086002,326558,0.050656660412758 +60014086002,327771,0.101313320825516 +60014086002,331774,0.099437148217636 +60014086002,333917,0.0900562851782364 +60014086002,333920,0.0431519699812383 +60014086003,315541,0.153179190751445 +60014086003,317897,0.127167630057803 +60014086003,324511,0.179190751445087 +60014086003,324512,0.167630057803468 +60014086003,324513,0.127167630057803 +60014086003,331775,0.245664739884393 +60014086004,310455,0.145038167938931 +60014086004,315540,0.190839694656489 +60014086004,320978,0.0954198473282443 +60014086004,323920,0.16412213740458 +60014086004,324799,0.217557251908397 +60014086004,331777,0.187022900763359 +60014087001,310444,0.0872641509433962 +60014087001,310668,0 +60014087001,311533,0.167452830188679 +60014087001,325661,0.195754716981132 +60014087001,328485,0.117924528301887 +60014087001,329263,0.132075471698113 +60014087001,329265,0 +60014087001,330654,0.148584905660377 +60014087001,332132,0.0306603773584906 +60014087001,333268,0.120283018867925 +60014087002,313291,0.103448275862069 +60014087002,313292,0.142857142857143 +60014087002,314452,0.199507389162562 +60014087002,315539,0.0862068965517241 +60014087002,324542,0.12807881773399 +60014087002,331772,0.123152709359606 +60014087002,333270,0.130541871921182 +60014087002,333918,0.0862068965517241 +60014087003,310451,0.202739726027397 +60014087003,317568,0.2 +60014087003,320976,0.120547945205479 +60014087003,321568,0.208219178082192 +60014087003,327770,0.186301369863014 +60014087003,332465,0.0821917808219178 +60014087004,320262,0.276752767527675 +60014087004,324119,0.154981549815498 +60014087004,325666,0.173431734317343 +60014087004,325668,0.03690036900369 +60014087004,327175,0.357933579335793 +60014087005,310450,0.231263383297645 +60014087005,317541,0.100642398286938 +60014087005,321565,0.0749464668094218 +60014087005,321571,0.126338329764454 +60014087005,325665,0.0963597430406852 +60014087005,325669,0.229122055674518 +60014087005,327769,0.0706638115631692 +60014087005,329252,0.0706638115631692 +60014087006,310452,0.0613496932515337 +60014087006,310454,0.220858895705521 +60014087006,317894,0.104294478527607 +60014087006,323919,0.398773006134969 +60014087006,325670,0.138036809815951 +60014087006,325672,0.0766871165644172 +60014088001,311528,0.128712871287129 +60014088001,317569,0.0429042904290429 +60014088001,320270,0.099009900990099 +60014088001,321572,0.102310231023102 +60014088001,328478,0.125412541254125 +60014088001,328652,0.138613861386139 +60014088001,328654,0.138613861386139 +60014088001,330030,0.0891089108910891 +60014088001,330032,0.135313531353135 +60014088002,311326,0.6953125 +60014088002,311527,0 +60014088002,314431,0 +60014088002,314433,0.0572916666666667 +60014088002,328477,0.0729166666666667 +60014088002,328653,0.0755208333333333 +60014088002,330027,0.0572916666666667 +60014088002,332889,0.0416666666666667 +60014088003,317539,0.609970674486804 +60014088003,325673,0.390029325513196 +60014088004,310448,0.0482654600301659 +60014088004,310449,0.168929110105581 +60014088004,311975,0.0739064856711916 +60014088004,315103,0.0497737556561086 +60014088004,315287,0.135746606334842 +60014088004,319200,0.423831070889894 +60014088004,321529,0.0482654600301659 +60014088004,333727,0.0512820512820513 +60014089001,315984,0.203023758099352 +60014089001,323642,0 +60014089001,323834,0.503239740820734 +60014089001,326607,0.129589632829374 +60014089001,326801,0.103671706263499 +60014089001,328479,0.060475161987041 +60014089002,310883,0.0603621730382294 +60014089002,310912,0.0503018108651911 +60014089002,312447,0.0945674044265594 +60014089002,313297,0.0503018108651912 +60014089002,313320,0.0724346076458753 +60014089002,316006,0.108651911468813 +60014089002,317010,0.160965794768612 +60014089002,320271,0.0442655935613682 +60014089002,323641,0.0945674044265594 +60014089002,329257,0.0543259557344064 +60014089002,330031,0.106639839034205 +60014089002,331451,0.10261569416499 +60014090001,310257,0.161290322580645 +60014090001,310258,0.166383701188455 +60014090001,311523,0.122241086587436 +60014090001,312448,0.157894736842105 +60014090001,315097,0.0475382003395586 +60014090001,315098,0.103565365025467 +60014090001,315293,0 +60014090001,315792,0.0356536502546689 +60014090001,322509,0.0577249575551783 +60014090001,325256,0.0407470288624788 +60014090001,327881,0.00169779286926995 +60014090001,330471,0.105263157894737 +60014090002,0,0 +60014090002,310910,0 +60014090002,313125,0 +60014090002,313821,1 +60014090002,314430,0 +60014090002,317574,0 +60014090002,317930,0 +60014090002,324317,0 +60014090002,328402,0 +60014090002,330013,0 +60014090003,310901,0 +60014090003,310902,0.365482233502538 +60014090003,311522,0.114213197969543 +60014090003,313819,0 +60014090003,315112,0 +60014090003,316930,0.0685279187817259 +60014090003,319916,0.304568527918782 +60014090003,329258,0.147208121827411 +60014090003,330313,0 +60014090004,0,0 +60014090004,313995,0 +60014090004,314264,0 +60014090004,319546,0 +60014091001,310653,0.00337837837837838 +60014091001,327247,0.266891891891892 +60014091001,329102,0.165540540540541 +60014091001,332794,0.118243243243243 +60014091001,332808,0.445945945945946 +60014091002,310654,0.259016393442623 +60014091002,313111,0.409836065573771 +60014091002,328043,0.114754098360656 +60014091002,330478,0.216393442622951 +60014092001,311526,0.0675675675675676 +60014092001,318103,0.538610038610039 +60014092001,321683,0.0888030888030888 +60014092001,327248,0.0444015444015444 +60014092001,328044,0.104247104247104 +60014092001,329034,0.0984555984555985 +60014092001,329429,0.0579150579150579 +60014092002,314416,0.19375 +60014092002,314420,0.76875 +60014092002,315518,0.0375 +60014093001,312650,0.377281947261663 +60014093001,315627,0.14604462474645 +60014093001,316192,0.0567951318458418 +60014093001,316957,0.13184584178499 +60014093001,325032,0.0628803245436105 +60014093001,326824,0.117647058823529 +60014093001,332441,0.107505070993915 +60014093002,310666,0.154046997389034 +60014093002,315611,0.0469973890339426 +60014093002,319387,0.127937336814621 +60014093002,321648,0.0835509138381201 +60014093002,321649,0.161879895561358 +60014093002,323670,0.221932114882507 +60014093002,330924,0.0783289817232376 +60014093002,332444,0.12532637075718 +60014093003,310657,0.194366197183099 +60014093003,312471,0.0028169014084507 +60014093003,315520,0.0788732394366197 +60014093003,315794,0.0309859154929577 +60014093003,319385,0.107042253521127 +60014093003,319400,0.0816901408450704 +60014093003,321646,0.0985915492957746 +60014093003,323676,0.101408450704225 +60014093003,325221,0.0816901408450704 +60014093003,330474,0.143661971830986 +60014093003,332443,0.0788732394366197 +60014093004,312175,0.198275862068966 +60014093004,316188,0.103448275862069 +60014093004,319386,0.181034482758621 +60014093004,321647,0.21551724137931 +60014093004,324334,0.0862068965517241 +60014093004,329103,0.0818965517241379 +60014093004,331558,0.0258620689655172 +60014093004,331802,0.107758620689655 +60014094001,313830,0.154811715481172 +60014094001,315275,0.133891213389121 +60014094001,316187,0.108786610878661 +60014094001,317025,0.259414225941423 +60014094001,321645,0.117154811715481 +60014094001,331556,0.225941422594142 +60014094002,310655,0.122 +60014094002,310656,0.084 +60014094002,310862,0 +60014094002,311513,0.032 +60014094002,314435,0.002 +60014094002,315101,0 +60014094002,315108,0.094 +60014094002,315793,0.106 +60014094002,316976,0.074 +60014094002,330473,0.108 +60014094002,330475,0.134 +60014094002,331263,0.062 +60014094002,332809,0.172 +60014094002,333272,0.01 +60014094003,310255,0.0816901408450704 +60014094003,310256,0.0676056338028169 +60014094003,310651,0.0676056338028169 +60014094003,322323,0.0732394366197183 +60014094003,327262,0.214084507042254 +60014094003,330477,0.154929577464789 +60014094003,330484,0.188732394366197 +60014094003,331286,0.0845070422535211 +60014094003,331287,0.0676056338028169 +60014095001,310887,0.0245901639344262 +60014095001,311512,0.266393442622951 +60014095001,311529,0 +60014095001,316952,0.147540983606557 +60014095001,321670,0.30327868852459 +60014095001,328480,0.258196721311475 +60014095002,310890,0.0953846153846154 +60014095002,315630,0.156923076923077 +60014095002,318883,0.0984615384615385 +60014095002,321672,0.116923076923077 +60014095002,328807,0.107692307692308 +60014095002,328809,0.104615384615385 +60014095002,329606,0.24 +60014095002,329612,0.08 +60014095003,315093,0.107296137339056 +60014095003,315094,0.158798283261803 +60014095003,315987,0.120171673819742 +60014095003,316287,0.0944206008583691 +60014095003,322322,0.175965665236052 +60014095003,326611,0.133047210300429 +60014095003,329097,0.107296137339056 +60014095003,331285,0.103004291845494 +60014096001,310658,0.198529411764706 +60014096001,311297,0.125 +60014096001,322514,0.172794117647059 +60014096001,330480,0.113970588235294 +60014096001,331296,0.110294117647059 +60014096001,332814,0.132352941176471 +60014096001,333922,0.147058823529412 +60014096002,311298,0.089171974522293 +60014096002,311299,0.0796178343949045 +60014096002,311300,0.127388535031847 +60014096002,315522,0.124203821656051 +60014096002,315523,0.114649681528662 +60014096002,321638,0.105095541401274 +60014096002,329105,0.089171974522293 +60014096002,330481,0.0828025477707006 +60014096002,332815,0.089171974522293 +60014096002,332816,0.0987261146496815 +60014096003,315269,0.158590308370044 +60014096003,315798,0.295154185022026 +60014096003,319379,0.0969162995594714 +60014096003,324330,0.317180616740088 +60014096003,329677,0.13215859030837 +60014096004,319377,0.17479674796748 +60014096004,327261,0.138211382113821 +60014096004,329675,0.223577235772358 +60014096004,331961,0.166666666666667 +60014096004,331962,0.134146341463415 +60014096004,331964,0.16260162601626 +60014096005,311296,0.110787172011662 +60014096005,315521,0.134110787172012 +60014096005,315795,0.0670553935860058 +60014096005,315986,0.0845481049562682 +60014096005,326803,0.0699708454810496 +60014096005,328808,0.12536443148688 +60014096005,328810,0.198250728862974 +60014096005,329610,0.0845481049562682 +60014096005,332813,0.12536443148688 +60014097001,315983,0.840677966101695 +60014097001,317238,0.159322033898305 +60014097002,313307,0.102611940298507 +60014097002,313831,0.216417910447761 +60014097002,315601,0.0746268656716418 +60014097002,319409,0.266791044776119 +60014097002,325217,0.0988805970149254 +60014097002,325219,0.156716417910448 +60014097002,332791,0.083955223880597 +60014097003,315272,0.09375 +60014097003,315273,0.232638888888889 +60014097003,321637,0.173611111111111 +60014097003,324329,0.114583333333333 +60014097003,326146,0.0798611111111111 +60014097003,331550,0.159722222222222 +60014097003,331551,0.0798611111111111 +60014097003,332440,0.0659722222222222 +60014097004,312444,0.150943396226415 +60014097004,322516,0.0974842767295598 +60014097004,327889,0.113207547169811 +60014097004,328227,0.0943396226415094 +60014097004,329293,0.116352201257862 +60014097004,331294,0.122641509433962 +60014097004,331295,0.147798742138365 +60014097004,331549,0.157232704402516 +60014098001,310196,0.0738255033557047 +60014098001,311124,0.12751677852349 +60014098001,314781,0.476510067114094 +60014098001,325485,0.114093959731544 +60014098001,328231,0.12751677852349 +60014098001,332818,0.0805369127516778 +60014098002,310200,0.0858676207513417 +60014098002,311753,0.0679785330948122 +60014098002,326814,0.552772808586762 +60014098002,327590,0.0644007155635063 +60014098002,329087,0.228980322003578 +60014098003,310197,0.140151515151515 +60014098003,321603,0.0984848484848485 +60014098003,323567,0.287878787878788 +60014098003,330451,0.178030303030303 +60014098003,332817,0.295454545454545 +60014099001,311751,0.16140350877193 +60014099001,314448,0 +60014099001,314449,0 +60014099001,316265,0.2 +60014099001,316507,0 +60014099001,317402,0 +60014099001,317570,0 +60014099001,317731,0.192982456140351 +60014099001,318276,0 +60014099001,322377,0 +60014099001,325903,0 +60014099001,326637,0 +60014099001,331303,0 +60014099001,333907,0.445614035087719 +60014099002,310629,0.276595744680851 +60014099002,310681,0.178723404255319 +60014099002,313282,0.0936170212765957 +60014099002,329663,0.451063829787234 +60014099003,311280,0.0844529750479846 +60014099003,314421,0.105566218809981 +60014099003,329666,0.547024952015355 +60014099003,332796,0.262955854126679 +60014099004,311281,0.129518072289157 +60014099004,311282,0.147590361445783 +60014099004,316467,0.162650602409639 +60014099004,317525,0.0240963855421687 +60014099004,321459,0.283132530120482 +60014099004,324547,0.174698795180723 +60014099004,330287,0.0572289156626506 +60014099004,330839,0.00301204819277108 +60014099004,331958,0.0180722891566265 +60014100001,0,0 +60014100001,315785,0.190123456790123 +60014100001,315788,0 +60014100001,316464,0.133333333333333 +60014100001,317527,0.116049382716049 +60014100001,320381,0.0518518518518519 +60014100001,321454,0.111111111111111 +60014100001,330014,0.397530864197531 +60014100002,314422,0.0343406593406593 +60014100002,315780,0.0549450549450549 +60014100002,315789,0.0137362637362637 +60014100002,316829,0.010989010989011 +60014100002,317526,0.0412087912087912 +60014100002,320255,0.0233516483516484 +60014100002,321453,0.0989010989010989 +60014100002,323801,0.0384615384615385 +60014100002,326643,0.00686813186813187 +60014100002,329667,0.0879120879120879 +60014100002,330279,0.043956043956044 +60014100002,330312,0.54532967032967 +60014100003,320650,1 +60014101001,310630,0.105 +60014101001,311322,0.1075 +60014101001,315079,0.0025 +60014101001,316509,0.2 +60014101001,318476,0.21 +60014101001,321612,0.1 +60014101001,323577,0.0625 +60014101001,326148,0.0575 +60014101001,329673,0.0575 +60014101001,330453,0.0975 +60014101002,315085,0.0521042084168337 +60014101002,316266,0.108216432865731 +60014101002,317226,0.094188376753507 +60014101002,320975,0.0721442885771543 +60014101002,323578,0.190380761523046 +60014101002,326815,0.0781563126252505 +60014101002,329869,0.0420841683366733 +60014101002,330455,0.064128256513026 +60014101002,330463,0.0440881763527054 +60014101002,330852,0.130260521042084 +60014101002,331276,0.0501002004008016 +60014101002,333433,0.0741482965931864 +60014102001,315082,0.0417495029821074 +60014102001,315274,0.355864811133201 +60014102001,319383,0.0656063618290258 +60014102001,321450,0.0675944333996024 +60014102001,324333,0.095427435387674 +60014102001,327591,0.0934393638170974 +60014102001,328412,0.280318091451292 +60014102002,310632,0.140562248995984 +60014102002,314922,0.140562248995984 +60014102002,315824,0.116465863453815 +60014102002,316693,0.152610441767068 +60014102002,317917,0.116465863453815 +60014102002,323580,0.104417670682731 +60014102002,330274,0.0843373493975904 +60014102002,333951,0.144578313253012 +60014102003,310633,0.12 +60014102003,313997,0.174545454545455 +60014102003,316826,0.189090909090909 +60014102003,323665,0.181818181818182 +60014102003,330278,0.127272727272727 +60014102003,330461,0.0872727272727273 +60014102003,330464,0.12 +60014103001,315622,0.145669291338583 +60014103001,316185,0.165354330708661 +60014103001,321640,0.181102362204724 +60014103001,324331,0.165354330708661 +60014103001,324332,0.15748031496063 +60014103001,325992,0.0905511811023622 +60014103001,331554,0.094488188976378 +60014103002,316657,0.174377224199288 +60014103002,318470,0.135231316725979 +60014103002,319380,0.096085409252669 +60014103002,319381,0.120996441281139 +60014103002,321643,0.0889679715302491 +60014103002,323579,0.0711743772241993 +60014103002,325218,0.138790035587189 +60014103002,333079,0.174377224199288 +60014103003,314153,0.112044817927171 +60014103003,315270,0.100840336134454 +60014103003,315277,0.0644257703081232 +60014103003,315278,0.0784313725490196 +60014103003,316283,0.215686274509804 +60014103003,319378,0.0868347338935574 +60014103003,319382,0.109243697478992 +60014103003,325215,0.165266106442577 +60014103003,332438,0.0672268907563025 +60014104001,310631,0.133093525179856 +60014104001,313117,0.133093525179856 +60014104001,329845,0.18705035971223 +60014104001,330272,0.18705035971223 +60014104001,330456,0.0971223021582734 +60014104001,331277,0.151079136690647 +60014104001,331278,0.111510791366906 +60014104002,310634,0.11046511627907 +60014104002,316144,0.125 +60014104002,316146,0.13953488372093 +60014104002,321430,0.0784883720930233 +60014104002,323582,0.122093023255814 +60014104002,323583,0.0784883720930233 +60014104002,330458,0.130813953488372 +60014104002,331941,0.0872093023255814 +60014104002,333432,0.127906976744186 +60014104003,315279,0.0522022838499184 +60014104003,316190,0.0750407830342577 +60014104003,319388,0.137030995106036 +60014104003,319389,0.0489396411092985 +60014104003,319401,0.0489396411092985 +60014104003,320252,0.0244698205546493 +60014104003,323850,0.0603588907014682 +60014104003,324336,0.203915171288744 +60014104003,325223,0.0473083197389886 +60014104003,325898,0.117455138662316 +60014104003,325899,0.176182707993475 +60014104003,332442,0.00815660685154975 +60014105001,310645,0.0601415094339623 +60014105001,310648,0.0400943396226415 +60014105001,311111,0 +60014105001,311511,0 +60014105001,311779,0.00235849056603774 +60014105001,312170,0.044811320754717 +60014105001,315979,0.0306603773584906 +60014105001,316253,0 +60014105001,316871,0.128537735849057 +60014105001,316913,0 +60014105001,318269,0.354952830188679 +60014105001,318273,0.0754716981132075 +60014105001,318655,0.00589622641509434 +60014105001,324538,0 +60014105001,327892,0 +60014105001,328056,0.0566037735849057 +60014105001,329116,0.162735849056604 +60014105001,331315,0.0377358490566038 +60014201001,310519,0.0873015873015873 +60014201001,317040,0.161375661375661 +60014201001,317711,0.100529100529101 +60014201001,321819,0.00264550264550265 +60014201001,322642,0.21957671957672 +60014201001,322644,0.0978835978835979 +60014201001,327919,0.12962962962963 +60014201001,327920,0.0952380952380952 +60014201001,327921,0.105820105820106 +60014201001,330703,0 +60014201002,312322,0.147482014388489 +60014201002,312966,0.212230215827338 +60014201002,314481,0.169064748201439 +60014201002,314482,0.115107913669065 +60014201002,317716,0.136690647482014 +60014201002,328516,0.115107913669065 +60014201002,331320,0.10431654676259 +60014201003,312667,0.15948275862069 +60014201003,314483,0.176724137931034 +60014201003,317045,0.133620689655172 +60014201003,317049,0.107758620689655 +60014201003,318380,0.172413793103448 +60014201003,328515,0.129310344827586 +60014201003,328685,0.120689655172414 +60014202001,311175,0.00809716599190283 +60014202001,312001,0.0222672064777328 +60014202001,314471,0.131578947368421 +60014202001,314477,0.107287449392713 +60014202001,317034,0.105263157894737 +60014202001,317036,0.0910931174089069 +60014202001,317037,0.0647773279352227 +60014202001,322641,0.0991902834008097 +60014202001,327914,0.11336032388664 +60014202001,328677,0.192307692307692 +60014202001,328679,0.0647773279352227 +60014202002,312666,0.0802469135802469 +60014202002,314478,0.095679012345679 +60014202002,314479,0.0864197530864197 +60014202002,317038,0.095679012345679 +60014202002,317039,0.148148148148148 +60014202002,322643,0.166666666666667 +60014202002,327917,0.095679012345679 +60014202002,328683,0.0925925925925926 +60014202002,330706,0.138888888888889 +60014202003,312664,0.107769423558897 +60014202003,314472,0.170426065162907 +60014202003,314475,0.200501253132832 +60014202003,321829,0.12531328320802 +60014202003,322547,0.06265664160401 +60014202003,322645,0.12280701754386 +60014202003,328522,0.100250626566416 +60014202003,330704,0.110275689223058 +60014203001,311999,0.0650793650793651 +60014203001,312000,0.0698412698412698 +60014203001,312002,0.0380952380952381 +60014203001,312970,0.073015873015873 +60014203001,312972,0.101587301587302 +60014203001,317035,0.0619047619047619 +60014203001,317676,0.0714285714285714 +60014203001,317747,0.053968253968254 +60014203001,317748,0.0984126984126984 +60014203001,318346,0.134920634920635 +60014203001,322657,0.0666666666666667 +60014203001,327915,0.053968253968254 +60014203001,328680,0.111111111111111 +60014203002,310691,1 +60014203003,0,0 +60014203003,311996,0 +60014203003,314026,0.0959752321981424 +60014203003,314470,0.102167182662539 +60014203003,316338,0.176470588235294 +60014203003,317674,0.120743034055728 +60014203003,320119,0.0990712074303406 +60014203003,327913,0.188854489164087 +60014203003,328525,0.102167182662539 +60014203003,333595,0.114551083591331 +60014204001,0,0 +60014204001,310523,0.0219378427787934 +60014204001,310992,0 +60014204001,317419,0.000914076782449726 +60014204001,328096,0.311700182815356 +60014204001,329142,0.0310786106032907 +60014204001,330702,0.63436928702011 +60014205001,311638,0.220670391061453 +60014205001,312682,0.181564245810056 +60014205001,314245,0.0893854748603352 +60014205001,317041,0.192737430167598 +60014205001,318352,0.181564245810056 +60014205001,321911,0.134078212290503 +60014205002,311342,0.0557491289198606 +60014205002,312669,0.0993031358885017 +60014205002,314480,0.113240418118467 +60014205002,317043,0.104529616724739 +60014205002,317044,0.0958188153310105 +60014205002,317047,0.101045296167247 +60014205002,317718,0.168989547038328 +60014205002,318366,0.0470383275261324 +60014205002,322530,0.14808362369338 +60014205002,329721,0.0662020905923345 +60014206001,313658,0.033203125 +60014206001,314232,0.052734375 +60014206001,314485,0.060546875 +60014206001,314656,0.0703125 +60014206001,314667,0.07421875 +60014206001,314818,0.04296875 +60014206001,316340,0.08203125 +60014206001,317751,0.123046875 +60014206001,318382,0.0703125 +60014206001,319035,0.080078125 +60014206001,319214,0.083984375 +60014206001,322562,0.041015625 +60014206001,322568,0.119140625 +60014206001,328694,0.06640625 +60014206002,311630,0.0463768115942029 +60014206002,311639,0.150724637681159 +60014206002,312304,0.147826086956522 +60014206002,313335,0.23768115942029 +60014206002,314244,0.0376811594202899 +60014206002,319034,0.0956521739130435 +60014206002,322655,0.208695652173913 +60014206002,331330,0.0753623188405797 +60014206003,310702,0.185446009389671 +60014206003,312307,0.0751173708920188 +60014206003,312668,0.152582159624413 +60014206003,313333,0.10093896713615 +60014206003,317744,0.0727699530516432 +60014206003,322648,0.185446009389671 +60014206003,328686,0.133802816901408 +60014206003,328687,0.0938967136150235 +60014211001,310932,0.135483870967742 +60014211001,311176,0.164516129032258 +60014211001,318910,0.190322580645161 +60014211001,328531,0.187096774193548 +60014211001,332007,0.180645161290323 +60014211001,332933,0.141935483870968 +60014211002,315133,0.103383458646617 +60014211002,315313,0.12218045112782 +60014211002,317754,0.12781954887218 +60014211002,317755,0.114661654135338 +60014211002,321045,0.0451127819548872 +60014211002,321050,0.0225563909774436 +60014211002,321051,0.199248120300752 +60014211002,328530,0.107142857142857 +60014211002,329302,0.120300751879699 +60014211002,332016,0.037593984962406 +60014212001,0,0 +60014212001,310931,0.10431654676259 +60014212001,310933,0.133093525179856 +60014212001,311184,0.0359712230215827 +60014212001,314659,0.20863309352518 +60014212001,316339,0.115107913669065 +60014212001,317753,0.122302158273381 +60014212001,329299,0.18705035971223 +60014212001,332005,0.0935251798561151 +60014212002,310935,0.11787072243346 +60014212002,313662,0.00760456273764259 +60014212002,314829,0.0703422053231939 +60014212002,315128,0.096958174904943 +60014212002,315129,0.0836501901140684 +60014212002,315132,0.091254752851711 +60014212002,315318,0.100760456273764 +60014212002,317757,0.0627376425855513 +60014212002,317759,0.129277566539924 +60014212002,321049,0.100760456273764 +60014212002,329127,0.0285171102661597 +60014212002,330696,0.110266159695817 +60014212003,312979,0.254071661237785 +60014212003,314655,0.153094462540717 +60014212003,317749,0.185667752442997 +60014212003,328284,0.159609120521173 +60014212003,328520,0.0944625407166124 +60014212003,328526,0.153094462540717 +60014212004,312967,0.297450424929178 +60014212004,318355,0.127478753541076 +60014212004,321896,0.195467422096317 +60014212004,324169,0.0963172804532578 +60014212004,328692,0.107648725212465 +60014212004,329298,0.0934844192634561 +60014212004,332004,0.0821529745042493 +60014213001,310516,0.153846153846154 +60014213001,310926,0.0873180873180873 +60014213001,310927,0.0395010395010395 +60014213001,313331,0.0623700623700624 +60014213001,314669,0.0769230769230769 +60014213001,317752,0.051975051975052 +60014213001,319029,0.0582120582120582 +60014213001,319036,0.0852390852390852 +60014213001,327648,0.0436590436590437 +60014213001,328690,0.0852390852390852 +60014213001,331331,0.112266112266112 +60014213001,331335,0.143451143451143 +60014213002,313330,0.0387755102040816 +60014213002,313332,0.0979591836734694 +60014213002,314484,0.0959183673469388 +60014213002,322651,0.0571428571428571 +60014213002,322656,0.0510204081632653 +60014213002,322661,0.13469387755102 +60014213002,328521,0.0959183673469388 +60014213002,328693,0.0571428571428571 +60014213002,331325,0.159183673469388 +60014213002,331326,0.0591836734693878 +60014213002,331328,0.0755102040816327 +60014213002,331332,0.0775510204081633 +60014213002,331333,0 +60014213003,312323,0.041343669250646 +60014213003,312974,0.0956072351421189 +60014213003,313657,0.304909560723514 +60014213003,315131,0.0956072351421189 +60014213003,315314,0.10077519379845 +60014213003,326393,0.0930232558139535 +60014213003,328695,0.10077519379845 +60014213003,332011,0.062015503875969 +60014213003,332937,0.10594315245478 +60014213004,310696,0.136942675159236 +60014213004,310701,0.0414012738853503 +60014213004,310944,0.0859872611464968 +60014213004,314657,0.111464968152866 +60014213004,314658,0.0987261146496815 +60014213004,315122,0.0700636942675159 +60014213004,315124,0.0859872611464968 +60014213004,317428,0.0573248407643312 +60014213004,328528,0.101910828025478 +60014213004,330343,0.0955414012738853 +60014213004,331336,0.114649681528662 +60014214001,315837,0.128608923884514 +60014214001,317679,0.207349081364829 +60014214001,317758,0.152230971128609 +60014214001,317760,0.120734908136483 +60014214001,318491,0.165354330708661 +60014214001,329134,0.0971128608923885 +60014214001,329136,0.089238845144357 +60014214001,329305,0.0393700787401575 +60014214002,311628,0 +60014214002,311634,0.131205673758865 +60014214002,312976,0.180851063829787 +60014214002,315136,0.163120567375887 +60014214002,317677,0.152482269503546 +60014214002,329128,0.109929078014184 +60014214002,332012,0.26241134751773 +60014215001,316342,0.055045871559633 +60014215001,316540,0.168807339449541 +60014215001,318911,0.0697247706422018 +60014215001,329730,0.161467889908257 +60014215001,329901,0.212844036697248 +60014215001,330327,0.0770642201834862 +60014215001,330511,0.0697247706422018 +60014215001,333302,0.115596330275229 +60014215001,333309,0.0495412844036697 +60014215001,333957,0.0201834862385321 +60014215002,315135,0.10916179337232 +60014215002,316541,0.0838206627680312 +60014215002,317680,0.0935672514619883 +60014215002,318374,0.087719298245614 +60014215002,322499,0.111111111111111 +60014215002,329307,0.115009746588694 +60014215002,329729,0.126705653021442 +60014215002,330510,0.0682261208576998 +60014215002,332017,0.0467836257309941 +60014215002,333297,0.157894736842105 +60014215003,0,0 +60014215003,319046,0.0925553319919517 +60014215003,319212,0.154929577464789 +60014215003,322674,0.185110663983903 +60014215003,325364,0.100603621730382 +60014215003,329731,0.0543259557344064 +60014215003,333299,0.0663983903420523 +60014215003,333786,0.346076458752515 +60014216001,310937,0.16144578313253 +60014216001,314231,0.110843373493976 +60014216001,317240,0.139759036144578 +60014216001,317667,0.293975903614458 +60014216001,322672,0.134939759036145 +60014216001,324380,0.0698795180722892 +60014216001,327911,0.0506024096385542 +60014216001,331137,0.0385542168674699 +60014216002,310033,0.0489795918367347 +60014216002,319047,0.204081632653061 +60014216002,319049,0.0836734693877551 +60014216002,319226,0.116326530612245 +60014216002,320321,0.136734693877551 +60014216002,322675,0.148979591836735 +60014216002,323681,0.063265306122449 +60014216002,328092,0.0591836734693878 +60014216002,328283,0.0795918367346939 +60014216002,331136,0.0591836734693878 +60014216003,311344,0.245714285714286 +60014216003,315838,0.08 +60014216003,316542,0.154285714285714 +60014216003,331138,0.108571428571429 +60014216003,331139,0.185714285714286 +60014216003,332473,0.0828571428571429 +60014216003,333300,0.142857142857143 +60014216004,318383,0.239520958083832 +60014216004,323678,0.176646706586826 +60014216004,327907,0.182634730538922 +60014216004,330328,0.0898203592814371 +60014216004,330329,0.0538922155688623 +60014216004,331140,0.158682634730539 +60014216004,333310,0.0988023952095808 +60014217001,312011,0.137254901960784 +60014217001,313340,0.0799396681749623 +60014217001,321071,0 +60014217001,321075,0.0377073906485671 +60014217001,321076,0.0678733031674208 +60014217001,324181,0.0603318250377074 +60014217001,325065,0.0361990950226244 +60014217001,327655,0.129713423831071 +60014217001,329308,0.0588235294117647 +60014217001,331596,0.0844645550527904 +60014217001,331600,0.0588235294117647 +60014217001,332471,0.149321266968326 +60014217001,332472,0.0995475113122172 +60014217002,314206,0.167582417582418 +60014217002,320122,0.192307692307692 +60014217002,320663,0.25 +60014217002,321074,0.0274725274725275 +60014217002,321077,0.17032967032967 +60014217002,325538,0.043956043956044 +60014217002,331603,0.148351648351648 +60014217003,311354,0.193784277879342 +60014217003,317947,0.160877513711152 +60014217003,320664,0.151736745886654 +60014217003,321078,0.186471663619744 +60014217003,331602,0.0402193784277879 +60014217003,331604,0.16636197440585 +60014217003,333601,0.10054844606947 +60014218001,313341,0.134657836644592 +60014218001,314189,0.0971302428256071 +60014218001,314207,0.0971302428256071 +60014218001,317949,0.105960264900662 +60014218001,320660,0.119205298013245 +60014218001,320661,0.116997792494481 +60014218001,321843,0.17439293598234 +60014218001,323692,0.0750551876379691 +60014218001,330971,0.0794701986754967 +60014218002,310700,0.0577367205542725 +60014218002,314187,0.196304849884527 +60014218002,319432,0.0531177829099307 +60014218002,319926,0 +60014218002,319927,0.122401847575058 +60014218002,319928,0.131639722863741 +60014218002,322559,0.0877598152424942 +60014218002,322849,0.0554272517321016 +60014218002,323695,0.177829099307159 +60014218002,330698,0.117782909930716 +60014219001,310028,0.0906735751295337 +60014219001,310527,0.101036269430052 +60014219001,310945,0.139896373056995 +60014219001,316535,0.0958549222797927 +60014219001,316537,0.137305699481865 +60014219001,319043,0.0854922279792746 +60014219001,319611,0.0803108808290155 +60014219001,329733,0.116580310880829 +60014219001,330344,0.0803108808290156 +60014219001,330525,0.0725388601036269 +60014219002,317249,0.0703933747412008 +60014219002,318390,0.236024844720497 +60014219002,319217,0.0745341614906832 +60014219002,322668,0.0662525879917184 +60014219002,322850,0.0496894409937888 +60014219002,323693,0 +60014219002,329724,0.0372670807453416 +60014219002,329735,0.101449275362319 +60014219002,330345,0.128364389233954 +60014219002,330950,0.105590062111801 +60014219002,333308,0.130434782608696 +60014219003,316536,0.208333333333333 +60014219003,317421,0.0324074074074074 +60014219003,318369,0.0949074074074074 +60014219003,322487,0.243055555555556 +60014219003,322488,0.131944444444444 +60014219003,322506,0.0439814814814815 +60014219003,332673,0.108796296296296 +60014219003,333306,0.136574074074074 +60014219004,313656,0.105670103092784 +60014219004,313659,0.0747422680412371 +60014219004,314487,0.103092783505155 +60014219004,315845,0.115979381443299 +60014219004,316729,0.095360824742268 +60014219004,317420,0.0541237113402062 +60014219004,318365,0.0850515463917526 +60014219004,318367,0.077319587628866 +60014219004,321061,0.0902061855670103 +60014219004,321062,0.0902061855670103 +60014219004,321832,0.0902061855670103 +60014219004,332668,0.0180412371134021 +60014220001,0,0 +60014220001,310030,0.0252873563218391 +60014220001,310032,0.0482758620689655 +60014220001,312012,0 +60014220001,312316,0.00229885057471264 +60014220001,313345,0 +60014220001,314227,0 +60014220001,314234,0 +60014220001,314240,0.0390804597701149 +60014220001,314242,0 +60014220001,314813,0.149425287356322 +60014220001,315327,0.0528735632183908 +60014220001,315850,0.00919540229885057 +60014220001,316035,0 +60014220001,316527,0.0344827586206897 +60014220001,316531,0.0206896551724138 +60014220001,316533,0.00689655172413793 +60014220001,317255,0.0252873563218391 +60014220001,317691,0.0873563218390805 +60014220001,317695,0.00689655172413793 +60014220001,317696,0 +60014220001,318151,0 +60014220001,318371,0 +60014220001,318375,0 +60014220001,318505,0.00689655172413793 +60014220001,318506,0.0275862068965517 +60014220001,319041,0 +60014220001,319213,0.0459770114942529 +60014220001,319608,0.00229885057471264 +60014220001,319609,0.0114942528735632 +60014220001,320873,0 +60014220001,321791,0.0229885057471264 +60014220001,322492,0 +60014220001,322494,0 +60014220001,322505,0.00459770114942529 +60014220001,324178,0.0390804597701149 +60014220001,324665,0 +60014220001,325076,0.00919540229885057 +60014220001,325358,0.00229885057471264 +60014220001,326388,0 +60014220001,327053,0 +60014220001,327652,0 +60014220001,327906,0 +60014220001,329899,0 +60014220001,329900,0.0597701149425287 +60014220001,330514,0.0229885057471264 +60014220001,330519,0 +60014220001,331621,0.0275862068965517 +60014220001,332482,0.0896551724137931 +60014220001,332678,0.0850574712643678 +60014220001,332679,0.0344827586206897 +60014220001,332930,0 +60014220002,310031,0 +60014220002,311631,0 +60014220002,312314,0.0129310344827586 +60014220002,314236,0.00862068965517241 +60014220002,314238,0 +60014220002,314807,0 +60014220002,314827,0 +60014220002,315840,0 +60014220002,315841,0 +60014220002,315842,0 +60014220002,315843,0.0905172413793103 +60014220002,315847,0.0258620689655172 +60014220002,315848,0 +60014220002,316343,0 +60014220002,316716,0 +60014220002,317416,0.0689655172413793 +60014220002,317418,0 +60014220002,318150,0 +60014220002,318357,0 +60014220002,318358,0 +60014220002,318359,0.0172413793103448 +60014220002,318360,0.0517241379310345 +60014220002,318495,0.0387931034482759 +60014220002,318498,0 +60014220002,318503,0.0258620689655172 +60014220002,319429,0 +60014220002,320127,0 +60014220002,321053,0.0129310344827586 +60014220002,321059,0.00431034482758621 +60014220002,321826,0 +60014220002,323975,0 +60014220002,323987,0 +60014220002,323989,0.176724137931034 +60014220002,324870,0 +60014220002,329312,0 +60014220002,329313,0 +60014220002,329314,0 +60014220002,329726,0 +60014220002,329886,0.0517241379310345 +60014220002,329896,0.185344827586207 +60014220002,332021,0 +60014220002,332665,0.0172413793103448 +60014220002,332667,0.142241379310345 +60014220002,332676,0 +60014220002,332936,0.0689655172413793 +60014221001,316038,0.203342618384401 +60014221001,318362,0.172701949860724 +60014221001,318499,0.0222841225626741 +60014221001,321063,0.0752089136490251 +60014221001,321821,0.122562674094708 +60014221001,324882,0.0612813370473538 +60014221001,329718,0.239554317548747 +60014221001,329722,0.103064066852368 +60014221002,310036,0.0370860927152318 +60014221002,310529,0.0847682119205298 +60014221002,310705,0.056953642384106 +60014221002,313655,0.0264900662251656 +60014221002,314230,0.0529801324503311 +60014221002,314823,0.0529801324503311 +60014221002,314824,0.0264900662251656 +60014221002,315846,0.0450331125827815 +60014221002,315852,0.0596026490066225 +60014221002,315853,0.0635761589403974 +60014221002,318148,0.0543046357615894 +60014221002,319426,0.0384105960264901 +60014221002,320872,0.0768211920529801 +60014221002,322564,0.0503311258278146 +60014221002,322575,0.0317880794701987 +60014221002,326396,0.0754966887417219 +60014221002,329897,0.0529801324503311 +60014221002,332674,0.0596026490066225 +60014221002,332680,0.0543046357615894 +60014222001,310035,0.0613861386138614 +60014222001,310993,0.0396039603960396 +60014222001,311343,0.152475247524752 +60014222001,311637,0.0594059405940594 +60014222001,314237,0.0514851485148515 +60014222001,314806,0.0752475247524752 +60014222001,316036,0.0792079207920792 +60014222001,317250,0.0752475247524752 +60014222001,318378,0.0653465346534653 +60014222001,319045,0.120792079207921 +60014222001,319218,0.0613861386138614 +60014222001,322561,0 +60014222001,324875,0.0514851485148515 +60014222001,330341,0.106930693069307 +60014222002,311352,0.105708245243129 +60014222002,312010,0.200845665961945 +60014222002,314037,0.0951374207188161 +60014222002,314190,0.0613107822410148 +60014222002,322853,0.135306553911205 +60014222002,324367,0.06553911205074 +60014222002,324368,0.109936575052854 +60014222002,324375,0.147991543340381 +60014222002,331815,0.0782241014799154 +60014222003,310513,0.0655737704918033 +60014222003,312313,0.194899817850638 +60014222003,318508,0.198542805100182 +60014222003,319044,0.0601092896174863 +60014222003,320124,0.143897996357013 +60014222003,322496,0.183970856102004 +60014222003,322852,0.10200364298725 +60014222003,323698,0.0510018214936248 +60014223001,310697,0.0817307692307692 +60014223001,314208,0.0865384615384615 +60014223001,314811,0.0985576923076923 +60014223001,314817,0.0865384615384615 +60014223001,317948,0.149038461538462 +60014223001,321073,0.15625 +60014223001,322851,0.105769230769231 +60014223001,332469,0.09375 +60014223001,332470,0.141826923076923 +60014223002,312003,0.0417310664605873 +60014223002,314029,0.1112828438949 +60014223002,314031,0.0525502318392581 +60014223002,314209,0.0865533230293663 +60014223002,314229,0.0649149922720247 +60014223002,317257,0.0850077279752705 +60014223002,319437,0.044822256568779 +60014223002,319929,0.0633693972179289 +60014223002,320668,0.080370942812983 +60014223002,321072,0.0989180834621329 +60014223002,330954,0.0880989180834621 +60014223002,331598,0.182380216383308 +60014223003,310997,0.135451505016722 +60014223003,314032,0.137123745819398 +60014223003,314193,0.0903010033444816 +60014223003,317956,0.0936454849498328 +60014223003,318377,0.112040133779264 +60014223003,319933,0.0769230769230769 +60014223003,322860,0.239130434782609 +60014223003,324174,0.115384615384615 +60014224001,311633,0.122540250447227 +60014224001,312014,0.0465116279069767 +60014224001,314030,0.135062611806798 +60014224001,314253,0.0241502683363149 +60014224001,317953,0.298747763864043 +60014224001,321834,0.244186046511628 +60014224001,324172,0.0858676207513417 +60014224001,331607,0.0429338103756708 +60014224002,310990,0.04375 +60014224002,312015,0.0166666666666667 +60014224002,314241,0.125 +60014224002,317717,0.347916666666667 +60014224002,321079,0.302083333333333 +60014224002,321085,0.0875 +60014224002,321908,0.0770833333333333 +60014224003,313346,0.235 +60014224003,317683,0.00333333333333333 +60014224003,317950,0.128333333333333 +60014224003,317951,0.13 +60014224003,320131,0.141666666666667 +60014224003,325066,0.131666666666667 +60014224003,331605,0.116666666666667 +60014224003,333597,0.113333333333333 +60014225001,310936,0.0243055555555556 +60014225001,310938,0.118055555555556 +60014225001,317239,0.137152777777778 +60014225001,319050,0.204861111111111 +60014225001,319051,0.163194444444444 +60014225001,320318,0.149305555555556 +60014225001,330330,0.137152777777778 +60014225001,331142,0.0659722222222222 +60014225002,310532,0.162393162393162 +60014225002,317241,0.47008547008547 +60014225002,319920,0.0555555555555556 +60014225002,330333,0.311965811965812 +60014225003,319052,0.128104575163399 +60014225003,320319,0.0483660130718954 +60014225003,322676,0.308496732026144 +60014225003,323679,0.152941176470588 +60014225003,323680,0.151633986928105 +60014225003,324165,0.129411764705882 +60014225003,328288,0.0339869281045752 +60014225003,330331,0.0470588235294118 +60014225003,331143,0 +60014226001,310517,0 +60014226001,310986,0 +60014226001,311345,0 +60014226001,311356,0 +60014226001,312681,0.25 +60014226001,313344,0.0833333333333333 +60014226001,314221,0 +60014226001,325068,0.666666666666667 +60014226001,332270,0 +60014227001,311181,0.196374622356495 +60014227001,313856,0.232628398791541 +60014227001,321842,0.498489425981873 +60014227001,331821,0.0725075528700906 +60014227002,314194,0.565853658536585 +60014227002,314815,0.195121951219512 +60014227002,321065,0.165853658536585 +60014227002,324381,0.0731707317073171 +60014227003,310534,0.0638852672750978 +60014227003,310695,0.271186440677966 +60014227003,310942,0.254237288135593 +60014227003,322848,0.135593220338983 +60014227003,324866,0.113428943937419 +60014227003,331146,0.161668839634941 +60014228001,310027,0 +60014228001,317243,0.0926517571884984 +60014228001,317245,0.166134185303514 +60014228001,317246,0.182108626198083 +60014228001,323686,0.34185303514377 +60014228001,323687,0.0479233226837061 +60014228001,330335,0.169329073482428 +60014228002,310025,0.547112462006079 +60014228002,317242,0 +60014228002,322842,0.00303951367781155 +60014228002,333797,0.449848024316109 +60014228003,310022,0.00544069640914037 +60014228003,310023,0.0565832426550598 +60014228003,310939,0.0914036996735582 +60014228003,319227,0.058759521218716 +60014228003,319921,0.072905331882481 +60014228003,319922,0.0565832426550598 +60014228003,322677,0.227421109902067 +60014228003,322678,0.187159956474429 +60014228003,322679,0.243743199129489 +60014229001,311643,0.143016759776536 +60014229001,312679,0.198882681564246 +60014229001,315322,0.179888268156425 +60014229001,315325,0.173184357541899 +60014229001,317962,0 +60014229001,324888,0.0223463687150838 +60014229001,325073,0.164245810055866 +60014229001,326400,0.118435754189944 +60014229002,310703,0.0219594594594595 +60014229002,310998,0.0304054054054054 +60014229002,312309,0.126689189189189 +60014229002,314042,0 +60014229002,314666,0 +60014229002,314801,0.146114864864865 +60014229002,315320,0.0413851351351351 +60014229002,315321,0.00844594594594595 +60014229002,317689,0.0177364864864865 +60014229002,319433,0.155405405405405 +60014229002,320675,0 +60014229002,320874,0.0481418918918919 +60014229002,321812,0.0751689189189189 +60014229002,321822,0.108108108108108 +60014229002,325071,0.0920608108108108 +60014229002,330699,0.0194256756756757 +60014229002,333790,0.108952702702703 +60014230001,310994,0.0646029609690444 +60014230001,312004,0.0915208613728129 +60014230001,314033,0.11978465679677 +60014230001,314034,0.113055181695828 +60014230001,317259,0.173620457604307 +60014230001,320667,0.0699865410497981 +60014230001,321901,0.044414535666218 +60014230001,321902,0.0417227456258412 +60014230001,324378,0.0995962314939435 +60014230001,325069,0.118438761776581 +60014230001,332475,0.063257065948856 +60014230002,314035,0.0967741935483871 +60014230002,314660,0.091164095371669 +60014230002,314662,0.0869565217391304 +60014230002,317685,0.0799438990182328 +60014230002,317687,0.0490883590462833 +60014230002,320672,0.0897615708274895 +60014230002,321081,0.091164095371669 +60014230002,321082,0.0673211781206171 +60014230002,321083,0.0785413744740533 +60014230002,321084,0.0743338008415147 +60014230002,331611,0.105189340813464 +60014230002,332478,0.0897615708274895 +60014230003,312005,0.0845528455284553 +60014230003,313338,0.0634146341463415 +60014230003,317688,0.0780487804878049 +60014230003,317946,0.0682926829268293 +60014230003,317955,0.100813008130081 +60014230003,324184,0.0731707317073171 +60014230003,330959,0.0764227642276423 +60014230003,330970,0.0682926829268293 +60014230003,331610,0.100813008130081 +60014230003,332468,0.0780487804878049 +60014230003,333592,0.0634146341463415 +60014230003,334484,0.144715447154472 +60014231001,311347,0.0854591836734694 +60014231001,311355,0.0369897959183673 +60014231001,318909,0.119897959183673 +60014231001,320864,0.156887755102041 +60014231001,322854,0.302295918367347 +60014231001,324376,0.0892857142857143 +60014231001,327034,0.114795918367347 +60014231001,330697,0.0357142857142857 +60014231001,330955,0.0586734693877551 +60014231002,311348,0.125382262996942 +60014231002,319930,0.119266055045872 +60014231002,319932,0.318042813455657 +60014231002,324370,0.186544342507645 +60014231002,324879,0.0948012232415902 +60014231002,331816,0.155963302752294 +60014231003,310034,0.128272251308901 +60014231003,319931,0.115183246073298 +60014231003,322856,0.115183246073298 +60014231003,324372,0.128272251308901 +60014231003,324379,0.112565445026178 +60014231003,327909,0.18848167539267 +60014231003,331818,0.115183246073298 +60014231003,333603,0.0968586387434555 +60014231004,311350,0.0985915492957746 +60014231004,314192,0.171830985915493 +60014231004,317256,0.115492957746479 +60014231004,322857,0.109859154929577 +60014231004,322858,0.101408450704225 +60014231004,322862,0.140845070422535 +60014231004,331817,0.135211267605634 +60014231004,332467,0.126760563380282 +60014232001,314251,0.226 +60014232001,315854,0.068 +60014232001,316526,0.1 +60014232001,317719,0.122 +60014232001,318510,0.118 +60014232001,319038,0.06 +60014232001,319039,0.154 +60014232001,321817,0.046 +60014232001,325363,0.018 +60014232001,327657,0.008 +60014232001,331149,0.056 +60014232001,332682,0.024 +60014232002,311349,0.0606585788561525 +60014232002,312318,0.0849220103986135 +60014232002,313654,0.0693240901213172 +60014232002,316525,0.20103986135182 +60014232002,318163,0.072790294627383 +60014232002,319607,0.12998266897747 +60014232002,321913,0.10051993067591 +60014232002,327910,0.107452339688042 +60014232002,332487,0.121317157712305 +60014232002,333304,0.0519930675909879 +60014233001,311627,0.052536231884058 +60014233001,312677,0.0742753623188406 +60014233001,312680,0.0978260869565217 +60014233001,313336,0.161231884057971 +60014233001,316031,0.0688405797101449 +60014233001,318712,0.0978260869565217 +60014233001,320678,0.0670289855072464 +60014233001,321823,0.0942028985507246 +60014233001,324373,0.0652173913043478 +60014233001,325707,0.0833333333333333 +60014233001,325708,0.0742753623188406 +60014233001,332259,0.0634057971014493 +60014233002,310310,0.0642054574638844 +60014233002,315330,0.0481540930979133 +60014233002,316032,0.0754414125200642 +60014233002,316721,0.0449438202247191 +60014233002,318714,0.245585874799358 +60014233002,318715,0.128410914927769 +60014233002,321792,0.0529695024077047 +60014233002,321795,0.0609951845906902 +60014233002,322549,0.0465489566613162 +60014233002,325077,0.0481540930979133 +60014233002,332262,0.118780096308186 +60014233002,332484,0.0658105939004815 +60014233003,310308,0.0919282511210762 +60014233003,311647,0.031390134529148 +60014233003,314826,0.0874439461883408 +60014233003,316028,0.062780269058296 +60014233003,316722,0.233183856502242 +60014233003,317694,0.0538116591928251 +60014233003,320861,0.0762331838565022 +60014233003,325539,0.143497757847534 +60014233003,325543,0.047085201793722 +60014233003,325709,0.0874439461883408 +60014233003,332260,0.0852017937219731 +60014234001,314661,0.10126582278481 +60014234001,314663,0.147679324894515 +60014234001,317958,0.122362869198312 +60014234001,317959,0.143459915611814 +60014234001,321069,0.160337552742616 +60014234001,321827,0.0738396624472574 +60014234001,331612,0.0717299578059072 +60014234001,333593,0.179324894514768 +60014234002,310324,0.135869565217391 +60014234002,310325,0.0951086956521739 +60014234002,314213,0.130434782608696 +60014234002,314214,0.144021739130435 +60014234002,315323,0.119565217391304 +60014234002,318158,0.130434782608696 +60014234002,321818,0.135869565217391 +60014234002,327651,0.108695652173913 +60014234003,310326,0.0694006309148265 +60014234003,314215,0.0583596214511041 +60014234003,314216,0.0804416403785489 +60014234003,314218,0.0520504731861199 +60014234003,318725,0.0709779179810726 +60014234003,318726,0.105678233438486 +60014234003,322531,0.0741324921135647 +60014234003,322532,0.0867507886435331 +60014234003,322533,0.105678233438486 +60014234003,323982,0.0678233438485804 +60014234003,323986,0 +60014234003,325710,0.138801261829653 +60014234003,332941,0.0899053627760252 +60014234004,310327,0.0903846153846154 +60014234004,314219,0.123076923076923 +60014234004,318727,0.146153846153846 +60014234004,324890,0.230769230769231 +60014234004,325711,0.0942307692307692 +60014234004,332275,0.142307692307692 +60014234004,333113,0.0711538461538462 +60014234004,333122,0.101923076923077 +60014235001,310991,0 +60014235001,310999,0.0559322033898305 +60014235001,315324,0.088135593220339 +60014235001,318381,0.0915254237288136 +60014235001,319434,0.288135593220339 +60014235001,320123,0.127118644067797 +60014235001,321790,0.0830508474576271 +60014235001,325074,0.106779661016949 +60014235001,331618,0.0796610169491525 +60014235001,333793,0.0796610169491525 +60014235002,310531,0.037940379403794 +60014235002,310979,0.124661246612466 +60014235002,312963,0.222222222222222 +60014235002,312978,0.149051490514905 +60014235002,317705,0.102981029810298 +60014235002,319613,0 +60014235002,319614,0.16260162601626 +60014235002,322536,0.0948509485094851 +60014235002,326382,0.02710027100271 +60014235002,326383,0.0785907859078591 +60014235003,311625,0.0519230769230769 +60014235003,314198,0.0826923076923077 +60014235003,314199,0.107692307692308 +60014235003,317706,0.132692307692308 +60014235003,317707,0.0673076923076923 +60014235003,320867,0.180769230769231 +60014235003,324661,0.15 +60014235003,324876,0.0942307692307692 +60014235003,332279,0.0269230769230769 +60014235003,333590,0.105769230769231 +60014236011,312006,0.131419939577039 +60014236011,312671,0.0513595166163142 +60014236011,314203,0.0709969788519638 +60014236011,319936,0.0694864048338369 +60014236011,324384,0.0740181268882175 +60014236011,324867,0.0906344410876133 +60014236011,325059,0.0876132930513595 +60014236011,327653,0.0438066465256798 +60014236011,330338,0.117824773413897 +60014236011,330965,0.0800604229607251 +60014236011,331148,0.110271903323263 +60014236011,331827,0.0725075528700906 +60014236012,312303,0.0606060606060606 +60014236012,312672,0.0965909090909091 +60014236012,314200,0.0852272727272727 +60014236012,319938,0.053030303030303 +60014236012,319939,0.0397727272727273 +60014236012,321067,0.0909090909090909 +60014236012,321068,0.125 +60014236012,324385,0.0852272727272727 +60014236012,324386,0.00946969696969697 +60014236012,325056,0.0909090909090909 +60014236012,325060,0.100378787878788 +60014236012,331826,0.111742424242424 +60014236012,331829,0.0511363636363636 +60014236021,317244,0.0434258142340169 +60014236021,323684,0.13751507840772 +60014236021,323685,0.240048250904704 +60014236021,330334,0.231604342581423 +60014236021,331144,0.156815440289505 +60014236021,331145,0.19059107358263 +60014236022,310694,0.142857142857143 +60014236022,319923,0.433293978748524 +60014236022,324667,0.0460448642266824 +60014236022,332940,0.377804014167651 +60014236023,310024,0.0921052631578947 +60014236023,310026,0.143540669856459 +60014236023,310940,0.0777511961722488 +60014236023,310941,0.0633971291866029 +60014236023,310943,0.139952153110048 +60014236023,320863,0.107655502392345 +60014236023,322843,0.062200956937799 +60014236023,322844,0.0287081339712919 +60014236023,330337,0.155502392344498 +60014236023,330340,0.129186602870813 +60014237001,310526,0.420353982300885 +60014237001,311635,0.221238938053097 +60014237001,312312,0.152654867256637 +60014237001,314830,0.0508849557522124 +60014237001,317668,0.154867256637168 +60014237002,312008,0.0642023346303502 +60014237002,314808,0.0194552529182879 +60014237002,318716,0.0700389105058366 +60014237002,318717,0.0642023346303502 +60014237002,320655,0.075875486381323 +60014237002,321804,0.165369649805447 +60014237002,321910,0.0175097276264591 +60014237002,324383,0.0622568093385214 +60014237002,325716,0.0603112840466926 +60014237002,330968,0.108949416342412 +60014237002,331828,0.126459143968872 +60014237002,332266,0 +60014237002,333114,0.165369649805447 +60014237003,314195,0.291375291375291 +60014237003,322863,0.149184149184149 +60014237003,323688,0.272727272727273 +60014237003,324382,0.118881118881119 +60014237003,331147,0.167832167832168 +60014238001,314220,0.416666666666667 +60014238001,318155,0.254166666666667 +60014238001,321808,0.0916666666666667 +60014238001,333130,0.2375 +60014238002,310320,0.071264367816092 +60014238002,310518,0.151724137931034 +60014238002,311358,0.0827586206896552 +60014238002,312302,0.124137931034483 +60014238002,314672,0.105747126436782 +60014238002,317702,0.110344827586207 +60014238002,325722,0.23448275862069 +60014238002,333784,0.119540229885057 +60014238003,310317,0.148342059336824 +60014238003,310318,0.0924956369982548 +60014238003,310530,0.153577661431065 +60014238003,312965,0.0541012216404887 +60014238003,314800,0.043630017452007 +60014238003,320128,0.0471204188481675 +60014238003,321802,0.209424083769634 +60014238003,321909,0.0855148342059337 +60014238003,322546,0.087260034904014 +60014238003,324685,0.0785340314136126 +60014239011,312009,0.17906976744186 +60014239011,314201,0.123255813953488 +60014239011,320118,0.172093023255814 +60014239011,321815,0.0674418604651163 +60014239011,321820,0.186046511627907 +60014239011,322539,0.109302325581395 +60014239011,325055,0.162790697674419 +60014239012,310528,0.143487858719647 +60014239012,312319,0.147902869757174 +60014239012,314228,0.0618101545253863 +60014239012,314810,0.0860927152317881 +60014239012,319417,0.0706401766004415 +60014239012,319419,0.0838852097130243 +60014239012,320324,0.0927152317880795 +60014239012,325540,0.112582781456954 +60014239012,326384,0.0883002207505519 +60014239012,333129,0.112582781456954 +60014239021,310536,0.192200557103064 +60014239021,312674,0.0668523676880223 +60014239021,312675,0.217270194986072 +60014239021,314205,0.178272980501393 +60014239021,317944,0.197771587743733 +60014239021,319941,0.0306406685236769 +60014239021,323976,0.0668523676880223 +60014239021,324673,0.0501392757660167 +60014239022,312676,0.125 +60014239022,314202,0.160714285714286 +60014239022,317942,0.130102040816327 +60014239022,319435,0.0510204081632653 +60014239022,320654,0 +60014239022,320656,0.10969387755102 +60014239022,330966,0.112244897959184 +60014239022,331824,0.0918367346938776 +60014239022,331825,0.219387755102041 +60014240011,310314,0.188622754491018 +60014240011,314224,0 +60014240011,322534,0.152694610778443 +60014240011,322535,0.251497005988024 +60014240011,325713,0.104790419161677 +60014240011,333123,0.176646706586826 +60014240011,333124,0.125748502994012 +60014240012,318728,0.203703703703704 +60014240012,318921,0.188888888888889 +60014240012,325725,0.32962962962963 +60014240012,332272,0.277777777777778 +60014240013,310988,0.159313725490196 +60014240013,310989,0.154411764705882 +60014240013,314223,0.330882352941176 +60014240013,318923,0.208333333333333 +60014240013,326379,0.147058823529412 +60014240014,310984,0.0857843137254902 +60014240014,312308,0.176470588235294 +60014240014,312968,0.0784313725490196 +60014240014,313661,0.00735294117647059 +60014240014,314816,0.159313725490196 +60014240014,319422,0.316176470588235 +60014240014,326381,0.0318627450980392 +60014240014,332273,0.144607843137255 +60014240021,310311,0.100204498977505 +60014240021,312321,0.351738241308793 +60014240021,316724,0.0961145194274029 +60014240021,325712,0.224948875255624 +60014240021,332264,0.0879345603271984 +60014240021,333083,0.0449897750511247 +60014240021,333112,0.0940695296523517 +60014240022,310315,0.0837320574162679 +60014240022,310323,0.253588516746411 +60014240022,314249,0.105263157894737 +60014240022,316723,0.143540669856459 +60014240022,317698,0.141148325358852 +60014240022,321801,0.136363636363636 +60014240022,325714,0.136363636363636 +60014251011,0,0 +60014251011,315525,1 +60014251012,315524,1 +60014251021,311302,0 +60014251021,311784,1 +60014251021,320822,0 +60014251022,322517,0 +60014251022,325035,1 +60014251022,329678,0 +60014251023,314635,0 +60014251023,315803,0 +60014251023,317011,0 +60014251023,318480,1 +60014251023,330667,0 +60014251031,310274,0 +60014251031,315432,0 +60014251031,315599,0 +60014251031,315799,0 +60014251031,315800,0 +60014251031,317197,0 +60014251031,322518,0.678304239401496 +60014251031,325029,0 +60014251031,329031,0.241895261845387 +60014251031,330486,0 +60014251031,331967,0.0798004987531172 +60014251031,332228,0 +60014251031,333441,0 +60014251032,310268,0.0119331742243437 +60014251032,315565,0 +60014251032,315802,0.293556085918854 +60014251032,316685,0.00954653937947494 +60014251032,316686,0.183770883054893 +60014251032,325023,0.0548926014319809 +60014251032,325897,0.210023866348449 +60014251032,331965,0.0190930787589499 +60014251032,332125,0.143198090692124 +60014251032,332825,0 +60014251032,333081,0.0739856801909308 +60014251032,333097,0 +60014251032,333438,0 +60014251033,316682,0.0504385964912281 +60014251033,316684,0.125 +60014251033,320085,0.182017543859649 +60014251033,320088,0.129385964912281 +60014251033,325022,0.114035087719298 +60014251033,325676,0.0416666666666667 +60014251033,325677,0.118421052631579 +60014251033,325875,0.116228070175439 +60014251033,325876,0.100877192982456 +60014251033,331091,0.0219298245614035 +60014251041,312463,0.0598726114649682 +60014251041,312826,0.205095541401274 +60014251041,314456,0.0942675159235669 +60014251041,317202,0.0878980891719745 +60014251041,320093,0.238216560509554 +60014251041,321477,0.132484076433121 +60014251041,325318,0.113375796178344 +60014251041,325847,0.0687898089171975 +60014251042,310483,0 +60014251042,311781,0.0819672131147541 +60014251042,311782,0.218969555035129 +60014251042,311783,0 +60014251042,312615,0.147540983606557 +60014251042,312616,0 +60014251042,312819,0.0550351288056206 +60014251042,313281,0.0175644028103044 +60014251042,313783,0 +60014251042,315568,0 +60014251042,316312,0.134660421545667 +60014251042,316663,0.00117096018735363 +60014251042,317194,0 +60014251042,318126,0.0374707259953162 +60014251042,318846,0 +60014251042,318996,0.00468384074941452 +60014251042,318997,0 +60014251042,321471,0.0281030444964871 +60014251042,321472,0.0362997658079625 +60014251042,324496,0 +60014251042,330937,0 +60014251042,331523,0.236533957845433 +60014251042,332127,0 +60014261001,311787,0.193633952254642 +60014261001,325655,0.13262599469496 +60014261001,326358,0.474801061007958 +60014261001,331441,0.122015915119363 +60014261001,333541,0.0769230769230769 +60014261002,316832,0.242424242424242 +60014261002,319691,0.151515151515152 +60014261002,321585,0.424242424242424 +60014261002,323906,0.162878787878788 +60014261002,329707,0.0189393939393939 +60014261003,311117,0.0803782505910166 +60014261003,311118,0.0780141843971631 +60014261003,311119,0.0567375886524823 +60014261003,311496,0.132387706855792 +60014261003,319692,0.0685579196217494 +60014261003,320986,0.0567375886524823 +60014261003,324816,0.125295508274232 +60014261003,325299,0.049645390070922 +60014261003,326996,0.160756501182033 +60014261003,333100,0.191489361702128 +60014261004,311785,0.16260162601626 +60014261004,320809,0.035230352303523 +60014261004,321549,0.0758807588075881 +60014261004,324109,0.303523035230352 +60014261004,327160,0.211382113821138 +60014261004,327167,0.211382113821138 +60014261005,313777,0.173076923076923 +60014261005,319006,0.0721153846153846 +60014261005,319558,0.199519230769231 +60014261005,319690,0.0408653846153846 +60014261005,320804,0.0889423076923077 +60014261005,320805,0.0336538461538462 +60014261005,320806,0.0600961538461538 +60014261005,321431,0.137019230769231 +60014261005,324110,0.110576923076923 +60014261005,324811,0.0841346153846154 +60014261006,311944,0.0711610486891386 +60014261006,317576,0.561797752808989 +60014261006,319686,0.161048689138577 +60014261006,331981,0.205992509363296 +60014262001,311963,0.10990990990991 +60014262001,312933,0.0738738738738739 +60014262001,312934,0.0774774774774775 +60014262001,314648,0.0666666666666667 +60014262001,315297,0.0702702702702703 +60014262001,320800,0.133333333333333 +60014262001,323668,0.0990990990990991 +60014262001,324106,0.0954954954954955 +60014262001,324108,0.0666666666666667 +60014262001,324617,0.0684684684684685 +60014262001,326521,0.0810810810810811 +60014262001,328236,0.0576576576576577 +60014262002,310672,0.0971830985915493 +60014262002,311284,0.0507042253521127 +60014262002,312647,0.0704225352112676 +60014262002,313311,0.0267605633802817 +60014262002,319555,0.153521126760563 +60014262002,320802,0.0591549295774648 +60014262002,321550,0.0577464788732394 +60014262002,323585,0.0873239436619718 +60014262002,323588,0.122535211267606 +60014262002,323809,0.0380281690140845 +60014262002,323902,0.00422535211267606 +60014262002,326522,0.0309859154929577 +60014262002,330246,0.0394366197183099 +60014262002,331439,0.0591549295774648 +60014262002,332607,0.102816901408451 +60014262003,311288,0.0738095238095238 +60014262003,311964,0.0523809523809524 +60014262003,312932,0.15952380952381 +60014262003,316470,0.0738095238095238 +60014262003,323808,0.0404761904761905 +60014262003,324841,0.119047619047619 +60014262003,328234,0.121428571428571 +60014262003,328235,0.161904761904762 +60014262003,328238,0.0833333333333333 +60014262003,330880,0.114285714285714 +60014271001,0,0 +60014271001,310017,0.0972568578553616 +60014271001,310919,0.124688279301746 +60014271001,311619,0.216957605985037 +60014271001,312496,0.029925187032419 +60014271001,313640,0.134663341645885 +60014271001,318898,0.0249376558603491 +60014271001,318901,0.0199501246882793 +60014271001,321038,0.129675810473815 +60014271001,325338,0.221945137157107 +60014271002,314016,0.271028037383178 +60014271002,314284,0.152647975077882 +60014271002,322618,0.264797507788162 +60014271002,325526,0.255451713395639 +60014271002,328857,0.0560747663551402 +60014271003,0,0 +60014271003,310689,0.038863976083707 +60014271003,311802,0.0284005979073244 +60014271003,314017,0.0881913303437967 +60014271003,314283,0.031390134529148 +60014271003,314285,0.150971599402093 +60014271003,314946,0.0403587443946188 +60014271003,317001,0.0298953662182362 +60014271003,317652,0.0523168908819133 +60014271003,322447,0.0657698056801196 +60014271003,322449,0.0343796711509716 +60014271003,322450,0.0792227204783259 +60014271003,325341,0.127055306427504 +60014271003,325344,0.0911808669656203 +60014271003,325525,0.0956651718983558 +60014271003,328866,0.0463378176382661 +60014272001,310916,0.0883838383838384 +60014272001,311162,0.0656565656565657 +60014272001,311992,0.267676767676768 +60014272001,318341,0.116161616161616 +60014272001,318345,0.184343434343434 +60014272001,322475,0.0227272727272727 +60014272001,324642,0.0883838383838384 +60014272001,326847,0.0378787878787879 +60014272001,329466,0.128787878787879 +60014272002,311159,0.112478031634446 +60014272002,311991,0.159929701230228 +60014272002,316332,0.0492091388400703 +60014272002,316713,0.175746924428822 +60014272002,317644,0.0650263620386643 +60014272002,324856,0.112478031634446 +60014272002,328276,0.181019332161687 +60014272002,330063,0.144112478031634 +60014272003,311155,0.0918918918918919 +60014272003,311156,0.0891891891891892 +60014272003,311157,0.121621621621622 +60014272003,311338,0.113513513513514 +60014272003,312486,0.124324324324324 +60014272003,314947,0.167567567567568 +60014272003,324637,0.0648648648648649 +60014272003,324849,0.0702702702702703 +60014272003,328867,0.156756756756757 +60014272004,310505,0.126923076923077 +60014272004,312499,0.0538461538461538 +60014272004,315643,0.196153846153846 +60014272004,315653,0.00769230769230769 +60014272004,323963,0.253846153846154 +60014272004,326000,0.0230769230769231 +60014272004,326005,0.2 +60014272004,328266,0.138461538461538 +60014272005,0,0 +60014272005,314282,0 +60014273001,312484,0.0693512304250559 +60014273001,312955,0.0782997762863535 +60014273001,315647,0.210290827740492 +60014273001,315650,0.158836689038031 +60014273001,317662,0.0782997762863535 +60014273001,317665,0.0738255033557047 +60014273001,318340,0.10738255033557 +60014273001,318902,0.0536912751677852 +60014273001,322443,0.10738255033557 +60014273001,323962,0.0626398210290828 +60014273002,0,0 +60014273002,310491,0.467304625199362 +60014273002,312502,0.165869218500797 +60014273002,314650,0 +60014273002,314943,0 +60014273002,314950,0 +60014273002,315649,0.366826156299841 +60014273002,318908,0 +60014273002,327469,0 +60014273002,327644,0 +60014273003,312948,0.129230769230769 +60014273003,312949,0.135384615384615 +60014273003,317625,0.0584615384615385 +60014273003,318342,0.0769230769230769 +60014273003,319022,0.16 +60014273003,320842,0.313846153846154 +60014273003,325353,0.126153846153846 +60014273004,311606,0.307392996108949 +60014273004,311608,0.0583657587548638 +60014273004,316017,0.377431906614786 +60014273004,317634,0.1284046692607 +60014273004,322434,0.1284046692607 +60014273005,310496,0.197183098591549 +60014273005,312488,0.384976525821596 +60014273005,312940,0.417840375586854 +60014276001,313140,1 +60014276002,310018,0.279699248120301 +60014276002,310495,0.0857142857142857 +60014276002,312489,0.544360902255639 +60014276002,315639,0.043609022556391 +60014276002,319012,0.0466165413533835 +60014276003,312503,1 +60014277001,313157,0.161764705882353 +60014277001,317632,0.258823529411765 +60014277001,323953,0.188235294117647 +60014277001,324155,0.173529411764706 +60014277001,330069,0.217647058823529 +60014277002,310493,0.0794341675734494 +60014277002,312939,0.0892274211099021 +60014277002,317630,0.0413492927094668 +60014277002,317658,0.11316648531012 +60014277002,320310,0.0369967355821545 +60014277002,320843,0.107725788900979 +60014277002,322628,0.178454842219804 +60014277002,326664,0.073993471164309 +60014277002,333770,0.279651795429815 +60014277003,0,0 +60014277003,310013,0.163636363636364 +60014277003,313852,0.225757575757576 +60014277003,316334,0.540909090909091 +60014277003,327288,0.0696969696969697 +60014277004,310014,0.137724550898204 +60014277004,313159,0.248502994011976 +60014277004,317664,0.0988023952095808 +60014277004,322432,0.332335329341317 +60014277004,324151,0.182634730538922 +60014278001,310686,0.210884353741497 +60014278001,310923,0.214285714285714 +60014278001,312950,0.13265306122449 +60014278001,318304,0.119047619047619 +60014278001,322445,0.0986394557823129 +60014278001,322631,0.224489795918367 +60014278002,310975,0.438287153652393 +60014278002,312280,0.0856423173803526 +60014278002,312953,0.0806045340050378 +60014278002,318300,0.0906801007556675 +60014278002,318301,0.110831234256927 +60014278002,328258,0.0881612090680101 +60014278002,333104,0.105793450881612 +60014278003,310497,0.0470588235294118 +60014278003,310925,0.188235294117647 +60014278003,312944,0.255882352941176 +60014278003,312946,0.179411764705882 +60014278003,317637,0.141176470588235 +60014278003,323957,0.188235294117647 +60014278004,310019,0.216704288939052 +60014278004,310683,0.431151241534989 +60014278004,312493,0.128668171557562 +60014278004,319019,0.119638826185102 +60014278004,324160,0.103837471783296 +60014278005,310498,0.104247104247104 +60014278005,310685,0.113899613899614 +60014278005,316709,0.137065637065637 +60014278005,317635,0.11003861003861 +60014278005,322438,0.254826254826255 +60014278005,327463,0.164092664092664 +60014278005,327468,0.115830115830116 +60014279001,311149,0.247663551401869 +60014279001,311158,0.13785046728972 +60014279001,311990,0.116822429906542 +60014279001,312958,0.214953271028037 +60014279001,312959,0.179906542056075 +60014279001,316710,0.0373831775700935 +60014279001,319026,0.0654205607476635 +60014279002,310502,0.052060737527115 +60014279002,310509,0.247288503253796 +60014279002,311150,0.123644251626898 +60014279002,311151,0.0715835140997831 +60014279002,311339,0.0867678958785249 +60014279002,312962,0.112798264642082 +60014279002,313629,0.0455531453362256 +60014279002,313631,0.0629067245119306 +60014279002,315654,0.108459869848156 +60014279002,316712,0.0498915401301518 +60014279002,323967,0.0390455531453362 +60014279003,310504,0.417445482866044 +60014279003,310511,0.205607476635514 +60014279003,322623,0.115264797507788 +60014279003,322635,0.155763239875389 +60014279003,327482,0.105919003115265 +60014279004,310500,0.148325358851675 +60014279004,310688,0.157894736842105 +60014279004,311334,0.222488038277512 +60014279004,318306,0.15311004784689 +60014279004,322626,0.138755980861244 +60014279004,327292,0.179425837320574 +60014279005,311336,0.168831168831169 +60014279005,311337,0.145021645021645 +60014279005,312505,0.238095238095238 +60014279005,319013,0.183982683982684 +60014279005,321021,0.177489177489178 +60014279005,322479,0.0865800865800866 +60014280001,311160,0 +60014280001,311163,0 +60014280001,311164,0.181506849315068 +60014280001,313636,0.38013698630137 +60014280001,314942,0.38013698630137 +60014280001,314949,0.0273972602739726 +60014280001,317650,0.0308219178082192 +60014280002,310915,0.0790742526518804 +60014280002,311153,0.0993249758919961 +60014280002,312485,0.216007714561234 +60014280002,313634,0.210221793635487 +60014280002,317647,0.0597878495660559 +60014280002,327483,0.186113789778206 +60014280002,329476,0.0935390549662488 +60014280002,329483,0.055930568948891 +60014281001,0,0 +60014281001,310914,0.139886578449905 +60014281001,315311,0.137996219281664 +60014281001,316983,0.173913043478261 +60014281001,321039,0.183364839319471 +60014281001,322420,0.10586011342155 +60014281001,326189,0.111531190926276 +60014281001,333781,0.147448015122873 +60014281002,311796,0.143518518518519 +60014281002,311803,0.122685185185185 +60014281002,312284,0.143518518518519 +60014281002,313329,0.18287037037037 +60014281002,317653,0.0601851851851852 +60014281002,322410,0.111111111111111 +60014281002,322448,0.0949074074074074 +60014281002,322614,0.0717592592592593 +60014281002,328859,0.0694444444444444 +60014281003,313327,0.143953934740883 +60014281003,313638,0.149712092130518 +60014281003,313642,0.147792706333973 +60014281003,321026,0.134357005758157 +60014281003,322629,0.134357005758157 +60014281003,327278,0.289827255278311 +60014281004,310922,0.0363247863247863 +60014281004,311165,0.00854700854700855 +60014281004,314279,0.0576923076923077 +60014281004,314280,0.0769230769230769 +60014281004,315652,0.288461538461538 +60014281004,317002,0.126068376068376 +60014281004,324644,0.115384615384615 +60014281004,325339,0.134615384615385 +60014281004,326010,0.155982905982906 +60014282001,312283,0.0342298288508557 +60014282001,312287,0.0880195599022005 +60014282001,312288,0.097799511002445 +60014282001,313647,0.178484107579462 +60014282001,318906,0.0806845965770171 +60014282001,320847,0.0317848410757946 +60014282001,320848,0.0611246943765281 +60014282001,322591,0.171149144254279 +60014282001,322592,0.100244498777506 +60014282001,326377,0.0611246943765281 +60014282001,333766,0.0953545232273839 +60014282002,0,0 +60014282002,317618,0.313394018205462 +60014282002,318288,0.462938881664499 +60014282002,322415,0.0546163849154746 +60014282002,324652,0.0494148244473342 +60014282002,329468,0.0793237971391417 +60014282002,333765,0.0403120936280884 +60014282003,311167,0.183908045977011 +60014282003,315646,0.724137931034483 +60014282003,318322,0.0440613026819923 +60014282003,324651,0.0478927203065134 +60014282004,311995,0.0836653386454183 +60014282004,312655,0.0836653386454183 +60014282004,313643,0.145418326693227 +60014282004,313646,0.0796812749003984 +60014282004,317619,0.109561752988048 +60014282004,318145,0.320717131474104 +60014282004,324647,0.177290836653386 +60014282005,311169,0.0871670702179177 +60014282005,311610,0.0847457627118644 +60014282005,312282,0.0799031476997579 +60014282005,312285,0.062953995157385 +60014282005,313648,0.205811138014528 +60014282005,317003,0.0702179176755448 +60014282005,318295,0.0605326876513317 +60014282005,318296,0.0653753026634383 +60014282005,318320,0.191283292978208 +60014282005,332920,0.0920096852300242 +60014283011,311172,0.375430539609644 +60014283011,311620,0.624569460390356 +60014283012,311173,1 +60014283013,311174,1 +60014283014,0,0 +60014283014,314954,0.605813953488372 +60014283014,320836,0.269767441860465 +60014283014,326192,0.124418604651163 +60014283021,0,0 +60014283021,310920,0.127438231469441 +60014283021,311799,0.17555266579974 +60014283021,312291,0.53446033810143 +60014283021,313644,0.135240572171652 +60014283021,327022,0.0273081924577373 +60014283022,313842,0.68361581920904 +60014283022,313850,0.103578154425612 +60014283022,318130,0.212806026365348 +60014283023,0,0 +60014283023,311166,0.41566265060241 +60014283023,311612,0.144578313253012 +60014283023,317403,0.439759036144578 +60014284001,0,0 +60014284001,311161,0.740409207161125 +60014284001,315302,0.0191815856777494 +60014284001,318896,0 +60014284001,321020,0 +60014284001,321027,0 +60014284001,327473,0 +60014284001,328259,0.240409207161125 +60014284002,311993,0.272908366533865 +60014284002,317648,0.310756972111554 +60014284002,322637,0.111553784860558 +60014284002,324859,0.262948207171315 +60014284002,326849,0.0418326693227092 +60014284003,311154,0.171280276816609 +60014284003,317642,0.141868512110727 +60014284003,323974,0.200692041522491 +60014284003,324851,0.157439446366782 +60014284003,324854,0.173010380622837 +60014284003,328272,0.155709342560554 +60014285001,0,0 +60014285001,311340,0.188714153561517 +60014285001,313150,0.445883441258094 +60014285001,326009,0.129509713228492 +60014285001,326659,0.235892691951896 +60014285002,0,0 +60014285002,310506,0.131428571428571 +60014285002,310507,0.868571428571429 +60014286001,310499,0.146978021978022 +60014286001,312954,0.0906593406593407 +60014286001,313154,0.682692307692308 +60014286001,318339,0.0796703296703297 +60014286002,0,0 +60014286002,322580,1 +60014286003,0,0 +60014286003,311622,0.285132382892057 +60014286003,318292,0.619144602851324 +60014286003,328257,0.0957230142566191 +60014287001,0,0 +60014287001,310488,0.055793991416309 +60014287001,311798,0.112660944206009 +60014287001,311809,0.133047210300429 +60014287001,312299,0.0869098712446352 +60014287001,312495,0.0729613733905579 +60014287001,313843,0 +60014287001,313847,0 +60014287001,314651,0.32725321888412 +60014287001,315306,0.118025751072961 +60014287001,318291,0.0933476394849785 +60014287002,0,0 +60014287002,310010,0 +60014287002,310015,0 +60014287002,310020,0 +60014287002,310492,0 +60014287002,311808,0.0860655737704918 +60014287002,312279,0.467213114754098 +60014287002,315303,0.377049180327869 +60014287002,316977,0 +60014287002,316980,0.069672131147541 +60014301011,312371,0.723270440251572 +60014301011,315040,0 +60014301011,315043,0.207547169811321 +60014301011,321093,0.0691823899371069 +60014301012,310761,0.0711297071129707 +60014301012,310762,0.135285913528591 +60014301012,313222,0.446304044630404 +60014301012,317303,0.135285913528591 +60014301012,321134,0.0362622036262204 +60014301012,322148,0.0390516039051604 +60014301012,323051,0.0488145048814505 +60014301012,332736,0.0878661087866109 +60014301013,311399,0.0119047619047619 +60014301013,311401,0.0119047619047619 +60014301013,312553,0.597222222222222 +60014301013,313028,0.00595238095238095 +60014301013,319285,0.00595238095238095 +60014301013,323040,0.12797619047619 +60014301013,323042,0.239087301587302 +60014301021,0,0 +60014301021,310090,0.0492170022371365 +60014301021,311715,0.154362416107383 +60014301021,312092,0 +60014301021,312868,0.0704697986577181 +60014301021,313397,0.0671140939597315 +60014301021,313723,0.0738255033557047 +60014301021,317302,0.120805369127517 +60014301021,317801,0 +60014301021,319483,0.0178970917225951 +60014301021,319999,0.159955257270694 +60014301021,320631,0.0178970917225951 +60014301021,323009,0.034675615212528 +60014301021,324044,0 +60014301021,327101,0.201342281879195 +60014301021,333843,0.0324384787472036 +60014302001,310763,0.217391304347826 +60014302001,311398,0.131752305665349 +60014302001,312085,0.121212121212121 +60014302001,312251,0.436100131752306 +60014302001,329554,0.0737812911725955 +60014302001,330406,0.0197628458498024 +60014302002,310750,0.22196261682243 +60014302002,312748,0.0841121495327103 +60014302002,319157,0.0654205607476635 +60014302002,320531,0.0981308411214953 +60014302002,322139,0.0700934579439252 +60014302002,323008,0.100467289719626 +60014302002,323155,0.144859813084112 +60014302002,331213,0.214953271028037 +60014302003,312367,0.108552631578947 +60014302003,316413,0.154605263157895 +60014302003,318004,0.171052631578947 +60014302003,323099,0.440789473684211 +60014302003,324043,0.125 +60014302004,311882,0.252631578947368 +60014302004,312550,0.130526315789474 +60014302004,325801,0.071578947368421 +60014302004,327099,0.113684210526316 +60014302004,327130,0.0652631578947368 +60014302004,330400,0.0568421052631579 +60014302004,332332,0.0568421052631579 +60014302004,333180,0.0905263157894737 +60014302004,333181,0.162105263157895 +60014302005,314707,0.299163179916318 +60014302005,326751,0.150627615062762 +60014302005,330768,0.0627615062761506 +60014302005,331872,0.156903765690377 +60014302005,332331,0.330543933054393 +60014303001,0,0 +60014303001,310382,0.0671378091872792 +60014303001,310791,0.1113074204947 +60014303001,314081,0.0865724381625442 +60014303001,315728,0.169611307420495 +60014303001,320730,0.275618374558304 +60014303001,322131,0.173144876325088 +60014303001,323745,0.0353356890459364 +60014303001,323746,0.0812720848056537 +60014303001,326741,0 +60014303002,311687,0.129287598944591 +60014303002,312198,0.0738786279683377 +60014303002,315902,0.147757255936675 +60014303002,320742,0.411609498680739 +60014303002,324258,0.158311345646438 +60014303002,325121,0.079155672823219 +60014303003,312551,0.194666666666667 +60014303003,312878,0.453333333333333 +60014303003,331025,0.0666666666666667 +60014303003,332330,0.285333333333333 +60014304001,310381,0.0929577464788732 +60014304001,313557,0.0816901408450704 +60014304001,313742,0.211267605633803 +60014304001,314079,0.126760563380282 +60014304001,322226,0.101408450704225 +60014304001,323122,0.0591549295774648 +60014304001,323747,0.166197183098592 +60014304001,330571,0.0704225352112676 +60014304001,331023,0.0901408450704225 +60014304002,0,0 +60014304002,311060,0.293367346938776 +60014304002,313580,0.341836734693878 +60014304002,313923,0.362244897959184 +60014304002,323044,0.00255102040816327 +60014305001,310131,0.150246305418719 +60014305001,312055,0.0431034482758621 +60014305001,312056,0.0899014778325123 +60014305001,312057,0.0320197044334975 +60014305001,314526,0.041871921182266 +60014305001,314709,0.0381773399014778 +60014305001,320484,0.0246305418719212 +60014305001,320726,0.0665024630541872 +60014305001,322130,0.0554187192118227 +60014305001,322968,0 +60014305001,322976,0.0480295566502463 +60014305001,323147,0.307881773399015 +60014305001,328731,0.0270935960591133 +60014305001,329807,0.0751231527093596 +60014305002,314710,0.196428571428571 +60014305002,315177,0.189935064935065 +60014305002,315178,0.0487012987012987 +60014305002,324424,0.0422077922077922 +60014305002,324425,0.0941558441558442 +60014305002,328154,0.12987012987013 +60014305002,331664,0.0551948051948052 +60014305002,331665,0.0535714285714286 +60014305002,332082,0.189935064935065 +60014305003,311047,0.0540540540540541 +60014305003,314712,0.0709459459459459 +60014305003,315181,0.0625 +60014305003,315186,0.109797297297297 +60014305003,320502,0.0658783783783784 +60014305003,320509,0.0422297297297297 +60014305003,320510,0.0929054054054054 +60014305003,320562,0.168918918918919 +60014305003,322234,0.0202702702702703 +60014305003,324426,0.101351351351351 +60014305003,324430,0.0658783783783784 +60014305003,329813,0.0844594594594595 +60014305003,330770,0.0608108108108108 +60014306001,315175,0.25 +60014306001,320391,0.133928571428571 +60014306001,320495,0.0379464285714286 +60014306001,322225,0.205357142857143 +60014306001,332055,0.372767857142857 +60014306002,315897,0.213592233009709 +60014306002,315900,0.786407766990291 +60014306003,310380,0.040625 +60014306003,310783,0.06875 +60014306003,313542,0.0260416666666667 +60014306003,320493,0.0989583333333333 +60014306003,320501,0.03125 +60014306003,320739,0.0635416666666667 +60014306003,322228,0.0416666666666667 +60014306003,322994,0.05 +60014306003,323190,0.0614583333333333 +60014306003,324951,0.23125 +60014306003,329374,0.215625 +60014306003,330575,0.0708333333333333 +60014306004,310113,0.480427046263345 +60014306004,331024,0.519572953736655 +60014307001,314708,0.312292358803987 +60014307001,315903,0.32890365448505 +60014307001,322995,0.358803986710963 +60014307002,312879,0.109230769230769 +60014307002,312882,0.0476923076923077 +60014307002,312903,0.124615384615385 +60014307002,315904,0.0476923076923077 +60014307002,318213,0.0876923076923077 +60014307002,320380,0.0430769230769231 +60014307002,320529,0.0446153846153846 +60014307002,320530,0.0876923076923077 +60014307002,321088,0.0538461538461538 +60014307002,323002,0.0615384615384615 +60014307002,326280,0.0953846153846154 +60014307002,331874,0.115384615384615 +60014307002,332084,0.0338461538461538 +60014307002,332321,0.0476923076923077 +60014307003,311068,0.273657289002558 +60014307003,323039,0.173913043478261 +60014307003,324745,0.140664961636829 +60014307003,325116,0.411764705882353 +60014308001,312207,0.0745762711864407 +60014308001,312751,0.366101694915254 +60014308001,313044,0.294915254237288 +60014308001,313590,0.179661016949153 +60014308001,326747,0.0847457627118644 +60014308002,310752,0.191222570532915 +60014308002,311433,0.266457680250784 +60014308002,313020,0.0721003134796238 +60014308002,325778,0.203761755485893 +60014308002,333167,0.266457680250784 +60014308003,310386,0.0509803921568627 +60014308003,310807,0.0509803921568627 +60014308003,313019,0.26797385620915 +60014308003,313398,0.0352941176470588 +60014308003,318005,0.0130718954248366 +60014308003,319158,0.122875816993464 +60014308003,320745,0.0300653594771242 +60014308003,325430,0.0640522875816993 +60014308003,327710,0.196078431372549 +60014308003,332733,0.137254901960784 +60014308003,333653,0.0313725490196078 +60014308004,311429,0.605849582172702 +60014308004,333166,0.33983286908078 +60014308004,333649,0.0543175487465181 +60014309001,312193,0.0182291666666667 +60014309001,312885,0.00260416666666667 +60014309001,315898,0.23828125 +60014309001,318212,0.14453125 +60014309001,318963,0.352864583333333 +60014309001,323032,0 +60014309001,332541,0.243489583333333 +60014309002,311048,0.246804326450344 +60014309002,317475,0.00786627335299902 +60014309002,318962,0.202556538839725 +60014309002,322306,0.146509341199607 +60014309002,323173,0.210422812192724 +60014309002,332322,0.185840707964602 +60014310001,311416,0.121739130434783 +60014310001,315383,0.375652173913043 +60014310001,322141,0.344347826086957 +60014310001,333645,0.158260869565217 +60014310002,313740,0.0120068610634648 +60014310002,316592,0.0445969125214408 +60014310002,321087,0.353344768439108 +60014310002,330407,0.0566037735849057 +60014310002,332085,0.420240137221269 +60014310002,332542,0.113207547169811 +60014311001,310087,0.0890909090909091 +60014311001,310390,0.0363636363636364 +60014311001,311225,0.0709090909090909 +60014311001,313022,0.136363636363636 +60014311001,314552,0.0454545454545455 +60014311001,316596,0.0890909090909091 +60014311001,317299,0.298181818181818 +60014311001,331032,0.172727272727273 +60014311001,333168,0.0618181818181818 +60014311002,313556,0.0268456375838926 +60014311002,315035,0.604026845637584 +60014311002,316775,0.304697986577181 +60014311002,322266,0.0644295302013423 +60014312001,310077,0.0649717514124294 +60014312001,310078,0.0621468926553672 +60014312001,312203,0.0437853107344633 +60014312001,312204,0.0593220338983051 +60014312001,312205,0.077683615819209 +60014312001,316593,0.0536723163841808 +60014312001,322136,0.107344632768362 +60014312001,322307,0.0748587570621469 +60014312001,323121,0 +60014312001,332543,0.324858757062147 +60014312001,333646,0.0847457627118644 +60014312001,333647,0.0466101694915254 +60014312002,311035,0.111622554660529 +60014312002,311428,0.105868814729574 +60014312002,312202,0.046029919447641 +60014312002,313413,0.0379746835443038 +60014312002,316594,0.0575373993095512 +60014312002,321758,0.162255466052934 +60014312002,325777,0.0310701956271577 +60014312002,331205,0.0379746835443038 +60014312002,331224,0 +60014312002,332075,0.409666283084005 +60014312003,312368,0.0324947589098532 +60014312003,312534,0.0471698113207547 +60014312003,313498,0.323899371069182 +60014312003,314373,0.010482180293501 +60014312003,314545,0 +60014312003,318208,0.0377358490566038 +60014312003,318210,0.0262054507337526 +60014312003,320395,0.0450733752620545 +60014312003,323123,0 +60014312003,325775,0.030398322851153 +60014312003,331202,0.264150943396226 +60014312003,332329,0.146750524109015 +60014312003,333643,0.0356394129979036 +60014321001,310773,0.0664605873261206 +60014321001,312247,0.0370942812982998 +60014321001,313596,0.129829984544049 +60014321001,316407,0.0556414219474498 +60014321001,317102,0.0216383307573416 +60014321001,318220,0.0618238021638331 +60014321001,318769,0.0911901081916538 +60014321001,319476,0.0587326120556414 +60014321001,319481,0.173106646058733 +60014321001,325593,0.0139103554868624 +60014321001,328762,0.0850077279752705 +60014321001,328923,0.0958268933539413 +60014321001,328924,0.0540958268933539 +60014321001,328925,0.0556414219474498 +60014321002,310097,0.090185676392573 +60014321002,311420,0.0769230769230769 +60014321002,315388,0.111405835543767 +60014321002,317492,0.0583554376657825 +60014321002,319488,0.0981432360742706 +60014321002,320606,0.374005305039788 +60014321002,325422,0.0636604774535809 +60014321002,325423,0.127320954907162 +60014321003,311712,0.11566265060241 +60014321003,311713,0.0746987951807229 +60014321003,319670,0.0216867469879518 +60014321003,321153,0.0939759036144578 +60014321003,325424,0.151807228915663 +60014321003,326059,0.296385542168675 +60014321003,326905,0.0963855421686747 +60014321003,330119,0.149397590361446 +60014322001,312250,0.211081794195251 +60014322001,316393,0.153034300791557 +60014322001,319475,0.337730870712401 +60014322001,324059,0.226912928759894 +60014322001,327537,0.0712401055408971 +60014322002,310096,0.0961538461538462 +60014322002,312239,0.105769230769231 +60014322002,312240,0.125 +60014322002,312241,0.131410256410256 +60014322002,312380,0.131410256410256 +60014322002,318218,0.108974358974359 +60014322002,323020,0.0833333333333333 +60014322002,325415,0.115384615384615 +60014322002,328341,0.0737179487179487 +60014322002,331685,0.0288461538461538 +60014322003,310085,0.0282828282828283 +60014322003,310772,0.0141414141414141 +60014322003,312363,0.122222222222222 +60014322003,315012,0.0777777777777778 +60014322003,315013,0.324242424242424 +60014322003,315927,0.0555555555555556 +60014322003,317103,0.0919191919191919 +60014322003,318770,0.0343434343434343 +60014322003,320180,0.0666666666666667 +60014322003,323137,0.151515151515151 +60014322003,328340,0.0333333333333333 +60014323001,310589,0.154545454545455 +60014323001,312855,0.106818181818182 +60014323001,314725,0.163636363636364 +60014323001,320916,0.315909090909091 +60014323001,322298,0.0522727272727273 +60014323001,327974,0.0818181818181818 +60014323001,330155,0.125 +60014323002,313034,0.235772357723577 +60014323002,313402,0.0840108401084011 +60014323002,320560,0.205962059620596 +60014323002,322283,0.143631436314363 +60014323002,326923,0.0813008130081301 +60014323002,329543,0.119241192411924 +60014323002,330139,0.130081300813008 +60014323003,312844,0.0443896424167694 +60014323003,313040,0.130702836004932 +60014323003,313503,0.0431565967940814 +60014323003,315039,0.0369913686806412 +60014323003,318573,0.0505548705302096 +60014323003,321745,0.0271270036991369 +60014323003,322282,0.00123304562268804 +60014323003,324740,0.0382244143033292 +60014323003,326073,0.0604192355117139 +60014323003,326924,0.0246609124537608 +60014323003,326925,0.0690505548705302 +60014323003,329542,0.401972872996301 +60014323003,330141,0.0715166461159063 +60014324001,310101,0 +60014324001,312209,0.411057692307692 +60014324001,317488,0.00961538461538462 +60014324001,318567,0.298076923076923 +60014324001,320555,0 +60014324001,321145,0 +60014324001,329537,0.28125 +60014324002,312917,0.234993614303959 +60014324002,313492,0.135376756066411 +60014324002,313916,0.0970625798212005 +60014324002,314089,0.0421455938697318 +60014324002,314090,0 +60014324002,320601,0.0727969348659004 +60014324002,320632,0.0587484035759898 +60014324002,320912,0.0485312899106003 +60014324002,321166,0.0855683269476373 +60014324002,321774,0.0881226053639847 +60014324002,326928,0.0549169859514687 +60014324002,330150,0 +60014324002,331892,0.0817369093231162 +60014324003,0,0 +60014324003,312737,0.0561797752808989 +60014324003,312738,0.00963081861958266 +60014324003,312742,0 +60014324003,312849,0.329052969502408 +60014324003,312850,0.170144462279294 +60014324003,312851,0.324237560192616 +60014324003,315026,0.110754414125201 +60014324003,316779,0 +60014324003,321126,0 +60014324003,321127,0 +60014325011,310124,0.101298701298701 +60014325011,310758,0.103896103896104 +60014325011,311424,0.163636363636364 +60014325011,312848,0.0467532467532468 +60014325011,315913,0.051948051948052 +60014325011,317121,0.0649350649350649 +60014325011,320911,0.0883116883116883 +60014325011,321110,0.0961038961038961 +60014325011,323219,0.0571428571428571 +60014325011,327357,0.225974025974026 +60014325012,316618,0.125 +60014325012,317122,0.273648648648649 +60014325012,317131,0 +60014325012,321773,0.601351351351351 +60014325013,312847,0.217669654289373 +60014325013,313504,0.257362355953905 +60014325013,324236,0.162612035851472 +60014325013,330142,0.36235595390525 +60014325021,320559,0.770919067215364 +60014325021,328596,0.229080932784636 +60014325022,312846,1 +60014325023,327354,1 +60014326001,310082,0 +60014326001,310083,0.245161290322581 +60014326001,310084,0.0983870967741935 +60014326001,310114,0 +60014326001,311055,0.0741935483870968 +60014326001,312255,0.12741935483871 +60014326001,312376,0 +60014326001,312845,0.0241935483870968 +60014326001,313225,0.0435483870967742 +60014326001,313227,0.129032258064516 +60014326001,315027,0.00806451612903226 +60014326001,318575,0 +60014326001,320178,0.103225806451613 +60014326001,326082,0.0693548387096774 +60014326001,326262,0 +60014326001,328930,0 +60014326001,328931,0.0741935483870968 +60014326001,332992,0.0032258064516129 +60014326002,310086,0.1 +60014326002,310755,0.0563636363636364 +60014326002,312364,0.192727272727273 +60014326002,313549,0.390909090909091 +60014326002,317115,0.00545454545454545 +60014326002,319495,0 +60014326002,321151,0.0854545454545454 +60014326002,321167,0.169090909090909 +60014326003,311391,0.0891089108910891 +60014326003,315694,0.150990099009901 +60014326003,317116,0.0965346534653465 +60014326003,317119,0.136138613861386 +60014326003,319826,0.0693069306930693 +60014326003,323146,0.0396039603960396 +60014326003,326088,0.113861386138614 +60014326003,326089,0.205445544554455 +60014326003,328933,0.099009900990099 +60014326004,312051,0.264925373134328 +60014326004,320542,0.242537313432836 +60014326004,328934,0.276119402985075 +60014326004,328937,0.216417910447761 +60014326005,310759,0.0731707317073171 +60014326005,311406,0.0517073170731707 +60014326005,311407,0.113170731707317 +60014326005,313538,0.0604878048780488 +60014326005,314178,0.0234146341463415 +60014326005,314548,0 +60014326005,317120,0.0741463414634146 +60014326005,317811,0.0585365853658537 +60014326005,317812,0.134634146341463 +60014326005,318588,0.11219512195122 +60014326005,320548,0.0614634146341463 +60014326005,321158,0.0165853658536585 +60014326005,323145,0.104390243902439 +60014326005,323754,0.0478048780487805 +60014326005,326719,0.0682926829268293 +60014327001,310552,0.427244582043344 +60014327001,310553,0.151702786377709 +60014327001,319824,0.0835913312693498 +60014327001,322076,0.102167182662539 +60014327001,325577,0.222910216718266 +60014327001,329512,0.0123839009287926 +60014327002,312715,0.205438066465257 +60014327002,314365,0.259818731117825 +60014327002,315697,0.132930513595166 +60014327002,315698,0.0422960725075529 +60014327002,315699,0.132930513595166 +60014327002,326063,0.0936555891238671 +60014327002,329514,0.132930513595166 +60014327003,311064,0.236768802228412 +60014327003,313224,0.0919220055710306 +60014327003,315693,0.0835654596100279 +60014327003,315695,0.0668523676880223 +60014327003,315701,0.0696378830083565 +60014327003,315702,0.0752089136490251 +60014327003,322948,0.175487465181058 +60014327003,324446,0.0696378830083565 +60014327003,326056,0.0668523676880223 +60014327003,326058,0.064066852367688 +60014328001,310554,0.262172284644195 +60014328001,317809,0.299625468164794 +60014328001,330753,0.438202247191011 +60014328002,311881,0.0290697674418605 +60014328002,313899,0.0348837209302326 +60014328002,317467,0.0813953488372093 +60014328002,318199,0.257267441860465 +60014328002,318547,0.372093023255814 +60014328002,318548,0.0595930232558139 +60014328002,320460,0.0668604651162791 +60014328002,327963,0.0988372093023256 +60014328003,310573,0.0851063829787234 +60014328003,318552,0.140425531914894 +60014328003,319657,0.119148936170213 +60014328003,319861,0.048936170212766 +60014328003,320719,0.0787234042553192 +60014328003,327367,0.0829787234042553 +60014328003,328148,0.0702127659574468 +60014328003,328152,0.00425531914893617 +60014328003,328570,0.178723404255319 +60014328003,329184,0 +60014328003,329185,0.0553191489361702 +60014328003,330769,0.0531914893617021 +60014328003,333349,0.0829787234042553 +60014330001,310104,0.171581769436997 +60014330001,311443,0.0428954423592493 +60014330001,312050,0.131367292225201 +60014330001,313226,0.14745308310992 +60014330001,313738,0.176943699731903 +60014330001,318599,0.123324396782842 +60014330001,322077,0.0670241286863271 +60014330001,329516,0.13941018766756 +60014330002,312089,0.120454545454545 +60014330002,312546,0.134090909090909 +60014330002,312547,0.0409090909090909 +60014330002,316415,0.177272727272727 +60014330002,323102,0.0931818181818182 +60014330002,326237,0.161363636363636 +60014330002,327965,0.170454545454545 +60014330002,331373,0.102272727272727 +60014330003,315023,0.211678832116788 +60014330003,318790,0.0583941605839416 +60014330003,319852,0.164233576642336 +60014330003,320736,0.22992700729927 +60014330003,321702,0.226277372262774 +60014330003,328135,0.109489051094891 +60014330004,310405,0.206153846153846 +60014330004,319304,0.347692307692308 +60014330004,326745,0.172307692307692 +60014330004,329354,0.0738461538461539 +60014330004,333183,0.2 +60014331021,310805,0 +60014331021,313898,0.0551724137931034 +60014331021,318591,0.053448275862069 +60014331021,319268,0.0551724137931034 +60014331021,321719,0.096551724137931 +60014331021,322107,0.0655172413793104 +60014331021,322108,0.053448275862069 +60014331021,322109,0.0413793103448276 +60014331021,322113,0 +60014331021,328574,0.0637931034482759 +60014331021,328733,0.1 +60014331021,328734,0.16551724137931 +60014331021,332056,0.096551724137931 +60014331021,332057,0.153448275862069 +60014331022,310387,0.0597609561752988 +60014331022,319271,0.111553784860558 +60014331022,319865,0.0292164674634794 +60014331022,319866,0.0385126162018592 +60014331022,319867,0.0398406374501992 +60014331022,319869,0.0717131474103586 +60014331022,320607,0.0876494023904383 +60014331022,325140,0.0717131474103586 +60014331022,328735,0.0836653386454183 +60014331022,328736,0.204515272244356 +60014331022,329190,0.0292164674634794 +60014331022,332539,0.155378486055777 +60014331022,333199,0.0172642762284197 +60014331031,312549,0.0462776659959759 +60014331031,313379,0.0543259557344064 +60014331031,313737,0.00301810865191147 +60014331031,315705,0.579476861167002 +60014331031,320430,0.0754527162977867 +60014331031,320431,0.00100603621730382 +60014331031,326068,0.240442655935614 +60014331032,319288,0.015625 +60014331032,319853,0.252232142857143 +60014331032,322084,0.683035714285714 +60014331032,322967,0.0491071428571429 +60014331041,310557,0.795698924731183 +60014331041,310790,0 +60014331041,312215,0.10752688172043 +60014331041,313727,0.0134408602150538 +60014331041,313920,0 +60014331041,315706,0.0349462365591398 +60014331041,321112,0 +60014331041,326723,0.0483870967741935 +60014331042,310594,0.486486486486487 +60014331042,313501,0.331695331695332 +60014331042,318784,0.0663390663390663 +60014331042,322083,0.0466830466830467 +60014331042,325796,0.0687960687960688 +60014331043,313502,0.237569060773481 +60014331043,317316,0.0972375690607735 +60014331043,321742,0.352486187845304 +60014331043,322957,0.214364640883978 +60014331043,325772,0.0983425414364641 +60014332001,310561,0.195384615384615 +60014332001,311222,0.207692307692308 +60014332001,317093,0.0384615384615385 +60014332001,320450,0.0215384615384615 +60014332001,322197,0.0476923076923077 +60014332001,326701,0.346153846153846 +60014332001,327337,0.106153846153846 +60014332001,330131,0.0369230769230769 +60014332002,312365,0.0681818181818182 +60014332002,313207,0.0270562770562771 +60014332002,313208,0.0432900432900433 +60014332002,316068,0.311688311688312 +60014332002,319272,0.0238095238095238 +60014332002,323090,0.239177489177489 +60014332002,326112,0.243506493506494 +60014332002,327518,0.0432900432900433 +60014332003,311439,0 +60014332003,314186,0 +60014332003,320473,0.891768292682927 +60014332003,329195,0.108231707317073 +60014332004,313041,0 +60014332004,314383,0.09 +60014332004,315025,0 +60014332004,317090,0.204 +60014332004,318228,0 +60014332004,320546,0 +60014332004,324241,0.334 +60014332004,326718,0 +60014332004,326906,0.176 +60014332004,327115,0.156 +60014332004,332354,0.04 +60014333001,314095,0.130859375 +60014333001,317086,0.07421875 +60014333001,317087,0.07421875 +60014333001,317092,0.087890625 +60014333001,322194,0.07421875 +60014333001,327341,0.427734375 +60014333001,330128,0.056640625 +60014333001,330129,0.07421875 +60014333002,312865,0.577319587628866 +60014333002,313910,0 +60014333002,325773,0.0687285223367698 +60014333002,326242,0.264604810996564 +60014333002,329520,0.0893470790378007 +60014333003,310559,0.130555555555556 +60014333003,311215,0.130555555555556 +60014333003,311422,0.0916666666666667 +60014333003,311710,0.177777777777778 +60014333003,313382,0.183333333333333 +60014333003,315710,0.119444444444444 +60014333003,315930,0.166666666666667 +60014333004,312841,0.12109375 +60014333004,315708,0.052734375 +60014333004,315709,0.048828125 +60014333004,316588,0.169921875 +60014333004,320191,0.083984375 +60014333004,326240,0.150390625 +60014333004,326241,0.087890625 +60014333004,329521,0.107421875 +60014333004,329522,0.052734375 +60014333004,330151,0.125 +60014333005,313739,0.0958333333333333 +60014333005,314705,0.1 +60014333005,315367,0.191666666666667 +60014333005,315711,0.104166666666667 +60014333005,315712,0.102083333333333 +60014333005,320442,0.09375 +60014333005,326071,0.0604166666666667 +60014333005,326243,0.0958333333333333 +60014333005,326244,0.0645833333333333 +60014333005,327332,0.0916666666666667 +60014334001,312211,0 +60014334001,312852,0.0702247191011236 +60014334001,312854,0 +60014334001,314555,0 +60014334001,315009,0 +60014334001,317334,0 +60014334001,318581,0.306179775280899 +60014334001,319778,0 +60014334001,327534,0 +60014334001,327535,0 +60014334001,327971,0.623595505617977 +60014334001,330152,0 +60014334002,312853,1 +60014334003,0,0 +60014334003,330149,1 +60014334004,312212,0.0664961636828645 +60014334004,315385,0.442455242966752 +60014334004,319671,0.332480818414322 +60014334004,319672,0.115089514066496 +60014334004,320550,0 +60014334004,320733,0.0332480818414322 +60014334004,326930,0.010230179028133 +60014334004,328962,0 +60014334005,310580,0.1 +60014334005,314088,0.175 +60014334005,326727,0.725 +60014334006,316395,1 +60014335001,311217,0.106007067137809 +60014335001,312199,0.183745583038869 +60014335001,313551,0.102473498233216 +60014335001,314723,0.162544169611307 +60014335001,315368,0.106007067137809 +60014335001,324947,0.339222614840989 +60014335002,311219,0.166666666666667 +60014335002,322193,0.267441860465116 +60014335002,327331,0.0736434108527132 +60014335002,327333,0.217054263565891 +60014335002,327335,0.275193798449612 +60014335003,311216,0.105932203389831 +60014335003,311218,0.048728813559322 +60014335003,315365,0.086864406779661 +60014335003,315366,0.0550847457627119 +60014335003,315370,0.146186440677966 +60014335003,317088,0.101694915254237 +60014335003,320448,0.0572033898305085 +60014335003,320449,0.11228813559322 +60014335003,322189,0.11864406779661 +60014335003,327512,0.0572033898305085 +60014335003,331026,0.110169491525424 +60014335004,313523,0.074792243767313 +60014335004,315923,0.105263157894737 +60014335004,317817,0.199445983379501 +60014335004,317818,0.0914127423822715 +60014335004,320183,0.202216066481994 +60014335004,320184,0.0886426592797784 +60014335004,325797,0.168975069252078 +60014335004,326269,0.0692520775623269 +60014336001,311220,0.260736196319018 +60014336001,316069,0.119631901840491 +60014336001,317094,0.153374233128834 +60014336001,317095,0.180981595092025 +60014336001,319844,0.098159509202454 +60014336001,322959,0.0582822085889571 +60014336001,326069,0.0858895705521472 +60014336001,327330,0.0429447852760736 +60014336002,310001,0.233201581027668 +60014336002,310128,0.156126482213439 +60014336002,312538,0.154150197628458 +60014336002,313550,0.00197628458498024 +60014336002,317097,0.162055335968379 +60014336002,317318,0.00790513833992095 +60014336002,317803,0.134387351778656 +60014336002,317806,0.150197628458498 +60014336003,312544,0.545751633986928 +60014336003,312836,0.0457516339869281 +60014336003,312837,0.0947712418300654 +60014336003,313541,0.0490196078431373 +60014336003,320185,0.065359477124183 +60014336003,326271,0.0555555555555556 +60014336003,326729,0.065359477124183 +60014336003,333185,0.0784313725490196 +60014336004,310002,0.4 +60014336004,312075,0.0508196721311475 +60014336004,312536,0.059016393442623 +60014336004,316768,0.0819672131147541 +60014336004,317462,0.0737704918032787 +60014336004,317464,0.0754098360655738 +60014336004,317802,0.0442622950819672 +60014336004,320453,0.0672131147540984 +60014336004,325425,0.147540983606557 +60014337001,311050,0 +60014337001,313053,0.0963597430406852 +60014337001,314529,0.141327623126338 +60014337001,320508,0.447537473233405 +60014337001,322979,0.0513918629550321 +60014337001,324429,0.0813704496788009 +60014337001,328593,0 +60014337001,331009,0.182012847965739 +60014337002,311705,0.274247491638796 +60014337002,315038,0.1438127090301 +60014337002,315739,0.254180602006689 +60014337002,320475,0.140468227424749 +60014337002,330600,0.187290969899666 +60014337003,310071,0.0588235294117647 +60014337003,312381,0.100840336134454 +60014337003,313912,0.121848739495798 +60014337003,314167,0 +60014337003,314735,0.294117647058824 +60014337003,320587,0.121848739495798 +60014337003,329355,0.180672268907563 +60014337003,333000,0.121848739495798 +60014338001,312102,0.135231316725979 +60014338001,313490,0.110320284697509 +60014338001,319269,0.117437722419929 +60014338001,319862,0.149466192170819 +60014338001,319870,0.185053380782918 +60014338001,321711,0.302491103202847 +60014338002,313903,0.332923832923833 +60014338002,319273,0.0638820638820639 +60014338002,319302,0.115479115479115 +60014338002,320483,0.0798525798525798 +60014338002,322112,0.0712530712530713 +60014338002,329548,0.0442260442260442 +60014338002,330394,0.0626535626535627 +60014338002,330395,0.0872235872235872 +60014338002,332081,0.0393120393120393 +60014338002,333355,0.103194103194103 +60014338003,311063,0.093278463648834 +60014338003,311421,0 +60014338003,312860,0.0425240054869684 +60014338003,313536,0.400548696844993 +60014338003,319871,0 +60014338003,320724,0.0877914951989026 +60014338003,328739,0.192043895747599 +60014338003,330396,0.056241426611797 +60014338003,331395,0.127572016460905 +60014338004,310072,0.0514950166112957 +60014338004,310587,0.0415282392026578 +60014338004,313407,0.280730897009967 +60014338004,314528,0.0863787375415282 +60014338004,314728,0.166112956810631 +60014338004,319277,0.0431893687707641 +60014338004,320205,0.0365448504983389 +60014338004,322204,0.0564784053156146 +60014338004,329196,0.0481727574750831 +60014338004,329780,0.0780730897009967 +60014338004,332067,0.053156146179402 +60014338004,332068,0.0581395348837209 +60014339001,313051,0.307219662058372 +60014339001,313223,0.21505376344086 +60014339001,313584,0.0491551459293395 +60014339001,318801,0.0875576036866359 +60014339001,325142,0.172043010752688 +60014339001,329356,0.0768049155145929 +60014339001,330601,0.0921658986175115 +60014339002,333356,1 +60014339003,312058,0.0474777448071217 +60014339003,314078,0.121661721068249 +60014339003,320497,0.0682492581602374 +60014339003,322304,0.243323442136499 +60014339003,322305,0.382789317507418 +60014339003,322977,0.136498516320475 +60014339004,315733,1 +60014340001,312894,0.128625472887768 +60014340001,315180,0.0996216897856242 +60014340001,315185,0.0390920554854981 +60014340001,317327,0.0958385876418663 +60014340001,320506,0.108448928121059 +60014340001,330573,0.0567465321563682 +60014340001,330574,0.162673392181589 +60014340001,331663,0.308953341740227 +60014340002,310385,0.150769230769231 +60014340002,313507,0.0615384615384615 +60014340002,318981,0.258461538461538 +60014340002,319278,0.153846153846154 +60014340002,329811,0.304615384615385 +60014340002,331666,0.0707692307692308 +60014340003,310572,0.259856630824373 +60014340003,310592,0.227598566308244 +60014340003,312767,0.207885304659498 +60014340003,314561,0.102150537634409 +60014340003,316781,0.202508960573477 +60014351021,311708,0.220568335588633 +60014351021,315199,0.0622462787550744 +60014351021,315715,0.0568335588633288 +60014351021,315893,0.0446549391069012 +60014351021,315894,0.500676589986468 +60014351021,322990,0.0757780784844384 +60014351021,325412,0.0392422192151556 +60014351022,316778,0.172496984318456 +60014351022,322273,0.102533172496984 +60014351022,323197,0.0566948130277443 +60014351022,324938,0.291917973462002 +60014351022,325125,0.303980699638118 +60014351022,327715,0.0446320868516285 +60014351022,328336,0.0277442702050663 +60014351031,310099,0.00218340611353712 +60014351031,312223,0.278384279475983 +60014351031,312233,0.12117903930131 +60014351031,314714,0.00873362445414847 +60014351031,315006,0.00436681222707424 +60014351031,315008,0.00436681222707424 +60014351031,316083,0.0207423580786026 +60014351031,317839,0.0174672489082969 +60014351031,319470,0.125545851528384 +60014351031,319764,0.00873362445414847 +60014351031,319821,0.00327510917030568 +60014351031,320564,0.0109170305676856 +60014351031,320579,0.074235807860262 +60014351031,320925,0.0425764192139738 +60014351031,323036,0.0589519650655022 +60014351031,323229,0.145196506550218 +60014351031,324935,0.00109170305676856 +60014351031,324939,0.0305676855895196 +60014351031,328914,0.0294759825327511 +60014351031,329797,0 +60014351031,333200,0 +60014351031,333849,0.0120087336244541 +60014351032,310117,0.305845511482255 +60014351032,313577,0.112734864300626 +60014351032,315932,0.0542797494780793 +60014351032,317137,0.0605427974947808 +60014351032,318584,0.0417536534446764 +60014351032,318787,0.069937369519833 +60014351032,318973,0.0605427974947808 +60014351032,321142,0.0490605427974948 +60014351032,321767,0.0271398747390397 +60014351032,322299,0 +60014351032,326287,0.0375782881002088 +60014351032,328746,0.173277661795407 +60014351032,333666,0.00730688935281837 +60014351033,312097,0.0116959064327485 +60014351033,313586,0.385964912280702 +60014351033,314085,0 +60014351033,318596,0.00584795321637427 +60014351033,320524,0.0818713450292398 +60014351033,324941,0.233918128654971 +60014351033,328160,0.16374269005848 +60014351033,328365,0.116959064327485 +60014351041,312372,0 +60014351041,314727,0.268387096774194 +60014351041,317823,0 +60014351041,317841,0 +60014351041,318975,0.149677419354839 +60014351041,320388,0.00516129032258065 +60014351041,324450,0.461935483870968 +60014351041,329198,0.114838709677419 +60014351042,315908,0.336273428886439 +60014351042,332339,0.251378169790518 +60014351042,333170,0.134509371554576 +60014351042,334135,0.277839029768467 +60014351043,319477,0.211618257261411 +60014351043,328337,0.182572614107884 +60014351043,328344,0.410788381742739 +60014351043,330763,0.195020746887967 +60014352001,0,0 +60014352001,310123,0 +60014352001,312084,0.0543881334981459 +60014352001,312555,0.0741656365883807 +60014352001,313025,0.226205191594561 +60014352001,313399,0 +60014352001,314726,0 +60014352001,318016,0 +60014352001,319189,0.220024721878863 +60014352001,319190,0.0457354758961681 +60014352001,319677,0.030902348578492 +60014352001,324046,0.0333745364647713 +60014352001,329365,0.0580964153275649 +60014352001,329366,0.0531520395550062 +60014352001,329943,0.203955500618047 +60014352002,311227,0.57773851590106 +60014352002,311434,0.049469964664311 +60014352002,319191,0.0441696113074205 +60014352002,320203,0.0600706713780919 +60014352002,324726,0.0530035335689046 +60014352002,328750,0.0936395759717314 +60014352002,330412,0.121908127208481 +60014353001,312763,0.0633802816901408 +60014353001,312883,0.0352112676056338 +60014353001,313027,0.112676056338028 +60014353001,315018,0.429577464788732 +60014353001,322143,0.0892018779342723 +60014353001,322241,0.164319248826291 +60014353001,324435,0.0352112676056338 +60014353001,333650,0.0704225352112676 +60014353002,311042,0.399445214979196 +60014353002,311043,0.0416088765603329 +60014353002,314731,0.206657420249653 +60014353002,317836,0.0624133148404993 +60014353002,319160,0.0832177531206657 +60014353002,320526,0.11373092926491 +60014353002,320747,0.0929264909847434 +60014353003,312088,1 +60014354001,310102,0.0386416861826698 +60014354001,311034,0.00117096018735363 +60014354001,311036,0.0585480093676815 +60014354001,311417,0.126463700234192 +60014354001,312374,0.0292740046838408 +60014354001,312768,0.148711943793911 +60014354001,314168,0.0339578454332553 +60014354001,316075,0.00702576112412178 +60014354001,317323,0.0245901639344262 +60014354001,318019,0.0831381733021077 +60014354001,322240,0.0526932084309134 +60014354001,324437,0.0702576112412178 +60014354001,329534,0.293911007025761 +60014354001,331192,0.031615925058548 +60014354002,311418,0.0204918032786885 +60014354002,314370,0.0245901639344262 +60014354002,316077,0.0532786885245902 +60014354002,320479,0.00819672131147541 +60014354002,320512,0.0614754098360656 +60014354002,320515,0.0122950819672131 +60014354002,322238,0.122950819672131 +60014354002,324451,0.00614754098360656 +60014354002,328369,0.0942622950819672 +60014354002,328744,0.131147540983607 +60014354002,329782,0.118852459016393 +60014354002,330408,0 +60014354002,330585,0 +60014354002,331193,0.100409836065574 +60014354002,331225,0.10655737704918 +60014354002,331671,0 +60014354002,331674,0.00204918032786885 +60014354002,332719,0.137295081967213 +60014354003,313887,0.0743243243243243 +60014354003,315192,0.331081081081081 +60014354003,320480,0.0337837837837838 +60014354003,322213,0.0472972972972973 +60014354003,332716,0.371621621621622 +60014354003,332722,0.141891891891892 +60014355001,312192,0.0792079207920792 +60014355001,312753,0.0668316831683168 +60014355001,315017,0.25990099009901 +60014355001,320467,0.0792079207920792 +60014355001,322993,0.0569306930693069 +60014355001,322997,0.183168316831683 +60014355001,322998,0.222772277227723 +60014355001,322999,0.051980198019802 +60014355002,311683,0.0899280575539568 +60014355002,316789,0.0179856115107914 +60014355002,319280,0.16726618705036 +60014355002,322208,0.0557553956834532 +60014355002,322209,0.0719424460431655 +60014355002,329182,0.0143884892086331 +60014355002,329343,0.0359712230215827 +60014355002,329783,0.0431654676258993 +60014355002,330596,0.294964028776978 +60014355002,331204,0.0359712230215827 +60014355002,332325,0.0809352517985611 +60014355002,332327,0.0557553956834532 +60014355002,332328,0.0359712230215827 +60014355003,310073,0.0662100456621005 +60014355003,317144,0.0570776255707763 +60014355003,318800,0.237442922374429 +60014355003,319653,0.0296803652968037 +60014355003,319655,0.111872146118721 +60014355003,319656,0.0753424657534247 +60014355003,320469,0.0479452054794521 +60014355003,323758,0.0388127853881279 +60014355003,331379,0.255707762557078 +60014355003,332718,0.0799086757990868 +60014356011,312221,0.0172786177105832 +60014356011,312563,0.159827213822894 +60014356011,316072,0.060475161987041 +60014356011,319858,0.128509719222462 +60014356011,322099,0.166306695464363 +60014356011,324444,0.19438444924406 +60014356011,326101,0.0615550755939525 +60014356011,328138,0.107991360691145 +60014356011,328584,0.103671706263499 +60014356012,312900,0.0706713780918728 +60014356012,313196,0.287985865724382 +60014356012,318205,0.238515901060071 +60014356012,323048,0.171378091872792 +60014356012,327123,0.231448763250883 +60014356021,310394,0.131868131868132 +60014356021,320504,0.126373626373626 +60014356021,322233,0.351648351648352 +60014356021,322992,0.200549450549451 +60014356021,330583,0.18956043956044 +60014356022,315184,0.40327868852459 +60014356022,327734,0.59672131147541 +60014356023,315183,0.109053497942387 +60014356023,319296,0.257201646090535 +60014356023,328136,0.0411522633744856 +60014356023,328159,0.102880658436214 +60014356023,330397,0.0246913580246914 +60014356023,331699,0.337448559670782 +60014356023,333011,0.127572016460905 +60014356024,314532,0.077079107505071 +60014356024,316085,0.0831643002028398 +60014356024,320729,0.168356997971602 +60014356024,322311,0.0750507099391481 +60014356024,323031,0.239350912778905 +60014356024,329197,0.0953346855983773 +60014356024,330577,0.103448275862069 +60014356024,331689,0.158215010141988 +60014357001,311856,0.0672451193058568 +60014357001,314550,0.0629067245119306 +60014357001,315737,0.0932754880694143 +60014357001,316086,0.134490238611714 +60014357001,316590,0.557483731019523 +60014357001,326285,0.0845986984815618 +60014357002,311396,0.093984962406015 +60014357002,313214,0.172932330827068 +60014357002,316589,0 +60014357002,317325,0.206766917293233 +60014357002,320722,0.120300751879699 +60014357002,320728,0.093984962406015 +60014357002,329371,0.120300751879699 +60014357002,330390,0.191729323308271 +60014357003,312560,0.191780821917808 +60014357003,312721,0.0712328767123288 +60014357003,314704,0.13972602739726 +60014357003,323230,0.295890410958904 +60014357003,329372,0.0273972602739726 +60014357003,330392,0.126027397260274 +60014357003,333360,0.147945205479452 +60014357004,311851,0.102981029810298 +60014357004,311853,0.0975609756097561 +60014357004,316609,0.330623306233062 +60014357004,318202,0.0677506775067751 +60014357004,318203,0.121951219512195 +60014357004,319854,0.143631436314363 +60014357004,328137,0 +60014357004,329800,0.018970189701897 +60014357004,330135,0.116531165311653 +60014358001,311213,0.111675126903553 +60014358001,311441,0 +60014358001,313902,0.0431472081218274 +60014358001,314074,0.241116751269036 +60014358001,316070,0.233502538071066 +60014358001,326097,0.0964467005076142 +60014358001,326716,0.0989847715736041 +60014358001,326902,0.101522842639594 +60014358001,326903,0.0736040609137056 +60014358002,314073,0.199524940617577 +60014358002,316378,0.0736342042755344 +60014358002,316381,0.0570071258907363 +60014358002,320438,0.0973871733966746 +60014358002,326251,0.213776722090261 +60014358002,326708,0.154394299287411 +60014358002,329525,0.0950118764845606 +60014358002,329526,0.109263657957245 +60014358003,310568,0.0696517412935323 +60014358003,313211,0.335820895522388 +60014358003,321720,0.129353233830846 +60014358003,322094,0.0696517412935323 +60014358003,322095,0.0796019900497512 +60014358003,322969,0.082089552238806 +60014358003,323100,0.233830845771144 +60014358004,313419,0.43 +60014358004,318604,0.1225 +60014358004,320372,0.2025 +60014358004,329779,0.0775 +60014358004,332064,0.105 +60014358004,333352,0.0625 +60014359001,312069,0.102661596958175 +60014359001,312543,0.247148288973384 +60014359001,312838,0.0418250950570342 +60014359001,319840,0.357414448669202 +60014359001,321118,0.0456273764258555 +60014359001,326270,0.0741444866920152 +60014359001,326272,0.0798479087452472 +60014359001,329533,0.0513307984790875 +60014359002,310563,0.103030303030303 +60014359002,316374,0.127272727272727 +60014359002,316375,0.0545454545454545 +60014359002,316376,0.111111111111111 +60014359002,316377,0.0545454545454545 +60014359002,320436,0.131313131313131 +60014359002,329523,0.123232323232323 +60014359002,330125,0.0848484848484849 +60014359002,332744,0.21010101010101 +60014359003,0,0 +60014359003,310562,0.0678851174934726 +60014359003,312068,0.0835509138381201 +60014359003,312839,0.0704960835509138 +60014359003,312887,0 +60014359003,312898,0.031331592689295 +60014359003,316373,0.253263707571802 +60014359003,321116,0.234986945169713 +60014359003,321121,0.117493472584856 +60014359003,325432,0 +60014359003,326247,0.0678851174934726 +60014359003,326728,0.00261096605744125 +60014359003,326731,0.0704960835509138 +60014359004,312070,0.191489361702128 +60014359004,317821,0.523404255319149 +60014359004,320186,0.225531914893617 +60014359004,325149,0.0595744680851064 +60014360001,316380,0.0851735015772871 +60014360001,322089,0.116719242902208 +60014360001,326249,0.138801261829653 +60014360001,329524,0.16403785488959 +60014360001,329527,0.20820189274448 +60014360001,333002,0.287066246056782 +60014360002,310565,0.077720207253886 +60014360002,310566,0.0656303972366149 +60014360002,310569,0.134715025906736 +60014360002,312219,0.167530224525043 +60014360002,314070,0.0639032815198618 +60014360002,319835,0.120898100172712 +60014360002,319837,0.105354058721934 +60014360002,320440,0.0639032815198618 +60014360002,326248,0.075993091537133 +60014360002,326252,0.0898100172711572 +60014360002,326703,0.00172711571675302 +60014360002,326714,0.0328151986183074 +60014360003,311211,0.151851851851852 +60014360003,314701,0.0703703703703704 +60014360003,316385,0.0833333333333333 +60014360003,319830,0.159259259259259 +60014360003,320007,0.0777777777777778 +60014360003,322092,0.127777777777778 +60014360003,322097,0.062962962962963 +60014360003,326705,0.0888888888888889 +60014360003,326715,0.0555555555555556 +60014360003,326896,0.0814814814814815 +60014360003,329529,0.0407407407407407 +60014361001,311413,0.140127388535032 +60014361001,314076,0.0923566878980892 +60014361001,314702,0.0923566878980892 +60014361001,326712,0.585987261146497 +60014361001,329530,0.089171974522293 +60014361002,310093,0.4923273657289 +60014361002,311852,0.040920716112532 +60014361002,311855,0.0473145780051151 +60014361002,316071,0.0370843989769821 +60014361002,317098,0.0460358056265985 +60014361002,319839,0.0281329923273657 +60014361002,319845,0.0319693094629156 +60014361002,322201,0.040920716112532 +60014361002,326901,0.194373401534527 +60014361002,327520,0.040920716112532 +60014361003,311209,0.0470957613814757 +60014361003,311210,0.0832025117739403 +60014361003,312749,0.0266875981161695 +60014361003,314071,0.0518053375196232 +60014361003,316379,0.0502354788069074 +60014361003,316382,0.0941915227629513 +60014361003,316383,0.043956043956044 +60014361003,320585,0.0800627943485086 +60014361003,326253,0.0659340659340659 +60014361003,326707,0.182103610675039 +60014361003,326710,0.0502354788069074 +60014361003,326711,0.0769230769230769 +60014361003,332742,0.14756671899529 +60014362001,321143,0.587155963302752 +60014362001,327717,0.412844036697248 +60014362002,310094,0.253846153846154 +60014362002,311849,0.303846153846154 +60014362002,311850,0.115384615384615 +60014362002,312557,0.0538461538461538 +60014362002,313544,0.0525641025641026 +60014362002,317101,0.0576923076923077 +60014362002,330767,0.162820512820513 +60014363001,311414,0.0664697193500739 +60014363001,322207,0.112259970457903 +60014363001,322211,0.0886262924667651 +60014363001,323769,0.0679468242245199 +60014363001,323770,0.085672082717873 +60014363001,328580,0.174298375184638 +60014363001,329183,0.246676514032496 +60014363001,332052,0.118168389955687 +60014363001,332053,0.0398818316100443 +60014363002,313888,0.10223642172524 +60014363002,313891,0.00319488817891374 +60014363002,318789,0.136315228966986 +60014363002,319983,0.0830670926517572 +60014363002,322216,0.0447284345047923 +60014363002,322243,0.0447284345047923 +60014363002,326750,0.0394036208732694 +60014363002,329345,0.128860489882854 +60014363002,329346,0.0543130990415335 +60014363002,329785,0.0276890308839191 +60014363002,330414,0.146964856230032 +60014363002,331029,0.020234291799787 +60014363002,331195,0.168264110756124 +60014363003,310747,0.195804195804196 +60014363003,311415,0.216783216783217 +60014363003,319982,0.199300699300699 +60014363003,322214,0.160839160839161 +60014363003,324439,0.0524475524475524 +60014363003,331678,0.174825174825175 +60014363004,310745,0.088 +60014363004,313889,0.068 +60014363004,319872,0.472 +60014363004,321177,0.1 +60014363004,323081,0 +60014363004,329788,0.272 +60014364011,315905,0.566929133858268 +60014364011,316090,0.0813648293963255 +60014364011,333845,0.351706036745407 +60014364012,310806,0.0935064935064935 +60014364012,311037,0.0441558441558442 +60014364012,321091,0.0766233766233766 +60014364012,321137,0.0805194805194805 +60014364012,323089,0.14025974025974 +60014364012,328587,0.422077922077922 +60014364012,331877,0.106493506493507 +60014364012,332995,0.0363636363636364 +60014364013,310794,0.116535433070866 +60014364013,310808,0.0425196850393701 +60014364013,311448,0.0251968503937008 +60014364013,311704,0.062992125984252 +60014364013,313566,0.0393700787401575 +60014364013,313732,0.270866141732283 +60014364013,318976,0.44251968503937 +60014364014,312906,0.213559322033898 +60014364014,318602,0.076271186440678 +60014364014,318966,0.164406779661017 +60014364014,329956,0.105084745762712 +60014364014,330409,0.225423728813559 +60014364014,331194,0.145762711864407 +60014364014,332069,0.0694915254237288 +60014364015,310389,0.522346368715084 +60014364015,311690,0.0921787709497207 +60014364015,312889,0.217877094972067 +60014364015,323033,0.167597765363128 +60014364021,311233,0.318702290076336 +60014364021,321092,0.0438931297709924 +60014364021,321179,0.150763358778626 +60014364021,322275,0.0267175572519084 +60014364021,324934,0.194656488549618 +60014364021,331400,0.118320610687023 +60014364021,331878,0.146946564885496 +60014364022,311232,0.104255319148936 +60014364022,319879,0.353191489361702 +60014364022,321139,0.527659574468085 +60014364022,331879,0.0148936170212766 +60014365001,311038,0.128 +60014365001,311058,0.16 +60014365001,312888,0.16 +60014365001,317331,0.0128 +60014365001,320519,0.2384 +60014365001,321147,0.0176 +60014365001,322991,0.1456 +60014365001,323164,0.0096 +60014365001,325598,0.0064 +60014365001,329364,0.0016 +60014365001,331196,0.12 +60014365002,311040,0.0474860335195531 +60014365002,312762,0.518621973929236 +60014365002,315907,0.0726256983240224 +60014365002,318967,0.0167597765363128 +60014365002,319658,0.122905027932961 +60014365002,322133,0.0512104283054004 +60014365002,322246,0.142458100558659 +60014365002,323098,0 +60014365002,324441,0 +60014365002,326440,0.0279329608938547 +60014365002,330153,0 +60014366011,312754,0.028169014084507 +60014366011,322244,0.110328638497653 +60014366011,322988,0.183098591549296 +60014366011,324954,0.0868544600938967 +60014366011,334482,0.591549295774648 +60014366012,313516,0.150421179302046 +60014366012,313547,0.133574007220217 +60014366012,314169,0.0409145607701564 +60014366012,315895,0.369434416365824 +60014366012,316771,0.0385078219013237 +60014366012,316772,0.0469314079422383 +60014366012,331679,0.220216606498195 +60014366013,311041,0.49155722326454 +60014366013,312378,0.26078799249531 +60014366013,316416,0.136960600375235 +60014366013,332982,0.110694183864916 +60014366021,315203,0.0216998191681736 +60014366021,317321,0.35623869801085 +60014366021,318024,0 +60014366021,319680,0.141048824593128 +60014366021,319887,0.452983725135624 +60014366021,328752,0.0280289330922242 +60014366022,313892,0.152129817444219 +60014366022,320522,0.0689655172413793 +60014366022,320533,0.137931034482759 +60014366022,330570,0.0385395537525355 +60014366022,330584,0.572008113590264 +60014366022,331669,0.0304259634888438 +60014367001,310092,0.534526854219949 +60014367001,318558,0.0485933503836317 +60014367001,322104,0.10997442455243 +60014367001,322105,0.107416879795396 +60014367001,323049,0.0690537084398977 +60014367001,331383,0.130434782608696 +60014367002,310777,0.231647634584013 +60014367002,313200,0.0407830342577488 +60014367002,313201,0.0244698205546493 +60014367002,313509,0.066884176182708 +60014367002,314181,0.0424143556280587 +60014367002,318023,0.0799347471451876 +60014367002,318561,0.0734094616639478 +60014367002,320462,0.0815660685154976 +60014367002,320463,0.0962479608482871 +60014367002,320464,0.0636215334420881 +60014367002,328575,0.0864600326264274 +60014367002,331381,0.0766721044045677 +60014367002,334479,0.0358890701468189 +60014368001,310570,0.136200716845878 +60014368001,313386,0.038231780167264 +60014368001,313522,0.388291517323775 +60014368001,322984,0.037037037037037 +60014368001,323733,0.400238948626045 +60014368002,310368,0.282744282744283 +60014368002,310370,0.523908523908524 +60014368002,314536,0.193347193347193 +60014369001,313198,0.0432098765432099 +60014369001,317792,0.0864197530864197 +60014369001,317822,0.220679012345679 +60014369001,319859,0.0787037037037037 +60014369001,322101,0.121913580246914 +60014369001,323110,0.0555555555555556 +60014369001,326278,0.151234567901235 +60014369001,329798,0.242283950617284 +60014369002,318586,0.428571428571429 +60014369002,318960,0.212244897959184 +60014369002,331028,0.277551020408163 +60014369002,331380,0.0816326530612245 +60014369003,317484,0.367892976588629 +60014369003,317491,0.214046822742475 +60014369003,317793,0.11371237458194 +60014369003,319860,0.0936454849498328 +60014369003,319984,0.107023411371237 +60014369003,322100,0.103678929765886 +60014369003,327343,0 +60014369004,311857,0.20859872611465 +60014369004,311858,0.0573248407643312 +60014369004,315041,0.286624203821656 +60014369004,318560,0.0493630573248408 +60014369004,322951,0.089171974522293 +60014369004,324443,0.0589171974522293 +60014369004,327344,0.0445859872611465 +60014369004,327521,0.111464968152866 +60014369004,329531,0.035031847133758 +60014369004,330586,0.0589171974522293 +60014370001,315202,0.24435318275154 +60014370001,315204,0 +60014370001,319877,0.669404517453799 +60014370001,322219,0.0862422997946612 +60014370002,311393,0.145522388059701 +60014370002,313744,0.115671641791045 +60014370002,321786,0.16044776119403 +60014370002,322220,0.156716417910448 +60014370002,322221,0.17910447761194 +60014370002,331011,0.242537313432836 +60014370003,311052,0.156462585034014 +60014370003,311698,0.0612244897959184 +60014370003,313895,0 +60014370003,313896,0.421768707482993 +60014370003,314173,0.129251700680272 +60014370003,317494,0.0498866213151927 +60014370003,320613,0.0566893424036281 +60014370003,326447,0.0612244897959184 +60014370003,329201,0 +60014370003,333362,0.0634920634920635 +60014371011,0,0 +60014371011,310579,0 +60014371011,310803,0 +60014371011,311228,0.00233100233100233 +60014371011,311860,0.0034965034965035 +60014371011,311866,0 +60014371011,311877,0.00932400932400932 +60014371011,312220,0 +60014371011,313039,0 +60014371011,313491,0.00699300699300699 +60014371011,314363,0 +60014371011,314544,0 +60014371011,314551,0.00116550116550117 +60014371011,315197,0 +60014371011,316762,0 +60014371011,316766,0 +60014371011,316767,0 +60014371011,318594,0 +60014371011,318792,0 +60014371011,319847,0 +60014371011,319848,0.00582750582750583 +60014371011,320451,0 +60014371011,320561,0 +60014371011,320623,0 +60014371011,320923,0 +60014371011,322185,0.00582750582750583 +60014371011,322202,0.151515151515152 +60014371011,322252,0.00815850815850816 +60014371011,322950,0 +60014371011,322953,0 +60014371011,323150,0.00116550116550117 +60014371011,323156,0.048951048951049 +60014371011,323174,0.00116550116550117 +60014371011,325426,0.00116550116550117 +60014371011,326898,0 +60014371011,327351,0 +60014371011,327540,0 +60014371011,327952,0.0034965034965035 +60014371011,327957,0 +60014371011,330591,0 +60014371011,331388,0 +60014371011,332355,0 +60014371011,332536,0 +60014371011,332565,0.749417249417249 +60014371012,317996,0.275390625 +60014371012,317998,0.28515625 +60014371012,317999,0.0546875 +60014371012,319179,0.05859375 +60014371012,319181,0.048828125 +60014371012,326443,0.27734375 +60014371013,310121,0.0904977375565611 +60014371013,311066,0.124434389140271 +60014371013,312914,0.0904977375565611 +60014371013,313715,0.0542986425339367 +60014371013,317311,0.083710407239819 +60014371013,317312,0.0950226244343891 +60014371013,319175,0.0769230769230769 +60014371013,319176,0.0316742081447964 +60014371013,320731,0.085972850678733 +60014371013,322250,0.101809954751131 +60014371013,324040,0.0610859728506787 +60014371013,329351,0.104072398190045 +60014371021,311067,1 +60014371022,310398,1 +60014371023,310367,0.172307692307692 +60014371023,310582,0.0615384615384615 +60014371023,312905,0.113846153846154 +60014371023,313745,0 +60014371023,323074,0.135384615384615 +60014371023,333347,0.516923076923077 +60014372001,310787,0 +60014372001,311229,0.0178173719376392 +60014372001,312866,0.0278396436525612 +60014372001,317797,0.0501113585746102 +60014372001,317798,0.407572383073497 +60014372001,318221,0.0489977728285078 +60014372001,322312,0.11804008908686 +60014372001,323168,0.00779510022271715 +60014372001,325600,0.0913140311804009 +60014372001,326283,0.066815144766147 +60014372001,327523,0.00556792873051225 +60014372001,327525,0.11804008908686 +60014372001,332070,0.0400890868596882 +60014372002,311864,0.0267175572519084 +60014372002,319293,0.16030534351145 +60014372002,319985,0.232824427480916 +60014372002,320009,0.0648854961832061 +60014372002,323149,0.137404580152672 +60014372002,329794,0.0305343511450382 +60014372002,330750,0.347328244274809 +60014372003,311394,0.237864077669903 +60014372003,313518,0.150485436893204 +60014372003,313897,0.0728155339805825 +60014372003,319875,0.121359223300971 +60014372003,322983,0.157766990291262 +60014372003,329350,0.177184466019417 +60014372003,332727,0.0825242718446602 +60014372004,327526,0.0913907284768212 +60014372004,328758,0.109933774834437 +60014372004,330749,0.00794701986754967 +60014372004,331393,0.0357615894039735 +60014372004,333675,0.754966887417219 +60014373001,311432,0.373390557939914 +60014373001,312377,0.321888412017167 +60014373001,323211,0.103004291845494 +60014373001,333373,0.201716738197425 +60014373002,322124,0.104116222760291 +60014373002,323206,0.164648910411622 +60014373002,329953,0.215496368038741 +60014373002,331021,0.515738498789346 +60014373003,313564,0.320675105485232 +60014373003,316610,0.172995780590717 +60014373003,320732,0.135021097046413 +60014373003,323736,0.210970464135021 +60014373003,323738,0.160337552742616 +60014374001,310126,0.0666666666666667 +60014374001,310374,0.225 +60014374001,313036,0.266666666666667 +60014374001,313390,0.195833333333333 +60014374001,313415,0.0958333333333333 +60014374001,320577,0.0625 +60014374001,322120,0.0875 +60014374002,310377,0.0715328467153285 +60014374002,310378,0.15036496350365 +60014374002,310379,0.0642335766423358 +60014374002,310799,0.0467153284671533 +60014374002,311695,0.201459854014599 +60014374002,314539,0.0583941605839416 +60014374002,319890,0.0496350364963504 +60014374002,323742,0.0642335766423358 +60014374002,323743,0.0525547445255474 +60014374002,325127,0.0525547445255474 +60014374002,325128,0.054014598540146 +60014374002,329954,0.0744525547445255 +60014374002,329955,0.0598540145985401 +60014375001,315191,0.76890756302521 +60014375001,329958,0.23109243697479 +60014375002,310767,0.0260736196319018 +60014375002,313555,0.237730061349693 +60014375002,320189,0.0352760736196319 +60014375002,320398,0.455521472392638 +60014375002,321738,0.0828220858895705 +60014375002,324949,0.111963190184049 +60014375002,331884,0.0506134969325153 +60014376001,312357,0.137755102040816 +60014376001,313215,0.36734693877551 +60014376001,313417,0.147959183673469 +60014376001,320196,0.0306122448979592 +60014376001,320373,0.141156462585034 +60014376001,321709,0.0408163265306122 +60014376001,322132,0.0306122448979592 +60014376001,329974,0.103741496598639 +60014376002,312356,0.303921568627451 +60014376002,316093,0.0849673202614379 +60014376002,317124,0.137254901960784 +60014376002,320375,0.160130718954248 +60014376002,321727,0.124183006535948 +60014376002,332531,0.117647058823529 +60014376002,332987,0.0718954248366013 +60014377011,325440,1 +60014377012,312061,0.421052631578947 +60014377012,313218,0.43796992481203 +60014377012,316586,0.140977443609023 +60014377013,312360,0.208904109589041 +60014377013,324943,0.246575342465753 +60014377013,326441,0.544520547945205 +60014377021,311061,0.3265625 +60014377021,312078,0.409375 +60014377021,321737,0.2640625 +60014377022,325770,1 +60014378001,312355,0.0290697674418605 +60014378001,312362,0.0281007751937985 +60014378001,313216,0.0523255813953488 +60014378001,313217,0.0552325581395349 +60014378001,313712,0.0775193798449612 +60014378001,314535,0.0116279069767442 +60014378001,319164,0.0271317829457364 +60014378001,319662,0.0455426356589147 +60014378001,320534,0.0329457364341085 +60014378001,321094,0.0678294573643411 +60014378001,321095,0.185077519379845 +60014378001,321096,0.0368217054263566 +60014378001,326439,0.176356589147287 +60014378001,332528,0.0591085271317829 +60014378001,332746,0.0494186046511628 +60014378001,332985,0.0455426356589147 +60014378001,333172,0.0203488372093023 +60014378002,311402,0.0618181818181818 +60014378002,317309,0.781818181818182 +60014378002,327543,0.156363636363636 +60014379001,312231,0.0824468085106383 +60014379001,315720,0.125 +60014379001,315721,0.023936170212766 +60014379001,322276,0.186170212765957 +60014379001,326454,0.297872340425532 +60014379001,326733,0.279255319148936 +60014379001,328335,0.00531914893617021 +60014379002,312229,0.179310344827586 +60014379002,314546,0.344827586206897 +60014379002,327977,0.475862068965517 +60014380001,310080,0.0520547945205479 +60014380001,315725,0.0356164383561644 +60014380001,316398,0.0356164383561644 +60014380001,318217,0.0520547945205479 +60014380001,319663,0.0397260273972603 +60014380001,323026,0.0383561643835616 +60014380001,323094,0.0356164383561644 +60014380001,323135,0.23972602739726 +60014380001,323136,0.0520547945205479 +60014380001,326075,0.113698630136986 +60014380001,327546,0.036986301369863 +60014380001,328921,0.268493150684932 +60014380002,312245,0.0696378830083565 +60014380002,312246,0.125348189415042 +60014380002,312252,0.220055710306407 +60014380002,319480,0.116991643454039 +60014380002,320384,0.0752089136490251 +60014380002,323093,0.0724233983286908 +60014380002,328338,0.32033426183844 +60014381001,311870,0.500994035785288 +60014381001,312746,0.0616302186878728 +60014381001,312870,0.0914512922465209 +60014381001,318224,0.127236580516899 +60014381001,318972,0.0417495029821074 +60014381001,328595,0.0198807157057654 +60014381001,331222,0.157057654075547 +60014381002,318970,0.13265306122449 +60014381002,319478,0.0918367346938776 +60014381002,319479,0.0782312925170068 +60014381002,319664,0.112244897959184 +60014381002,319993,0.0816326530612245 +60014381002,323027,0.153061224489796 +60014381002,323028,0.149659863945578 +60014381002,325420,0.200680272108844 +60014381003,315022,0.110032362459547 +60014381003,316092,0.0938511326860842 +60014381003,322268,0.132686084142395 +60014381003,322269,0.462783171521036 +60014381003,323030,0.110032362459547 +60014381003,327713,0.0906148867313916 +60014381004,316401,0.180487804878049 +60014381004,316402,0.158536585365854 +60014381004,319666,0.0658536585365854 +60014381004,320385,0.0878048780487805 +60014381004,323126,0.117073170731707 +60014381004,323127,0.0878048780487805 +60014381004,325590,0.0902439024390244 +60014381004,326074,0.14390243902439 +60014381004,328347,0.0682926829268293 +60014381005,317105,0.193939393939394 +60014381005,317107,0.106060606060606 +60014381005,323133,0.248484848484849 +60014381005,326076,0.0818181818181818 +60014381005,326254,0.190909090909091 +60014381005,326255,0.0848484848484849 +60014381005,328929,0.0939393939393939 +60014381006,325414,0.516129032258065 +60014381006,325591,0.125448028673835 +60014381006,328346,0.232974910394265 +60014381006,329352,0.125448028673835 +60014382011,314352,0.576119402985075 +60014382011,314353,0.122388059701493 +60014382011,319769,0.176119402985075 +60014382011,319772,0.125373134328358 +60014382012,314719,0.511363636363636 +60014382012,327109,0.488636363636364 +60014382013,311051,0 +60014382013,312361,0.204819277108434 +60014382013,314354,0.114457831325301 +60014382013,314717,0.177710843373494 +60014382013,318764,0.0843373493975904 +60014382013,318765,0.0120481927710843 +60014382013,319773,0.126506024096386 +60014382013,324032,0.19578313253012 +60014382013,324228,0.0843373493975904 +60014382031,310112,0.212871287128713 +60014382031,310118,0 +60014382031,310770,0 +60014382031,310788,0.00495049504950495 +60014382031,311430,0 +60014382031,312087,0 +60014382031,312232,0 +60014382031,312859,0.0412541254125413 +60014382031,312861,0 +60014382031,312862,0 +60014382031,313220,0.567656765676568 +60014382031,313561,0 +60014382031,314077,0 +60014382031,315379,0.0924092409240924 +60014382031,316396,0 +60014382031,318788,0 +60014382031,318969,0 +60014382031,318978,0 +60014382031,319283,0 +60014382031,319776,0.0808580858085809 +60014382031,320622,0 +60014382031,322127,0 +60014382031,322277,0 +60014382031,323018,0 +60014382031,323024,0 +60014382031,323025,0 +60014382031,324948,0 +60014382031,325150,0 +60014382031,325418,0 +60014382031,328163,0 +60014382032,317308,0 +60014382032,317490,0.358585858585859 +60014382032,318767,0.069023569023569 +60014382032,319169,0.0420875420875421 +60014382032,319774,0.341750841750842 +60014382032,328753,0.0858585858585859 +60014382032,333173,0.102693602693603 +60014382041,311423,0.534926470588235 +60014382041,313588,0.139705882352941 +60014382041,319171,0.00367647058823529 +60014382041,320010,0.117647058823529 +60014382041,321108,0.0588235294117647 +60014382041,329805,0.145220588235294 +60014382042,319173,0.34375 +60014382042,319469,0.0546875 +60014382042,319473,0.223958333333333 +60014382042,323019,0.2734375 +60014382042,324035,0.104166666666667 +60014382043,310781,0.0655555555555556 +60014382043,311875,0.0688888888888889 +60014382043,311876,0.154444444444444 +60014382043,312237,0.0255555555555556 +60014382043,312872,0.0322222222222222 +60014382043,314360,0.0277777777777778 +60014382043,315016,0.115555555555556 +60014382043,319777,0.217777777777778 +60014382043,320565,0.0255555555555556 +60014382043,324235,0.143333333333333 +60014382043,325131,0.0433333333333333 +60014382043,329806,0.0411111111111111 +60014382043,332071,0.0388888888888889 +60014383001,316094,0.262798634812287 +60014383001,319183,0.737201365187713 +60014383002,312730,0.104046242774566 +60014383002,313719,0.0895953757225433 +60014383002,318000,0.0809248554913295 +60014383002,318001,0.0780346820809249 +60014383002,318009,0.0982658959537572 +60014383002,319182,0.132947976878613 +60014383002,324041,0.0375722543352601 +60014383002,324728,0.106936416184971 +60014383002,333177,0.0722543352601156 +60014383002,333179,0.199421965317919 +60014383003,312729,0.130252100840336 +60014383003,313394,0 +60014383003,313716,0.180672268907563 +60014383003,313717,0.264705882352941 +60014383003,317997,0.15546218487395 +60014383003,319891,0.142857142857143 +60014383003,333178,0.126050420168067 +60014384001,312066,0.0492307692307692 +60014384001,312745,0.48 +60014384001,322256,0.356923076923077 +60014384001,324730,0.113846153846154 +60014384002,312731,0 +60014384002,313219,0.0346534653465347 +60014384002,314549,0.0148514851485149 +60014384002,319292,0.116336633663366 +60014384002,321104,0.715346534653465 +60014384002,323157,0 +60014384002,329960,0.118811881188119 +60014401001,310719,0.00114285714285714 +60014401001,311192,0.00114285714285714 +60014401001,312532,0.234285714285714 +60014401001,313689,0.382857142857143 +60014401001,317985,0 +60014401001,318734,0 +60014401001,322003,0.174857142857143 +60014401001,322030,0.0137142857142857 +60014401001,324243,0 +60014401001,325549,0.00685714285714286 +60014401001,326205,0.0388571428571429 +60014401001,328125,0.146285714285714 +60014401001,328566,0 +60014402001,311186,0.197260273972603 +60014402001,311553,0.00547945205479452 +60014402001,313664,0.145205479452055 +60014402001,313665,0.0547945205479452 +60014402001,313670,0.0465753424657534 +60014402001,315155,0.00273972602739726 +60014402001,315494,0.0493150684931507 +60014402001,319694,0.142465753424658 +60014402001,320153,0.153424657534247 +60014402001,324904,0.202739726027397 +60014402002,311185,0.0492227979274611 +60014402002,312998,0.038860103626943 +60014402002,313000,0.272020725388601 +60014402002,321847,0.0958549222797927 +60014402002,322754,0.0414507772020725 +60014402002,322755,0.189119170984456 +60014402002,324007,0.155440414507772 +60014402002,324902,0.0233160621761658 +60014402002,324906,0.0207253886010363 +60014402002,324908,0.113989637305699 +60014402003,312991,0.0909090909090909 +60014402003,312996,0.0880681818181818 +60014402003,315455,0.0482954545454545 +60014402003,323997,0.514204545454545 +60014402003,324002,0.0511363636363636 +60014402003,324005,0.144886363636364 +60014402003,324901,0.0625 +60014402004,312698,0.0664652567975831 +60014402004,312994,0.0634441087613293 +60014402004,312997,0.129909365558912 +60014402004,313360,0.0422960725075529 +60014402004,313361,0.0996978851963746 +60014402004,316561,0 +60014402004,319098,0.114803625377644 +60014402004,320151,0.166163141993958 +60014402004,325554,0.0574018126888218 +60014402004,328303,0.102719033232628 +60014402004,328306,0.157099697885196 +60014403011,315001,0.248106060606061 +60014403011,318451,0.53219696969697 +60014403011,322817,0.0340909090909091 +60014403011,325744,0.0738636363636364 +60014403011,326041,0.111742424242424 +60014403012,310341,0.040650406504065 +60014403012,310548,0.136585365853659 +60014403012,311656,0 +60014403012,317075,0.292682926829268 +60014403012,318177,0.0536585365853659 +60014403012,318178,0.0569105691056911 +60014403012,318774,0.0504065040650407 +60014403012,324411,0.28780487804878 +60014403012,325742,0.0813008130081301 +60014403013,317780,0.0712830957230143 +60014403013,318193,0.169042769857434 +60014403013,318464,0.065173116089613 +60014403013,320706,0.0712830957230143 +60014403013,320708,0.065173116089613 +60014403013,322924,0.276985743380855 +60014403013,327949,0.0753564154786151 +60014403013,331183,0 +60014403013,334483,0.205702647657841 +60014403014,311546,0.0974576271186441 +60014403014,311657,0 +60014403014,312339,0 +60014403014,312340,0.00423728813559322 +60014403014,312706,0 +60014403014,314893,0.086864406779661 +60014403014,315885,0 +60014403014,320699,0.169491525423729 +60014403014,322002,0.0635593220338983 +60014403014,322909,0.0826271186440678 +60014403014,323995,0.105932203389831 +60014403014,323996,0 +60014403014,325080,0.315677966101695 +60014403014,332491,0.0741525423728814 +60014403014,333617,0 +60014403014,333618,0 +60014403041,311562,0.128133704735376 +60014403041,313008,0.303621169916435 +60014403041,314514,0.303621169916435 +60014403041,324015,0.0835654596100279 +60014403041,331836,0.181058495821727 +60014403042,312045,0 +60014403042,317275,0.14591439688716 +60014403042,318448,0.120622568093385 +60014403042,319448,0.101167315175097 +60014403042,319462,0.204280155642023 +60014403042,331857,0.0700389105058366 +60014403042,333638,0.357976653696498 +60014403043,310336,0.324390243902439 +60014403043,314697,0.0926829268292683 +60014403043,317277,0.11219512195122 +60014403043,325391,0.0634146341463415 +60014403043,326040,0.0658536585365854 +60014403043,329921,0.0829268292682927 +60014403043,330361,0.151219512195122 +60014403043,330985,0.107317073170732 +60014403051,317965,0.162790697674419 +60014403051,324401,0.232558139534884 +60014403051,331841,0.151162790697674 +60014403051,332496,0.36046511627907 +60014403051,332504,0.0930232558139535 +60014403052,310338,0.125 +60014403052,317976,0.102272727272727 +60014403052,325084,0.128787878787879 +60014403052,330988,0.299242424242424 +60014403052,331634,0.162878787878788 +60014403052,331840,0.181818181818182 +60014403053,310337,0.0774058577405858 +60014403053,311006,0.138075313807531 +60014403053,314316,0.0271966527196653 +60014403053,314693,0.0941422594142259 +60014403053,319080,0.207112970711297 +60014403053,322881,0.0481171548117155 +60014403053,325094,0.171548117154812 +60014403053,332502,0.098326359832636 +60014403053,332503,0.138075313807531 +60014403061,315341,0.618541033434651 +60014403061,317287,0 +60014403061,319076,0.308510638297872 +60014403061,322793,0.0729483282674772 +60014403062,313881,0.100303951367781 +60014403062,315342,0.11854103343465 +60014403062,317969,0.0577507598784195 +60014403062,328567,0.48936170212766 +60014403062,332495,0.148936170212766 +60014403062,332497,0.0851063829787234 +60014403071,319073,0.15375854214123 +60014403071,322726,0.0296127562642369 +60014403071,326043,0.0979498861047836 +60014403071,326227,0.480637813211845 +60014403071,327072,0.0239179954441913 +60014403071,332493,0 +60014403071,333806,0.214123006833713 +60014403072,319075,0.145888594164456 +60014403072,322879,0.615384615384615 +60014403072,324191,0.0875331564986737 +60014403072,327672,0.151193633952255 +60014403073,311196,0.166666666666667 +60014403073,314890,0.213333333333333 +60014403073,317449,0.206666666666667 +60014403073,318533,0.206666666666667 +60014403073,332948,0.206666666666667 +60014403081,314694,0.197898423817863 +60014403081,319787,0.0122591943957968 +60014403081,322772,0.175131348511384 +60014403081,324189,0.0893169877408056 +60014403081,327092,0.0280210157618214 +60014403081,328311,0.408056042031524 +60014403081,333833,0.0893169877408056 +60014403082,312032,0.0645994832041344 +60014403082,312034,0.129198966408269 +60014403082,312696,0.532299741602067 +60014403082,312999,0.0749354005167959 +60014403082,315457,0.0749354005167959 +60014403082,318531,0 +60014403082,322756,0.124031007751938 +60014403083,312981,0.251295336787565 +60014403083,312992,0.0829015544041451 +60014403083,319091,0.139896373056995 +60014403083,324195,0.0751295336787565 +60014403083,324197,0.077720207253886 +60014403083,324899,0.119170984455959 +60014403083,326047,0.183937823834197 +60014403083,328307,0.0699481865284974 +60014403084,311198,0.070840197693575 +60014403084,311199,0 +60014403084,312695,0.163097199341021 +60014403084,320156,0.551894563426689 +60014403084,324688,0.214168039538715 +60014403311,311551,0.128571428571429 +60014403311,311663,0.073469387755102 +60014403311,313193,0.342857142857143 +60014403311,313695,0.0612244897959184 +60014403311,315337,0.0122448979591837 +60014403311,317068,0.0591836734693878 +60014403311,328700,0.063265306122449 +60014403311,330982,0.0938775510204082 +60014403311,331834,0.16530612244898 +60014403311,333330,0 +60014403312,310347,0.105134474327628 +60014403312,315879,0.00733496332518337 +60014403312,318444,0.154034229828851 +60014403312,319257,0.569682151589242 +60014403312,324398,0.149144254278729 +60014403312,331835,0.0146699266503667 +60014403321,319129,0.112068965517241 +60014403321,327950,0.0718390804597701 +60014403321,328551,0.17816091954023 +60014403321,328721,0.318965517241379 +60014403321,329920,0.318965517241379 +60014403322,311550,0.266409266409266 +60014403322,313879,0.0868725868725869 +60014403322,314903,0.104247104247104 +60014403322,317761,0.337837837837838 +60014403322,318431,0.0637065637065637 +60014403322,319783,0.140926640926641 +60014403331,310042,0 +60014403331,310346,0.210161662817552 +60014403331,311195,0.394919168591224 +60014403331,313691,0 +60014403331,316580,0 +60014403331,324025,0 +60014403331,330362,0.0023094688221709 +60014403331,333139,0.392609699769053 +60014403332,310332,0 +60014403332,314050,0.614754098360656 +60014403332,317286,0 +60014403332,321966,0.10655737704918 +60014403332,330984,0.278688524590164 +60014403341,314678,0.119305856832972 +60014403341,320703,0.0889370932754881 +60014403341,322043,0.143167028199566 +60014403341,327081,0.188720173535792 +60014403341,331648,0.459869848156182 +60014403342,310731,0.595890410958904 +60014403342,311541,0.0753424657534247 +60014403342,315354,0.0993150684931507 +60014403342,329337,0.0856164383561644 +60014403342,331623,0.116438356164384 +60014403342,331626,0.0273972602739726 +60014403351,313191,0.0674763832658569 +60014403351,313368,0.0607287449392713 +60014403351,318756,0.0782726045883941 +60014403351,321846,0.125506072874494 +60014403351,322029,0.128205128205128 +60014403351,322164,0.0850202429149798 +60014403351,325370,0 +60014403351,328559,0.276653171390013 +60014403351,333637,0.178137651821862 +60014403352,311016,0.521313766596786 +60014403352,314999,0.23130677847659 +60014403352,317987,0.192173305380853 +60014403352,332712,0.0552061495457722 +60014403361,312697,0.205633802816901 +60014403361,314320,0.0746478873239437 +60014403361,316057,0.343661971830986 +60014403361,321849,0.0788732394366197 +60014403361,324027,0.0676056338028169 +60014403361,324689,0.0647887323943662 +60014403361,324690,0.0802816901408451 +60014403361,324713,0.0845070422535211 +60014403362,313164,0.0534682080924856 +60014403362,313353,0.0130057803468208 +60014403362,313668,0.164739884393064 +60014403362,314255,0.183526011560694 +60014403362,317073,0.184971098265896 +60014403362,318394,0 +60014403362,318416,0.0419075144508671 +60014403362,319097,0.0173410404624277 +60014403362,319703,0.069364161849711 +60014403362,328293,0.0982658959537572 +60014403362,330093,0.119942196531792 +60014403362,331630,0.0534682080924856 +60014411001,312346,0.00782997762863535 +60014411001,314295,0.193512304250559 +60014411001,314833,0.0324384787472036 +60014411001,317437,0.0425055928411633 +60014411001,318438,0.0178970917225951 +60014411001,319241,0.0257270693512304 +60014411001,319620,0.0268456375838926 +60014411001,320336,0.0268456375838926 +60014411001,320337,0.0391498881431767 +60014411001,320340,0.0335570469798658 +60014411001,322786,0.0715883668903803 +60014411001,327091,0.0939597315436242 +60014411001,327931,0.0794183445190157 +60014411001,328881,0.0391498881431767 +60014411001,329914,0.10738255033557 +60014411001,332031,0.128635346756152 +60014411001,333311,0.0335570469798658 +60014411002,314259,0.124156545209177 +60014411002,317772,0.105263157894737 +60014411002,318761,0.0107962213225371 +60014411002,318927,0 +60014411002,318928,0 +60014411002,319245,0.0242914979757085 +60014411002,319621,0.0539811066126856 +60014411002,321924,0.282051282051282 +60014411002,325570,0 +60014411002,327507,0.0701754385964912 +60014411002,328295,0.255060728744939 +60014411002,328911,0.0337381916329285 +60014411002,329918,0.0404858299595142 +60014412001,0,0 +60014412001,311191,0.0187090739008419 +60014412001,311193,0.00748362956033676 +60014412001,311677,0.0804490177736202 +60014412001,315860,0.0215154349859682 +60014412001,318434,0.0215154349859682 +60014412001,318435,0.0346117867165575 +60014412001,321873,0.028999064546305 +60014412001,321960,0 +60014412001,328546,0.108512628624883 +60014412001,328872,0.658559401309635 +60014412001,328875,0.019644527595884 +60014412002,317771,0.0505263157894737 +60014412002,322902,0.326315789473684 +60014412002,326892,0.124210526315789 +60014412002,328544,0.0589473684210526 +60014412002,328547,0.0547368421052632 +60014412002,328704,0.0631578947368421 +60014412002,328706,0.0968421052631579 +60014412002,328707,0.0231578947368421 +60014412002,331349,0.0947368421052631 +60014412002,331350,0.107368421052632 +60014412003,310742,0.0241596638655462 +60014412003,313673,0.078781512605042 +60014412003,314256,0.0283613445378151 +60014412003,314257,0.352941176470588 +60014412003,317782,0.0745798319327731 +60014412003,319791,0.0430672268907563 +60014412003,320899,0.0630252100840336 +60014412003,321921,0.0798319327731093 +60014412003,321932,0.0567226890756303 +60014412003,324696,0.105042016806723 +60014412003,324719,0.0588235294117647 +60014412003,329775,0.0346638655462185 +60014413011,316345,0.345195729537367 +60014413011,318418,0.654804270462633 +60014413011,325372,0 +60014413012,313875,0.0589569160997732 +60014413012,314496,0.131519274376417 +60014413012,314892,0.205215419501134 +60014413012,319238,0.0192743764172336 +60014413012,322764,0.520408163265306 +60014413012,328705,0.0646258503401361 +60014413021,310061,0.775179856115108 +60014413021,317283,0.109712230215827 +60014413021,319096,0.0683453237410072 +60014413021,324194,0.0467625899280576 +60014413022,322685,1 +60014413023,311579,0.199324324324324 +60014413023,314851,0.371621621621622 +60014413023,327497,0.429054054054054 +60014413024,322773,0.127615062761506 +60014413024,326884,0.242677824267782 +60014413024,330713,0.629707112970711 +60014414011,310053,0.722222222222222 +60014414011,318399,0 +60014414011,322903,0.277777777777778 +60014414012,310052,0.247368421052632 +60014414012,313178,0.321052631578947 +60014414012,314891,0.0824561403508772 +60014414012,318545,0.103508771929825 +60014414012,320334,0.2 +60014414012,322001,0.0456140350877193 +60014414013,312338,0.600660066006601 +60014414013,314065,0.174917491749175 +60014414013,326213,0.224422442244224 +60014414014,314300,0.0333333333333333 +60014414014,314838,0.141666666666667 +60014414014,319251,0.192857142857143 +60014414014,322009,0.214285714285714 +60014414014,324692,0.0535714285714286 +60014414014,328301,0.364285714285714 +60014414021,310050,0.0836012861736334 +60014414021,311673,0.284565916398714 +60014414021,312337,0.173633440514469 +60014414021,312533,0.12540192926045 +60014414021,314684,0.0514469453376206 +60014414021,319119,0.229903536977492 +60014414021,333621,0.0514469453376206 +60014414022,310051,0.0440967283072546 +60014414022,310360,0.00142247510668563 +60014414022,311025,0.0512091038406828 +60014414022,311372,0.155049786628734 +60014414022,313883,0.132290184921764 +60014414022,314310,0.118065433854908 +60014414022,314312,0.0611664295874822 +60014414022,315485,0.0398293029871977 +60014414022,317784,0.085348506401138 +60014414022,321999,0.119487908961593 +60014414022,322742,0.096728307254623 +60014414022,327671,0.0440967283072546 +60014414022,330104,0.0512091038406828 +60014414023,311033,0.43360433604336 +60014414023,318184,0.119241192411924 +60014414023,319726,0.257452574525745 +60014414023,330101,0.0813008130081301 +60014414023,333835,0.10840108401084 +60014415011,311020,0.132196162046908 +60014415011,315343,0.0788912579957356 +60014415011,316049,0.122601279317697 +60014415011,316050,0.0501066098081023 +60014415011,317974,0.11727078891258 +60014415011,319077,0.0746268656716418 +60014415011,319078,0.0522388059701493 +60014415011,319149,0.0597014925373134 +60014415011,322875,0.132196162046908 +60014415011,325389,0.180170575692964 +60014415012,310355,0.0628205128205128 +60014415012,310545,0.0653846153846154 +60014415012,311009,0.178205128205128 +60014415012,321979,0.0653846153846154 +60014415012,322876,0.0769230769230769 +60014415012,329502,0.112820512820513 +60014415012,332282,0.252564102564103 +60014415012,332283,0.0307692307692308 +60014415012,332505,0.0141025641025641 +60014415012,333830,0.141025641025641 +60014415031,0,0 +60014415031,310349,0.000723589001447178 +60014415031,310350,0 +60014415031,310365,0.00289435600578871 +60014415031,310538,0.0969609261939219 +60014415031,310539,0.0680173661360347 +60014415031,310542,0.0629522431259045 +60014415031,310543,0 +60014415031,310724,0 +60014415031,310738,0.0347322720694645 +60014415031,311014,0.000723589001447178 +60014415031,311015,0 +60014415031,311032,0 +60014415031,311376,0.0557163531114327 +60014415031,311385,0.00144717800289436 +60014415031,311576,0 +60014415031,311580,0 +60014415031,311586,0 +60014415031,312024,0 +60014415031,312341,0 +60014415031,312517,0 +60014415031,312693,0 +60014415031,312707,0 +60014415031,313010,0 +60014415031,313011,0 +60014415031,313013,0 +60014415031,313362,0.256150506512301 +60014415031,313684,0 +60014415031,313686,0 +60014415031,313687,0 +60014415031,314066,0.000723589001447178 +60014415031,314067,0 +60014415031,314338,0.0303907380607815 +60014415031,314852,0.000723589001447178 +60014415031,314907,0.000723589001447178 +60014415031,315359,0 +60014415031,315667,0.000723589001447178 +60014415031,315671,0 +60014415031,316051,0 +60014415031,316060,0 +60014415031,316372,0 +60014415031,316562,0 +60014415031,316747,0 +60014415031,316750,0 +60014415031,317288,0.012301013024602 +60014415031,317446,0 +60014415031,317456,0 +60014415031,319064,0 +60014415031,319121,0 +60014415031,319626,0 +60014415031,319702,0 +60014415031,319792,0.020260492040521 +60014415031,319809,0 +60014415031,320146,0 +60014415031,320173,0.0274963820549928 +60014415031,320362,0.0535455861070912 +60014415031,320707,0.0875542691751085 +60014415031,322056,0 +60014415031,322061,0 +60014415031,322748,0 +60014415031,322840,0.0188133140376266 +60014415031,322915,0 +60014415031,324710,0 +60014415031,325382,0 +60014415031,325384,0 +60014415031,325566,0 +60014415031,325757,0 +60014415031,326222,0 +60014415031,327493,0.0101302460202605 +60014415031,327682,0 +60014415031,328331,0.0282199710564399 +60014415031,328889,0 +60014415031,329769,0 +60014415031,329931,0.00868306801736614 +60014415031,330363,0.0209840810419682 +60014415031,330366,0 +60014415031,331367,0.097684515195369 +60014415031,331867,0.000723589001447178 +60014415031,333636,0 +60014415032,312335,0.137299771167048 +60014415032,314492,0.311212814645309 +60014415032,315672,0.0617848970251716 +60014415032,319445,0.0961098398169336 +60014415032,329320,0.0778032036613272 +60014415032,331344,0.105263157894737 +60014415032,333137,0.210526315789474 +60014415211,313009,0.51129363449692 +60014415211,314299,0 +60014415211,320331,0.117043121149897 +60014415211,326212,0.0924024640657084 +60014415211,330993,0.279260780287474 +60014415212,310064,0.093984962406015 +60014415212,311375,0.218045112781955 +60014415212,315488,0.131578947368421 +60014415212,317787,0.152255639097744 +60014415212,319145,0.114661654135338 +60014415212,322830,0.0996240601503759 +60014415212,330103,0.18984962406015 +60014415213,311379,0.0928571428571428 +60014415213,311816,0.0880952380952381 +60014415213,313376,0 +60014415213,314298,0.278571428571429 +60014415213,314836,0.102380952380952 +60014415213,318180,0.30952380952381 +60014415213,321929,0.128571428571429 +60014415214,311019,0.56875 +60014415214,319079,0.08125 +60014415214,319622,0.025 +60014415214,322007,0.1375 +60014415214,329488,0.0375 +60014415214,333818,0.15 +60014415221,310549,0.0867052023121387 +60014415221,311814,0.199421965317919 +60014415221,319101,0.225433526011561 +60014415221,326404,0.196531791907514 +60014415221,326405,0.0751445086705202 +60014415221,331184,0.216763005780347 +60014415222,310049,0.611001964636542 +60014415222,311660,0.0785854616895874 +60014415222,326042,0.31041257367387 +60014415223,311658,0.414893617021277 +60014415223,311659,0.25886524822695 +60014415223,318740,0.0531914893617021 +60014415223,319803,0.150709219858156 +60014415223,332500,0.0638297872340425 +60014415223,332708,0.0585106382978723 +60014415231,313183,1 +60014415232,313180,0.023109243697479 +60014415232,315501,0.976890756302521 +60014415233,312038,0.446866485013624 +60014415233,312039,0.416893732970027 +60014415233,313182,0.136239782016349 +60014415241,311378,0.0623529411764706 +60014415241,312035,0.0270588235294118 +60014415241,312345,0.0517647058823529 +60014415241,313681,0.135294117647059 +60014415241,317775,0.0964705882352941 +60014415241,319729,0.0411764705882353 +60014415241,320879,0.0152941176470588 +60014415241,321851,0.482352941176471 +60014415241,322021,0.0635294117647059 +60014415241,331368,0.0247058823529412 +60014415242,314837,0 +60014415242,316570,0.00223214285714286 +60014415242,317080,0.261160714285714 +60014415242,322788,0.194196428571429 +60014415242,328715,0.290178571428571 +60014415242,329166,0.252232142857143 +60014416011,311821,0.120967741935484 +60014416011,312686,0.108870967741935 +60014416011,322018,0.25 +60014416011,326217,0.254032258064516 +60014416011,326681,0.120967741935484 +60014416011,326688,0.145161290322581 +60014416012,312514,0.0391134289439374 +60014416012,313870,0.0964797913950456 +60014416012,315664,0.122555410691004 +60014416012,315673,0.0625814863102999 +60014416012,326682,0.0443285528031291 +60014416012,326880,0.530638852672751 +60014416012,327489,0.104302477183833 +60014416013,310039,0.083969465648855 +60014416013,311819,0.0737913486005089 +60014416013,311823,0.0763358778625954 +60014416013,321854,0.2264631043257 +60014416013,321856,0.0610687022900763 +60014416013,326035,0.170483460559796 +60014416013,326039,0.0712468193384224 +60014416013,326862,0.0687022900763359 +60014416013,327490,0.0737913486005089 +60014416013,330094,0.094147582697201 +60014416021,313350,0.0488940628637951 +60014416021,313354,0.0360884749708964 +60014416021,315663,0.352735739231665 +60014416021,318419,0.0349243306169965 +60014416021,324912,0.243306169965076 +60014416021,327299,0.0838183934807916 +60014416021,333161,0.20023282887078 +60014416022,310344,0.64321608040201 +60014416022,319143,0.180904522613065 +60014416022,325576,0.175879396984925 +60014416023,310736,0.0547619047619048 +60014416023,311585,0.111904761904762 +60014416023,314986,0.283333333333333 +60014416023,315346,0.0928571428571429 +60014416023,316354,0.289285714285714 +60014416023,318414,0.0380952380952381 +60014416023,319973,0.0488095238095238 +60014416023,331001,0.0809523809523809 +60014416024,311568,0.190031152647975 +60014416024,315472,0.118380062305296 +60014416024,315676,0.26791277258567 +60014416024,318413,0.0716510903426791 +60014416024,318943,0.0841121495327103 +60014416024,329929,0.102803738317757 +60014416024,330097,0.165109034267913 +60014417001,311670,0.00567536889897843 +60014417001,311830,0.0249716231555051 +60014417001,315684,0.00681044267877412 +60014417001,317769,0 +60014417001,318421,0.00454029511918275 +60014417001,319262,0.0158910329171396 +60014417001,319978,0.018161180476731 +60014417001,324217,0.791146424517594 +60014417001,327302,0 +60014417001,327305,0.00113507377979569 +60014417001,328540,0.1316685584563 +60014417002,311584,0.0591194968553459 +60014417002,313863,0.0754716981132075 +60014417002,314960,0.114465408805031 +60014417002,315884,0.222641509433962 +60014417002,318944,0.0905660377358491 +60014417002,322689,0.437735849056604 +60014417003,313165,0.115384615384615 +60014417003,314677,0.165384615384615 +60014417003,317984,0.184615384615385 +60014417003,318422,0.192307692307692 +60014417003,319057,0.342307692307692 +60014417004,313167,0.049306625577812 +60014417004,313185,0.195685670261941 +60014417004,315678,0.266563944530046 +60014417004,316346,0.0385208012326656 +60014417004,318420,0.0400616332819723 +60014417004,319063,0.0169491525423729 +60014417004,319131,0.221879815100154 +60014417004,319648,0.086286594761171 +60014417004,326693,0.0446841294298921 +60014417004,327303,0.0400616332819723 +60014418001,314873,0.0265282583621684 +60014418001,315685,0.0588235294117647 +60014418001,316044,0.0588235294117647 +60014418001,316735,0.581314878892734 +60014418001,328701,0.0449826989619377 +60014418001,328711,0.0449826989619377 +60014418001,328723,0.114186851211073 +60014418001,331179,0.0703575547866205 +60014418002,319120,0.182926829268293 +60014418002,321872,0.0585365853658537 +60014418002,321875,0.0707317073170732 +60014418002,327684,0.687804878048781 +60014418002,327932,0 +60014418003,310056,0.30026455026455 +60014418003,314499,0.19047619047619 +60014418003,315687,0.0912698412698413 +60014418003,322947,0.0396825396825397 +60014418003,327316,0.044973544973545 +60014418003,328912,0.14021164021164 +60014418003,331351,0.0396825396825397 +60014418003,332025,0.078042328042328 +60014418003,333344,0.0753968253968254 +60014418004,311834,0.646209386281588 +60014418004,317773,0.306859205776173 +60014418004,322024,0.0469314079422383 +60014419211,316359,0.108761329305136 +60014419211,316547,0.268882175226586 +60014419211,319467,0.138972809667674 +60014419211,319949,0.0483383685800604 +60014419211,322167,0.0725075528700906 +60014419211,322707,0.129909365558912 +60014419211,329752,0.0785498489425982 +60014419211,333315,0.0906344410876133 +60014419211,333324,0.0634441087613293 +60014419212,311655,0.0578602620087336 +60014419212,311838,0.387554585152838 +60014419212,314874,0.00218340611353712 +60014419212,322704,0.0327510917030568 +60014419212,322916,0.473799126637555 +60014419212,329744,0.0458515283842795 +60014419231,317774,0.626151012891344 +60014419231,322883,0.353591160220994 +60014419231,332024,0.0202578268876611 +60014419232,310353,0 +60014419232,310733,0 +60014419232,311578,0 +60014419232,314063,0 +60014419232,314328,0 +60014419232,314510,0.00738916256157635 +60014419232,315150,0.00985221674876847 +60014419232,315881,0 +60014419232,315882,0 +60014419232,316567,0 +60014419232,317280,0.677339901477833 +60014419232,318514,0.305418719211823 +60014419232,320418,0 +60014419232,328330,0 +60014419233,312040,0.559742647058823 +60014419233,313701,0.111213235294118 +60014419233,318525,0.151654411764706 +60014419233,329315,0.177389705882353 +60014419241,310707,0.0786650774731824 +60014419241,310734,0.0476758045292014 +60014419241,312343,0.0393325387365912 +60014419241,314064,0.0595947556615018 +60014419241,314691,0.140643623361144 +60014419241,314959,0.31942789034565 +60014419241,333616,0.314660309892729 +60014419242,312711,0.141321044546851 +60014419242,315479,0.0629800307219662 +60014419242,315508,0.0460829493087558 +60014419242,315691,0.0445468509984639 +60014419242,319723,0.0614439324116743 +60014419242,327505,0.609831029185868 +60014419242,333817,0.0337941628264209 +60014419243,311565,0.0783410138248848 +60014419243,314332,0.0737327188940092 +60014419243,315164,0.278033794162826 +60014419243,315865,0.0552995391705069 +60014419243,319650,0.162826420890937 +60014419243,327317,0.213517665130568 +60014419243,329742,0.0752688172043011 +60014419243,329917,0.0629800307219662 +60014419244,313858,0.757009345794392 +60014419244,319236,0.00700934579439252 +60014419244,319239,0.235981308411215 +60014419244,329911,0 +60014419251,310352,0.681727574750831 +60014419251,310708,0.000664451827242525 +60014419251,313682,0.000664451827242525 +60014419251,322053,0.316943521594684 +60014419252,310351,0.168902920284136 +60014419252,311571,0.058405682715075 +60014419252,311824,0.248618784530387 +60014419252,315507,0 +60014419252,317451,0.234411996842936 +60014419252,319111,0.265982636148382 +60014419252,319651,0.0165745856353591 +60014419252,322162,0.00710339384372534 +60014419261,318939,0.222063037249284 +60014419261,319944,0.134670487106017 +60014419261,319948,0.0616045845272206 +60014419261,322818,0.550143266475645 +60014419261,333317,0.0315186246418338 +60014419262,310045,0.28023598820059 +60014419262,322705,0.281710914454277 +60014419262,322706,0.398230088495575 +60014419262,330533,0.0398230088495575 +60014419271,313186,0.399797570850202 +60014419271,315892,0.600202429149797 +60014419272,310043,0 +60014419272,315869,0 +60014419272,315891,0.250340136054422 +60014419272,318182,0.749659863945578 +60014420001,315866,0.0667678300455235 +60014420001,318167,0.201820940819423 +60014420001,318753,0.0257966616084977 +60014420001,319942,0.0242792109256449 +60014420001,325398,0.039453717754173 +60014420001,325571,0.23216995447648 +60014420001,327318,0.0880121396054628 +60014420001,328904,0.0409711684370258 +60014420001,328907,0.0667678300455235 +60014420001,331353,0 +60014420001,333147,0.0440060698027314 +60014420001,333314,0.169954476479514 +60014420002,310741,0.242603550295858 +60014420002,317438,0.27810650887574 +60014420002,326413,0.289940828402367 +60014420002,329496,0.189349112426036 +60014421001,311665,0.123943661971831 +60014421001,319133,0.246478873239437 +60014421001,319246,0.071830985915493 +60014421001,320341,0.0774647887323944 +60014421001,326406,0.0901408450704225 +60014421001,329150,0.284507042253521 +60014421001,332292,0.0394366197183099 +60014421001,333312,0.0661971830985915 +60014421002,310709,0.175381263616558 +60014421002,311013,0.14161220043573 +60014421002,311648,0.0435729847494553 +60014421002,314888,0.0490196078431373 +60014421002,317440,0.0217864923747277 +60014421002,321961,0.0457516339869281 +60014421002,321985,0.0631808278867102 +60014421002,322166,0.225490196078431 +60014421002,325735,0.0631808278867102 +60014421002,329151,0.0620915032679739 +60014421002,329319,0.0566448801742919 +60014421002,332290,0.0522875816993464 +60014422001,311653,0.0480274442538593 +60014422001,313004,0.188679245283019 +60014422001,318738,0.032590051457976 +60014422001,321885,0.34819897084048 +60014422001,322732,0.0600343053173242 +60014422001,322733,0.0686106346483705 +60014422001,322888,0.0840480274442539 +60014422001,325740,0.0600343053173242 +60014422001,333143,0.109777015437393 +60014422002,310725,0.119808306709265 +60014422002,312529,0.0654952076677316 +60014422002,314886,0.169329073482428 +60014422002,317443,0.0543130990415335 +60014422002,318454,0.108626198083067 +60014422002,318465,0.0175718849840256 +60014422002,318536,0.0287539936102236 +60014422002,318936,0.0958466453674121 +60014422002,319439,0.124600638977636 +60014422002,332959,0.036741214057508 +60014422002,333610,0.097444089456869 +60014422002,333808,0.0814696485623003 +60014422003,311654,0.111954459203036 +60014422003,311666,0.0607210626185958 +60014422003,315358,0.149905123339658 +60014422003,317441,0.0683111954459203 +60014422003,318937,0.0664136622390892 +60014422003,319084,0.180265654648956 +60014422003,322743,0.129032258064516 +60014422003,332956,0.0626185958254269 +60014422003,333809,0.170777988614801 +60014422004,312709,0.325268817204301 +60014422004,315144,0.0295698924731183 +60014422004,318168,0.110215053763441 +60014422004,318742,0.145161290322581 +60014422004,318938,0.25 +60014422004,328116,0.134408602150538 +60014422004,332034,0.00537634408602151 +60014423011,310716,0.053030303030303 +60014423011,317270,0.1875 +60014423011,317455,0.0454545454545455 +60014423011,319065,0.0946969696969697 +60014423011,319795,0.142045454545455 +60014423011,319955,0.0435606060606061 +60014423011,319956,0.125 +60014423011,320680,0.0965909090909091 +60014423011,321883,0.0587121212121212 +60014423011,324389,0.0928030303030303 +60014423011,332517,0.0606060606060606 +60014423012,314341,0.145658263305322 +60014423012,316549,0.162464985994398 +60014423012,319066,0.0812324929971989 +60014423012,319068,0.540616246498599 +60014423012,320681,0.00280112044817927 +60014423012,323700,0.0672268907563025 +60014423013,311652,0.0450281425891182 +60014423013,316552,0.140712945590994 +60014423013,318457,0.146341463414634 +60014423013,321951,0.437148217636022 +60014423013,323998,0.116322701688555 +60014423013,332033,0.114446529080675 +60014423021,310714,0.283540802213001 +60014423021,311651,0 +60014423021,315143,0.157676348547718 +60014423021,318166,0.558782849239281 +60014423022,314342,0 +60014423022,319953,0.338072669826224 +60014423022,320413,0.660347551342812 +60014423022,322684,0.00157977883096367 +60014423023,310717,0.10546875 +60014423023,310718,0.201171875 +60014423023,311205,0.009765625 +60014423023,315495,0.099609375 +60014423023,319067,0.048828125 +60014423023,322814,0 +60014423023,325736,0.28515625 +60014423023,326700,0.072265625 +60014423023,329754,0 +60014423023,333327,0.177734375 +60014424001,310046,0.135699373695198 +60014424001,310713,0.254697286012526 +60014424001,316548,0.484342379958246 +60014424001,329755,0.125260960334029 +60014424002,311563,0.0408163265306122 +60014424002,311674,0.0959183673469388 +60014424002,317994,0.108163265306122 +60014424002,321878,0.0938775510204082 +60014424002,321879,0.0673469387755102 +60014424002,326054,0.353061224489796 +60014424002,329751,0.106122448979592 +60014424002,330539,0.0612244897959184 +60014424002,333322,0.073469387755102 +60014424003,311572,0.0658227848101266 +60014424003,312712,0.0987341772151899 +60014424003,313356,0.108860759493671 +60014424003,314511,0.20506329113924 +60014424003,315344,0.0658227848101266 +60014424003,317266,0.10379746835443 +60014424003,319954,0.0683544303797468 +60014424003,320687,0.0784810126582278 +60014424003,323704,0.0987341772151899 +60014424003,330356,0.106329113924051 +60014424004,315168,0.392335766423358 +60014424004,316545,0.0492700729927007 +60014424004,316546,0.0711678832116788 +60014424004,318440,0.133211678832117 +60014424004,320705,0.114963503649635 +60014424004,322709,0.0948905109489051 +60014424004,333320,0.144160583941606 +60014425001,310044,0.364548494983278 +60014425001,314068,0.068561872909699 +60014425001,316543,0.0668896321070234 +60014425001,320353,0.147157190635452 +60014425001,322169,0.250836120401338 +60014425001,329161,0.0568561872909699 +60014425001,329747,0.0451505016722408 +60014425002,312041,0.101851851851852 +60014425002,318430,0.0787037037037037 +60014425002,318952,0.298611111111111 +60014425002,319231,0.219907407407407 +60014425002,327504,0.0648148148148148 +60014425002,328100,0.148148148148148 +60014425002,329909,0.087962962962963 +60014425003,310070,0.155905511811024 +60014425003,314869,0.251968503937008 +60014425003,319732,0.151181102362205 +60014425003,322778,0.0976377952755905 +60014425003,328724,0.0503937007874016 +60014425003,328725,0.204724409448819 +60014425003,329904,0.0881889763779528 +60014425004,315152,0.099601593625498 +60014425004,318170,0.197211155378486 +60014425004,319976,0.256972111553785 +60014425004,325749,0.115537848605578 +60014425004,329159,0.111553784860558 +60014425004,332692,0.153386454183267 +60014425004,332697,0.0657370517928287 +60014426011,311672,0.211576846307385 +60014426011,315140,0.06187624750499 +60014426011,318515,0.0918163672654691 +60014426011,322776,0.0818363273453094 +60014426011,329317,0.121756487025948 +60014426011,332713,0.431137724550898 +60014426012,310068,0.0905511811023622 +60014426012,311556,0.110236220472441 +60014426012,314870,0.068241469816273 +60014426012,318169,0.0616797900262467 +60014426012,318519,0.128608923884514 +60014426012,318520,0.036745406824147 +60014426012,318521,0.0341207349081365 +60014426012,321948,0.0616797900262467 +60014426012,321956,0.0328083989501312 +60014426012,329316,0.111548556430446 +60014426012,329322,0.0328083989501312 +60014426012,329323,0.230971128608924 +60014426021,311835,0.419953596287703 +60014426021,314497,0.380510440835267 +60014426021,316733,0.037122969837587 +60014426021,316736,0.0440835266821346 +60014426021,318513,0.118329466357309 +60014426022,311557,0.041405269761606 +60014426022,314505,0.0803011292346299 +60014426022,314506,0.0313676286072773 +60014426022,314961,0.0702634880803011 +60014426022,315138,0.0840652446675031 +60014426022,318425,0.0752823086574655 +60014426022,321947,0.0564617314930991 +60014426022,322691,0.127979924717691 +60014426022,322771,0.225846925972397 +60014426022,325763,0.0602258469259724 +60014426022,329147,0.0790464240903388 +60014426022,332028,0.0677540777917189 +60014427001,317054,0.345454545454545 +60014427001,318426,0.0909090909090909 +60014427001,318427,0.0805194805194805 +60014427001,318523,0.0805194805194805 +60014427001,319123,0.135064935064935 +60014427001,320349,0.184415584415584 +60014427001,328697,0.0831168831168831 +60014427002,318522,0.0996884735202492 +60014427002,321955,0.102803738317757 +60014427002,322934,0.214953271028037 +60014427002,324724,0.155763239875389 +60014427002,329156,0.426791277258567 +60014427003,313866,0.458823529411765 +60014427003,315680,0.0911764705882353 +60014427003,317059,0.117647058823529 +60014427003,318428,0.202941176470588 +60014427003,319637,0.129411764705882 +60014428001,310358,0.134213421342134 +60014428001,311843,0.13971397139714 +60014428001,314324,0.0154015401540154 +60014428001,314856,0.0759075907590759 +60014428001,315148,0.0429042904290429 +60014428001,315149,0.0044004400440044 +60014428001,315859,0.261826182618262 +60014428001,317293,0.0253025302530253 +60014428001,319233,0.0286028602860286 +60014428001,324213,0.033003300330033 +60014428001,329160,0.0341034103410341 +60014428001,329326,0.0473047304730473 +60014428001,329907,0.0979097909790979 +60014428001,329908,0.033003300330033 +60014428001,332696,0.0264026402640264 +60014429001,311367,0.142622950819672 +60014429001,312025,0.186885245901639 +60014429001,316364,0.0918032786885246 +60014429001,316555,0.229508196721311 +60014429001,317452,0.0639344262295082 +60014429001,318933,0.040983606557377 +60014429001,321891,0.0639344262295082 +60014429001,321893,0.0360655737704918 +60014429001,323703,0.080327868852459 +60014429001,330354,0.0639344262295082 +60014429002,312692,0.0831600831600832 +60014429002,317779,0.0353430353430353 +60014429002,319735,0.143451143451143 +60014429002,320693,0.0561330561330561 +60014429002,323711,0.0997920997920998 +60014429002,330974,0.0686070686070686 +60014429002,330975,0.0977130977130977 +60014429002,331156,0.112266112266112 +60014429002,331157,0.234927234927235 +60014429002,331158,0.0686070686070686 +60014429003,310055,0.101033295063146 +60014429003,311583,0.0907003444316877 +60014429003,315883,0.450057405281286 +60014429003,316363,0.0355912743972445 +60014429003,316554,0.0700344431687715 +60014429003,320685,0.0447761194029851 +60014429003,321887,0.0355912743972445 +60014429003,321890,0.0424799081515499 +60014429003,321892,0.0574052812858783 +60014429003,321967,0.0390355912743972 +60014429003,323710,0.0332950631458094 +60014429004,314690,0.375366568914956 +60014429004,318941,0.275659824046921 +60014429004,330725,0.348973607038123 +60014430011,310721,0.060377358490566 +60014430011,311381,0.0654088050314465 +60014430011,311537,0.0490566037735849 +60014430011,311667,0.0842767295597484 +60014430011,312983,0.0528301886792453 +60014430011,312984,0.0377358490566038 +60014430011,312986,0.0415094339622641 +60014430011,312987,0.194968553459119 +60014430011,320142,0.0477987421383648 +60014430011,324000,0.0477987421383648 +60014430011,324199,0.0364779874213836 +60014430011,324201,0.040251572327044 +60014430011,324202,0.0515723270440252 +60014430011,325374,0.0452830188679245 +60014430011,327675,0.0477987421383648 +60014430011,327676,0.0566037735849057 +60014430011,331354,0.040251572327044 +60014430021,310330,0.697777777777778 +60014430021,314879,0.237777777777778 +60014430021,319719,0.0644444444444444 +60014430022,310722,0.0434056761268781 +60014430022,310723,0.0400667779632721 +60014430022,312985,0.0434056761268781 +60014430022,314881,0.0367278797996661 +60014430022,315003,0.105175292153589 +60014430022,317269,0.0467445742904841 +60014430022,317273,0.141903171953255 +60014430022,319717,0.103505843071786 +60014430022,319718,0.0450751252086811 +60014430022,320144,0.0400667779632721 +60014430022,324203,0.113522537562604 +60014430022,324388,0.155258764607679 +60014430022,324392,0.0400667779632721 +60014430022,330978,0.0450751252086811 +60014430023,310329,0.0946822308690013 +60014430023,311847,0.0337224383916991 +60014430023,317271,0.0337224383916991 +60014430023,317272,0.0648508430609598 +60014430023,320143,0.0337224383916991 +60014430023,322832,0.0311284046692607 +60014430023,324390,0.0324254215304799 +60014430023,326228,0.0843060959792477 +60014430023,327314,0.2905317769131 +60014430023,327677,0.0311284046692607 +60014430023,328727,0.0285343709468223 +60014430023,330976,0.0363164721141375 +60014430023,330977,0.0648508430609598 +60014430023,331159,0.0869001297016861 +60014430023,331161,0.0311284046692607 +60014430023,332963,0.0220492866407263 +60014431021,311370,0.291044776119403 +60014431021,315450,0.0746268656716418 +60014431021,322896,0.482587064676617 +60014431021,324895,0.0870646766169154 +60014431021,328299,0.0646766169154229 +60014431022,311678,0.172881355932203 +60014431022,312531,0.0915254237288136 +60014431022,320148,0.0847457627118644 +60014431022,322812,0.501694915254237 +60014431022,322897,0.149152542372881 +60014431023,312530,0.156342182890855 +60014431023,312989,0.109144542772861 +60014431023,313694,0.274336283185841 +60014431023,315351,0.141592920353982 +60014431023,315449,0.23598820058997 +60014431023,315493,0.0825958702064897 +60014431024,311368,0.0641711229946524 +60014431024,315448,0.0347593582887701 +60014431024,318517,0.36096256684492 +60014431024,324704,0.0668449197860962 +60014431024,328297,0.347593582887701 +60014431024,328298,0.125668449197861 +60014431031,312349,0.159420289855072 +60014431031,312527,0.463768115942029 +60014431031,316367,0.0144927536231884 +60014431031,316368,0.0217391304347826 +60014431031,319087,0.119565217391304 +60014431031,327069,0.0471014492753623 +60014431031,327322,0.173913043478261 +60014431032,310067,0.0730337078651685 +60014431032,310729,0.165168539325843 +60014431032,311548,0.195505617977528 +60014431032,321983,0.0292134831460674 +60014431032,322065,0.257303370786517 +60014431032,323994,0.0471910112359551 +60014431032,327300,0.050561797752809 +60014431032,328115,0.0696629213483146 +60014431032,329919,0.0707865168539326 +60014431032,332714,0.0415730337078652 +60014431041,312328,0.127167630057803 +60014431041,312332,0.069364161849711 +60014431041,319442,0.479768786127168 +60014431041,326411,0.144508670520231 +60014431041,331360,0.179190751445087 +60014431042,312331,0.0736842105263158 +60014431042,312334,0.0789473684210526 +60014431042,315514,0.0342105263157895 +60014431042,315888,0.0684210526315789 +60014431042,319443,0.0815789473684211 +60014431042,320342,0.0736842105263158 +60014431042,321993,0.0815789473684211 +60014431042,321994,0.0157894736842105 +60014431042,327066,0.0815789473684211 +60014431042,327067,0.2 +60014431042,333613,0.128947368421053 +60014431042,333814,0.0815789473684211 +60014431043,312329,0.00986436498150432 +60014431043,313371,0.0431565967940814 +60014431043,315362,0.0345252774352651 +60014431043,319441,0.0480887792848335 +60014431043,319631,0.276202219482121 +60014431043,322891,0.032059186189889 +60014431043,322940,0.260172626387176 +60014431043,327061,0.160295930949445 +60014431043,331352,0.0443896424167694 +60014431043,333811,0.0912453760789149 +60014431051,310363,0.0941915227629513 +60014431051,310544,0.802197802197802 +60014431051,311538,0.0643642072213501 +60014431051,325738,0.0392464678178964 +60014431052,310739,0.0474898236092266 +60014431052,311540,0 +60014431052,314877,0.200814111261872 +60014431052,314887,0.073270013568521 +60014431052,314998,0.0651289009497965 +60014431052,315872,0.096336499321574 +60014431052,320692,0.0366350067842605 +60014431052,322025,0.0067842605156038 +60014431052,322938,0.108548168249661 +60014431052,325105,0.223880597014925 +60014431052,331163,0.0542740841248304 +60014431052,331164,0.0366350067842605 +60014431052,332715,0.0502035278154681 +60014432001,310331,0.154313487241798 +60014432001,315670,0.086269744835966 +60014432001,318760,0.0704738760631835 +60014432001,318953,0.0571081409477521 +60014432001,319070,0.0206561360874848 +60014432001,320426,0.161603888213852 +60014432001,325558,0.0729040097205346 +60014432001,329335,0.207776427703524 +60014432001,331342,0.0328068043742406 +60014432001,331346,0.136087484811665 +60014432002,316553,0.379310344827586 +60014432002,322765,0.235632183908046 +60014432002,324701,0.258620689655172 +60014432002,331627,0.126436781609195 +60014433011,313672,0.0773638968481375 +60014433011,313676,0.0916905444126074 +60014433011,314055,0.100286532951289 +60014433011,314056,0.126074498567335 +60014433011,314057,0.255014326647565 +60014433011,314682,0.0802292263610315 +60014433011,320885,0.0830945558739255 +60014433011,331177,0.186246418338109 +60014433012,311676,0.0337995337995338 +60014433012,314054,0.034965034965035 +60014433012,316040,0.0384615384615385 +60014433012,321894,0.533799533799534 +60014433012,322050,0.0967365967365967 +60014433012,322866,0.0757575757575758 +60014433012,328895,0.0874125874125874 +60014433012,330358,0.0571095571095571 +60014433012,331153,0.041958041958042 +60014433211,322696,1 +60014433212,311590,0.18997668997669 +60014433212,312342,0.265734265734266 +60014433212,313706,0.231934731934732 +60014433212,317445,0.00815850815850816 +60014433212,322820,0.041958041958042 +60014433212,323705,0.116550116550117 +60014433212,326221,0.145687645687646 +60014433221,311679,0.603112840466926 +60014433221,313364,0.235408560311284 +60014433221,319643,0.0350194552529183 +60014433221,328887,0.126459143968872 +60014433222,313365,0.178484107579462 +60014433222,319701,0.0757946210268949 +60014433222,320690,0.12958435207824 +60014433222,320691,0.0611246943765281 +60014433222,321866,0.0904645476772616 +60014433222,321867,0.100244498777506 +60014433222,322761,0.100244498777506 +60014433222,322762,0.168704156479218 +60014433222,330359,0.0953545232273839 +60014441001,311024,0.154117647058824 +60014441001,313170,0.0588235294117647 +60014441001,314302,0.0517647058823529 +60014441001,314522,0.248235294117647 +60014441001,314966,0.0917647058823529 +60014441001,315497,0.0470588235294118 +60014441001,316353,0 +60014441001,316571,0.121176470588235 +60014441001,319963,0.0458823529411765 +60014441001,321864,0.0364705882352941 +60014441001,327310,0.0458823529411765 +60014441001,328097,0.0576470588235294 +60014441001,328098,0.0411764705882353 +60014441002,0,0 +60014441002,311201,0.0946969696969697 +60014441002,311207,0.053030303030303 +60014441002,313169,0.448863636363636 +60014441002,314973,0.0738636363636364 +60014441002,314988,0.0587121212121212 +60014441002,315498,0.126893939393939 +60014441002,318406,0.0473484848484848 +60014441002,326216,0.0492424242424242 +60014441002,326231,0.0473484848484848 +60014441003,312047,0.0845360824742268 +60014441003,314044,0.0865979381443299 +60014441003,314045,0.0762886597938144 +60014441003,314965,0.121649484536082 +60014441003,319054,0.218556701030928 +60014441003,319459,0.148453608247423 +60014441003,326676,0.0927835051546392 +60014441003,326872,0.0865979381443299 +60014441003,330086,0.0845360824742268 +60014441004,310037,0.0909090909090909 +60014441004,312506,0.0873440285204991 +60014441004,312507,0.0499108734402852 +60014441004,314963,0.531194295900178 +60014441004,316357,0.122994652406417 +60014441004,319253,0.0445632798573975 +60014441004,322914,0.0089126559714795 +60014441004,329490,0.0641711229946524 +60014442001,312509,0.1825 +60014442001,314967,0.1625 +60014442001,319964,0.1475 +60014442001,330085,0.3175 +60014442001,330087,0.19 +60014442002,310730,0.0959885386819484 +60014442002,311361,0.0630372492836676 +60014442002,314843,0.0630372492836676 +60014442002,314964,0.0472779369627507 +60014442002,315356,0.0730659025787966 +60014442002,315467,0.0329512893982808 +60014442002,315878,0.0415472779369628 +60014442002,318405,0.0659025787965616 +60014442002,318407,0.0415472779369628 +60014442002,325082,0.25214899713467 +60014442002,326668,0.0501432664756447 +60014442002,326672,0.0702005730659026 +60014442002,326674,0.0458452722063037 +60014442002,329932,0.0573065902578797 +60014442003,310041,0.0711700844390832 +60014442003,310361,0.108564535585042 +60014442003,311364,0.0446320868516285 +60014442003,311827,0.083232810615199 +60014442003,313885,0.173703256936068 +60014442003,314839,0.209891435464415 +60014442003,319757,0.120627261761158 +60014442003,326667,0.125452352231604 +60014442003,326863,0.0241254523522316 +60014442003,326870,0.0386007237635706 +60014443011,310040,0.296435272045028 +60014443011,311204,0.103189493433396 +60014443011,311363,0.0525328330206379 +60014443011,312019,0.0544090056285178 +60014443011,314845,0.0300187617260788 +60014443011,318403,0.0956848030018762 +60014443011,321933,0.0844277673545966 +60014443011,321980,0.163227016885553 +60014443011,332492,0.120075046904315 +60014443012,311202,0.322259136212625 +60014443012,311203,0.0664451827242525 +60014443012,313693,0 +60014443012,313876,0.172757475083056 +60014443012,317979,0 +60014443012,319712,0.101328903654485 +60014443012,321858,0.0880398671096345 +60014443012,326864,0.0813953488372093 +60014443012,326866,0.0847176079734219 +60014443012,330106,0.0830564784053156 +60014443021,311575,0.0402576489533011 +60014443021,312017,0 +60014443021,312021,0.132045088566828 +60014443021,312510,0.0676328502415459 +60014443021,314864,0.14975845410628 +60014443021,314968,0.0628019323671498 +60014443021,317055,0.0241545893719807 +60014443021,317285,0.0595813204508857 +60014443021,318409,0.0901771336553945 +60014443021,318410,0.0563607085346216 +60014443021,318752,0 +60014443021,319962,0.0402576489533011 +60014443021,321940,0.072463768115942 +60014443021,328699,0.0563607085346216 +60014443021,332029,0.0772946859903382 +60014443021,333831,0.07085346215781 +60014443022,311826,0.0502599653379549 +60014443022,312020,0.0537261698440208 +60014443022,312705,0 +60014443022,313868,0.10051993067591 +60014443022,315505,0.0953206239168111 +60014443022,319743,0.0797227036395147 +60014443022,321937,0.164644714038128 +60014443022,322153,0.244367417677643 +60014443022,325083,0.107452339688042 +60014443022,326414,0.0398613518197574 +60014443022,326694,0 +60014443022,327492,0 +60014443022,329499,0.0641247833622184 +60014443022,331868,0 +60014444001,313173,0.134110787172012 +60014444001,313176,0.17201166180758 +60014444001,314058,0.0874635568513119 +60014444001,319055,0.128279883381924 +60014444001,327690,0.107871720116618 +60014444001,327925,0.0845481049562682 +60014444001,327926,0.14868804664723 +60014444001,330708,0.137026239067055 +60014444002,312044,0.57097288676236 +60014444002,312512,0.0398724082934609 +60014444002,312513,0.0494417862838915 +60014444002,314971,0.0414673046251994 +60014444002,318408,0.0717703349282297 +60014444002,319739,0.0574162679425837 +60014444002,321936,0.0829346092503987 +60014444002,326875,0.0446570972886762 +60014444002,326877,0.0414673046251994 +60014444003,312511,0.0737527114967462 +60014444003,314970,0.0629067245119306 +60014444003,315174,0.00433839479392625 +60014444003,315357,0.184381778741866 +60014444003,315468,0.0542299349240781 +60014444003,324404,0.134490238611714 +60014444003,326421,0.0542299349240781 +60014444003,326878,0.0672451193058568 +60014444003,329923,0.3058568329718 +60014444003,330107,0.0585683297180043 +60014445001,311671,0 +60014445001,313175,0.317796610169492 +60014445001,319636,0.682203389830508 +60014445002,313704,0.301282051282051 +60014445002,314989,0.0576923076923077 +60014445002,316355,0.0641025641025641 +60014445002,319449,0.0555555555555556 +60014445002,322049,0.170940170940171 +60014445002,325762,0.0662393162393162 +60014445002,328103,0.284188034188034 +60014445003,312684,0.0828025477707006 +60014445003,314673,0.422505307855626 +60014445003,314858,0.184713375796178 +60014445003,317058,0.0573248407643312 +60014445003,327089,0.0552016985138004 +60014445003,328101,0.0552016985138004 +60014445003,330718,0.142250530785563 +60014445004,311588,0.461942257217848 +60014445004,312022,0.156167979002625 +60014445004,312683,0.041994750656168 +60014445004,313860,0.047244094488189 +60014445004,314846,0.0026246719160105 +60014445004,315662,0.0564304461942257 +60014445004,317056,0 +60014445004,317057,0.047244094488189 +60014445004,326679,0.10761154855643 +60014445004,327929,0.078740157480315 +60014445004,328537,0 +60014446011,312043,0.0679468242245199 +60014446011,312702,0 +60014446011,313864,0.0738552437223043 +60014446011,314494,0.0472673559822747 +60014446011,314495,0.0664697193500739 +60014446011,315335,0.0472673559822747 +60014446011,315682,0.0945347119645495 +60014446011,317063,0.0384047267355982 +60014446011,317457,0.124076809453471 +60014446011,318191,0.0723781388478582 +60014446011,327937,0.0960118168389956 +60014446011,330377,0.0546528803545052 +60014446011,331341,0.217134416543575 +60014446012,310062,0.10562414266118 +60014446012,311560,0.00823045267489712 +60014446012,311828,0.0617283950617284 +60014446012,314675,0 +60014446012,314857,0.0740740740740741 +60014446012,314859,0.0672153635116598 +60014446012,317065,0.0493827160493827 +60014446012,318762,0.0548696844993141 +60014446012,321859,0.0850480109739369 +60014446012,322694,0.149519890260631 +60014446012,322695,0.0987654320987654 +60014446012,324409,0.0123456790123457 +60014446012,328106,0.149519890260631 +60014446012,328113,0.083676268861454 +60014446021,313859,0 +60014446021,314855,0 +60014446021,316578,0 +60014446021,317767,0.707547169811321 +60014446021,317791,0.010377358490566 +60014446021,318954,0 +60014446021,319780,0 +60014446021,323702,0 +60014446021,330353,0.282075471698113 +60014446021,332512,0 +60014446022,311365,0.121145374449339 +60014446022,311366,0.605726872246696 +60014446022,312524,0.052863436123348 +60014446022,319062,0 +60014446022,322908,0.220264317180617 +60014446022,331345,0 +60014501011,310413,0.285949506037322 +60014501011,311077,0 +60014501011,313255,0.188803512623491 +60014501011,317516,0.0740944017563117 +60014501011,319527,0 +60014501011,323535,0.0274423710208562 +60014501011,323782,0 +60014501011,324576,0 +60014501011,324578,0.158616904500549 +60014501011,325836,0.0389681668496158 +60014501011,326134,0 +60014501011,326135,0 +60014501011,330190,0.0565312843029638 +60014501011,333216,0.169593852908891 +60014501021,310415,0 +60014501021,310602,0 +60014501021,310606,0 +60014501021,310607,0 +60014501021,311083,0 +60014501021,313234,0 +60014501021,313236,0 +60014501021,314124,0.0671641791044776 +60014501021,314386,0 +60014501021,315208,0 +60014501021,315211,0.358208955223881 +60014501021,315404,0 +60014501021,315936,0 +60014501021,315955,0 +60014501021,315960,0.358208955223881 +60014501021,318065,0 +60014501021,318620,0.0522388059701493 +60014501021,318823,0 +60014501021,319321,0 +60014501021,319322,0.164179104477612 +60014501021,319328,0 +60014501021,320941,0 +60014501021,320943,0 +60014501021,320946,0 +60014501021,321241,0 +60014501021,321242,0 +60014501021,323458,0 +60014501021,325172,0 +60014501021,325266,0 +60014501021,326573,0 +60014501021,328447,0 +60014501021,328604,0 +60014501021,329043,0 +60014501021,331505,0 +60014501021,331917,0 +60014501022,332569,0 +60014501023,311099,0.104744852282901 +60014501023,312808,0.0322291853178156 +60014501023,320951,0.276633840644584 +60014501023,321304,0.0107430617726052 +60014501023,321403,0.0313339301700985 +60014501023,323500,0.105640107430618 +60014501023,323543,0.035810205908684 +60014501023,328188,0.0349149507609669 +60014501023,329419,0.135183527305282 +60014501023,330622,0.162936436884512 +60014501023,332177,0.0698299015219337 +60014502001,315061,0.170340681362725 +60014502001,330796,0.216432865731463 +60014502001,331934,0.613226452905812 +60014502002,310407,0.0735468564650059 +60014502002,311746,0.517200474495848 +60014502002,314742,0.106761565836299 +60014502002,321302,0.214709371293001 +60014502002,332093,0.0877817319098458 +60014502003,311917,0.530120481927711 +60014502003,323533,0.469879518072289 +60014503001,313259,0.0362537764350453 +60014503001,314740,0.129909365558912 +60014503001,316639,0.0468277945619335 +60014503001,321338,0.202416918429003 +60014503001,327398,0.117824773413897 +60014503001,327400,0.0589123867069486 +60014503001,328028,0.0574018126888217 +60014503001,329581,0.113293051359517 +60014503001,332761,0.0800604229607251 +60014503001,332762,0.0664652567975831 +60014503001,333417,0.0513595166163142 +60014503001,333705,0.0392749244712991 +60014503002,311745,0 +60014503002,311927,0.248587570621469 +60014503002,313056,0 +60014503002,313092,0 +60014503002,313749,0 +60014503002,313933,0.0180790960451977 +60014503002,314741,0.031638418079096 +60014503002,315207,0.031638418079096 +60014503002,315209,0 +60014503002,315393,0 +60014503002,321234,0.0451977401129944 +60014503002,321238,0.0350282485875706 +60014503002,321240,0.0282485875706215 +60014503002,323891,0.0248587570621469 +60014503002,328629,0 +60014503002,329656,0 +60014503002,330621,0 +60014503002,331067,0.309604519774011 +60014503002,331508,0.0836158192090395 +60014503002,331709,0 +60014503002,333034,0.0406779661016949 +60014503002,333399,0.0531073446327684 +60014503002,333884,0.0497175141242938 +60014504001,312801,0.0424528301886792 +60014504001,316640,0.207547169811321 +60014504001,320234,0.0518867924528302 +60014504001,321221,0.0707547169811321 +60014504001,321222,0.0974842767295598 +60014504001,321223,0.0943396226415094 +60014504001,324085,0.0361635220125786 +60014504001,327396,0.15251572327044 +60014504001,332751,0.0911949685534591 +60014504001,333044,0.0833333333333333 +60014504001,333223,0.0723270440251572 +60014504002,311262,0.201298701298701 +60014504002,311460,0.20995670995671 +60014504002,312115,0.313852813852814 +60014504002,315069,0.0216450216450216 +60014504002,321355,0.0584415584415584 +60014504002,323272,0.0627705627705628 +60014504002,323343,0.0454545454545455 +60014504002,328205,0.0865800865800866 +60014504003,310436,0 +60014504003,310855,0 +60014504003,311461,0.130434782608696 +60014504003,312108,0.0339342523860021 +60014504003,312151,0 +60014504003,312387,0.334040296924708 +60014504003,312390,0 +60014504003,312391,0.0307529162248144 +60014504003,315419,0.0572640509013786 +60014504003,318631,0 +60014504003,320962,0.0699893955461294 +60014504003,321227,0.0286320254506893 +60014504003,321228,0.0593849416755037 +60014504003,325947,0.0275715800636267 +60014504003,327394,0 +60014504003,329388,0.120890774125133 +60014504003,329977,0 +60014504003,330423,0.0668080593849417 +60014504003,332756,0.0402969247083775 +60014504003,332758,0 +60014505011,310406,0.439330543933054 +60014505011,311747,0.200836820083682 +60014505011,321309,0.359832635983264 +60014505012,311459,0.0608175473579262 +60014505012,312388,0.0408773678963111 +60014505012,312389,0.0418743768693918 +60014505012,314410,0.339980059820538 +60014505012,315420,0.161515453639083 +60014505012,320047,0.0817547357926221 +60014505012,321224,0.0239282153539382 +60014505012,321229,0.0747756729810568 +60014505012,327202,0.0309072781655035 +60014505012,331060,0.0977068793619142 +60014505012,332750,0.0309072781655035 +60014505012,332755,0.0149551345962114 +60014505021,0,0 +60014505021,311479,0.0672268907563025 +60014505021,311718,0.0804321728691477 +60014505021,311720,0.0480192076830732 +60014505021,312802,0.0264105642256903 +60014505021,314766,0.0288115246098439 +60014505021,316120,0.133253301320528 +60014505021,321218,0.0552220888355342 +60014505021,323262,0.0396158463385354 +60014505021,323329,0.122448979591837 +60014505021,323330,0.0348139255702281 +60014505021,327205,0.085234093637455 +60014505021,327215,0.0396158463385354 +60014505021,327560,0.0372148859543818 +60014505021,328460,0.0672268907563025 +60014505021,329825,0.0372148859543818 +60014505021,332181,0.0972388955582233 +60014505022,310848,0 +60014505022,311106,0.223564954682779 +60014505022,311717,0 +60014505022,312592,0.0422960725075529 +60014505022,313929,0.0453172205438066 +60014505022,315970,0.501510574018127 +60014505022,321293,0.00151057401812689 +60014505022,325934,0.00151057401812689 +60014505022,328396,0.0755287009063444 +60014505022,328622,0.0755287009063444 +60014505022,329978,0.0332326283987915 +60014505022,330176,0 +60014506011,310595,0 +60014506011,311100,0 +60014506011,311455,0.0387596899224806 +60014506011,317335,0.0891472868217054 +60014506011,321260,0.116279069767442 +60014506011,321415,0.00387596899224806 +60014506011,326294,0 +60014506011,327200,0.751937984496124 +60014506012,310139,0.072636815920398 +60014506012,310176,0.0388059701492537 +60014506012,311923,0.0149253731343284 +60014506012,312393,0.00099502487562189 +60014506012,313242,0 +60014506012,313249,0.054726368159204 +60014506012,313265,0.00199004975124378 +60014506012,314109,0 +60014506012,314385,0.0835820895522388 +60014506012,314576,0.0398009950248756 +60014506012,315205,0 +60014506012,321232,0.0437810945273632 +60014506012,323380,0.0119402985074627 +60014506012,323794,0.0208955223880597 +60014506012,325922,0.0587064676616915 +60014506012,328387,0 +60014506012,328456,0.0258706467661692 +60014506012,329235,0.0975124378109453 +60014506012,329824,0.249751243781095 +60014506012,330787,0.00099502487562189 +60014506012,331054,0.133333333333333 +60014506012,332361,0.017910447761194 +60014506012,332583,0.0318407960199005 +60014506021,312109,0 +60014506021,313932,0.703435804701627 +60014506021,314143,0.197106690777577 +60014506021,315212,0 +60014506021,315395,0 +60014506021,329397,0.0994575045207957 +60014506021,332392,0 +60014506022,312111,0.065015479876161 +60014506022,315228,0.0665634674922601 +60014506022,321245,0.0572755417956656 +60014506022,323285,0.0402476780185759 +60014506022,323286,0.0619195046439628 +60014506022,323462,0.0882352941176471 +60014506022,323789,0.400928792569659 +60014506022,325177,0.113003095975232 +60014506022,328450,0.0526315789473684 +60014506022,330612,0.0541795665634675 +60014506023,312777,0.104 +60014506023,313752,0.112 +60014506023,315071,0.0493333333333333 +60014506023,315214,0.0613333333333333 +60014506023,323287,0.0773333333333333 +60014506023,327197,0.201333333333333 +60014506023,327198,0.0333333333333333 +60014506023,329383,0.256 +60014506023,330614,0.032 +60014506023,331712,0.0733333333333333 +60014506024,313243,0.12406015037594 +60014506024,326979,0.210526315789474 +60014506024,327195,0.413533834586466 +60014506024,330416,0.25187969924812 +60014506025,311454,0.133333333333333 +60014506025,311477,0.0625641025641026 +60014506025,321318,0.0123076923076923 +60014506025,323277,0.0594871794871795 +60014506025,326780,0.0317948717948718 +60014506025,329063,0 +60014506025,330420,0.508717948717949 +60014506025,331056,0 +60014506025,333875,0.191794871794872 +60014506031,315072,0.380645161290323 +60014506031,316643,0.229032258064516 +60014506031,325827,0.258064516129032 +60014506031,329653,0.0580645161290323 +60014506031,330615,0.0741935483870968 +60014506032,313252,0.83587786259542 +60014506032,323373,0.16412213740458 +60014506033,314134,0.0479846449136276 +60014506033,315935,0.0518234165067179 +60014506033,324978,0.36468330134357 +60014506033,329384,0.0191938579654511 +60014506033,329652,0.105566218809981 +60014506033,331424,0.410748560460653 +60014506034,314390,0 +60014506034,314736,0.149289099526066 +60014506034,315210,0.023696682464455 +60014506034,315213,0 +60014506034,316131,0.0829383886255924 +60014506034,320046,0 +60014506034,323288,0 +60014506034,325912,0.436018957345972 +60014506034,327154,0 +60014506034,327392,0.0971563981042654 +60014506034,328606,0.0947867298578199 +60014506034,329999,0.116113744075829 +60014506034,330183,0 +60014506041,312597,0.233933161953728 +60014506041,312598,0.0848329048843188 +60014506041,321282,0.0359897172236504 +60014506041,326779,0.149100257069409 +60014506041,329584,0.0745501285347044 +60014506041,329654,0.161953727506427 +60014506041,331414,0.259640102827764 +60014506042,312782,0.0467289719626168 +60014506042,314113,0.104138851802403 +60014506042,314396,0.0787716955941255 +60014506042,321256,0.154873164218959 +60014506042,325638,0.15086782376502 +60014506042,329643,0.0774365821094793 +60014506042,329644,0.108144192256342 +60014506042,332570,0.188251001335113 +60014506042,333392,0.0453938584779706 +60014506042,333511,0.0453938584779706 +60014506043,313434,0.285223367697594 +60014506043,313436,0.18213058419244 +60014506043,314394,0.22680412371134 +60014506043,314566,0.195876288659794 +60014506043,314570,0.0790378006872852 +60014506043,324467,0.0309278350515464 +60014506044,327827,0.24896265560166 +60014506044,329984,0.153526970954357 +60014506044,329986,0.311203319502075 +60014506044,331922,0.161825726141079 +60014506044,332369,0.12448132780083 +60014506051,323772,0.207678883071553 +60014506051,326587,0.0855148342059337 +60014506051,327216,0.087260034904014 +60014506051,327577,0 +60014506051,329045,0.506108202443281 +60014506051,329409,0.0541012216404887 +60014506051,330001,0 +60014506051,331718,0.0593368237347295 +60014506052,315233,0.339506172839506 +60014506052,327829,0.191358024691358 +60014506052,329985,0.395061728395062 +60014506052,330606,0.0740740740740741 +60014506053,312774,0.0344827586206897 +60014506053,315412,0.379310344827586 +60014506053,321252,0.155172413793103 +60014506053,323279,0.174568965517241 +60014506053,330872,0.137931034482759 +60014506053,332377,0.118534482758621 +60014506061,313230,0.061493411420205 +60014506061,313231,0.165446559297218 +60014506061,315416,0.061493411420205 +60014506061,321285,0.0644216691068814 +60014506061,323289,0.00585651537335286 +60014506061,323340,0.0980966325036603 +60014506061,325267,0.08199121522694 +60014506061,326583,0.128843338213763 +60014506061,327208,0.146412884333821 +60014506061,329216,0.0292825768667643 +60014506061,329588,0.114202049780381 +60014506061,331935,0.0424597364568082 +60014506062,313060,0.106157112526539 +60014506062,314564,0.10828025477707 +60014506062,317344,0.121019108280255 +60014506062,326584,0.0785562632696391 +60014506062,329231,0.0764331210191083 +60014506062,331048,0.0870488322717622 +60014506062,331050,0.0573248407643312 +60014506062,331413,0.329087048832272 +60014506062,331426,0.0360934182590234 +60014506063,312775,0.0761421319796954 +60014506063,313435,0.107868020304569 +60014506063,313938,0.0799492385786802 +60014506063,314145,0.0355329949238579 +60014506063,314569,0.0761421319796954 +60014506063,315770,0.0469543147208122 +60014506063,320786,0.185279187817259 +60014506063,321290,0.0634517766497462 +60014506063,327826,0.067258883248731 +60014506063,329582,0.0406091370558376 +60014506063,329982,0.0583756345177665 +60014506063,331049,0.0723350253807107 +60014506063,332851,0.0901015228426396 +60014506071,313061,0 +60014506071,314110,0.000777000777000777 +60014506071,314565,0.0955710955710956 +60014506071,316138,0.041958041958042 +60014506071,322384,0.0916860916860917 +60014506071,325477,0.0505050505050505 +60014506071,326960,0.00155400155400155 +60014506071,327211,0.000777000777000777 +60014506071,327222,0.0458430458430458 +60014506071,328626,0 +60014506071,329237,0.0520590520590521 +60014506071,330185,0 +60014506071,330801,0.606060606060606 +60014506071,333394,0.0132090132090132 +60014506072,310829,0.0337197049525817 +60014506072,311462,0.0421496311907271 +60014506072,311736,0.0389884088514226 +60014506072,312145,0.0421496311907271 +60014506072,312415,0.193888303477345 +60014506072,312778,0 +60014506072,314577,0.00105374077976818 +60014506072,315239,0 +60014506072,315941,0 +60014506072,317501,0.0231822971548999 +60014506072,318842,0 +60014506072,323293,0.0337197049525817 +60014506072,323296,0.017913593256059 +60014506072,323777,0.0115911485774499 +60014506072,324582,0.0748155953635406 +60014506072,324785,0.0231822971548999 +60014506072,326978,0.0442571127502634 +60014506072,327145,0.0516332982086407 +60014506072,327232,0.00210748155953635 +60014506072,328439,0.125395152792413 +60014506072,329049,0.00316122233930453 +60014506072,329051,0 +60014506072,329589,0.0242360379346681 +60014506072,331235,0.0495258166491043 +60014506072,331241,0 +60014506072,331242,0 +60014506072,331913,0.0516332982086407 +60014506072,332358,0.0379346680716544 +60014506072,333415,0.0737618545837724 +60014507011,311244,0.158767772511848 +60014507011,314107,0.18957345971564 +60014507011,314384,0.0355450236966825 +60014507011,317863,0.274881516587678 +60014507011,331520,0.0876777251184834 +60014507011,331909,0.0592417061611374 +60014507011,331916,0.194312796208531 +60014507012,316134,0.168498168498169 +60014507012,321261,0.131868131868132 +60014507012,324486,0.326007326007326 +60014507012,330252,0.172161172161172 +60014507012,333051,0.201465201465201 +60014507013,0,0 +60014507013,310147,0.00822669104204753 +60014507013,310149,0.0191956124314442 +60014507013,310420,0.000914076782449726 +60014507013,310815,0 +60014507013,311236,0 +60014507013,311896,0 +60014507013,311897,0 +60014507013,312105,0.00274223034734918 +60014507013,312591,0 +60014507013,312790,0.000914076782449726 +60014507013,313433,0.0036563071297989 +60014507013,313440,0.0274223034734918 +60014507013,313441,0.0146252285191956 +60014507013,313944,0 +60014507013,314148,0.00639853747714808 +60014507013,315400,0 +60014507013,316791,0 +60014507013,319521,0.000914076782449726 +60014507013,319522,0 +60014507013,320761,0 +60014507013,321262,0.322669104204753 +60014507013,321275,0.0127970749542962 +60014507013,323243,0 +60014507013,323350,0.056672760511883 +60014507013,323529,0 +60014507013,323531,0.288848263254113 +60014507013,324078,0.00639853747714808 +60014507013,324564,0 +60014507013,325259,0 +60014507013,325271,0 +60014507013,325823,0 +60014507013,327559,0.0036563071297989 +60014507013,328168,0.000914076782449726 +60014507013,328455,0.0447897623400366 +60014507013,328598,0 +60014507013,329056,0 +60014507013,330270,0.0420475319926874 +60014507013,331243,0.0310786106032907 +60014507013,331403,0 +60014507013,333042,0.105118829981718 +60014507014,0,0 +60014507014,312399,0.0772058823529412 +60014507014,312590,0.0392156862745098 +60014507014,313450,0.105392156862745 +60014507014,313453,0.0980392156862745 +60014507014,317165,0.159313725490196 +60014507014,321284,0.0330882352941176 +60014507014,327213,0.0649509803921569 +60014507014,329995,0.00735294117647059 +60014507014,330789,0.276960784313725 +60014507014,332378,0.138480392156863 +60014507411,311101,0.0128410914927769 +60014507411,313762,0 +60014507411,314585,0.157303370786517 +60014507411,316126,0.0738362760834671 +60014507411,323780,0.0304975922953451 +60014507411,328983,0.00321027287319422 +60014507411,329053,0.497592295345104 +60014507411,332390,0 +60014507411,333492,0.224719101123596 +60014507412,312406,0.161178509532062 +60014507412,321288,0.110918544194107 +60014507412,331910,0.325823223570191 +60014507412,331912,0.40207972270364 +60014507413,311466,0.0904255319148936 +60014507413,313759,0.0585106382978723 +60014507413,314762,0.230496453900709 +60014507413,315964,0.138297872340426 +60014507413,320758,0.0797872340425532 +60014507413,325466,0.203900709219858 +60014507413,333018,0.113475177304965 +60014507413,333226,0.0851063829787234 +60014507421,312116,0.158518518518519 +60014507421,312407,0.108148148148148 +60014507421,317346,0.328888888888889 +60014507421,321248,0.0592592592592593 +60014507421,324488,0.0933333333333333 +60014507421,324788,0.0933333333333333 +60014507421,333881,0.158518518518519 +60014507422,310832,0.0604838709677419 +60014507422,312117,0.110887096774194 +60014507422,313951,0.0907258064516129 +60014507422,314581,0.233870967741935 +60014507422,316433,0.127016129032258 +60014507422,323522,0.0806451612903226 +60014507422,326137,0.296370967741935 +60014507423,0,0 +60014507423,311097,0.347540983606557 +60014507423,311470,0 +60014507423,316434,0 +60014507423,317147,0 +60014507423,321247,0.0442622950819672 +60014507423,323371,0.0754098360655738 +60014507423,327227,0.439344262295082 +60014507423,329065,0.0934426229508197 +60014507431,311243,0 +60014507431,312120,0 +60014507431,312122,0 +60014507431,312402,0 +60014507431,312780,0 +60014507431,312800,0 +60014507431,314402,0.049618320610687 +60014507431,315401,0 +60014507431,315953,0 +60014507431,321263,0 +60014507431,321311,0 +60014507431,323346,0.591603053435114 +60014507431,323785,0 +60014507431,324595,0.202290076335878 +60014507431,325948,0 +60014507431,328799,0 +60014507431,328984,0 +60014507431,329405,0.0744274809160305 +60014507431,329640,0 +60014507431,331921,0.0820610687022901 +60014507431,332188,0 +60014507431,332365,0 +60014507431,332366,0 +60014507431,333402,0 +60014507432,310824,0.205607476635514 +60014507432,311486,0.240115025161754 +60014507432,312103,0.092020129403307 +60014507432,314133,0.0948957584471603 +60014507432,316622,0.1294033069734 +60014507432,318636,0.0115025161754134 +60014507432,321396,0.0136592379583034 +60014507432,323790,0.0337886412652768 +60014507432,327152,0.0294751976994968 +60014507432,331257,0.0309130122214234 +60014507432,331738,0.0740474478792236 +60014507432,333397,0.0445722501797268 +60014507441,311272,0.0419806243272336 +60014507441,312783,0 +60014507441,314136,0.122712594187298 +60014507441,315074,0.0667384284176534 +60014507441,315760,0.0398277717976319 +60014507441,315763,0.257265877287406 +60014507441,316625,0.0516684607104413 +60014507441,316644,0.0376749192680301 +60014507441,319343,0.038751345532831 +60014507441,320792,0.0914962325080732 +60014507441,324968,0.135629709364909 +60014507441,327768,0.077502691065662 +60014507441,329645,0.0322927879440258 +60014507441,329655,0.00645855758880517 +60014507442,312601,0.15224358974359 +60014507442,313083,0.198717948717949 +60014507442,320952,0.0592948717948718 +60014507442,327832,0.104166666666667 +60014507442,329835,0.092948717948718 +60014507442,330002,0.092948717948718 +60014507442,332374,0.0432692307692308 +60014507442,333016,0.0384615384615385 +60014507442,333410,0.217948717948718 +60014507451,312409,0.199349945828819 +60014507451,314406,0.200433369447454 +60014507451,322382,0.057421451787649 +60014507451,323472,0.0390032502708559 +60014507451,323527,0.108342361863489 +60014507451,325277,0.0606717226435536 +60014507451,326591,0.14192849404117 +60014507451,329998,0.0390032502708559 +60014507451,330626,0.0335861321776815 +60014507451,333414,0.120260021668472 +60014507452,310169,0.0298507462686567 +60014507452,310608,0.0438432835820896 +60014507452,314395,0.0578358208955224 +60014507452,315414,0.0718283582089552 +60014507452,315772,0.0261194029850746 +60014507452,316645,0.0466417910447761 +60014507452,317347,0.0419776119402985 +60014507452,318804,0.465485074626866 +60014507452,321258,0.0167910447761194 +60014507452,321317,0.0307835820895522 +60014507452,324565,0.0652985074626866 +60014507452,328978,0 +60014507452,329646,0.0494402985074627 +60014507452,331721,0 +60014507452,332373,0.0541044776119403 +60014507461,312144,0.0517970401691332 +60014507461,314580,0.232558139534884 +60014507461,314737,0.260042283298097 +60014507461,316115,0.306553911205074 +60014507461,323322,0 +60014507461,323779,0 +60014507461,324466,0.0549682875264271 +60014507461,325170,0.00105708245243129 +60014507461,326325,0.0771670190274841 +60014507461,330628,0 +60014507461,331244,0.0158562367864693 +60014507462,314574,0.150537634408602 +60014507462,315940,0.129032258064516 +60014507462,317166,0.243727598566308 +60014507462,321334,0.132616487455197 +60014507462,323297,0.125448028673835 +60014507462,325167,0.0896057347670251 +60014507462,331237,0.129032258064516 +60014507501,311277,0.263995285798468 +60014507501,314114,0 +60014507501,314389,0 +60014507501,314391,0.0730701237477902 +60014507501,324468,0.0483205657041839 +60014507501,327859,0.0677666470241603 +60014507501,328640,0.032410135533294 +60014507501,330805,0.0618738951090159 +60014507501,331918,0.0477312905126694 +60014507501,332364,0.404832056570418 +60014507511,311913,0.0929878048780488 +60014507511,329071,0.382621951219512 +60014507511,329659,0.0137195121951219 +60014507511,330012,0.153963414634146 +60014507511,330870,0.013719512195122 +60014507511,331431,0.342987804878049 +60014507521,0,0 +60014507521,310150,0.0401051939513478 +60014507521,310626,0 +60014507521,311911,0.0019723865877712 +60014507521,313772,0.000657462195923734 +60014507521,316635,0.0348454963839579 +60014507521,316651,0.00131492439184747 +60014507521,317500,0 +60014507521,321213,0.157790927021696 +60014507521,321422,0.0696909927679158 +60014507521,323310,0.0973044049967127 +60014507521,323327,0.0289283366206443 +60014507521,324094,0.000657462195923734 +60014507521,325651,0 +60014507521,326133,0 +60014507521,327825,0.0387902695595003 +60014507521,329069,0.365548980933596 +60014507521,329648,0.00723208415516108 +60014507521,330433,0.0131492439184747 +60014507521,331059,0.0216962524654832 +60014507521,331430,0.0578566732412886 +60014507521,333411,0.0624589086127548 +60014511011,0,0 +60014511011,310857,0 +60014511011,311265,0.0548523206751055 +60014511011,311487,0 +60014511011,311739,0 +60014511011,311922,0.00140646976090014 +60014511011,312160,0 +60014511011,312594,0 +60014511011,312816,0 +60014511011,313270,0 +60014511011,313468,0 +60014511011,313953,0.0506329113924051 +60014511011,314751,0 +60014511011,314753,0.0731364275668073 +60014511011,314756,0 +60014511011,315226,0.090014064697609 +60014511011,316111,0 +60014511011,316451,0 +60014511011,316809,0.00140646976090014 +60014511011,316810,0.00281293952180028 +60014511011,318606,0.267229254571027 +60014511011,321322,0 +60014511011,323460,0.0450070323488045 +60014511011,323461,0 +60014511011,325840,0 +60014511011,326481,0 +60014511011,326957,0 +60014511011,327845,0.10267229254571 +60014511011,328384,0 +60014511011,329061,0 +60014511011,329823,0 +60014511011,330010,0.0534458509142053 +60014511011,331415,0.192686357243319 +60014511011,331736,0.0646976090014065 +60014511012,313430,0.11734693877551 +60014511012,327586,0.0535714285714286 +60014511012,327861,0.0548469387755102 +60014511012,329657,0.395408163265306 +60014511012,330435,0.128826530612245 +60014511012,330436,0.0395408163265306 +60014511012,330437,0.0446428571428571 +60014511012,330438,0.0408163265306122 +60014511012,330624,0.0548469387755102 +60014511012,332777,0.0701530612244898 +60014511013,0,0 +60014511013,310416,0 +60014511013,310417,0.0318906605922551 +60014511013,310418,0 +60014511013,310609,0.020501138952164 +60014511013,311072,0.0273348519362187 +60014511013,311075,0.00227790432801822 +60014511013,311248,0.0227790432801822 +60014511013,311256,0.00455580865603645 +60014511013,311476,0 +60014511013,311899,0.0136674259681093 +60014511013,311906,0 +60014511013,311907,0.00683371298405467 +60014511013,312131,0.00227790432801822 +60014511013,312582,0.0136674259681093 +60014511013,312791,0.00227790432801822 +60014511013,313449,0 +60014511013,314104,0 +60014511013,314412,0.00455580865603645 +60014511013,315060,0.0250569476082005 +60014511013,315410,0.0296127562642369 +60014511013,317843,0.00227790432801822 +60014511013,317850,0.116173120728929 +60014511013,319525,0.136674259681093 +60014511013,320034,0.00911161731207289 +60014511013,320770,0.00683371298405467 +60014511013,320773,0 +60014511013,321208,0.0182232346241458 +60014511013,321412,0.00911161731207289 +60014511013,321413,0.0113895216400911 +60014511013,323253,0 +60014511013,323256,0.00455580865603645 +60014511013,323438,0.0113895216400911 +60014511013,323488,0.0159453302961276 +60014511013,323490,0 +60014511013,323493,0.0136674259681093 +60014511013,323498,0 +60014511013,323503,0.0501138952164009 +60014511013,323506,0 +60014511013,323509,0 +60014511013,323878,0.00227790432801822 +60014511013,324574,0 +60014511013,324776,0.00683371298405467 +60014511013,325272,0 +60014511013,325288,0 +60014511013,326126,0.00227790432801822 +60014511013,326475,0.0387243735763098 +60014511013,326757,0.0159453302961276 +60014511013,326776,0.0113895216400911 +60014511013,326954,0.107061503416856 +60014511013,327131,0 +60014511013,327579,0.00227790432801822 +60014511013,327580,0 +60014511013,328011,0 +60014511013,328178,0.0523917995444191 +60014511013,328187,0.00455580865603645 +60014511013,328190,0 +60014511013,328377,0.00455580865603645 +60014511013,328608,0 +60014511013,328967,0.0227790432801822 +60014511013,328968,0.0774487471526196 +60014511013,328969,0 +60014511013,329573,0.00683371298405467 +60014511013,329586,0 +60014511013,329816,0.00227790432801822 +60014511013,330180,0.00455580865603645 +60014511013,330268,0 +60014511013,331509,0.0113895216400911 +60014511013,331732,0.0136674259681093 +60014511013,332838,0 +60014511014,310140,1 +60014511014,310439,0 +60014511014,310622,0 +60014511014,311103,0 +60014511014,312772,0 +60014511014,315225,0 +60014511014,315424,0 +60014511014,320788,0 +60014511014,325478,0 +60014511014,327843,0 +60014511015,311266,0 +60014511015,311741,0 +60014511015,312126,0 +60014511015,312604,0.143958868894602 +60014511015,315405,0 +60014511015,315948,0.0025706940874036 +60014511015,316804,0.138817480719794 +60014511015,318242,0.42159383033419 +60014511015,319329,0.0179948586118252 +60014511015,321217,0.012853470437018 +60014511015,323240,0.0488431876606684 +60014511015,326588,0.0359897172236504 +60014511015,327751,0.0231362467866324 +60014511015,328000,0.0051413881748072 +60014511015,328018,0 +60014511015,328194,0.0051413881748072 +60014511015,332858,0.143958868894602 +60014511021,311261,0.121140142517815 +60014511021,313422,0.135391923990499 +60014511021,313948,0.178147268408551 +60014511021,320237,0.280285035629454 +60014511021,323866,0.114014251781473 +60014511021,333017,0.171021377672209 +60014511022,310596,0.0588235294117647 +60014511022,310624,0.0377358490566038 +60014511022,313076,0.0810210876803552 +60014511022,313084,0.150943396226415 +60014511022,313091,0.0854605993340733 +60014511022,314593,0.00554938956714761 +60014511022,318241,0.248612652608213 +60014511022,319539,0.0410654827968923 +60014511022,320014,0.0577136514983352 +60014511022,320793,0.0332963374028857 +60014511022,320795,0.0732519422863485 +60014511022,324289,0.00776914539400666 +60014511022,324291,0.0177580466148724 +60014511022,326322,0.0310765815760266 +60014511022,327551,0.0699223085460599 +60014511022,329387,0 +60014512011,311246,0.052924791086351 +60014512011,311263,0.052924791086351 +60014512011,311267,0.118848653667595 +60014512011,314127,0 +60014512011,315963,0.14577530176416 +60014512011,317855,0.031569173630455 +60014512011,318615,0.0473537604456825 +60014512011,318984,0.0696378830083565 +60014512011,320937,0.0232126276694522 +60014512011,323447,0.0510677808727948 +60014512011,325627,0.0297121634168988 +60014512011,325628,0.031569173630455 +60014512011,326755,0.021355617455896 +60014512011,326785,0.0947075208913649 +60014512011,327742,0.021355617455896 +60014512011,329832,0.1652739090065 +60014512011,331417,0.042711234911792 +60014512012,310817,0.040929203539823 +60014512012,313086,0.0519911504424779 +60014512012,314587,0.0829646017699115 +60014512012,314768,0.0276548672566372 +60014512012,318608,0.0276548672566372 +60014512012,318609,0.043141592920354 +60014512012,318611,0.324115044247788 +60014512012,320227,0.0663716814159292 +60014512012,320935,0.045353982300885 +60014512012,322393,0.0265486725663717 +60014512012,323258,0.0553097345132743 +60014512012,325841,0.0442477876106195 +60014512012,327834,0.0486725663716814 +60014512012,331412,0.0741150442477876 +60014512012,332841,0.040929203539823 +60014512013,315430,0.00196078431372549 +60014512013,321427,0.0607843137254902 +60014512013,324778,0.203921568627451 +60014512013,328166,0.127450980392157 +60014512013,328639,0.0882352941176471 +60014512013,330003,0.0627450980392157 +60014512013,331245,0.347058823529412 +60014512013,332115,0.107843137254902 +60014512021,311110,0.248833592534992 +60014512021,311491,0.0653188180404355 +60014512021,313438,0.0015552099533437 +60014512021,313443,0.0451010886469673 +60014512021,315054,0.00622083981337481 +60014512021,317178,0.0108864696734059 +60014512021,317341,0 +60014512021,320224,0.0746500777604977 +60014512021,320226,0.046656298600311 +60014512021,321350,0.0248833592534992 +60014512021,323249,0.00622083981337481 +60014512021,323873,0.0653188180404355 +60014512021,324490,0.0046656298600311 +60014512021,324586,0.0015552099533437 +60014512021,324796,0.031104199066874 +60014512021,328988,0.119751166407465 +60014512021,332840,0.192846034214619 +60014512021,332855,0.0544323483670296 +60014512022,320223,0.315602836879433 +60014512022,320936,0.0886524822695035 +60014512022,327133,0.595744680851064 +60014512023,314123,0.0833333333333333 +60014512023,326297,0.105769230769231 +60014512023,327134,0.384615384615385 +60014512023,332843,0.426282051282051 +60014513001,310158,0.0380487804878049 +60014513001,311076,0.0331707317073171 +60014513001,314748,0.0282926829268293 +60014513001,314749,0.055609756097561 +60014513001,315049,0.000975609756097561 +60014513001,315744,0.095609756097561 +60014513001,315746,0.0819512195121951 +60014513001,318036,0.0292682926829268 +60014513001,321299,0.0321951219512195 +60014513001,321342,0 +60014513001,323309,0.0360975609756098 +60014513001,324098,0.0878048780487805 +60014513001,325185,0 +60014513001,329662,0.0624390243902439 +60014513001,330856,0.0331707317073171 +60014513001,330857,0.0487804878048781 +60014513001,330858,0.0380487804878049 +60014513001,331249,0.00585365853658537 +60014513001,331928,0.182439024390244 +60014513001,333205,0 +60014513001,333222,0.0517073170731707 +60014513001,333684,0.0585365853658537 +60014513002,314745,0.048526863084922 +60014513002,314750,0.0641247833622184 +60014513002,315057,0.253032928942808 +60014513002,316099,0.048526863084922 +60014513002,318034,0.048526863084922 +60014513002,318035,0.0450606585788562 +60014513002,325158,0.0450606585788562 +60014513002,330264,0.116117850953206 +60014513002,330859,0.0537261698440208 +60014513002,330861,0.123050259965338 +60014513002,333030,0.0866551126516464 +60014513002,333210,0.0675909878682842 +60014513003,310138,0 +60014513003,314117,0 +60014513003,314119,0.0728476821192053 +60014513003,314747,0.0768211920529801 +60014513003,315050,0.0993377483443709 +60014513003,323308,0.00794701986754967 +60014513003,323413,0 +60014513003,325153,0 +60014513003,325154,0 +60014513003,325156,0.264900662251656 +60014513003,328441,0 +60014513003,328616,0.0410596026490066 +60014513003,332100,0.20794701986755 +60014513003,332166,0.0410596026490066 +60014513003,333026,0.095364238410596 +60014513003,333029,0.033112582781457 +60014513003,333203,0 +60014513003,333204,0 +60014513003,333207,0.0596026490066225 +60014514011,311489,0.622324159021407 +60014514011,315402,0 +60014514011,317162,0.0840978593272171 +60014514011,320229,0.128440366972477 +60014514011,321264,0.120795107033639 +60014514011,321369,0.0443425076452599 +60014514012,310165,0.115631691648822 +60014514012,310845,0.0503211991434689 +60014514012,312595,0 +60014514012,313088,0.0524625267665953 +60014514012,313246,0.0353319057815846 +60014514012,316427,0.0599571734475375 +60014514012,317510,0.00107066381156317 +60014514012,317860,0.0813704496788009 +60014514012,319531,0.0503211991434689 +60014514012,319532,0.0599571734475375 +60014514012,323396,0.0289079229122056 +60014514012,323414,0.0856531049250535 +60014514012,327224,0.113490364025696 +60014514012,327760,0.147751605995717 +60014514012,330792,0.0256959314775161 +60014514012,331437,0.0438972162740899 +60014514012,332765,0.0149892933618844 +60014514012,333872,0.0331905781584582 +60014514013,310836,0.0374251497005988 +60014514013,312422,0.217065868263473 +60014514013,316443,0.0449101796407186 +60014514013,317146,0.101796407185629 +60014514013,318806,0.170658682634731 +60014514013,318813,0.17814371257485 +60014514013,323417,0.0464071856287425 +60014514013,323418,0.0838323353293413 +60014514013,324069,0.0359281437125748 +60014514013,324070,0.0374251497005988 +60014514013,325816,0.0464071856287425 +60014514031,310847,0.462686567164179 +60014514031,311483,0.0656716417910448 +60014514031,317170,0.0925373134328358 +60014514031,317503,0.137313432835821 +60014514031,321368,0.0895522388059701 +60014514031,331488,0.152238805970149 +60014514032,313769,0.399527186761229 +60014514032,315748,0.0614657210401891 +60014514032,316097,0.0614657210401891 +60014514032,320779,0.066193853427896 +60014514032,324791,0.0756501182033097 +60014514032,325805,0.0638297872340425 +60014514032,331485,0.0732860520094563 +60014514032,331487,0.066193853427896 +60014514032,333866,0.132387706855792 +60014514041,312787,0.0492063492063492 +60014514041,315749,0.0634920634920635 +60014514041,315750,0.0904761904761905 +60014514041,315751,0.0904761904761905 +60014514041,316100,0.0428571428571429 +60014514041,319516,0.0523809523809524 +60014514041,321265,0.149206349206349 +60014514041,323349,0.16984126984127 +60014514041,324590,0.0968253968253968 +60014514041,324960,0.0571428571428571 +60014514041,327226,0.0968253968253968 +60014514041,333691,0.0412698412698413 +60014514042,314588,0.0529953917050691 +60014514042,315752,0.0622119815668203 +60014514042,315753,0.0622119815668203 +60014514042,316650,0.0806451612903226 +60014514042,317343,0.0552995391705069 +60014514042,319519,0.0921658986175115 +60014514042,320247,0.0967741935483871 +60014514042,321268,0.158986175115207 +60014514042,325808,0.0990783410138249 +60014514042,325809,0.142857142857143 +60014514042,333690,0.0967741935483871 +60014514043,310146,0.04004004004004 +60014514043,314746,0.0530530530530531 +60014514043,315755,0.039039039039039 +60014514043,315756,0.02002002002002 +60014514043,315757,0.037037037037037 +60014514043,315759,0.0710710710710711 +60014514043,316102,0.018018018018018 +60014514043,316103,0.043043043043043 +60014514043,316104,0.033033033033033 +60014514043,316436,0.047047047047047 +60014514043,316437,0.017017017017017 +60014514043,318044,0.037037037037037 +60014514043,318807,0.105105105105105 +60014514043,321233,0.0940940940940941 +60014514043,321267,0.042042042042042 +60014514043,321269,0.033033033033033 +60014514043,321271,0.032032032032032 +60014514043,321274,0.0510510510510511 +60014514043,323384,0.0630630630630631 +60014514043,325813,0.036036036036036 +60014514043,331497,0.0880880880880881 +60014515011,310168,0.0642570281124498 +60014515011,310410,0.163319946452477 +60014515011,311889,0.0468540829986613 +60014515011,311890,0.190093708165997 +60014515011,313079,0.353413654618474 +60014515011,321201,0.14190093708166 +60014515011,321297,0.0401606425702811 +60014515012,310429,0.0786069651741294 +60014515012,311488,0.0238805970149254 +60014515012,311743,0.0985074626865672 +60014515012,313258,0.196019900497512 +60014515012,315974,0.158208955223881 +60014515012,319324,0.159203980099502 +60014515012,320042,0.146268656716418 +60014515012,321324,0.00597014925373134 +60014515012,323395,0 +60014515012,326951,0.0935323383084577 +60014515012,327744,0.00199004975124378 +60014515012,330267,0.0378109452736318 +60014515031,312572,0.210191082802548 +60014515031,313926,0.143767060964513 +60014515031,314126,0.0218380345768881 +60014515031,314413,0.0181983621474067 +60014515031,316442,0.00272975432211101 +60014515031,317348,0.0427661510464058 +60014515031,318618,0.0591446769790719 +60014515031,320939,0.0445859872611465 +60014515031,323465,0.0618744313011829 +60014515031,325263,0 +60014515031,325286,0 +60014515031,325447,0.086442220200182 +60014515031,325448,0.0382165605095541 +60014515031,325631,0.0336669699727025 +60014515031,325929,0.0709736123748863 +60014515031,327743,0.0509554140127389 +60014515031,328177,0.0209281164695177 +60014515031,328764,0.0200181983621474 +60014515031,331730,0.0263876251137398 +60014515031,332581,0.0473157415832575 +60014515032,310411,0.28169014084507 +60014515032,310412,0.0788732394366197 +60014515032,312571,0.290140845070423 +60014515032,312773,0.0873239436619718 +60014515032,323247,0.0845070422535211 +60014515032,328601,0.177464788732394 +60014515033,311468,0.155642023346304 +60014515033,311469,0.108949416342412 +60014515033,323422,0.1284046692607 +60014515033,324073,0.108949416342412 +60014515033,324074,0.132295719844358 +60014515033,327550,0.167315175097276 +60014515033,327998,0.101167315175097 +60014515033,331503,0.0972762645914397 +60014515034,313072,0.0583090379008746 +60014515034,323368,0.588921282798834 +60014515034,323421,0.204081632653061 +60014515034,332104,0.14868804664723 +60014515041,310162,0.0566037735849057 +60014515041,313452,0.210977701543739 +60014515041,315429,0.27958833619211 +60014515041,315961,0 +60014515041,319353,0 +60014515041,319530,0.00171526586620926 +60014515041,320059,0 +60014515041,320243,0.0171526586620926 +60014515041,320942,0.0222984562607204 +60014515041,321409,0.217838765008576 +60014515041,323331,0 +60014515041,324489,0 +60014515041,324771,0.0771869639794168 +60014515041,328193,0 +60014515041,330168,0.0668953687821612 +60014515041,330265,0.0445969125214408 +60014515041,330434,0.00343053173241852 +60014515041,330633,0.00171526586620926 +60014515051,312401,0.0782608695652174 +60014515051,312421,0.165217391304348 +60014515051,313431,0.185507246376812 +60014515051,317856,0.147826086956522 +60014515051,325920,0.246376811594203 +60014515051,330794,0.0695652173913043 +60014515051,332088,0.107246376811594 +60014515052,311081,0.0467171717171717 +60014515052,311728,0.053030303030303 +60014515052,314128,0.0997474747474748 +60014515052,314757,0.0568181818181818 +60014515052,315223,0.0492424242424242 +60014515052,319313,0.0542929292929293 +60014515052,320944,0.0744949494949495 +60014515052,323454,0.0593434343434343 +60014515052,325452,0.0555555555555556 +60014515052,325633,0.0404040404040404 +60014515052,325634,0.0606060606060606 +60014515052,325635,0.0656565656565657 +60014515052,325636,0.0833333333333333 +60014515052,325926,0.0858585858585859 +60014515052,326296,0.0404040404040404 +60014515052,332775,0.0744949494949495 +60014515061,312162,0.0622462787550744 +60014515061,312400,0.0514208389715832 +60014515061,313073,0.10148849797023 +60014515061,318622,0.074424898511502 +60014515061,319314,0.0311231393775372 +60014515061,323456,0.0554803788903924 +60014515061,325455,0.0906630581867388 +60014515061,325456,0.231393775372124 +60014515061,325911,0.0933694181326116 +60014515061,326306,0.115020297699594 +60014515061,332092,0.0500676589986468 +60014515061,332845,0.0433017591339648 +60014515062,312807,0.470059880239521 +60014515062,326570,0.122754491017964 +60014515062,332846,0.407185628742515 +60014516011,310833,0.00149700598802395 +60014516011,310838,0.061377245508982 +60014516011,311241,0.00748502994011976 +60014516011,311242,0.00449101796407186 +60014516011,311888,0.0329341317365269 +60014516011,313425,0.00449101796407186 +60014516011,314101,0.119760479041916 +60014516011,314149,0 +60014516011,316129,0.140718562874251 +60014516011,317169,0.103293413173653 +60014516011,318809,0.00149700598802395 +60014516011,319538,0.0763473053892215 +60014516011,320021,0 +60014516011,320026,0.0149700598802395 +60014516011,320755,0.176646706586826 +60014516011,323419,0.0194610778443114 +60014516011,324558,0.0284431137724551 +60014516011,326940,0.0239520958083832 +60014516011,326941,0.0029940119760479 +60014516011,326944,0.0913173652694611 +60014516011,326949,0.0119760479041916 +60014516011,327993,0.0269461077844311 +60014516011,330166,0.00449101796407186 +60014516011,330169,0.0329341317365269 +60014516011,332382,0.00598802395209581 +60014516011,333508,0.00598802395209581 +60014516011,333878,0 +60014516012,311071,0.0367309458218549 +60014516012,313455,0.0404040404040404 +60014516012,313773,0.244260789715335 +60014516012,315966,0.0284664830119376 +60014516012,315967,0.0955004591368228 +60014516012,316633,0.0449954086317723 +60014516012,323519,0.101928374655647 +60014516012,327549,0.0422405876951331 +60014516012,327840,0.00183654729109275 +60014516012,328638,0.00826446280991736 +60014516012,329392,0.0505050505050505 +60014516012,329579,0.0431588613406795 +60014516012,330775,0.014692378328742 +60014516012,332086,0.0817263544536272 +60014516012,333213,0.0734618916437098 +60014516012,333864,0.0312213039485767 +60014516012,333886,0.0606060606060606 +60014516021,310167,0.0142602495543672 +60014516021,310835,0.0481283422459893 +60014516021,311240,0 +60014516021,313427,0.0124777183600713 +60014516021,313428,0.00980392156862745 +60014516021,314096,0.017825311942959 +60014516021,315965,0 +60014516021,316440,0 +60014516021,317158,0.0106951871657754 +60014516021,318238,0.276292335115865 +60014516021,318642,0.0017825311942959 +60014516021,318989,0 +60014516021,321358,0.00089126559714795 +60014516021,323232,0.0445632798573975 +60014516021,323378,0 +60014516021,323397,0.0053475935828877 +60014516021,323554,0.00980392156862745 +60014516021,324769,0.309269162210339 +60014516021,325641,0.00089126559714795 +60014516021,326466,0.0606060606060606 +60014516021,331252,0.177361853832442 +60014516022,313946,0.329145728643216 +60014516022,320016,0.0778894472361809 +60014516022,320024,0.148241206030151 +60014516022,321193,0.0753768844221105 +60014516022,321196,0.168341708542714 +60014516022,325913,0.100502512562814 +60014516022,327985,0.100502512562814 +60014516023,310134,0.0384047267355982 +60014516023,311239,0.0384047267355982 +60014516023,311245,0.100443131462334 +60014516023,312815,0.0443131462333826 +60014516023,313071,0.320531757754801 +60014516023,314097,0.0502215657311669 +60014516023,320019,0.0457902511078287 +60014516023,320020,0.0664697193500739 +60014516023,324554,0.0768094534711964 +60014516023,326946,0.0443131462333826 +60014516023,327983,0.0649926144756278 +60014516023,329559,0.0753323485967504 +60014516023,330161,0.03397341211226 +60014516024,310133,0.126415094339623 +60014516024,310135,0.0754716981132075 +60014516024,310621,0.0849056603773585 +60014516024,311883,0.0452830188679245 +60014516024,312139,0.164150943396226 +60014516024,320030,0.0528301886792453 +60014516024,320236,0 +60014516024,323526,0.0924528301886793 +60014516024,325473,0.120754716981132 +60014516024,326947,0.179245283018868 +60014516024,327572,0.0584905660377358 +60014517011,312129,0.235849056603774 +60014517011,317152,0.125786163522013 +60014517011,317156,0.0849056603773585 +60014517011,324269,0.0911949685534591 +60014517011,324270,0.160377358490566 +60014517011,324767,0.0880503144654088 +60014517011,324958,0.213836477987421 +60014517012,312788,0.169300225733634 +60014517012,312789,0.0857787810383747 +60014517012,314765,0.148984198645598 +60014517012,319517,0.0654627539503386 +60014517012,324082,0.0790067720090293 +60014517012,326467,0.0744920993227991 +60014517012,327370,0.0925507900677201 +60014517012,329558,0.0609480812641084 +60014517012,329561,0.0699774266365688 +60014517012,332170,0.153498871331828 +60014517013,310597,0.347169811320755 +60014517013,319308,0.283018867924528 +60014517013,323233,0.158490566037736 +60014517013,323234,0.211320754716981 +60014517031,310171,0.0890269151138716 +60014517031,311108,0.109730848861284 +60014517031,312130,0.0786749482401656 +60014517031,317149,0.0662525879917184 +60014517031,317151,0.10351966873706 +60014517031,319513,0.0786749482401656 +60014517031,321210,0.111801242236025 +60014517031,324081,0.0745341614906832 +60014517031,324268,0.105590062111801 +60014517031,332167,0.182194616977226 +60014517032,310625,0.0542540073982737 +60014517032,312138,0.0271270036991369 +60014517032,314130,0.268803945745993 +60014517032,316432,0.0591861898890259 +60014517032,317154,0.030826140567201 +60014517032,319512,0.0604192355117139 +60014517032,321373,0.0369913686806412 +60014517032,323428,0.0332922318125771 +60014517032,323431,0.0752157829839704 +60014517032,324079,0.0443896424167694 +60014517032,325649,0.0887792848335388 +60014517032,326314,0.0789149198520345 +60014517032,326976,0.0961775585696671 +60014517032,327143,0.0456226880394575 +60014517041,311234,0.0597938144329897 +60014517041,316799,0.17319587628866 +60014517041,321314,0.276288659793814 +60014517041,324766,0.0721649484536082 +60014517041,326932,0.0556701030927835 +60014517041,327374,0.0597938144329897 +60014517041,327835,0.0989690721649484 +60014517041,329564,0.0824742268041237 +60014517041,329565,0.0618556701030928 +60014517041,330156,0.0597938144329897 +60014517042,310161,0.073738680465718 +60014517042,310598,0.0672703751617076 +60014517042,312124,0.109961190168176 +60014517042,312786,0.03751617076326 +60014517042,319309,0.0983182406209573 +60014517042,319310,0.0426908150064683 +60014517042,320782,0.0802069857697283 +60014517042,321186,0.0413971539456662 +60014517042,322386,0.0388098318240621 +60014517042,323432,0.0349288486416559 +60014517042,324764,0.0413971539456662 +60014517042,324782,0.0349288486416559 +60014517042,326295,0.0439844760672704 +60014517042,326931,0.0543337645536869 +60014517042,327372,0.0698576972833118 +60014517042,327373,0.0336351875808538 +60014517042,328174,0.0504527813712807 +60014517042,329562,0.0465717981888745 +60014517043,311235,0.09375 +60014517043,319312,0.190340909090909 +60014517043,321188,0.0994318181818182 +60014517043,325184,0 +60014517043,326492,0.0767045454545455 +60014517043,327207,0.446022727272727 +60014517043,327376,0.09375 +60019819001,0,0 +60019819001,321443,0 +60019819001,328471,1 +60019820001,0,0 +60019820001,311289,0 +60019820001,313288,0.212121212121212 +60019820001,318847,0 +60019820001,321613,0 +60019820001,323574,0.696969696969697 +60019820001,324809,0 +60019820001,325311,0 +60019820001,326150,0.0909090909090909 +60019832001,0,0 +60019832001,310211,0 +60019832001,310212,0.00696864111498258 +60019832001,310214,0 +60019832001,310215,0 +60019832001,310237,0 +60019832001,310682,0.0487804878048781 +60019832001,311514,0.00348432055749129 +60019832001,311515,0 +60019832001,312178,0.00696864111498258 +60019832001,312179,0.348432055749129 +60019832001,312453,0 +60019832001,313095,0.0278745644599303 +60019832001,316240,0.292682926829268 +60019832001,316655,0 +60019832001,317373,0 +60019832001,317374,0 +60019832001,319208,0.0801393728222996 +60019832001,321621,0 +60019832001,323565,0 +60019832001,324354,0.0975609756097561 +60019832001,325952,0.00348432055749129 +60019832001,327597,0.00696864111498258 +60019832001,327598,0 +60019832001,327868,0.00348432055749129 +60019832001,328813,0.00348432055749129 +60019832001,330209,0.0696864111498258 +60019900000,0,0 +60133010001,410032,0.193486590038314 +60133010001,411123,0.354406130268199 +60133010001,412697,0.0134099616858238 +60133010001,413242,0.438697318007663 +60133010002,410033,0.0595238095238095 +60133010002,410870,0.0476190476190476 +60133010002,411986,0.0714285714285714 +60133010002,427652,0.821428571428571 +60133010003,0,0 +60133010003,410182,0.0482142857142857 +60133010003,410190,0.153571428571429 +60133010003,410304,0 +60133010003,410577,0.0553571428571429 +60133010003,411021,0.198214285714286 +60133010003,411025,0 +60133010003,411118,0.0125 +60133010003,411127,0.00178571428571429 +60133010003,411985,0 +60133010003,412692,0.0857142857142857 +60133010003,412693,0.116071428571429 +60133010003,412929,0.15 +60133010003,414460,0.0517857142857143 +60133010003,417565,0.0875 +60133010003,422358,0.00178571428571429 +60133010003,423280,0.0196428571428571 +60133010003,423753,0.0178571428571429 +60133020051,410877,0.90961262553802 +60133020051,411848,0.0286944045911047 +60133020051,422157,0.0616929698708752 +60133020052,414456,0.0192678227360308 +60133020052,415266,0.680154142581888 +60133020052,418164,0.300578034682081 +60133020053,411287,0.11744966442953 +60133020053,411849,0.176174496644295 +60133020053,413255,0.0402684563758389 +60133020053,416881,0.0436241610738255 +60133020053,417790,0.11241610738255 +60133020053,420105,0.0671140939597315 +60133020053,421219,0.0587248322147651 +60133020053,421727,0.0889261744966443 +60133020053,423268,0.241610738255034 +60133020053,423555,0.0536912751677852 +60133020054,416887,0.112171837708831 +60133020054,417554,0.417661097852029 +60133020054,418064,0.0883054892601432 +60133020054,418286,0.381861575178998 +60133020061,0,0 +60133020061,412537,0 +60133020061,415810,0.528117359413203 +60133020061,417549,0.237163814180929 +60133020061,417931,0 +60133020061,419896,0.234718826405868 +60133020062,0,0 +60133020062,411013,0.402075226977951 +60133020062,411117,0.053177691309987 +60133020062,411126,0 +60133020062,411129,0.00389105058365759 +60133020062,411277,0.417639429312581 +60133020062,411413,0.121919584954604 +60133020062,411989,0 +60133020062,415966,0.0012970168612192 +60133020062,416886,0 +60133020071,410451,0.0928196147110333 +60133020071,414996,0.108581436077058 +60133020071,416893,0.042031523642732 +60133020071,417266,0.101576182136602 +60133020071,417635,0.117338003502627 +60133020071,417804,0.0656742556917688 +60133020071,418292,0.0499124343257443 +60133020071,421730,0.0359019264448336 +60133020071,421736,0.161120840630473 +60133020071,422782,0.0542907180385289 +60133020071,424668,0.0140105078809107 +60133020071,426345,0.00175131348511384 +60133020071,426350,0.0306479859894921 +60133020071,426826,0.0402802101576182 +60133020071,427332,0.0840630472854641 +60133020072,413252,0.259675405742821 +60133020072,413253,0.17852684144819 +60133020072,415824,0.0761548064918851 +60133020072,416055,0.0149812734082397 +60133020072,418059,0.126092384519351 +60133020072,418060,0.0224719101123595 +60133020072,418287,0.0811485642946317 +60133020072,418289,0.0149812734082397 +60133020072,418291,0.0237203495630462 +60133020072,421635,0.202247191011236 +60133020072,426184,0 +60133020081,0,0 +60133020081,410180,0.00597371565113501 +60133020081,410460,0.001194743130227 +60133020081,410465,0 +60133020081,410578,0.003584229390681 +60133020081,410742,0.00716845878136201 +60133020081,411710,0.00955794504181601 +60133020081,412542,0.330943847072879 +60133020081,412546,0.00597371565113501 +60133020081,412549,0.001194743130227 +60133020081,413088,0.00955794504181601 +60133020081,413788,0.001194743130227 +60133020081,413909,0.017921146953405 +60133020081,414046,0.014336917562724 +60133020081,415267,0.0776583034647551 +60133020081,415671,0.001194743130227 +60133020081,415970,0.016726403823178 +60133020081,417269,0.471923536439666 +60133020081,421123,0.001194743130227 +60133020081,422071,0.022700119474313 +60133020082,410307,0.249030256012413 +60133020082,411017,0.0907680372381691 +60133020082,411706,0.0256012412723041 +60133020082,411711,0.0426687354538402 +60133020082,412548,0.0845616757176106 +60133020082,414044,0.0791311093871218 +60133020082,414461,0.08688906128782 +60133020082,415516,0.0287044220325834 +60133020082,416490,0.0830100853374709 +60133020082,417127,0.0240496508921645 +60133020082,417545,0.0837858805275407 +60133020082,418419,0.00853374709076804 +60133020082,422066,0.0232738557020946 +60133020082,422088,0.0899922420480993 +60133020091,410739,0.256814921090387 +60133020091,413908,0.03012912482066 +60133020091,414757,0 +60133020091,414999,0.395982783357245 +60133020091,415000,0.232424677187948 +60133020091,418312,0.084648493543759 +60133020092,413796,0.119695321001088 +60133020092,415009,0 +60133020092,415010,0.0554951033732318 +60133020092,415287,0.159956474428727 +60133020092,415515,0.0511425462459195 +60133020092,415817,0.0805223068552775 +60133020092,416754,0 +60133020092,418311,0.138193688792165 +60133020092,419672,0.101196953210011 +60133020092,420707,0.0359085963003264 +60133020092,420781,0.0826985854189336 +60133020092,421213,0.044613710554951 +60133020092,425055,0.130576713819369 +60133020101,411282,0.032258064516129 +60133020101,413504,0.289281997918835 +60133020101,415823,0.0822060353798127 +60133020101,417030,0.032258064516129 +60133020101,417128,0.0301768990634755 +60133020101,417265,0.0520291363163371 +60133020101,417271,0.0530697190426639 +60133020101,417543,0.0353798126951093 +60133020101,417561,0.0301768990634755 +60133020101,420780,0.104058272632674 +60133020101,421347,0.00104058272632674 +60133020101,421921,0.116545265348595 +60133020101,426195,0.0624349635796046 +60133020101,426196,0.0790842872008325 +60133020102,410310,0.202846975088968 +60133020102,416048,0.38196915776987 +60133020102,416892,0.415183867141163 +60133020103,411033,0.130023640661939 +60133020103,416601,0.153664302600473 +60133020103,418583,0.132387706855792 +60133020103,418785,0.106382978723404 +60133020103,421229,0.125295508274232 +60133020103,421237,0.160756501182033 +60133020103,424264,0.191489361702128 +60133020104,410317,0.10752688172043 +60133020104,411283,0.224462365591398 +60133020104,416049,0.151881720430108 +60133020104,418079,0.010752688172043 +60133020104,418576,0.138440860215054 +60133020104,420340,0.043010752688172 +60133020104,420779,0.0443548387096774 +60133020104,422166,0.0376344086021505 +60133020104,422988,0.071236559139785 +60133020104,426827,0.0336021505376344 +60133020104,426978,0.092741935483871 +60133020104,427131,0.0443548387096774 +60133031021,414447,0.0732044198895028 +60133031021,415002,0.0662983425414365 +60133031021,415524,0.135359116022099 +60133031021,416603,0.0110497237569061 +60133031021,417278,0.0538674033149171 +60133031021,417401,0.136049723756906 +60133031021,417636,0.12292817679558 +60133031021,417794,0.0973756906077348 +60133031021,419897,0.0511049723756906 +60133031021,420522,0.0207182320441989 +60133031021,420790,0.0352209944751381 +60133031021,421342,0.0310773480662983 +60133031021,421649,0.120165745856354 +60133031021,422769,0.0435082872928177 +60133031021,426496,0.00207182320441989 +60133031022,410574,0.28125 +60133031022,412785,0.213541666666667 +60133031022,413646,0.06640625 +60133031022,413648,0.00130208333333333 +60133031022,414368,0.04296875 +60133031022,415508,0.231770833333333 +60133031022,416595,0 +60133031022,416896,0.151041666666667 +60133031022,422779,0 +60133031022,425487,0.0104166666666667 +60133031022,426018,0.00130208333333333 +60133031031,0,0 +60133031031,410175,0.0931849791376912 +60133031031,410178,0.0500695410292072 +60133031031,410181,0.0945757997218359 +60133031031,410437,0.0111265646731572 +60133031031,410455,0.00695410292072323 +60133031031,411020,0.114047287899861 +60133031031,411424,0.0375521557719054 +60133031031,412786,0.0305980528511822 +60133031031,413099,0.107093184979138 +60133031031,413901,0 +60133031031,414055,0 +60133031031,414360,0.00139082058414465 +60133031031,415271,0.0292072322670376 +60133031031,415680,0.00278164116828929 +60133031031,415807,0.062586926286509 +60133031031,416198,0.00417246175243394 +60133031031,416599,0.00417246175243394 +60133031031,417135,0.062586926286509 +60133031031,417778,0.0166898470097357 +60133031031,419259,0.0987482614742698 +60133031031,419427,0 +60133031031,420342,0.114047287899861 +60133031031,421651,0.0319888734353268 +60133031031,422178,0.0222531293463143 +60133031031,425060,0.00417246175243394 +60133031032,410442,0.0831202046035806 +60133031032,411427,0.0434782608695652 +60133031032,411581,0.0946291560102302 +60133031032,415527,0.20843989769821 +60133031032,415528,0.529411764705882 +60133031032,416598,0.00127877237851662 +60133031032,418424,0.00639386189258312 +60133031032,421735,0.00639386189258312 +60133031032,422339,0.00767263427109974 +60133031032,427806,0.0191815856777494 +60133031033,412134,0.0254957507082153 +60133031033,414611,0.0028328611898017 +60133031033,416590,0.110481586402266 +60133031033,416747,0.0679886685552408 +60133031033,418075,0.075070821529745 +60133031033,418156,0.114730878186969 +60133031033,422789,0.0821529745042493 +60133031033,422990,0.169971671388102 +60133031033,423444,0.0481586402266289 +60133031033,427320,0.0212464589235127 +60133031033,428165,0.237960339943343 +60133031033,428177,0.0439093484419263 +60133031034,410722,0.0687442713107241 +60133031034,411276,0.000916590284142988 +60133031034,411582,0.0357470210815765 +60133031034,413916,0.117323556370302 +60133031034,416052,0.0394133822181485 +60133031034,416748,0.0339138405132906 +60133031034,417134,0.0394133822181485 +60133031034,417786,0.255728689275894 +60133031034,417926,0.080659945004583 +60133031034,419907,0.076076993583868 +60133031034,420339,0.129239230064161 +60133031034,420950,0.0412465627864345 +60133031034,422783,0.0559120073327223 +60133031034,422793,0.0256645279560037 +60133031034,426804,0 +60133032011,414997,0.0386100386100386 +60133032011,414998,0.0437580437580438 +60133032011,415811,0.045045045045045 +60133032011,415813,0.227799227799228 +60133032011,416735,0.102960102960103 +60133032011,417019,0.298584298584299 +60133032011,419673,0.0540540540540541 +60133032011,420333,0.0411840411840412 +60133032011,427304,0.0694980694980695 +60133032011,427809,0.0785070785070785 +60133032012,413096,0.0918472652218782 +60133032012,414449,0.0970072239422085 +60133032012,414450,0.128998968008256 +60133032012,415814,0.17750257997936 +60133032012,416744,0.0495356037151703 +60133032012,417137,0 +60133032012,417783,0.0619195046439628 +60133032012,418796,0.00309597523219814 +60133032012,420118,0 +60133032012,422349,0.252837977296182 +60133032012,427145,0.0608875128998968 +60133032012,427303,0.0763673890608875 +60133032013,410167,0.0364583333333333 +60133032013,411029,0.150173611111111 +60133032013,414453,0.139756944444444 +60133032013,414454,0.161458333333333 +60133032013,415268,0 +60133032013,416498,0 +60133032013,417941,0.0894097222222222 +60133032013,419264,0.0520833333333333 +60133032013,420929,0.162326388888889 +60133032013,421519,0.154513888888889 +60133032013,426651,0.0138888888888889 +60133032013,427498,0.0399305555555556 +60133032021,410162,0.53960396039604 +60133032021,414615,0.178217821782178 +60133032021,418564,0.282178217821782 +60133032022,410571,0.204865556978233 +60133032022,415520,0.101152368758003 +60133032022,417268,0.0614596670934699 +60133032022,418298,0.0845070422535211 +60133032022,418692,0.0806658130601793 +60133032022,421101,0.149807938540333 +60133032022,421493,0.089628681177977 +60133032022,423264,0.0524967989756722 +60133032022,427983,0.175416133162612 +60133032023,410881,0.155807365439093 +60133032023,411583,0.0453257790368272 +60133032023,415521,0.382436260623229 +60133032023,417411,0.41643059490085 +60133032024,412238,0.101063829787234 +60133032024,416354,0.206117021276596 +60133032024,416355,0.156914893617021 +60133032024,417556,0.13031914893617 +60133032024,418801,0.17686170212766 +60133032024,419432,0.0279255319148936 +60133032024,421509,0.0904255319148936 +60133032024,424265,0.0585106382978723 +60133032024,427811,0.0518617021276596 +60133032031,410306,0.0520909757887014 +60133032031,410308,0 +60133032031,410318,0.0187087307410125 +60133032031,410580,0.0388848129126926 +60133032031,411579,0.0352164343360235 +60133032031,411854,0 +60133032031,411855,0.0201760821716801 +60133032031,412690,0.171680117388114 +60133032031,412930,0.0209097578870139 +60133032031,412932,0.020542920029347 +60133032031,413102,0 +60133032031,413655,0.108950843727073 +60133032031,414061,0.0553925165077036 +60133032031,416344,0.0121056493030081 +60133032031,417256,0.0568598679383712 +60133032031,417257,0.00696991929567131 +60133032031,417413,0.0957446808510638 +60133032031,417787,0.0143066764490095 +60133032031,419677,0 +60133032031,420100,0.0652971386647102 +60133032031,420101,0.0216434336023478 +60133032031,421639,0.000366837857666911 +60133032031,421732,0.00183418928833456 +60133032031,421739,0.0033015407190022 +60133032031,422160,0.0421863536316948 +60133032031,422165,0.0135730007336757 +60133032031,422791,0.0209097578870139 +60133032031,422996,0.0117388114453412 +60133032031,425488,0 +60133032031,427144,0.0407190022010271 +60133032031,427308,0.020542920029347 +60133032031,427661,0.0293470286133529 +60133032041,410441,0.543478260869565 +60133032041,417255,0.295652173913043 +60133032041,421918,0.1 +60133032041,426805,0.0608695652173913 +60133032042,418157,0.164490861618799 +60133032042,420525,0.386422976501305 +60133032042,422062,0.365535248041775 +60133032042,422329,0.0835509138381201 +60133032043,410171,0.0834645669291339 +60133032043,410174,0.0929133858267717 +60133032043,410434,0.15748031496063 +60133032043,411585,0.094488188976378 +60133032043,415825,0.0677165354330709 +60133032043,415829,0.0692913385826772 +60133032043,418154,0.0929133858267717 +60133032043,420346,0.0283464566929134 +60133032043,422602,0.233070866141732 +60133032043,423081,0.0803149606299213 +60133032051,410028,0.046583850931677 +60133032051,410312,0.0134575569358178 +60133032051,410453,0.0760869565217391 +60133032051,410573,0.0305383022774327 +60133032051,412388,0.0419254658385093 +60133032051,412795,0.0512422360248447 +60133032051,413651,0.0243271221532091 +60133032051,414910,0.0217391304347826 +60133032051,415017,0.0709109730848861 +60133032051,416207,0.122153209109731 +60133032051,416487,0.031055900621118 +60133032051,417272,0.0222567287784679 +60133032051,417404,0.0346790890269151 +60133032051,417558,0.0160455486542443 +60133032051,417643,0.0491718426501035 +60133032051,418062,0.046583850931677 +60133032051,418561,0.0351966873706004 +60133032051,418703,0.0507246376811594 +60133032051,420704,0.0326086956521739 +60133032051,420713,0.0077639751552795 +60133032051,421218,0.145962732919255 +60133032051,423269,0.0227743271221532 +60133032051,427479,0.0062111801242236 +60133032052,410314,0.147565543071161 +60133032052,411586,0.0404494382022472 +60133032052,412790,0.0554307116104869 +60133032052,414914,0.0958801498127341 +60133032052,414915,0.0292134831460674 +60133032052,416053,0.0202247191011236 +60133032052,416351,0.0711610486891386 +60133032052,416586,0.0359550561797753 +60133032052,417409,0.0651685393258427 +60133032052,418566,0.122097378277154 +60133032052,419271,0.0307116104868914 +60133032052,420514,0.049438202247191 +60133032052,420711,0.107865168539326 +60133032052,420718,0.0052434456928839 +60133032052,420932,0.0322097378277154 +60133032052,422507,0.0352059925093633 +60133032052,423439,0.0344569288389513 +60133032052,427151,0.00898876404494382 +60133032052,427824,0.0127340823970037 +60133040011,0,0 +60133040011,410034,0 +60133040011,410161,0.0051063829787234 +60133040011,410446,0.0417021276595745 +60133040011,410447,0.22468085106383 +60133040011,410570,0.109787234042553 +60133040011,410878,0.0263829787234043 +60133040011,412129,0.0425531914893617 +60133040011,413336,0 +60133040011,413348,0.12936170212766 +60133040011,413914,0.000851063829787234 +60133040011,416046,0.0280851063829787 +60133040011,416057,0.00765957446808511 +60133040011,416206,0.0485106382978723 +60133040011,417116,0.132765957446809 +60133040011,417263,0.0238297872340426 +60133040011,418443,0.112340425531915 +60133040011,418568,0.0187234042553192 +60133040011,418921,0.0434042553191489 +60133040011,419899,0.00425531914893617 +60133040021,0,0 +60133040021,410183,0.0066815144766147 +60133040021,410185,0.0734966592427617 +60133040021,410567,0.10913140311804 +60133040021,410883,0.0022271714922049 +60133040021,411026,0.0311804008908686 +60133040021,411032,0.0690423162583519 +60133040021,411280,0.0044543429844098 +60133040021,413337,0.0066815144766147 +60133040021,413338,0 +60133040021,414212,0 +60133040021,414216,0.0089086859688196 +60133040021,414448,0.0623608017817372 +60133040021,414760,0.0044543429844098 +60133040021,415142,0.138084632516704 +60133040021,415421,0.0601336302895323 +60133040021,415425,0.233853006681514 +60133040021,415955,0.0022271714922049 +60133040021,416606,0.0111358574610245 +60133040021,417944,0.0111358574610245 +60133040021,419433,0 +60133040021,421650,0.10913140311804 +60133040021,421656,0.0267260579064588 +60133040021,423754,0.0155902004454343 +60133040021,427140,0.0066815144766147 +60133040021,427326,0.0066815144766147 +60133040031,410565,0.812967581047382 +60133040031,411031,0.0723192019950125 +60133040031,411858,0.114713216957606 +60133040032,410873,0.0996563573883162 +60133040032,418418,0.780068728522337 +60133040032,422600,0.120274914089347 +60133040033,0,0 +60133040033,413907,0.306962025316456 +60133040033,414917,0.360759493670886 +60133040033,418935,0.00316455696202532 +60133040033,420120,0.205696202531646 +60133040033,422176,0.123417721518987 +60133040041,0,0 +60133040041,410186,0.836587872559096 +60133040041,410872,0.163412127440904 +60133040042,0,0 +60133040042,410036,0.682242990654206 +60133040042,410187,0.160747663551402 +60133040042,410188,0 +60133040042,417123,0.0710280373831776 +60133040042,422173,0.085981308411215 +60133040051,410726,0.158989598811293 +60133040051,410727,0.0416047548291233 +60133040051,410736,0.0260029717682021 +60133040051,410744,0.102526002971768 +60133040051,411030,0 +60133040051,415004,0.139673105497771 +60133040051,415418,0.154531946508172 +60133040051,416360,0.0222882615156018 +60133040051,416361,0.156760772659733 +60133040051,418440,0.131500742942051 +60133040051,420348,0.0661218424962853 +60133040052,0,0 +60133040052,410448,0.116013071895425 +60133040052,410449,0.696078431372549 +60133040052,410731,0.00326797385620915 +60133040052,410874,0.0179738562091503 +60133040052,411578,0.0326797385620915 +60133040052,411595,0.0898692810457516 +60133040052,412796,0 +60133040052,413104,0.00490196078431373 +60133040052,417637,0.00326797385620915 +60133040052,417640,0.00163398692810458 +60133040052,418791,0.00163398692810458 +60133040052,420708,0.0163398692810458 +60133040052,420709,0.0130718954248366 +60133040052,425493,0.00326797385620915 +60133050001,411771,0.0496613995485327 +60133050001,412048,0.0835214446952596 +60133050001,412282,0.115124153498871 +60133050001,412283,0.0293453724604966 +60133050001,412448,0.428893905191874 +60133050001,413565,0.0293453724604966 +60133050001,413573,0.0564334085778781 +60133050001,416125,0.117381489841986 +60133050001,416273,0.00451467268623025 +60133050001,422010,0.0857787810383747 +60133050002,411339,0.208226221079692 +60133050002,411772,0.105398457583548 +60133050002,412284,0.0976863753213368 +60133050002,413567,0.254498714652956 +60133050002,422007,0.025706940874036 +60133050002,423159,0.0951156812339332 +60133050002,423160,0.0051413881748072 +60133050002,423164,0.0719794344473008 +60133050002,427052,0.136246786632391 +60133050003,0,0 +60133050003,410642,0 +60133050003,411199,0.00949367088607595 +60133050003,411343,0 +60133050003,412044,0.10126582278481 +60133050003,412045,0.0759493670886076 +60133050003,413009,0.0569620253164557 +60133050003,413010,0.0316455696202532 +60133050003,413564,0.10126582278481 +60133050003,413570,0 +60133050003,414831,0 +60133050003,415342,0 +60133050003,416416,0 +60133050003,417843,0.0284810126582278 +60133050003,418354,0 +60133050003,418992,0 +60133050003,419001,0 +60133050003,419487,0 +60133050003,419501,0 +60133050003,419776,0 +60133050003,419977,0 +60133050003,421272,0 +60133050003,422432,0 +60133050003,422568,0 +60133050003,422684,0.00632911392405063 +60133050003,423157,0.126582278481013 +60133050003,423507,0.060126582278481 +60133050003,423509,0.0949367088607595 +60133050003,423512,0.0411392405063291 +60133050003,425567,0.0917721518987342 +60133050003,425576,0.0443037974683544 +60133050003,425577,0.0981012658227848 +60133050003,426893,0 +60133050003,427045,0.0316455696202532 +60133050003,427555,0 +60133050003,427568,0 +60133050003,427902,0 +60133050003,428240,0 +60133050004,411765,0.0638686131386861 +60133050004,412039,0.041970802919708 +60133050004,412043,0.0547445255474453 +60133050004,413004,0.202554744525547 +60133050004,413011,0.0711678832116788 +60133050004,416127,0 +60133050004,421997,0.160583941605839 +60133050004,422004,0.0401459854014599 +60133050004,425569,0.031021897810219 +60133050004,425650,0.113138686131387 +60133050004,425927,0.104014598540146 +60133050004,427047,0.0328467153284672 +60133050004,427048,0.0839416058394161 +60133050005,411764,0.0947176684881603 +60133050005,411768,0.171220400728597 +60133050005,412036,0.0655737704918033 +60133050005,412038,0.0255009107468124 +60133050005,413008,0.163934426229508 +60133050005,413012,0 +60133050005,413563,0.0692167577413479 +60133050005,415579,0.0801457194899818 +60133050005,417327,0.092896174863388 +60133050005,422681,0.105646630236794 +60133050005,425579,0.131147540983607 +60133060021,412294,0.0736842105263158 +60133060021,415871,0.141052631578947 +60133060021,416655,0.423157894736842 +60133060021,419755,0.0736842105263158 +60133060021,425947,0.105263157894737 +60133060021,426262,0.117894736842105 +60133060021,426574,0.0652631578947368 +60133060022,0,0 +60133060022,411203,0.0140350877192982 +60133060022,412451,0.0649122807017544 +60133060022,414113,0.107017543859649 +60133060022,416116,0.0456140350877193 +60133060022,416275,0 +60133060022,416408,0.0824561403508772 +60133060022,416421,0.00175438596491228 +60133060022,416652,0.0912280701754386 +60133060022,416937,0.0719298245614035 +60133060022,419770,0 +60133060022,420833,0.175438596491228 +60133060022,421023,0 +60133060022,422118,0.0596491228070175 +60133060022,422422,0.0491228070175439 +60133060022,423842,0 +60133060022,425677,0 +60133060022,425806,0 +60133060022,426398,0.0368421052631579 +60133060022,426549,0.0578947368421053 +60133060022,426558,0 +60133060022,427220,0.0315789473684211 +60133060022,427578,0.110526315789474 +60133060031,411201,0.0230326295585413 +60133060031,412290,0.0671785028790787 +60133060031,412601,0.153550863723608 +60133060031,413579,0.103646833013436 +60133060031,413580,0.230326295585413 +60133060031,424059,0.157389635316699 +60133060031,424060,0.0479846449136276 +60133060031,426245,0.132437619961612 +60133060031,427057,0.0844529750479846 +60133060032,412051,0.0807017543859649 +60133060032,412053,0.13859649122807 +60133060032,412054,0.0543859649122807 +60133060032,413575,0.159649122807018 +60133060032,422417,0.0403508771929825 +60133060032,423165,0.0491228070175439 +60133060032,423167,0.087719298245614 +60133060032,424057,0.164912280701754 +60133060032,424061,0.0368421052631579 +60133060032,424066,0.0526315789473684 +60133060032,425946,0.0333333333333333 +60133060032,427059,0.101754385964912 +60133060033,412286,0.0853242320819113 +60133060033,412291,0.0631399317406143 +60133060033,412292,0.0426621160409556 +60133060033,412600,0.0614334470989761 +60133060033,415580,0.380546075085324 +60133060033,423171,0.0477815699658703 +60133060033,424517,0.168941979522184 +60133060033,425142,0.150170648464164 +60133060041,0,0 +60133060041,410942,0.706474820143885 +60133060041,411495,0.0762589928057554 +60133060041,412293,0.0676258992805755 +60133060041,412449,0.0244604316546763 +60133060041,412602,0.0546762589928058 +60133060041,423172,0.037410071942446 +60133060041,424516,0.0330935251798561 +60133060041,426246,0 +60133060042,412295,0 +60133060042,412609,0.108352144469526 +60133060042,415581,0.0474040632054176 +60133060042,417468,0.0519187358916479 +60133060042,420837,0.227990970654628 +60133060042,422418,0.334085778781038 +60133060042,423050,0.054176072234763 +60133060042,424519,0.054176072234763 +60133060042,426397,0.0564334085778781 +60133060042,427218,0.0654627539503386 +60133071011,416809,0.0916666666666667 +60133071011,416958,0.185 +60133071011,417471,0.075 +60133071011,417979,0.0616666666666667 +60133071011,419496,0.195 +60133071011,420600,0.298333333333333 +60133071011,424322,0.0933333333333333 +60133071012,415067,0.0828220858895705 +60133071012,418479,0.174846625766871 +60133071012,419976,0.0521472392638037 +60133071012,420602,0.138036809815951 +60133071012,424321,0.334355828220859 +60133071012,426270,0.217791411042945 +60133071013,411195,0.111721611721612 +60133071013,411338,0.0714285714285714 +60133071013,420199,0 +60133071013,420841,0.278388278388278 +60133071013,421012,0.119047619047619 +60133071013,421698,0.0586080586080586 +60133071013,424323,0.0787545787545788 +60133071013,424330,0.122710622710623 +60133071013,425793,0.0586080586080586 +60133071013,426392,0.100732600732601 +60133071021,419774,0.347457627118644 +60133071021,424052,0.144067796610169 +60133071021,426726,0.275423728813559 +60133071021,427051,0.169491525423729 +60133071021,427901,0.0635593220338983 +60133071022,411200,0.0906735751295337 +60133071022,412042,0.0699481865284974 +60133071022,416945,0.588082901554404 +60133071022,422692,0.147668393782383 +60133071022,423519,0.103626943005181 +60133071023,410227,0.0917782026768642 +60133071023,411494,0.112810707456979 +60133071023,422002,0.21414913957935 +60133071023,424064,0.0956022944550669 +60133071023,425930,0.152963671128107 +60133071023,426080,0.112810707456979 +60133071023,426727,0.0994263862332696 +60133071023,427406,0.120458891013384 +60133071024,410229,0.0992647058823529 +60133071024,412440,0.202205882352941 +60133071024,417180,0.0606617647058824 +60133071024,417473,0.0606617647058824 +60133071024,417474,0.0496323529411765 +60133071024,417697,0.0551470588235294 +60133071024,418349,0.0533088235294118 +60133071024,425790,0.191176470588235 +60133071024,425920,0.0496323529411765 +60133071024,425921,0.0625 +60133071024,425923,0.0496323529411765 +60133071024,426076,0.0661764705882353 +60133072011,411198,0.0390070921985816 +60133072011,411505,0.0886524822695035 +60133072011,411761,0.0886524822695035 +60133072011,416279,0.143617021276596 +60133072011,419970,0.283687943262411 +60133072011,421015,0.111702127659574 +60133072011,422678,0 +60133072011,423503,0.0407801418439716 +60133072011,423504,0.0443262411347518 +60133072011,425568,0.0549645390070922 +60133072011,426890,0.0620567375886525 +60133072011,426896,0.0425531914893617 +60133072012,419491,0 +60133072012,420838,0.341328413284133 +60133072012,424340,0 +60133072012,425679,0.658671586715867 +60133072012,426403,0 +60133072021,415582,0.206751054852321 +60133072021,417989,0.0886075949367089 +60133072021,423514,0.120253164556962 +60133072021,425570,0.143459915611814 +60133072021,425799,0.116033755274262 +60133072021,425945,0.324894514767933 +60133072022,412040,0.370731707317073 +60133072022,413001,0.0975609756097561 +60133072022,416282,0.214634146341463 +60133072022,422000,0.170731707317073 +60133072022,422875,0.146341463414634 +60133072023,415346,0.100149476831091 +60133072023,420192,0.153961136023916 +60133072023,422434,0.0672645739910314 +60133072023,426400,0.387144992526158 +60133072023,427906,0.291479820627803 +60133072023,427907,0 +60133072041,410653,0.112171837708831 +60133072041,411190,0.420047732696897 +60133072041,411490,0.0906921241050119 +60133072041,417179,0.128878281622912 +60133072041,420598,0.133651551312649 +60133072041,420599,0.114558472553699 +60133072042,412439,0.229166666666667 +60133072042,417181,0.114583333333333 +60133072042,417463,0.142361111111111 +60133072042,418350,0.104166666666667 +60133072042,419493,0.28125 +60133072042,426097,0.128472222222222 +60133072043,411913,0.0780984719864177 +60133072043,415348,0 +60133072043,417461,0.0458404074702886 +60133072043,419753,0.203735144312394 +60133072043,420195,0.0356536502546689 +60133072043,420397,0.066213921901528 +60133072043,420596,0.0560271646859083 +60133072043,425642,0.0645161290322581 +60133072043,425948,0.387096774193548 +60133072043,426096,0.0628183361629881 +60133072051,416413,0.0984455958549223 +60133072051,423829,0.0535405872193437 +60133072051,424748,0.100172711571675 +60133072051,426871,0.735751295336788 +60133072051,427910,0.0120898100172712 +60133072052,415349,0 +60133072052,416284,0 +60133072052,416806,0.246851385390428 +60133072052,416807,0.0705289672544081 +60133072052,417176,0.0188916876574307 +60133072052,417458,0.0654911838790932 +60133072052,420197,0 +60133072052,421013,0.0390428211586902 +60133072052,423814,0.0390428211586902 +60133072052,425949,0.0428211586901763 +60133072052,426716,0.221662468513854 +60133072052,427878,0.255667506297229 +60133072052,427911,0 +60133072053,410792,0.194300518134715 +60133072053,411345,0 +60133072053,421268,0.176165803108808 +60133072053,421815,0.134715025906736 +60133072053,423043,0.155440414507772 +60133072053,423815,0.183937823834197 +60133072053,427876,0.155440414507772 +60133072054,410225,0.0560606060606061 +60133072054,410941,0.0712121212121212 +60133072054,412441,0.0484848484848485 +60133072054,416942,0.0984848484848485 +60133072054,417177,0.0727272727272727 +60133072054,417183,0.0818181818181818 +60133072054,421818,0.103030303030303 +60133072054,424342,0.0651515151515152 +60133072054,426101,0 +60133072054,426405,0.331818181818182 +60133072054,428242,0.0712121212121212 +60133080011,410232,0.05320813771518 +60133080011,410233,0.0860719874804382 +60133080011,414679,0.156494522691706 +60133080011,415584,0.0438184663536776 +60133080011,416285,0.0203442879499218 +60133080011,417699,0.136150234741784 +60133080011,420405,0.0500782472613459 +60133080011,420604,0.0312989045383412 +60133080011,421276,0.0563380281690141 +60133080011,421277,0.0641627543035994 +60133080011,421814,0.0500782472613459 +60133080011,425136,0.0203442879499218 +60133080011,426077,0.0610328638497653 +60133080011,426078,0.0406885758998435 +60133080011,426110,0.0579029733959311 +60133080011,426111,0.0719874804381847 +60133080012,410946,0.171912832929782 +60133080012,411342,0.100484261501211 +60133080012,416112,0.0447941888619855 +60133080012,416813,0 +60133080012,416947,0.0786924939467312 +60133080012,417836,0.0677966101694915 +60133080012,417838,0.0968523002421307 +60133080012,417984,0.0641646489104116 +60133080012,417986,0.0556900726392252 +60133080012,417987,0.0036319612590799 +60133080012,423332,0.12590799031477 +60133080012,426261,0.0569007263922518 +60133080012,426552,0 +60133080012,427549,0.13317191283293 +60133080013,410789,0.136186770428016 +60133080013,416808,0.00194552529182879 +60133080013,417701,0.147859922178988 +60133080013,420606,0.0836575875486381 +60133080013,420607,0.151750972762646 +60133080013,421280,0.186770428015564 +60133080013,421693,0.126459143968872 +60133080013,423824,0.0505836575875486 +60133080013,426258,0.0544747081712062 +60133080013,427880,0.0603112840466926 +60133080014,411196,0.17016317016317 +60133080014,412444,0.0652680652680653 +60133080014,417698,0.160839160839161 +60133080014,420605,0.121212121212121 +60133080014,421278,0.0745920745920746 +60133080014,421692,0.160839160839161 +60133080014,421700,0.135198135198135 +60133080014,424327,0 +60133080014,427551,0.111888111888112 +60133080021,410223,0.261329305135952 +60133080021,415351,0.00151057401812689 +60133080021,415585,0.0876132930513595 +60133080021,416660,0.649546827794562 +60133080022,415064,0 +60133080022,416653,0.0676567656765677 +60133080022,416936,0.235973597359736 +60133080022,417837,0.0594059405940594 +60133080022,418217,0.0610561056105611 +60133080022,420175,0.0528052805280528 +60133080022,421695,0.161716171617162 +60133080022,423049,0.0693069306930693 +60133080022,423330,0.110561056105611 +60133080022,428238,0.181518151815182 +60133090001,0,0 +60133090001,410092,0.0370860927152318 +60133090001,410360,0.0278145695364238 +60133090001,413399,0.0463576158940397 +60133090001,414283,0 +60133090001,414672,0 +60133090001,415740,0.0145695364238411 +60133090001,416939,0.113907284768212 +60133090001,423045,0.0132450331125828 +60133090001,424334,0.0556291390728477 +60133090001,425589,0 +60133090001,426573,0.548344370860927 +60133090001,426720,0.0397350993377483 +60133090001,427033,0.0529801324503311 +60133090001,427200,0.0357615894039735 +60133090001,427556,0.0145695364238411 +60133090002,0,0 +60133090002,416644,0.236641221374046 +60133090002,416941,0.118320610687023 +60133090002,418994,0 +60133090002,419762,0 +60133090002,419769,0 +60133090002,422679,0 +60133090002,424140,0.259541984732824 +60133090002,424749,0 +60133090002,425132,0.187022900763359 +60133090002,425380,0 +60133090002,425675,0.137404580152672 +60133090002,425801,0 +60133090002,426565,0.0610687022900763 +60133090002,426886,0 +60133100001,411502,0.231143552311436 +60133100001,411758,0.0681265206812652 +60133100001,418763,0.0997566909975669 +60133100001,425144,0.138686131386861 +60133100001,425572,0.0218978102189781 +60133100001,425584,0.184914841849148 +60133100001,428059,0.255474452554745 +60133100002,413167,0.134275618374558 +60133100002,414673,0.0918727915194346 +60133100002,420601,0 +60133100002,420836,0.0424028268551237 +60133100002,421009,0.0176678445229682 +60133100002,424150,0.162544169611307 +60133100002,425382,0.243816254416961 +60133100002,425644,0 +60133100002,427206,0.123674911660777 +60133100002,427717,0.183745583038869 +60133100003,413155,0.0685527747551687 +60133100003,413160,0.0413492927094668 +60133100003,413400,0.0413492927094668 +60133100003,414671,0.0544069640914037 +60133100003,414825,0.043525571273123 +60133100003,416417,0.131664853101197 +60133100003,417466,0.0272034820457018 +60133100003,418353,0.0184983677910773 +60133100003,421020,0.248095756256801 +60133100003,422130,0.0576713819368879 +60133100003,423830,0.14145810663765 +60133100003,423831,0.0859630032644178 +60133100003,427741,0.0402611534276387 +60133110001,413706,0.226993865030675 +60133110001,414675,0.168711656441718 +60133110001,424152,0.0705521472392638 +60133110001,426249,0.242331288343558 +60133110001,426423,0.211656441717791 +60133110001,427408,0.0797546012269939 +60133110002,412856,0.0648854961832061 +60133110002,412857,0.0725190839694656 +60133110002,413156,0.0725190839694656 +60133110002,413157,0.0763358778625954 +60133110002,413164,0.0954198473282443 +60133110002,414668,0.0515267175572519 +60133110002,414670,0.066793893129771 +60133110002,417707,0 +60133110002,423833,0.0782442748091603 +60133110002,424143,0.0725190839694656 +60133110002,424144,0.0782442748091603 +60133110002,427029,0.0553435114503817 +60133110002,427031,0.083969465648855 +60133110002,427207,0.0763358778625954 +60133110002,427234,0.0553435114503817 +60133110002,427380,0 +60133110003,416106,0.0918727915194346 +60133110003,416943,0.0477031802120141 +60133110003,419750,0.0936395759717314 +60133110003,422019,0 +60133110003,425835,0.76678445229682 +60133120001,411759,0.0348993288590604 +60133120001,414834,0.087248322147651 +60133120001,415866,0.087248322147651 +60133120001,417694,0.00134228187919463 +60133120001,422244,0 +60133120001,422561,0.0523489932885906 +60133120001,422564,0 +60133120001,426724,0.460402684563758 +60133120001,427199,0 +60133120001,427222,0.0228187919463087 +60133120001,427577,0.0187919463087248 +60133120001,427747,0.23489932885906 +60133131011,410363,0.423076923076923 +60133131011,410640,0.100732600732601 +60133131011,413718,0.115384615384615 +60133131011,418755,0.0769230769230769 +60133131011,418758,0.0586080586080586 +60133131011,426874,0.124542124542125 +60133131011,428057,0.0494505494505494 +60133131011,428060,0.0512820512820513 +60133131012,410362,0.490848585690516 +60133131012,410639,0.136439267886855 +60133131012,419345,0.0133111480865225 +60133131012,424573,0.0449251247920133 +60133131012,427579,0.0149750415973378 +60133131012,427750,0.299500831946755 +60133131013,413414,0.0178359096313912 +60133131013,413712,0.0107015457788347 +60133131013,415203,0.0511296076099881 +60133131013,415206,0.0404280618311534 +60133131013,416410,0.237812128418549 +60133131013,416646,0.197384066587396 +60133131013,418756,0.098692033293698 +60133131013,424339,0 +60133131013,424569,0.0511296076099881 +60133131013,424571,0.0642092746730083 +60133131013,425826,0.0725326991676575 +60133131013,427026,0.0344827586206897 +60133131013,427413,0.00118906064209275 +60133131013,427724,0.0214030915576694 +60133131013,427884,0.0344827586206897 +60133131013,427885,0.0261593341260404 +60133131013,427886,0.0404280618311534 +60133131014,413162,0.162828947368421 +60133131014,413979,0.398026315789474 +60133131014,414276,0.154605263157895 +60133131014,417332,0.164473684210526 +60133131014,420177,0.0822368421052632 +60133131014,420178,0 +60133131014,426705,0.0361842105263158 +60133131014,427400,0 +60133131014,427749,0.00164473684210526 +60133131021,411906,0.0838779956427015 +60133131021,414112,0.0196078431372549 +60133131021,415058,0 +60133131021,417338,0.208061002178649 +60133131021,422865,0.0392156862745098 +60133131021,423044,0.0555555555555556 +60133131021,423838,0.125272331154684 +60133131021,425593,0.337690631808279 +60133131021,425682,0.0555555555555556 +60133131021,426421,0.0446623093681917 +60133131021,427719,0.0305010893246187 +60133131022,410940,0.211494252873563 +60133131022,410948,0.096551724137931 +60133131022,422237,0.250574712643678 +60133131022,422676,0.137931034482759 +60133131022,424149,0.0850574712643678 +60133131022,426884,0.126436781609195 +60133131022,427407,0.0919540229885057 +60133131031,410938,0.0459342023587834 +60133131031,412452,0.0155183116076971 +60133131031,415060,0.0428305400372439 +60133131031,415596,0.000620732464307883 +60133131031,415875,0 +60133131031,416133,0.0223463687150838 +60133131031,416424,0.0229671011793917 +60133131031,416669,0 +60133131031,417188,0.0875232774674116 +60133131031,419969,0.11731843575419 +60133131031,420180,0.0788330229671012 +60133131031,423336,0.148355058969584 +60133131031,423351,0.00124146492861577 +60133131031,424055,0.248292985723153 +60133131031,425590,0.0695220360024829 +60133131031,425676,0 +60133131031,426106,0 +60133131031,427209,0.010552451893234 +60133131031,427562,0.0440720049658597 +60133131031,427914,0.0440720049658597 +60133131032,410099,0.0590631364562118 +60133131032,411904,0.114052953156823 +60133131032,413968,0.262729124236253 +60133131032,415208,0.0855397148676171 +60133131032,418761,0.0875763747454175 +60133131032,419343,0.19755600814664 +60133131032,422563,0.132382892057026 +60133131032,427583,0.0610997963340122 +60133131033,413973,0.179611650485437 +60133131033,418767,0.128640776699029 +60133131033,419346,0.191747572815534 +60133131033,425148,0.150485436893204 +60133131033,425581,0.300970873786408 +60133131033,425582,0.0485436893203883 +60133132031,410359,0.114130434782609 +60133132031,411901,0.148550724637681 +60133132031,415053,0.052536231884058 +60133132031,415577,0.0688405797101449 +60133132031,416673,0.0923913043478261 +60133132031,417336,0.322463768115942 +60133132031,420184,0.105072463768116 +60133132031,423634,0.0507246376811594 +60133132031,426417,0.0452898550724638 +60133132032,424750,0.676258992805755 +60133132032,425951,0 +60133132032,427233,0.323741007194245 +60133132033,412852,0.00784313725490196 +60133132033,417844,0.125490196078431 +60133132033,421403,0.862745098039216 +60133132033,423632,0.00392156862745098 +60133132041,413411,0.0382916053019146 +60133132041,413412,0.0618556701030928 +60133132041,414682,0.0382916053019146 +60133132041,415199,0.0780559646539028 +60133132041,415202,0.0176730486008837 +60133132041,416663,0.14580265095729 +60133132041,424153,0.144329896907217 +60133132041,424563,0.106038291605302 +60133132041,424566,0.0721649484536082 +60133132041,424757,0.069219440353461 +60133132041,424758,0.085419734904271 +60133132041,425155,0.0338733431516937 +60133132041,427036,0.0132547864506627 +60133132041,427411,0.0957290132547864 +60133132042,410361,0.736 +60133132042,410947,0.054 +60133132042,411911,0.096 +60133132042,415877,0 +60133132042,416419,0.01 +60133132042,422438,0 +60133132042,422440,0.104 +60133132042,425831,0 +60133132043,414683,0.0565371024734982 +60133132043,423836,0 +60133132043,424565,0.540636042402827 +60133132043,424567,0.171378091872792 +60133132043,424760,0.107773851590106 +60133132043,427559,0.123674911660777 +60133132051,426416,1 +60133132061,412855,0.124668435013263 +60133132061,414835,0.145888594164456 +60133132061,422425,0.129973474801061 +60133132061,422559,0.371352785145889 +60133132061,426876,0.228116710875332 +60133132062,412858,0.0339943342776204 +60133132062,414669,0.0354107648725212 +60133132062,414674,0.303116147308782 +60133132062,415337,0.123229461756374 +60133132062,419000,0.0495750708215297 +60133132062,423834,0.0538243626062323 +60133132062,423835,0.0920679886685552 +60133132062,424154,0.0382436260623229 +60133132062,424756,0.0396600566572238 +60133132062,424934,0.056657223796034 +60133132062,427030,0.0538243626062323 +60133132062,427032,0.0325779036827195 +60133132062,427561,0.0878186968838527 +60133132063,413410,0.0850574712643678 +60133132063,413709,0.064367816091954 +60133132063,415196,0.0827586206896552 +60133132063,416117,0.197701149425287 +60133132063,416118,0.0850574712643678 +60133132063,421810,0.354022988505747 +60133132063,427558,0.131034482758621 +60133141021,0,0 +60133141021,410088,0.063758389261745 +60133141021,410090,0.156040268456376 +60133141021,411336,0.0855704697986577 +60133141021,418488,0.12248322147651 +60133141021,418489,0.0604026845637584 +60133141021,418490,0.203020134228188 +60133141021,421021,0.0436241610738255 +60133141021,426704,0.246644295302013 +60133141021,427374,0.0184563758389262 +60133141022,410096,0.153153153153153 +60133141022,413148,0.18018018018018 +60133141022,417342,0.12012012012012 +60133141022,423635,0.144144144144144 +60133141022,424765,0.162162162162162 +60133141022,424929,0.0840840840840841 +60133141022,426870,0.156156156156156 +60133141023,411341,0.0636856368563686 +60133141023,412854,0.0392953929539295 +60133141023,414826,0.0392953929539295 +60133141023,418491,0.0691056910569106 +60133141023,422122,0.0758807588075881 +60133141023,423636,0.037940379403794 +60133141023,427744,0.562330623306233 +60133141023,428236,0.112466124661247 +60133141031,410095,0.240740740740741 +60133141031,411344,0.412457912457912 +60133141031,418226,0.0488215488215488 +60133141031,423052,0.0404040404040404 +60133141031,424744,0.0454545454545455 +60133141031,424745,0.0791245791245791 +60133141031,427877,0.132996632996633 +60133141032,416405,0.121761658031088 +60133141032,418986,0.217616580310881 +60133141032,422424,0.0958549222797928 +60133141032,423176,0.103626943005181 +60133141032,427024,0.461139896373057 +60133141033,0,0 +60133141033,414119,0.079734219269103 +60133141033,414285,0 +60133141033,414821,0.104651162790698 +60133141033,415583,0.0747508305647841 +60133141033,416115,0.0149501661129568 +60133141033,417328,0.0548172757475083 +60133141033,418223,0.0830564784053156 +60133141033,419748,0.205980066445183 +60133141033,421019,0 +60133141033,421422,0.172757475083056 +60133141033,422567,0 +60133141033,423631,0.0880398671096345 +60133141033,427226,0.026578073089701 +60133141033,428050,0.0946843853820598 +60133141041,411499,0.0769230769230769 +60133141041,412845,0.106837606837607 +60133141041,414115,0.047008547008547 +60133141041,416815,0.143162393162393 +60133141041,418220,0.284188034188034 +60133141041,418221,0.00213675213675214 +60133141041,422868,0.0683760683760684 +60133141041,424920,0.111111111111111 +60133141041,425152,0.0213675213675214 +60133141041,425563,0.0277777777777778 +60133141041,426887,0.111111111111111 +60133141042,412846,0.23508353221957 +60133141042,412847,0.255369928400955 +60133141042,416406,0.022673031026253 +60133141042,416643,0.00715990453460621 +60133141042,416954,0.0202863961813842 +60133141042,421011,0.138424821002387 +60133141042,421405,0.110978520286396 +60133141042,422871,0.0489260143198091 +60133141042,423828,0.140811455847255 +60133141042,427225,0.0202863961813842 +60133141043,410087,0.0944206008583691 +60133141043,412851,0.0536480686695279 +60133141043,415594,0.0579399141630901 +60133141043,417335,0.0858369098712446 +60133141043,418487,0.0536480686695279 +60133141043,421401,0.0515021459227468 +60133141043,423837,0.092274678111588 +60133141043,423840,0.278969957081545 +60133141043,424746,0.133047210300429 +60133141043,426548,0.0128755364806867 +60133141043,427228,0.0858369098712446 +60133141044,412614,0.254716981132075 +60133141044,413149,0.0188679245283019 +60133141044,414830,0.035377358490566 +60133141044,415867,0.101415094339623 +60133141044,419962,0.0377358490566038 +60133141044,423340,0.316037735849057 +60133141044,423341,0.0660377358490566 +60133141044,426414,0.169811320754717 +60133142001,414280,0.0580912863070539 +60133142001,414531,0.12655601659751 +60133142001,414532,0.149377593360996 +60133142001,419349,0.120331950207469 +60133142001,419350,0.0933609958506224 +60133142001,425653,0.109958506224066 +60133142001,425654,0.157676348547718 +60133142001,425656,0.0871369294605809 +60133142001,427588,0.0975103734439834 +60133142002,414822,0.246355685131195 +60133142002,415880,0.0553935860058309 +60133142002,417333,0.13265306122449 +60133142002,417859,0.357142857142857 +60133142002,419353,0.0510204081632653 +60133142002,422126,0.00583090379008746 +60133142002,423819,0.0393586005830904 +60133142002,425825,0.0670553935860058 +60133142002,426104,0.0451895043731778 +60133142003,0,0 +60133142003,410649,0 +60133142003,413006,0.0606060606060606 +60133142003,414277,0.107070707070707 +60133142003,414278,0.0585858585858586 +60133142003,414281,0.0909090909090909 +60133142003,414527,0.135353535353535 +60133142003,414528,0.123232323232323 +60133142003,414529,0.094949494949495 +60133142003,415741,0.00202020202020202 +60133142003,416955,0.0121212121212121 +60133142003,418340,0.0787878787878788 +60133142003,420176,0.0909090909090909 +60133142003,420407,0.094949494949495 +60133142003,425833,0 +60133142003,426242,0 +60133142003,427738,0.0505050505050505 +60133142003,428090,0 +60133150001,0,0 +60133150001,410118,0.0072463768115942 +60133150001,410119,0 +60133150001,410149,0 +60133150001,410408,0.126811594202899 +60133150001,410535,0 +60133150001,410536,0 +60133150001,410542,0 +60133150001,410543,0 +60133150001,410545,0 +60133150001,411097,0 +60133150001,411226,0 +60133150001,411254,0 +60133150001,411525,0 +60133150001,411689,0 +60133150001,411690,0 +60133150001,411965,0 +60133150001,411969,0 +60133150001,412091,0 +60133150001,412340,0 +60133150001,412342,0 +60133150001,412669,0 +60133150001,413079,0 +60133150001,413441,0 +60133150001,414565,0 +60133150001,416020,0 +60133150001,416023,0 +60133150001,416427,0 +60133150001,416553,0 +60133150001,416554,0 +60133150001,417374,0 +60133150001,417375,0 +60133150001,417376,0 +60133150001,417378,0 +60133150001,417532,0 +60133150001,417540,0 +60133150001,417755,0 +60133150001,417765,0 +60133150001,417893,0.115942028985507 +60133150001,417898,0 +60133150001,418689,0 +60133150001,419110,0 +60133150001,419135,0 +60133150001,419578,0.0072463768115942 +60133150001,419579,0 +60133150001,419833,0 +60133150001,420260,0.307971014492754 +60133150001,420271,0.0434782608695652 +60133150001,420283,0.0036231884057971 +60133150001,420639,0 +60133150001,420765,0 +60133150001,421029,0 +60133150001,421184,0 +60133150001,421185,0 +60133150001,421188,0.315217391304348 +60133150001,421859,0.0036231884057971 +60133150001,422060,0 +60133150001,422319,0 +60133150001,424799,0.0688405797101449 +60133150001,425224,0 +60133150001,425229,0 +60133150001,426800,0 +60133150001,428270,0 +60133150002,411256,0.0343601895734597 +60133150002,411686,0 +60133150002,411687,0 +60133150002,411692,0 +60133150002,412214,0 +60133150002,412215,0.191943127962085 +60133150002,412345,0 +60133150002,413082,0 +60133150002,413995,0 +60133150002,414344,0.0023696682464455 +60133150002,415260,0 +60133150002,416286,0.167061611374408 +60133150002,416333,0 +60133150002,416428,0.0308056872037915 +60133150002,417535,0 +60133150002,418691,0.317535545023697 +60133150002,421204,0 +60133150002,421490,0 +60133150002,422456,0.255924170616114 +60133150002,423728,0 +60133150002,424225,0 +60133150002,425456,0 +60133150002,425874,0 +60133150002,425875,0 +60133160001,0,0 +60133160001,412348,0 +60133160001,413856,0.00218340611353712 +60133160001,414152,0.0262008733624454 +60133160001,414154,0.0676855895196506 +60133160001,414156,0.00218340611353712 +60133160001,414157,0.133187772925764 +60133160001,414422,0 +60133160001,414423,0 +60133160001,415099,0.163755458515284 +60133160001,415102,0.0611353711790393 +60133160001,415625,0.0131004366812227 +60133160001,415626,0.0109170305676856 +60133160001,416992,0.074235807860262 +60133160001,416993,0.0698689956331878 +60133160001,416995,0 +60133160001,417198,0.0196506550218341 +60133160001,418888,0.0458515283842795 +60133160001,418889,0.0567685589519651 +60133160001,419569,0.0502183406113537 +60133160001,419860,0.0240174672489083 +60133160001,420450,0 +60133160001,420451,0.0262008733624454 +60133160001,422292,0.0873362445414847 +60133160001,423218,0 +60133160001,427278,0.0240174672489083 +60133160001,427440,0.0218340611353712 +60133160001,427444,0.0196506550218341 +60133160001,427614,0 +60133170001,412349,0 +60133170001,412458,0.0742857142857143 +60133170001,412530,0 +60133170001,414425,0.0933333333333333 +60133170001,414426,0 +60133170001,415233,0.0342857142857143 +60133170001,415631,0 +60133170001,417525,0.0571428571428571 +60133170001,419149,0 +60133170001,420454,0.140952380952381 +60133170001,423223,0.0628571428571429 +60133170001,427616,0.0952380952380952 +60133170001,427619,0.420952380952381 +60133170001,427791,0.020952380952381 +60133170002,415239,0.0319148936170213 +60133170002,415243,0.0340425531914894 +60133170002,415244,0.0595744680851064 +60133170002,415245,0.0893617021276596 +60133170002,415246,0.0425531914893617 +60133170002,415612,0.263829787234043 +60133170002,417863,0.0893617021276596 +60133170002,420453,0.202127659574468 +60133170002,420459,0.127659574468085 +60133170002,423227,0.0595744680851064 +60133180001,411966,0.174825174825175 +60133180001,415100,0.102564102564103 +60133180001,415101,0.111888111888112 +60133180001,415247,0.0442890442890443 +60133180001,416162,0.0466200466200466 +60133180001,416706,0.0652680652680653 +60133180001,419572,0.0722610722610723 +60133180001,419868,0.158508158508158 +60133180001,419871,0.0675990675990676 +60133180001,421310,0.0979020979020979 +60133180001,423225,0.0582750582750583 +60133180002,0,0 +60133180002,410554,0.00209643605870021 +60133180002,410999,0 +60133180002,411100,0 +60133180002,411101,0.0566037735849057 +60133180002,411104,0 +60133180002,411957,0 +60133180002,412110,0.113207547169811 +60133180002,412351,0 +60133180002,412355,0 +60133180002,413223,0 +60133180002,414151,0.155136268343815 +60133180002,416334,0 +60133180002,417199,0.228511530398323 +60133180002,417363,0 +60133180002,418411,0.0754716981132075 +60133180002,424086,0.368972746331237 +60133180002,427123,0 +60133180003,410256,0.00177304964539007 +60133180003,411228,0.0106382978723404 +60133180003,411230,0 +60133180003,411536,0.0904255319148936 +60133180003,411537,0.0656028368794326 +60133180003,414976,0.0656028368794326 +60133180003,416440,0.117021276595745 +60133180003,417524,0.0567375886524823 +60133180003,418020,0.143617021276596 +60133180003,418027,0.0797872340425532 +60133180003,418654,0.0124113475177305 +60133180003,420316,0.0620567375886525 +60133180003,420318,0.0283687943262411 +60133180003,422470,0.140070921985816 +60133180003,425425,0.0567375886524823 +60133180003,428291,0.0691489361702128 +60133190001,413636,0.203166226912929 +60133190001,414602,0.153034300791557 +60133190001,414711,0.121372031662269 +60133190001,416324,0.0554089709762533 +60133190001,417528,0.100263852242744 +60133190001,420317,0.113456464379947 +60133190001,420319,0.0659630606860158 +60133190001,426955,0.187335092348285 +60133190002,411260,0.0786026200873362 +60133190002,411402,0.0640465793304221 +60133190002,411967,0.0189228529839884 +60133190002,414981,0.0393013100436681 +60133190002,416325,0.0465793304221252 +60133190002,416714,0.181950509461426 +60133190002,416716,0.10334788937409 +60133190002,416982,0.098981077147016 +60133190002,418376,0.0960698689956332 +60133190002,418537,0.128093158660844 +60133190002,420701,0.0451237263464338 +60133190002,420755,0.0465793304221252 +60133190002,421317,0.0524017467248908 +60133190003,414601,0.161787365177196 +60133190003,416683,0.0477657935285054 +60133190003,417731,0.0878274268104777 +60133190003,418021,0.0261941448382126 +60133190003,419831,0.0523882896764253 +60133190003,420756,0.00770416024653313 +60133190003,421313,0.218798151001541 +60133190003,421584,0.0708782742681048 +60133190003,422462,0.121725731895223 +60133190003,423677,0.0909090909090909 +60133190003,425418,0.024653312788906 +60133190003,427946,0.0893682588597843 +60133190004,414980,0.141666666666667 +60133190004,415238,0.0458333333333333 +60133190004,416712,0.0708333333333333 +60133190004,418033,0.429166666666667 +60133190004,418034,0.129166666666667 +60133190004,427945,0.183333333333333 +60133190005,414978,0.131578947368421 +60133190005,414979,0.328947368421053 +60133190005,418030,0.0559210526315789 +60133190005,418031,0.332236842105263 +60133190005,418032,0.101973684210526 +60133190005,424200,0.0493421052631579 +60133190006,411231,0.0747282608695652 +60133190006,412308,0.264945652173913 +60133190006,413418,0.104619565217391 +60133190006,414745,0.240489130434783 +60133190006,414890,0.00679347826086957 +60133190006,415649,0.141304347826087 +60133190006,419222,0.0230978260869565 +60133190006,427087,0.144021739130435 +60133200011,0,0 +60133200011,410546,0 +60133200011,410670,0 +60133200011,411092,0 +60133200011,411093,0 +60133200011,411094,0 +60133200011,411095,0 +60133200011,411099,0 +60133200011,411958,0 +60133200011,411960,0 +60133200011,411962,0 +60133200011,412117,0 +60133200011,412531,0 +60133200011,413214,0 +60133200011,414343,0 +60133200011,414428,0 +60133200011,415257,0 +60133200011,415632,0 +60133200011,416482,0 +60133200011,416858,0.212424849699399 +60133200011,416859,0.0541082164328657 +60133200011,417219,0 +60133200011,417533,0 +60133200011,418055,0.170340681362725 +60133200011,418535,0.220440881763527 +60133200011,419140,0 +60133200011,419147,0 +60133200011,419424,0.162324649298597 +60133200011,420490,0.0541082164328657 +60133200011,423944,0 +60133200011,423947,0 +60133200011,424616,0.12625250501002 +60133200011,425216,0 +60133200011,425873,0 +60133200011,427608,0 +60133200012,411096,0.0427350427350427 +60133200012,415494,0.168091168091168 +60133200012,416018,0.245014245014245 +60133200012,416860,0.0868945868945869 +60133200012,416877,0.0199430199430199 +60133200012,417221,0.0413105413105413 +60133200012,418052,0.0783475783475783 +60133200012,419049,0.0612535612535613 +60133200012,420758,0.0883190883190883 +60133200012,421182,0 +60133200012,423955,0.0826210826210826 +60133200012,424083,0.0854700854700855 +60133200031,410266,0 +60133200031,411802,0.0618253189401374 +60133200031,412309,0.185475956820412 +60133200031,413228,0.378802747791953 +60133200031,413723,0.0333660451422964 +60133200031,414691,0.0588812561334642 +60133200031,419540,0.0431795878312071 +60133200031,420001,0.0510304219823356 +60133200031,420738,0.0520117762512267 +60133200031,426154,0.0834151128557409 +60133200031,427434,0.0520117762512267 +60133200041,410379,0.0414827890556046 +60133200041,411805,0.135922330097087 +60133200041,412500,0.0626654898499559 +60133200041,412894,0 +60133200041,412898,0 +60133200041,413998,0.0759046778464254 +60133200041,415219,0.0423654015887026 +60133200041,415746,0.028243601059135 +60133200041,415764,0.0847308031774051 +60133200041,415946,0.00264783759929391 +60133200041,417742,0.0238305383936452 +60133200041,418026,0.0370697263901147 +60133200041,418371,0.00441306266548985 +60133200041,418373,0.0238305383936452 +60133200041,418516,0.0856134157105031 +60133200041,422260,0 +60133200041,422982,0 +60133200041,423056,0.157987643424537 +60133200041,425177,0.0432480141218005 +60133200041,426490,0 +60133200041,426637,0.00617828773168579 +60133200041,427392,0.143865842894969 +60133200041,428306,0 +60133200042,412901,0.165413533834586 +60133200042,419807,0 +60133200042,421629,0.684210526315789 +60133200042,424431,0.150375939849624 +60133200043,410246,0.112701252236136 +60133200043,412080,0.355992844364937 +60133200043,415218,0.438282647584973 +60133200043,420002,0.0930232558139535 +60133211011,411665,0.213091922005571 +60133211011,412485,0.135097493036212 +60133211011,415893,0.052924791086351 +60133211011,419808,0.0473537604456825 +60133211011,419828,0.126740947075209 +60133211011,423900,0.123955431754875 +60133211011,426612,0.0543175487465181 +60133211011,426736,0.246518105849582 +60133211012,410267,0.18019801980198 +60133211012,413745,0.0257425742574257 +60133211012,415650,0.275247524752475 +60133211012,419373,0.0712871287128713 +60133211012,422936,0 +60133211012,424410,0.19009900990099 +60133211012,426157,0.097029702970297 +60133211012,426611,0.16039603960396 +60133211013,410247,0.116083916083916 +60133211013,411548,0.0923076923076923 +60133211013,412078,0.113286713286713 +60133211013,412079,0.0783216783216783 +60133211013,415365,0.0629370629370629 +60133211013,418144,0 +60133211013,419245,0.0657342657342657 +60133211013,419372,0.0685314685314685 +60133211013,421479,0.0475524475524476 +60133211013,422320,0 +60133211013,423369,0.134265734265734 +60133211013,424940,0.0503496503496504 +60133211013,424952,0.0517482517482517 +60133211013,425438,0.0587412587412587 +60133211013,426012,0.0601398601398601 +60133211014,412510,0.178832116788321 +60133211014,412906,0.155109489051095 +60133211014,413639,0.187956204379562 +60133211014,415129,0.102189781021898 +60133211014,415131,0 +60133211014,418914,0.00182481751824818 +60133211014,418915,0.00364963503649635 +60133211014,419539,0.0072992700729927 +60133211014,425301,0.355839416058394 +60133211014,427469,0.0072992700729927 +60133211021,415886,0.254582484725051 +60133211021,415894,0.40122199592668 +60133211021,423431,0.116089613034623 +60133211021,425630,0.0997963340122199 +60133211021,427241,0.128309572301426 +60133211022,411652,0.151724137931034 +60133211022,411655,0.0993103448275862 +60133211022,413209,0.139310344827586 +60133211022,413733,0.0827586206896552 +60133211022,414563,0.056551724137931 +60133211022,427421,0.470344827586207 +60133211023,410838,0.0133779264214047 +60133211023,411515,0.222408026755853 +60133211023,412908,0.135451505016722 +60133211023,413760,0.182274247491639 +60133211023,419363,0.148829431438127 +60133211023,419364,0.173913043478261 +60133211023,420019,0 +60133211023,424437,0.0468227424749164 +60133211023,426294,0.0769230769230769 +60133211024,412461,0.043035107587769 +60133211024,414552,0.0588901472253681 +60133211024,416148,0.0237825594563986 +60133211024,417628,0.129105322763307 +60133211024,421860,0.0543601359003398 +60133211024,425839,0.502831257078143 +60133211024,426923,0.187995469988675 +60133211031,412061,0.253929866989117 +60133211031,412187,0.0737605804111245 +60133211031,414311,0.0157194679564692 +60133211031,415888,0.182587666263603 +60133211031,415890,0.0133010882708585 +60133211031,421051,0.0689238210399033 +60133211031,422903,0.060459492140266 +60133211031,422904,0.126964933494559 +60133211031,426616,0.128174123337364 +60133211031,426769,0 +60133211031,427251,0.0761789600967352 +60133211032,410376,0.0811965811965812 +60133211032,413467,0.0968660968660969 +60133211032,420272,0.108262108262108 +60133211032,422258,0.0754985754985755 +60133211032,423399,0.0427350427350427 +60133211032,424846,0.165242165242165 +60133211032,424848,0.0356125356125356 +60133211032,425840,0.327635327635328 +60133211032,426480,0.066951566951567 +60133211033,413589,0.158914728682171 +60133211033,415359,0.166666666666667 +60133211033,415747,0.0813953488372093 +60133211033,419079,0.201550387596899 +60133211033,419080,0.391472868217054 +60133212001,412085,0.341098169717138 +60133212001,412506,0.00332778702163062 +60133212001,414313,0.0449251247920133 +60133212001,416828,0.064891846921797 +60133212001,419165,0.126455906821963 +60133212001,419383,0.00332778702163062 +60133212001,419832,0.111480865224626 +60133212001,419892,0.0549084858569052 +60133212001,421040,0.0915141430948419 +60133212001,422586,0.0515806988352745 +60133212001,425415,0.064891846921797 +60133212001,426925,0.0415973377703827 +60133212002,412486,0 +60133212002,412488,0.0120259019426457 +60133212002,412911,0.0388529139685476 +60133212002,413459,0.0453283996299722 +60133212002,415607,0.303422756706753 +60133212002,420869,0 +60133212002,421085,0.0416281221091582 +60133212002,421089,0.0619796484736355 +60133212002,423663,0.0416281221091582 +60133212002,423866,0.0471785383903793 +60133212002,424835,0.0749306197964847 +60133212002,425223,0.238667900092507 +60133212002,426160,0.0943570767807586 +60133212003,410380,0 +60133212003,412741,0.430508474576271 +60133212003,412909,0 +60133212003,414320,0 +60133212003,424438,0 +60133212003,426926,0.569491525423729 +60133220001,412487,0 +60133220001,412491,0.0826210826210826 +60133220001,412742,0.0227920227920228 +60133220001,412743,0.156695156695157 +60133220001,420873,0.227920227920228 +60133220001,423425,0.452991452991453 +60133220001,424355,0.056980056980057 +60133220002,413050,0.0905923344947735 +60133220002,413051,0 +60133220002,414015,0.383275261324042 +60133220002,416138,0.0905923344947735 +60133220002,422713,0.18815331010453 +60133220002,424849,0.247386759581882 +60133220003,412871,0.149714285714286 +60133220003,413597,0.0388571428571429 +60133220003,414853,0.00914285714285714 +60133220003,419612,0.0457142857142857 +60133220003,419778,0.428571428571429 +60133220003,420867,0.0342857142857143 +60133220003,422905,0.110857142857143 +60133220003,423860,0.0228571428571429 +60133220003,424412,0.0388571428571429 +60133220003,424819,0.0354285714285714 +60133220003,425412,0.0857142857142857 +60133220003,426607,0 +60133220004,411789,0.0138036809815951 +60133220004,413295,0.0352760736196319 +60133220004,413297,0.0674846625766871 +60133220004,417487,0.292944785276074 +60133220004,418781,0.144171779141104 +60133220004,419418,0.0644171779141104 +60133220004,421873,0.0291411042944785 +60133220004,424598,0.0598159509202454 +60133220004,424978,0.0352760736196319 +60133220004,425165,0.0214723926380368 +60133220004,425279,0.0429447852760736 +60133220004,425601,0.193251533742331 +60133220004,426561,0 +60133220005,413057,0.171521035598705 +60133220005,413302,0.0938511326860841 +60133220005,413303,0.132686084142395 +60133220005,414205,0.0614886731391586 +60133220005,414573,0.0938511326860841 +60133220005,414574,0.119741100323625 +60133220005,415384,0.0809061488673139 +60133220005,425280,0.135922330097087 +60133220005,425281,0.110032362459547 +60133230001,412859,0.168918918918919 +60133230001,413052,0 +60133230001,413306,0.0585585585585586 +60133230001,414575,0.0878378378378378 +60133230001,414577,0.0900900900900901 +60133230001,422919,0.227477477477477 +60133230001,424580,0.0968468468468468 +60133230001,425282,0.0833333333333333 +60133230001,427103,0.11036036036036 +60133230001,427104,0.0765765765765766 +60133230002,412755,0.0783289817232376 +60133230002,413299,0.0835509138381201 +60133230002,414572,0.0809399477806789 +60133230002,419095,0.198433420365535 +60133230002,419098,0.0757180156657963 +60133230002,421872,0.0809399477806789 +60133230002,421874,0.0704960835509138 +60133230002,425273,0.0887728459530026 +60133230002,425636,0.164490861618799 +60133230002,427098,0.0783289817232376 +60133230003,417343,0.138519924098672 +60133230003,418780,0.20303605313093 +60133230003,419229,0.121442125237192 +60133230003,420623,0.127134724857685 +60133230003,424640,0.136622390891841 +60133230003,425277,0.189753320683112 +60133230003,427096,0.0246679316888046 +60133230003,427097,0.0588235294117647 +60133230004,412754,0.0575757575757576 +60133230004,413298,0.0878787878787879 +60133230004,414018,0.0757575757575758 +60133230004,415383,0.178787878787879 +60133230004,416971,0.224242424242424 +60133230004,419097,0.327272727272727 +60133230004,421869,0.0484848484848485 +60133240011,418378,0.243346007604563 +60133240011,420284,0.357414448669202 +60133240011,428244,0.399239543726236 +60133240012,410679,0.049645390070922 +60133240012,411218,0.0121580547112462 +60133240012,411219,0.156028368794326 +60133240012,411220,0.0618034447821682 +60133240012,413027,0.333333333333333 +60133240012,414336,0.0871327254305978 +60133240012,419068,0.0172239108409321 +60133240012,419099,0.175278622087133 +60133240012,419100,0.107396149949341 +60133240012,420008,0 +60133240013,412120,0.0787671232876712 +60133240013,412202,0.675513698630137 +60133240013,412891,0 +60133240013,420009,0.0907534246575342 +60133240013,421208,0 +60133240013,426142,0 +60133240013,426455,0.154965753424658 +60133240014,413631,0 +60133240014,416305,0 +60133240014,426456,1 +60133240021,411571,0.116666666666667 +60133240021,412196,0 +60133240021,413058,0.0544444444444444 +60133240021,413075,0.416666666666667 +60133240021,413304,0.0433333333333333 +60133240021,413305,0.0166666666666667 +60133240021,414326,0.0577777777777778 +60133240021,414327,0 +60133240021,414330,0 +60133240021,420627,0.126666666666667 +60133240021,420628,0.0677777777777778 +60133240021,420861,0.0366666666666667 +60133240021,421877,0 +60133240021,423863,0.00666666666666667 +60133240021,424357,0.0566666666666667 +60133240022,410129,0.109689213893967 +60133240022,413724,0.272394881170018 +60133240022,414576,0.0182815356489945 +60133240022,414578,0 +60133240022,416983,0.427787934186472 +60133240022,421630,0.131627056672761 +60133240022,427263,0.0402193784277879 +60133240023,410130,0.0288153681963714 +60133240023,414704,0.104589114194237 +60133240023,417875,0.0288153681963714 +60133240023,419061,0.192102454642476 +60133240023,420228,0.123799359658485 +60133240023,420229,0.0928495197438634 +60133240023,423861,0.0608324439701174 +60133240023,423862,0.0501600853788687 +60133240023,424579,0.0277481323372465 +60133240023,424609,0 +60133240023,426914,0.290288153681964 +60133250001,410021,0.458110516934046 +60133250001,411407,0.0998217468805704 +60133250001,412112,0.0730837789661319 +60133250001,413335,0.0017825311942959 +60133250001,414432,0.0641711229946524 +60133250001,414748,0 +60133250001,415387,0.0124777183600713 +60133250001,415786,0.0552584670231729 +60133250001,421832,0.199643493761141 +60133250001,427777,0.035650623885918 +60133250002,415776,0.192439862542955 +60133250002,415778,0.0240549828178694 +60133250002,416166,0.116838487972509 +60133250002,423690,0.666666666666667 +60133250003,412756,0.211624441132638 +60133250003,413857,0.0104321907600596 +60133250003,416164,0.126676602086438 +60133250003,416165,0.0566318926974665 +60133250003,416972,0.0983606557377049 +60133250003,417350,0.0938897168405365 +60133250003,418047,0.0596125186289121 +60133250003,418917,0.226527570789866 +60133250003,425243,0.0849478390461997 +60133250003,427464,0.0178837555886736 +60133250003,427919,0.0134128166915052 +60133250004,412108,0.0796915167095116 +60133250004,413296,0.0796915167095116 +60133250004,413591,0.323907455012853 +60133250004,414570,0.239074550128535 +60133250004,419094,0.0694087403598972 +60133250004,420624,0.0951156812339332 +60133250004,425278,0.113110539845758 +60133250005,414571,0.16793893129771 +60133250005,415381,0.454198473282443 +60133250005,419096,0.187022900763359 +60133250005,420625,0.190839694656489 +60133260001,413859,0.161894273127753 +60133260001,416680,0.10352422907489 +60133260001,417494,0.0209251101321586 +60133260001,418894,0.00330396475770925 +60133260001,422265,0.424008810572687 +60133260001,424358,0.0352422907488987 +60133260001,424653,0.251101321585903 +60133260002,412188,0.41280353200883 +60133260002,413725,0.181015452538631 +60133260002,416136,0.116997792494481 +60133260002,416830,0.189845474613687 +60133260002,421063,0.0993377483443709 +60133270001,412503,0 +60133270001,412861,0.0691547749725576 +60133270001,413222,0.0439077936333699 +60133270001,413224,0.554335894621295 +60133270001,420906,0.0878155872667399 +60133270001,426467,0.0406147091108672 +60133270001,427796,0.20417124039517 +60133270002,412093,0.0909090909090909 +60133270002,412094,0.117424242424242 +60133270002,420910,0.375 +60133270002,422443,0.416666666666667 +60133270003,410392,0.0744186046511628 +60133270003,414567,0.153488372093023 +60133270003,415897,0.1 +60133270003,419523,0.0837209302325581 +60133270003,419524,0.0604651162790698 +60133270003,421598,0.1 +60133270003,425972,0.148837209302326 +60133270003,427609,0.162790697674419 +60133270003,428276,0.116279069767442 +60133270004,410850,0.534435261707989 +60133270004,412092,0.0771349862258953 +60133270004,417775,0 +60133270004,418130,0.181818181818182 +60133270004,420908,0.12396694214876 +60133270004,420909,0.0826446280991736 +60133270005,411255,0 +60133270005,411526,0 +60133270005,411672,0 +60133270005,413759,0 +60133270005,413893,0 +60133270005,414006,0 +60133270005,414318,0.527142857142857 +60133270005,414321,0 +60133270005,414740,0.00142857142857143 +60133270005,416829,0 +60133270005,417874,0 +60133270005,417876,0 +60133270005,417877,0 +60133270005,418248,0 +60133270005,418249,0 +60133270005,419421,0 +60133270005,419518,0 +60133270005,419519,0 +60133270005,419521,0 +60133270005,419588,0 +60133270005,419810,0 +60133270005,421451,0.00142857142857143 +60133270005,421455,0 +60133270005,421594,0 +60133270005,421595,0 +60133270005,422059,0 +60133270005,424184,0 +60133270005,425843,0.468571428571429 +60133270005,425973,0 +60133270005,426730,0 +60133270005,427570,0 +60133270005,428115,0 +60133270005,428116,0 +60133270005,428118,0 +60133270005,428136,0 +60133270005,428137,0 +60133270005,428274,0.00142857142857143 +60133280001,410396,0.0916496945010183 +60133280001,411236,0 +60133280001,411237,0 +60133280001,411239,0.00203665987780041 +60133280001,411246,0 +60133280001,419541,0.578411405295316 +60133280001,419544,0 +60133280001,422471,0.0835030549898167 +60133280001,422476,0 +60133280001,424190,0.136456211812627 +60133280001,425428,0 +60133280001,425429,0 +60133280001,425705,0 +60133280001,425706,0 +60133280001,425983,0.0224032586558045 +60133280001,426146,0 +60133280001,426575,0.0203665987780041 +60133280001,428281,0.065173116089613 +60133280002,410395,0.16868932038835 +60133280002,419055,0.029126213592233 +60133280002,420860,0 +60133280002,421044,0 +60133280002,421597,0 +60133280002,421601,0.0169902912621359 +60133280002,421603,0.00364077669902913 +60133280002,424089,0 +60133280002,424196,0 +60133280002,425697,0.179611650485437 +60133280002,425699,0 +60133280002,425704,0.137135922330097 +60133280002,426137,0.275485436893204 +60133280002,427250,0 +60133280002,428277,0 +60133280002,428278,0 +60133280002,428280,0.189320388349515 +60133290001,411395,0.0364238410596026 +60133290001,411822,0.0447019867549669 +60133290001,416557,0.097682119205298 +60133290001,418135,0.0364238410596026 +60133290001,419117,0.0728476821192053 +60133290001,419118,0.0629139072847682 +60133290001,420258,0.0844370860927152 +60133290001,420740,0.0728476821192053 +60133290001,421615,0.0562913907284768 +60133290001,423679,0.0844370860927152 +60133290001,423680,0.0877483443708609 +60133290001,426166,0.167218543046358 +60133290001,428269,0.0960264900662252 +60133290002,410378,0.18716577540107 +60133290002,410411,0.0677361853832442 +60133290002,411794,0 +60133290002,416555,0.0499108734402852 +60133290002,417752,0.0463458110516934 +60133290002,417757,0.0481283422459893 +60133290002,417758,0.0784313725490196 +60133290002,417894,0.0392156862745098 +60133290002,417896,0.0730837789661319 +60133290002,418263,0.106951871657754 +60133290002,420423,0.103386809269162 +60133290002,420857,0.199643493761141 +60133290003,418133,0.229074889867841 +60133290003,420259,0.013215859030837 +60133290003,425191,0.0969162995594714 +60133290003,425970,0.403083700440529 +60133290003,426164,0.134361233480176 +60133290003,426165,0.123348017621145 +60133290004,410393,0 +60133290004,410852,0.0641447368421053 +60133290004,412905,0.0904605263157895 +60133290004,417881,0 +60133290004,419525,0.376644736842105 +60133290004,419526,0.0493421052631579 +60133290004,419528,0.0148026315789474 +60133290004,419529,0.0575657894736842 +60133290004,420911,0.0657894736842105 +60133290004,421599,0.03125 +60133290004,421600,0.0394736842105263 +60133290004,424187,0.0542763157894737 +60133290004,425427,0.0180921052631579 +60133290004,425695,0.138157894736842 +60133300001,411257,0.132467532467532 +60133300001,411397,0.12987012987013 +60133300001,413221,0.246753246753247 +60133300001,420662,0.111688311688312 +60133300001,420663,0.106493506493506 +60133300001,421065,0.119480519480519 +60133300001,421720,0.153246753246753 +60133300002,410534,0.0683012259194396 +60133300002,411396,0.0998248686514886 +60133300002,411399,0.0630472854640981 +60133300002,411824,0.0753064798598949 +60133300002,411825,0.115586690017513 +60133300002,411827,0.0823117338003503 +60133300002,412336,0.0595446584938704 +60133300002,418639,0 +60133300002,422712,0.15061295971979 +60133300002,423418,0.0525394045534151 +60133300002,423419,0.0840630472854641 +60133300002,423420,0.0525394045534151 +60133300002,426315,0.0402802101576182 +60133300002,426316,0.0560420315236427 +60133300003,410824,0.185595567867036 +60133300003,411242,0.124653739612188 +60133300003,411243,0.0858725761772853 +60133300003,422473,0.102493074792244 +60133300003,422474,0.182825484764543 +60133300003,422475,0.0637119113573407 +60133300003,425430,0.138504155124654 +60133300003,426143,0.116343490304709 +60133300004,410014,0.0661896243291592 +60133300004,410532,0.0644007155635063 +60133300004,412335,0.075134168157424 +60133300004,412661,0.0679785330948122 +60133300004,412663,0.0679785330948122 +60133300004,419130,0.0858676207513417 +60133300004,425842,0.182468694096601 +60133300004,425985,0.134168157423971 +60133300004,425987,0.0411449016100179 +60133300004,425990,0.0644007155635063 +60133300004,426136,0.0912343470483005 +60133300004,428293,0.0590339892665474 +60133310001,412069,0.224080267558528 +60133310001,421304,0.545150501672241 +60133310001,424991,0.150501672240803 +60133310001,428249,0.0802675585284281 +60133310002,411811,0 +60133310002,411812,0.0972972972972973 +60133310002,419071,0.154954954954955 +60133310002,419073,0.0594594594594595 +60133310002,419815,0.142342342342342 +60133310002,420265,0.169369369369369 +60133310002,422156,0.102702702702703 +60133310002,426594,0.205405405405405 +60133310002,426595,0.0684684684684685 +60133310003,419543,0.00543478260869565 +60133310003,425431,0.35054347826087 +60133310003,425432,0.119565217391304 +60133310003,426144,0.160326086956522 +60133310003,426300,0.171195652173913 +60133310003,428299,0.192934782608696 +60133310004,412477,0.123222748815166 +60133310004,414303,0.135071090047393 +60133310004,415665,0.208530805687204 +60133310004,422584,0.0947867298578199 +60133310004,422585,0.104265402843602 +60133310004,424396,0.139810426540284 +60133310004,426742,0.194312796208531 +60133310005,412319,0.124760076775432 +60133310005,412323,0.138195777351248 +60133310005,412646,0.0460652591170825 +60133310005,414752,0.0633397312859885 +60133310005,419560,0.132437619961612 +60133310005,419562,0.09021113243762 +60133310005,424178,0.218809980806142 +60133310005,424179,0.186180422264875 +60133310006,411798,0.260504201680672 +60133310006,412322,0.109243697478992 +60133310006,422478,0.121848739495798 +60133310006,422916,0.092436974789916 +60133310006,423882,0.191176470588235 +60133310006,427802,0.0903361344537815 +60133310006,428300,0.134453781512605 +60133320001,410817,0.045958795562599 +60133320001,412878,0.234548335974643 +60133320001,418659,0.0618066561014263 +60133320001,418663,0.125198098256735 +60133320001,418664,0.0966719492868463 +60133320001,418665,0.05229793977813 +60133320001,419561,0.101426307448494 +60133320001,421070,0.0855784469096672 +60133320001,421484,0.0744849445324881 +60133320001,425409,0.0364500792393027 +60133320001,426593,0.0855784469096672 +60133320002,413036,0.0294985250737463 +60133320002,413311,0.200589970501475 +60133320002,413313,0.056047197640118 +60133320002,413611,0.321533923303835 +60133320002,415914,0.315634218289086 +60133320002,418878,0.0766961651917404 +60133320003,413616,0.153061224489796 +60133320003,415915,0.0688775510204082 +60133320003,422021,0.540816326530612 +60133320003,427271,0.168367346938776 +60133320003,427272,0.0688775510204082 +60133320004,410299,0.154347826086957 +60133320004,412478,0.108695652173913 +60133320004,413617,0.119565217391304 +60133320004,414302,0.180434782608696 +60133320004,415097,0.05 +60133320004,416452,0.0195652173913043 +60133320004,418884,0.041304347826087 +60133320004,418885,0.165217391304348 +60133320004,427273,0.160869565217391 +60133320005,415090,0.197132616487455 +60133320005,415395,0.28673835125448 +60133320005,422284,0.100358422939068 +60133320005,423906,0.175627240143369 +60133320005,423910,0.240143369175627 +60133320006,410538,0.366161616161616 +60133320006,411951,0.179292929292929 +60133320006,412338,0.0757575757575758 +60133320006,421067,0.23989898989899 +60133320006,426321,0.138888888888889 +60133320007,412320,0.225 +60133320007,414586,0.108333333333333 +60133320007,415394,0.195833333333333 +60133320007,419816,0.1125 +60133320007,419817,0.358333333333333 +60133331011,414850,0.0778443113772455 +60133331011,415623,0.164670658682635 +60133331011,416181,0.0029940119760479 +60133331011,419856,0.176646706586826 +60133331011,423076,0.395209580838323 +60133331011,427778,0.182634730538922 +60133331012,414849,0.0401188707280832 +60133331012,414859,0.205052005943536 +60133331012,417516,0.109955423476969 +60133331012,420222,0.099554234769688 +60133331012,420447,0.104011887072808 +60133331012,420888,0.167904903417533 +60133331012,423216,0.0490341753343239 +60133331012,423530,0.0638930163447251 +60133331012,423536,0.160475482912333 +60133331013,411780,0.241860465116279 +60133331013,414137,0.0930232558139535 +60133331013,415369,0.13953488372093 +60133331013,416175,0.0651162790697674 +60133331013,420891,0.0697674418604651 +60133331013,422022,0.234883720930233 +60133331013,427779,0.155813953488372 +60133331021,410431,0.0885529157667387 +60133331021,410993,0.177105831533477 +60133331021,414149,0.0626349892008639 +60133331021,414972,0.24622030237581 +60133331021,416176,0.196544276457883 +60133331021,418641,0.0928725701943845 +60133331021,418642,0.136069114470842 +60133331022,411552,0.0349206349206349 +60133331022,412621,0.180952380952381 +60133331022,412876,0.723809523809524 +60133331022,422595,0.0603174603174603 +60133331023,417514,0.0507757404795487 +60133331023,418054,0.1212976022567 +60133331023,419622,0.0366713681241185 +60133331023,420890,0.080394922425952 +60133331023,421887,0.0338504936530324 +60133331023,424587,0.183356840620592 +60133331023,427783,0.232722143864598 +60133331023,428140,0.260930888575458 +60133332001,414727,0.107011070110701 +60133332001,414847,0.365313653136531 +60133332001,416988,0.114391143911439 +60133332001,416989,0.169741697416974 +60133332001,420449,0.143911439114391 +60133332001,426754,0.0996309963099631 +60133332002,415229,0.167883211678832 +60133332002,415622,0.145985401459854 +60133332002,416986,0.131386861313869 +60133332002,419397,0.0656934306569343 +60133332002,419852,0.250608272506083 +60133332002,419855,0.102189781021898 +60133332002,420448,0.13625304136253 +60133332003,413028,0.27906976744186 +60133332003,414718,0.195348837209302 +60133332003,415105,0.0581395348837209 +60133332003,416985,0.134883720930233 +60133332003,422740,0.123255813953488 +60133332003,427453,0.0813953488372093 +60133332003,427454,0.127906976744186 +60133332004,413429,0.127490039840637 +60133332004,414305,0.117529880478088 +60133332004,415918,0.177290836653386 +60133332004,416453,0.0577689243027888 +60133332004,416454,0.0637450199203187 +60133332004,416455,0.0876494023904383 +60133332004,419395,0.0816733067729084 +60133332004,422291,0.0418326693227092 +60133332004,424388,0.0856573705179283 +60133332004,427274,0.0896414342629482 +60133332004,427612,0.0697211155378486 +60133332005,413612,0.0570902394106814 +60133332005,413619,0.149171270718232 +60133332005,415093,0.274401473296501 +60133332005,415095,0.119705340699816 +60133332005,418886,0.0902394106813996 +60133332005,419564,0.106813996316759 +60133332005,422285,0.0515653775322284 +60133332005,426744,0.00920810313075507 +60133332005,427269,0.141804788213628 +60133340011,411394,0.456273764258555 +60133340011,413621,0.0456273764258555 +60133340011,414721,0.0659062103929024 +60133340011,415618,0.0887198986058302 +60133340011,415620,0.0785804816223067 +60133340011,416458,0.0494296577946768 +60133340011,420032,0.0430925221799747 +60133340011,423534,0.14828897338403 +60133340011,426747,0.0240811153358682 +60133340012,419563,0.0943661971830986 +60133340012,419803,0.0619718309859155 +60133340012,419889,0.0450704225352113 +60133340012,420427,0.0619718309859155 +60133340012,422287,0.0619718309859155 +60133340012,422714,0.170422535211268 +60133340012,424378,0.0619718309859155 +60133340012,424399,0.0788732394366197 +60133340012,426601,0.0816901408450704 +60133340012,427268,0.28169014084507 +60133340041,413473,0.259615384615385 +60133340041,414973,0.259615384615385 +60133340041,414974,0.114010989010989 +60133340041,415372,0.0906593406593407 +60133340041,415791,0.135989010989011 +60133340041,421888,0.14010989010989 +60133340042,412193,0.627425614489004 +60133340042,417724,0.372574385510996 +60133340043,413594,0.0723809523809524 +60133340043,416308,0.124761904761905 +60133340043,418239,0.522857142857143 +60133340043,419853,0.0438095238095238 +60133340043,420294,0.0257142857142857 +60133340043,420429,0.158095238095238 +60133340043,427613,0.0523809523809524 +60133340044,410250,0.222423146473779 +60133340044,413432,0.0379746835443038 +60133340044,414722,0.0253164556962025 +60133340044,414725,0.211573236889693 +60133340044,415500,0 +60133340044,416464,0.0669077757685353 +60133340044,420428,0.164556962025316 +60133340044,421883,0.0343580470162749 +60133340044,423069,0.0361663652802893 +60133340044,424361,0.200723327305606 +60133340061,412466,0.19811320754717 +60133340061,414306,0.155660377358491 +60133340061,415619,0.110849056603774 +60133340061,415621,0.0966981132075472 +60133340061,417218,0.122641509433962 +60133340061,424404,0.245283018867925 +60133340061,427456,0.0707547169811321 +60133340062,412622,0.209411764705882 +60133340062,412623,0.0564705882352941 +60133340062,413433,0.0541176470588235 +60133340062,413434,0.0294117647058824 +60133340062,414307,0.0682352941176471 +60133340062,414726,0.0117647058823529 +60133340062,414993,0 +60133340062,419512,0.0117647058823529 +60133340062,419806,0.0588235294117647 +60133340062,420035,0.0117647058823529 +60133340062,420641,0.0270588235294118 +60133340062,423077,0.0517647058823529 +60133340062,423204,0.132941176470588 +60133340062,424362,0.129411764705882 +60133340062,424407,0.0811764705882353 +60133340062,426755,0.0611764705882353 +60133340062,427769,0.00470588235294118 +60133340063,413039,0.120772946859903 +60133340063,413606,0.0628019323671498 +60133340063,414136,0.0869565217391304 +60133340063,414846,0.108695652173913 +60133340063,415368,0.0555555555555556 +60133340063,420219,0.0676328502415459 +60133340063,423072,0.0458937198067633 +60133340063,424385,0.0555555555555556 +60133340063,425221,0.0579710144927536 +60133340063,425257,0.0603864734299517 +60133340063,425258,0.159420289855072 +60133340063,426752,0.118357487922705 +60133342001,410963,0.165067178502879 +60133342001,413590,0.0825335892514395 +60133342001,415255,0.111324376199616 +60133342001,417366,0.0556621880998081 +60133342001,418040,0.00575815738963532 +60133342001,418523,0 +60133342001,418525,0.0441458733205374 +60133342001,418871,0.0268714011516315 +60133342001,420062,0.00383877159309021 +60133342001,421176,0.218809980806142 +60133342001,426488,0.0633397312859885 +60133342001,426728,0.134357005758157 +60133342001,428263,0.0882917466410749 +60133342002,410384,0.116228070175439 +60133342002,412625,0.208333333333333 +60133342002,413172,0.00657894736842105 +60133342002,413599,0.0767543859649123 +60133342002,414190,0.0657894736842105 +60133342002,414896,0.0263157894736842 +60133342002,415124,0.00657894736842105 +60133342002,418276,0.0087719298245614 +60133342002,422447,0.0964912280701754 +60133342002,423207,0.184210526315789 +60133342002,423208,0.203947368421053 +60133342003,410697,0.220942408376963 +60133342003,410710,0.0523560209424084 +60133342003,411250,0.104712041884817 +60133342003,413728,0.0816753926701571 +60133342003,416037,0.13717277486911 +60133342003,417745,0.0858638743455497 +60133342003,417746,0.0272251308900524 +60133342003,421721,0.025130890052356 +60133342003,426734,0.0261780104712042 +60133342003,427767,0.0335078534031414 +60133342003,427772,0.0335078534031414 +60133342003,427958,0.171727748691099 +60133342004,410709,0.0505050505050505 +60133342004,413755,0.178451178451178 +60133342004,418125,0.215488215488216 +60133342004,418544,0 +60133342004,421192,0.0976430976430976 +60133342004,421194,0.151515151515152 +60133342004,428120,0.306397306397306 +60133342005,413991,0.0556792873051225 +60133342005,416852,0.351893095768374 +60133342005,420898,0.0356347438752784 +60133342005,422026,0.556792873051225 +60133350001,410829,0.11304347826087 +60133350001,410831,0.091304347826087 +60133350001,412324,0.128260869565217 +60133350001,413994,0.110869565217391 +60133350001,416188,0.278260869565217 +60133350001,425670,0.13695652173913 +60133350001,425844,0.0782608695652174 +60133350001,428250,0.0630434782608696 +60133350002,410676,0.142191142191142 +60133350002,410862,0.0512820512820513 +60133350002,416302,0.0839160839160839 +60133350002,419996,0.167832167832168 +60133350002,421303,0.261072261072261 +60133350002,426299,0.184149184149184 +60133350002,426960,0.10955710955711 +60133350003,410261,0 +60133350003,410263,0 +60133350003,411544,0.167173252279635 +60133350003,411546,0.0851063829787234 +60133350003,411547,0.115501519756839 +60133350003,411797,0 +60133350003,419895,0.088145896656535 +60133350003,419992,0.088145896656535 +60133350003,422138,0.112462006079027 +60133350003,422477,0 +60133350003,423966,0.148936170212766 +60133350003,425435,0.0759878419452888 +60133350003,426148,0.11854103343465 +60133361011,410262,0 +60133361011,421591,0.511278195488722 +60133361011,424175,0.488721804511278 +60133361012,411542,0.480541455160744 +60133361012,422031,0.0642978003384095 +60133361012,422032,0.0406091370558376 +60133361012,424176,0.333333333333333 +60133361012,428283,0.0812182741116751 +60133361013,411545,0 +60133361013,413417,0.416938110749186 +60133361013,426147,0.583061889250814 +60133361021,410832,0.0120805369127517 +60133361021,411366,0.232214765100671 +60133361021,411676,0.0791946308724832 +60133361021,413468,0.0550335570469799 +60133361021,418050,0.0577181208053691 +60133361021,422020,0.370469798657718 +60133361021,425709,0.193288590604027 +60133361022,416873,0.825657894736842 +60133361022,423200,0.174342105263158 +60133361022,425694,0 +60133361023,418252,1 +60133361024,412863,0.145533141210375 +60133361024,418256,0.713256484149856 +60133361024,424964,0.141210374639769 +60133362011,410684,0.0539130434782609 +60133362011,410969,0.0939130434782609 +60133362011,411673,0.0573913043478261 +60133362011,417887,0.0556521739130435 +60133362011,418251,0.102608695652174 +60133362011,418253,0.071304347826087 +60133362011,419063,0.0747826086956522 +60133362011,422035,0.0660869565217391 +60133362011,425616,0.217391304347826 +60133362011,425846,0.20695652173913 +60133362011,428275,0 +60133362012,418254,0.0649717514124294 +60133362012,418255,0.0819209039548023 +60133362012,418381,0.268361581920904 +60133362012,424193,0.220338983050847 +60133362012,424195,0.290960451977401 +60133362012,425703,0.0734463276836158 +60133362013,418382,0.185185185185185 +60133362013,422040,0.662551440329218 +60133362013,423662,0.152263374485597 +60133362021,410971,0.26657263751763 +60133362021,419064,0.122708039492243 +60133362021,420426,0.437235543018336 +60133362021,424612,0.105782792665726 +60133362021,425286,0.0677009873060649 +60133362022,421485,1 +60133362023,411367,0.0772277227722772 +60133362023,418383,0.59009900990099 +60133362023,419249,0.330693069306931 +60133362023,423383,0.00198019801980198 +60133371001,412874,0.0559210526315789 +60133371001,413066,0.309210526315789 +60133371001,413729,0.0427631578947368 +60133371001,421481,0.144736842105263 +60133371001,422741,0.161184210526316 +60133371001,422744,0.09375 +60133371001,424183,0.0657894736842105 +60133371001,424946,0 +60133371001,427115,0.0509868421052632 +60133371001,427249,0.0756578947368421 +60133371002,412864,0.436363636363636 +60133371002,420243,0.0472727272727273 +60133371002,420292,0.0327272727272727 +60133371002,422051,0.0327272727272727 +60133371002,422731,0.0818181818181818 +60133371002,423881,0.118181818181818 +60133371002,425213,0.0545454545454545 +60133371002,427415,0.0763636363636364 +60133371002,427611,0.12 +60133372001,414696,0.028328611898017 +60133372001,418152,0 +60133372001,419076,0.135977337110482 +60133372001,420263,0.110481586402266 +60133372001,428303,0.107648725212465 +60133372001,428304,0.617563739376771 +60133372002,410517,0.0933147632311978 +60133372002,412326,0 +60133372002,419223,0.303621169916435 +60133372002,419894,0.154596100278552 +60133372002,420266,0 +60133372002,422463,0.00139275766016713 +60133372002,424088,0.00139275766016713 +60133372002,425001,0.403899721448468 +60133372002,426301,0 +60133372002,426302,0.0417827298050139 +60133372003,410863,0.151960784313725 +60133372003,410975,0.102941176470588 +60133372003,421305,0.745098039215686 +60133372004,410523,0.0920634920634921 +60133372004,411572,0.13968253968254 +60133372004,412650,0.0857142857142857 +60133372004,412651,0.073015873015873 +60133372004,418137,0.142857142857143 +60133372004,421713,0.320634920634921 +60133372004,422716,0.146031746031746 +60133372005,410525,0.0595009596928983 +60133372005,410526,0.0767754318618042 +60133372005,410841,0.0614203454894434 +60133372005,411507,0.017274472168906 +60133372005,412072,0.191938579654511 +60133372005,412076,0.0460652591170825 +60133372005,419556,0.178502879078695 +60133372005,424181,0.291746641074856 +60133372005,426139,0.0767754318618042 +60133372006,410527,0.0683229813664596 +60133372006,410836,0.0636645962732919 +60133372006,410837,0.0667701863354037 +60133372006,412885,0.046583850931677 +60133372006,412887,0.0388198757763975 +60133372006,423920,0.46583850931677 +60133372006,426451,0.18167701863354 +60133372006,426452,0.0683229813664596 +60133373001,412890,0.0922131147540984 +60133373001,414862,0.278688524590164 +60133373001,414869,0.114754098360656 +60133373001,416699,0.245901639344262 +60133373001,421861,0.0983606557377049 +60133373001,422153,0.0983606557377049 +60133373001,426453,0.0717213114754098 +60133373002,413196,0.230357142857143 +60133373002,416304,0.242857142857143 +60133373002,420645,0.0660714285714286 +60133373002,425299,0.460714285714286 +60133373003,410660,0.134387351778656 +60133373003,411081,0.549407114624506 +60133373003,411376,0.316205533596838 +60133373004,411216,0.130841121495327 +60133373004,413477,0.392523364485981 +60133373004,416462,0 +60133373004,427768,0.476635514018692 +60133373005,419052,0.226337448559671 +60133373005,419557,0.374485596707819 +60133373005,420033,0.39917695473251 +60133373006,412620,0.525198938992042 +60133373006,413042,0.111405835543767 +60133373006,422054,0.0981432360742706 +60133373006,428150,0.26525198938992 +60133381011,410680,0.304615384615385 +60133381011,419531,0.12 +60133381011,424856,0.375384615384615 +60133381011,424999,0.0923076923076923 +60133381011,425853,0.107692307692308 +60133381012,410674,0.152941176470588 +60133381012,419217,0.847058823529412 +60133381013,410681,0.165432098765432 +60133381013,412067,0.157201646090535 +60133381013,417773,0.0592592592592593 +60133381013,419530,0.579423868312757 +60133381013,426491,0.0386831275720165 +60133381021,410116,0.124681933842239 +60133381021,410421,0.0178117048346056 +60133381021,418380,0.11704834605598 +60133381021,419032,0.089058524173028 +60133381021,419069,0.262086513994911 +60133381021,419220,0.188295165394402 +60133381021,420862,0.152671755725191 +60133381021,422039,0.0330788804071247 +60133381021,424363,0.0152671755725191 +60133381022,410675,0.28125 +60133381022,423382,0.71875 +60133381022,423967,0 +60133381023,411370,0.100407055630936 +60133381023,412068,0.100407055630936 +60133381023,419532,0.0407055630936228 +60133381023,421302,0.211668928086839 +60133381023,422915,0.255088195386703 +60133381023,424367,0.0827679782903663 +60133381023,424796,0.0434192672998643 +60133381023,426135,0.0705563093622795 +60133381023,426284,0.0949796472184532 +60133382011,411214,0.0368956743002544 +60133382011,411372,0.10559796437659 +60133382011,412311,0.145038167938931 +60133382011,412329,0.0343511450381679 +60133382011,412626,0.0737913486005089 +60133382011,413186,0.16793893129771 +60133382011,419250,0.00763358778625954 +60133382011,420230,0.155216284987277 +60133382011,421482,0.11704834605598 +60133382011,422924,0.0610687022900763 +60133382011,424780,0.0101781170483461 +60133382011,426306,0.0852417302798982 +60133382012,411836,0.00161290322580645 +60133382012,411939,0.201612903225806 +60133382012,412493,0.0596774193548387 +60133382012,412745,0.158064516129032 +60133382012,412761,0.0161290322580645 +60133382012,413202,0.159677419354839 +60133382012,414009,0.0435483870967742 +60133382012,414863,0 +60133382012,420083,0.0129032258064516 +60133382012,420877,0 +60133382012,421458,0.0419354838709677 +60133382012,422306,0 +60133382012,422307,0 +60133382012,422308,0 +60133382012,424417,0.0838709677419355 +60133382012,424857,0.153225806451613 +60133382012,427646,0.067741935483871 +60133382031,411084,0.0249003984063745 +60133382031,413632,0.172310756972112 +60133382031,414287,0.218127490039841 +60133382031,415789,0 +60133382031,416698,0.0378486055776892 +60133382031,417500,0.332669322709163 +60133382031,418676,0.123505976095618 +60133382031,419179,0.0687250996015936 +60133382031,420643,0.00099601593625498 +60133382031,420649,0.0189243027888446 +60133382031,426576,0.00199203187250996 +60133382032,413736,0.5032080659945 +60133382032,416572,0.00916590284142988 +60133382032,419177,0.277726856095325 +60133382032,420648,0.0934922089825848 +60133382032,422302,0.0714940421631531 +60133382032,423665,0 +60133382032,424591,0.0449129239230064 +60133382033,419186,0.120822622107969 +60133382033,422444,0.123393316195373 +60133382033,427765,0.755784061696658 +60133382041,0,0 +60133382041,411085,0.0276890308839191 +60133382041,411381,0.309904153354633 +60133382041,412462,0 +60133382041,412616,0.0788072417465389 +60133382041,413750,0.0415335463258786 +60133382041,420050,0 +60133382041,420225,0.0713525026624068 +60133382041,420435,0.040468583599574 +60133382041,421718,0.255591054313099 +60133382041,425211,0.174653887113951 +60133382042,411206,0.331775700934579 +60133382042,414880,0.147196261682243 +60133382042,416426,0.0700934579439252 +60133382042,420651,0.404205607476635 +60133382042,423055,0.0467289719626168 +60133382043,411222,0.0457413249211356 +60133382043,412465,0.138801261829653 +60133382043,412627,0.0457413249211356 +60133382043,412628,0.0630914826498423 +60133382043,412869,0.227129337539432 +60133382043,413587,0.0883280757097792 +60133382043,422926,0.083596214511041 +60133382043,426577,0.0457413249211356 +60133382043,427085,0.261829652996845 +60133382044,412629,0.262337662337662 +60133382044,413199,0.0298701298701299 +60133382044,413203,0.051948051948052 +60133382044,420014,0.115584415584416 +60133382044,420653,0.0415584415584416 +60133382044,420654,0.0493506493506494 +60133382044,422925,0.0428571428571429 +60133382044,423053,0.253246753246753 +60133382044,423928,0.103896103896104 +60133382044,423929,0.0493506493506494 +60133383011,412750,0.0399361022364217 +60133383011,413896,0.206070287539936 +60133383011,414014,0.129392971246006 +60133383011,416307,0.146964856230032 +60133383011,419089,0.0575079872204473 +60133383011,420879,0.023961661341853 +60133383011,421864,0.0750798722044728 +60133383011,421865,0.0271565495207668 +60133383011,421866,0.126198083067093 +60133383011,422140,0.0910543130990415 +60133383011,425265,0.0766773162939297 +60133383012,413188,0.0516129032258065 +60133383012,421460,0.10752688172043 +60133383012,421461,0.124731182795699 +60133383012,421462,0.146236559139785 +60133383012,422139,0.354838709677419 +60133383012,426932,0.21505376344086 +60133383021,411115,0.0911424903722722 +60133383021,412497,0.00770218228498074 +60133383021,413609,0.102695763799743 +60133383021,413610,0.0423620025673941 +60133383021,413776,0.0282413350449294 +60133383021,414560,0.024390243902439 +60133383021,417501,0.0166880616174583 +60133383021,418652,0.00770218228498074 +60133383021,419035,0.0320924261874198 +60133383021,419036,0.174582798459564 +60133383021,420226,0.0783055198973042 +60133383021,422326,0.0603337612323492 +60133383021,423905,0.00770218228498074 +60133383021,426487,0.246469833119384 +60133383021,426579,0.079589216944801 +60133383021,426787,0 +60133383022,410420,0.016597510373444 +60133383022,411116,0 +60133383022,413774,0.020746887966805 +60133383022,415262,0 +60133383022,417769,0 +60133383022,418656,0.282157676348548 +60133383022,419092,0.147302904564315 +60133383022,419655,0.0580912863070539 +60133383022,419850,0 +60133383022,423257,0.033195020746888 +60133383022,423894,0.155601659751037 +60133383022,427094,0.12448132780083 +60133383022,427289,0.0975103734439834 +60133383022,428157,0.0643153526970954 +60133383023,411941,0.0455062571103527 +60133383023,413448,0.0136518771331058 +60133383023,414010,0.0409556313993174 +60133383023,414865,0.0944254835039818 +60133383023,414866,0.0739476678043231 +60133383023,415265,0.318543799772469 +60133383023,417101,0.0875995449374289 +60133383023,422151,0.0944254835039818 +60133383023,424418,0.0443686006825939 +60133383023,424419,0.0523321956769056 +60133383023,425845,0.0307167235494881 +60133383023,426308,0.0523321956769056 +60133383023,426441,0.0193401592718999 +60133383023,426758,0.0318543799772469 +60133383023,426786,0 +60133390011,410564,0 +60133390011,411657,0 +60133390011,411790,0 +60133390011,411946,0 +60133390011,413449,0 +60133390011,413450,0 +60133390011,415396,0 +60133390011,416470,0.408119658119658 +60133390011,417234,0.489316239316239 +60133390011,417379,0 +60133390011,417380,0 +60133390011,419113,0 +60133390011,419114,0 +60133390011,421195,0.0705128205128205 +60133390011,421607,0 +60133390011,422145,0.032051282051282 +60133390011,424630,0 +60133390011,424984,0 +60133390011,426763,0 +60133390012,413452,1 +60133390021,416024,0 +60133390021,416722,0 +60133390021,416855,0 +60133390021,417225,0.00108813928182807 +60133390021,418527,0.23177366702938 +60133390021,420751,0 +60133390021,420754,0 +60133390021,421053,0 +60133390021,421164,0.363438520130577 +60133390021,424804,0 +60133390021,424975,0 +60133390021,425611,0.00652883569096844 +60133390021,427954,0.379760609357998 +60133390021,427955,0.0130576713819369 +60133390021,428129,0.0043525571273123 +60133390022,411943,0 +60133390022,413315,0.23474801061008 +60133390022,413752,0.0278514588859416 +60133390022,416854,0 +60133390022,418244,0.595490716180371 +60133390022,418529,0 +60133390022,420436,0.0119363395225464 +60133390022,424983,0 +60133390022,427288,0.128647214854111 +60133390022,427957,0.0013262599469496 +60133390023,410156,0.463644948064212 +60133390023,414289,0 +60133390023,415491,0 +60133390023,416720,0.0453257790368272 +60133390023,417224,0 +60133390023,417511,0.00944287063267233 +60133390023,418526,0 +60133390023,418530,0 +60133390023,419102,0 +60133390023,420752,0 +60133390023,420753,0.0169971671388102 +60133390023,421324,0 +60133390023,424217,0.0991501416430595 +60133390023,425467,0.364494806421152 +60133390023,426759,0 +60133390023,427069,0.000944287063267233 +60133390023,427956,0 +60133390023,428103,0 +60133390024,413737,0.154855643044619 +60133390024,415375,0.241469816272966 +60133390024,420311,0.183727034120735 +60133390024,423897,0.154855643044619 +60133390024,424548,0.26509186351706 +60133400011,414967,0.102473498233216 +60133400011,415777,0.162544169611307 +60133400011,416168,0.0353356890459364 +60133400011,416169,0.109540636042403 +60133400011,416170,0.0918727915194346 +60133400011,420881,0.11660777385159 +60133400011,420885,0.130742049469965 +60133400011,421163,0.109540636042403 +60133400011,423691,0.141342756183746 +60133400012,410659,0.0315904139433551 +60133400012,413891,0.0729847494553377 +60133400012,415788,0 +60133400012,415949,0.0816993464052288 +60133400012,420051,0.0348583877995643 +60133400012,420484,0.0904139433551198 +60133400012,420766,0 +60133400012,421716,0 +60133400012,423695,0.0185185185185185 +60133400012,424783,0.380174291938998 +60133400012,425202,0.0108932461873638 +60133400012,425262,0.278867102396514 +60133400013,412212,0.0306748466257669 +60133400013,412679,0.0102249488752556 +60133400013,412873,0 +60133400013,414968,0.134969325153374 +60133400013,415765,0.10838445807771 +60133400013,416999,0.186094069529652 +60133400013,417203,0.118609406952965 +60133400013,423956,0.280163599182004 +60133400013,427625,0.130879345603272 +60133400014,413890,0.138933764135703 +60133400014,414140,0.0840064620355412 +60133400014,414591,0 +60133400014,419231,0.179321486268174 +60133400014,419509,0.184168012924071 +60133400014,420305,0.0775444264943457 +60133400014,425609,0.105008077544426 +60133400014,427627,0.124394184168013 +60133400014,428100,0.106623586429725 +60133400021,419007,0.0841121495327103 +60133400021,420023,0.0537383177570093 +60133400021,423689,0.217289719626168 +60133400021,424818,0.0864485981308411 +60133400021,427624,0.0654205607476635 +60133400021,427920,0.492990654205607 +60133400022,414163,0.0326086956521739 +60133400022,414165,0.228260869565217 +60133400022,414430,0.177536231884058 +60133400022,416685,0.101449275362319 +60133400022,417390,0.16304347826087 +60133400022,419389,0.115942028985507 +60133400022,425263,0.181159420289855 +60133400023,412631,0.157894736842105 +60133400023,415664,0.0511278195488722 +60133400023,417000,0.177443609022556 +60133400023,418044,0.0781954887218045 +60133400023,419979,0.142857142857143 +60133400023,420068,0.0676691729323308 +60133400023,420883,0.184962406015038 +60133400023,421036,0.0466165413533835 +60133400023,423889,0.0932330827067669 +60133400024,410657,0.403197158081705 +60133400024,418038,0.337477797513322 +60133400024,420306,0.113676731793961 +60133400024,420632,0.0674955595026643 +60133400024,425728,0.0781527531083481 +60133400025,410160,0.00413223140495868 +60133400025,413866,0.0785123966942149 +60133400025,417359,0 +60133400025,419511,0.479338842975207 +60133400025,420746,0.351239669421488 +60133400025,421722,0.0826446280991736 +60133400025,424594,0 +60133400025,425597,0.00413223140495868 +60133400026,411363,0.151677852348993 +60133400026,411832,0.0268456375838926 +60133400026,414164,0.0442953020134228 +60133400026,415922,0.0228187919463087 +60133400026,415923,0.0523489932885906 +60133400026,417347,0.0577181208053691 +60133400026,418783,0.0456375838926174 +60133400026,419388,0.0442953020134228 +60133400026,420071,0.111409395973154 +60133400026,422502,0.238926174496644 +60133400026,424359,0.118120805369128 +60133400026,427764,0.0630872483221477 +60133400026,428307,0.0228187919463087 +60133410001,411225,0.150610583446404 +60133410001,411926,0.234735413839891 +60133410001,412304,0.245590230664858 +60133410001,413598,0.0379918588873813 +60133410001,415767,0.0597014925373134 +60133410001,419020,0.0705563093622795 +60133410001,424216,0.0664857530529172 +60133410001,426287,0.134328358208955 +60133410002,410711,0.0229681978798587 +60133410002,410813,0.146643109540636 +60133410002,410962,0.167844522968198 +60133410002,413583,0.134275618374558 +60133410002,413586,0.049469964664311 +60133410002,416039,0.100706713780919 +60133410002,416851,0.102473498233216 +60133410002,418902,0.0371024734982332 +60133410002,423229,0.109540636042403 +60133410002,423660,0.0671378091872792 +60133410002,428251,0.0618374558303887 +60133410003,411779,0.0879888268156425 +60133410003,413869,0.180167597765363 +60133410003,416719,0.251396648044693 +60133410003,419392,0.150837988826816 +60133410003,419980,0.226256983240223 +60133410003,427953,0.103351955307263 +60133430011,411948,0.209631728045326 +60133430011,416443,0.498583569405099 +60133430011,421456,0.0651558073654391 +60133430011,424584,0.226628895184136 +60133430012,411935,0 +60133430012,415108,0.515901060070671 +60133430012,422050,0.109540636042403 +60133430012,424422,0.180212014134276 +60133430012,426764,0.19434628975265 +60133430013,413200,0.00115740740740741 +60133430013,418243,0.747685185185185 +60133430013,421052,0.251157407407407 +60133430014,411659,0 +60133430014,411660,0.16998191681736 +60133430014,412185,0.184448462929476 +60133430014,412481,0.0289330922242315 +60133430014,414888,0.300180831826401 +60133430014,416696,0.0452079566003617 +60133430014,422732,0.27124773960217 +60133430021,0,0 +60133430021,411658,0.0402684563758389 +60133430021,413184,0.4082774049217 +60133430021,413187,0.0313199105145414 +60133430021,420437,0.174496644295302 +60133430021,420696,0.24496644295302 +60133430021,426443,0.100671140939597 +60133430022,410112,0.114545454545455 +60133430022,411796,0.0981818181818182 +60133430022,411940,0.137272727272727 +60133430022,411947,0.133636363636364 +60133430022,412633,0.000909090909090909 +60133430022,413185,0.0454545454545455 +60133430022,413482,0.0181818181818182 +60133430022,413889,0.0409090909090909 +60133430022,420013,0 +60133430022,420913,0.0636363636363636 +60133430022,423231,0.00272727272727273 +60133430022,424585,0.0809090909090909 +60133430022,424586,0.251818181818182 +60133430022,426578,0.0118181818181818 +60133430031,411114,0 +60133430031,412314,0.415971394517282 +60133430031,412471,0.0429082240762813 +60133430031,413330,0.0286054827175209 +60133430031,413481,0 +60133430031,414178,0 +60133430031,415615,0 +60133430031,416297,0.122765196662694 +60133430031,416444,0.114421930870083 +60133430031,417749,0.0452920143027414 +60133430031,418519,0.113230035756853 +60133430031,418686,0 +60133430031,424549,0.0452920143027414 +60133430031,424841,0.0643623361144219 +60133430031,428107,0.00715137067938021 +60133430032,412064,0 +60133430032,418003,0.0701754385964912 +60133430032,418046,0.13237639553429 +60133430032,418520,0.105263157894737 +60133430032,418555,0.0717703349282297 +60133430032,419505,0.0462519936204147 +60133430032,425249,0.422647527910686 +60133430032,427216,0.151515151515152 +60133451011,418505,0.423791821561338 +60133451011,425965,0.576208178438662 +60133451012,410115,0.0701219512195122 +60133451012,410253,0.0929878048780488 +60133451012,410383,0.0548780487804878 +60133451012,420728,0.11890243902439 +60133451012,421426,0.153963414634146 +60133451012,422718,0.0487804878048781 +60133451012,423211,0.266768292682927 +60133451012,424365,0.105182926829268 +60133451012,425964,0.0884146341463415 +60133451013,410252,0.188202247191011 +60133451013,417776,0.72752808988764 +60133451013,424795,0.0842696629213483 +60133451014,410114,0.398921832884097 +60133451014,414717,0.153638814016173 +60133451014,415925,0.0444743935309973 +60133451014,416469,0.0404312668463612 +60133451014,420028,0.0417789757412399 +60133451014,425397,0.161725067385445 +60133451014,426589,0.159029649595687 +60133451021,411212,0.28099173553719 +60133451021,416835,0.256198347107438 +60133451021,417201,0.209366391184573 +60133451021,417508,0.107438016528926 +60133451021,423209,0.146005509641873 +60133451022,413083,0.0826010544815466 +60133451022,416833,0.198594024604569 +60133451022,417867,0.207381370826011 +60133451022,419039,0.304042179261863 +60133451022,420298,0.103690685413005 +60133451022,421157,0.054481546572935 +60133451022,428093,0.0492091388400703 +60133451023,412060,0.0994318181818182 +60133451023,413238,0.545454545454545 +60133451023,421155,0.0596590909090909 +60133451023,421429,0.295454545454545 +60133451031,411106,0.115436241610738 +60133451031,412065,0.12751677852349 +60133451031,412660,0.0724832214765101 +60133451031,414141,0.0389261744966443 +60133451031,415506,0.306040268456376 +60133451031,419129,0.115436241610738 +60133451031,423212,0.0859060402684564 +60133451031,423671,0.138255033557047 +60133451032,410959,0.188585607940447 +60133451032,411775,0.339950372208437 +60133451032,422024,0.0843672456575682 +60133451032,423190,0.11166253101737 +60133451032,425169,0.153846153846154 +60133451032,425963,0.121588089330025 +60133451033,411511,0.0870748299319728 +60133451033,412517,0.129251700680272 +60133451033,414737,0.0517006802721088 +60133451033,417202,0.0979591836734694 +60133451033,417210,0.054421768707483 +60133451033,418506,0.0625850340136054 +60133451033,419040,0.0843537414965986 +60133451033,421156,0.0775510204081633 +60133451033,421831,0.0748299319727891 +60133451033,422023,0.0326530612244898 +60133451033,423648,0.0857142857142857 +60133451033,425189,0.118367346938776 +60133451033,427775,0.0435374149659864 +60133451051,410979,0.225836431226766 +60133451051,411532,0 +60133451051,415355,0.382899628252788 +60133451051,415802,0.0845724907063197 +60133451051,416432,0.0381040892193309 +60133451051,416824,0.0390334572490706 +60133451051,418881,0.180297397769517 +60133451051,422273,0 +60133451051,424530,0.0492565055762082 +60133451052,413177,0.424882629107981 +60133451052,413982,0.375586854460094 +60133451052,425203,0.199530516431925 +60133451053,416152,0.275862068965517 +60133451053,418865,0.123563218390805 +60133451053,424073,0.494252873563218 +60133451053,424075,0.10632183908046 +60133451054,411837,0.380952380952381 +60133451054,413424,0.105263157894737 +60133451054,413983,0.110275689223058 +60133451054,418867,0 +60133451054,419367,0.0802005012531328 +60133451054,419368,0.165413533834586 +60133451054,424529,0.157894736842105 +60133451081,411223,0 +60133451081,416035,0.634408602150538 +60133451081,416296,0.1 +60133451081,416435,0.078494623655914 +60133451081,416827,0 +60133451081,418775,0 +60133451081,420206,0 +60133451081,421095,0.187096774193548 +60133451081,423674,0 +60133451081,423716,0 +60133451081,423870,0 +60133451081,424353,0 +60133451081,427110,0 +60133451081,427755,0 +60133451081,427756,0 +60133451082,416841,0.7024567788899 +60133451082,420638,0.2975432211101 +60133451083,413731,1 +60133451084,410822,0.0894632206759443 +60133451084,410866,0.149105367793241 +60133451084,412116,0.644135188866799 +60133451084,425251,0.117296222664016 +60133451111,414142,0.180451127819549 +60133451111,417866,0.0075187969924812 +60133451111,419651,0.106766917293233 +60133451111,421160,0.0766917293233083 +60133451111,425188,0.0887218045112782 +60133451111,426796,0.467669172932331 +60133451111,427417,0.0721804511278196 +60133451112,414143,0.379072063178677 +60133451112,414549,0.207305034550839 +60133451112,414706,0.138203356367226 +60133451112,416844,0.102665350444225 +60133451112,419048,0.172754195459033 +60133451112,419829,0 +60133451112,420764,0 +60133451113,416693,0.699619771863118 +60133451113,416701,0.178707224334601 +60133451113,428092,0.121673003802281 +60133451121,410988,0.150498640072529 +60133451121,411513,0.0589301903898459 +60133451121,414551,0.126019945602901 +60133451121,414561,0.0262919310970082 +60133451121,415624,0.0779691749773345 +60133451121,417632,0.102447869446963 +60133451121,419043,0.0335448776065277 +60133451121,419583,0.0226654578422484 +60133451121,421301,0.186763372620127 +60133451121,422461,0.042611060743427 +60133451121,423539,0.0417044424297371 +60133451121,424220,0.099728014505893 +60133451121,425254,0.0308250226654578 +60133451121,427112,0 +60133451122,410121,0.126168224299065 +60133451122,410666,0.186915887850467 +60133451122,413229,0.340342679127726 +60133451122,413603,0.133956386292835 +60133451122,415070,0.212616822429907 +60133451131,411108,0.0902654867256637 +60133451131,411224,0.0566371681415929 +60133451131,413233,0.254867256637168 +60133451131,416840,0.120353982300885 +60133451131,418683,0.0991150442477876 +60133451131,421173,0.146902654867257 +60133451131,427420,0.231858407079646 +60133451132,411922,0.100663716814159 +60133451132,413600,0.470132743362832 +60133451132,419502,0.118362831858407 +60133451132,422767,0.252212389380531 +60133451132,424068,0.0376106194690266 +60133451132,427121,0.0210176991150442 +60133451141,413437,0.283757338551859 +60133451141,415770,0.330724070450098 +60133451141,416293,0.0841487279843444 +60133451141,416975,0.060665362035225 +60133451141,417228,0.0841487279843444 +60133451141,419844,0.060665362035225 +60133451141,425637,0.0958904109589041 +60133451142,415076,0.269553072625698 +60133451142,416295,0.143854748603352 +60133451142,416436,0.491620111731844 +60133451142,425207,0.0949720670391061 +60133451143,415357,0.0731707317073171 +60133451143,416977,0.731707317073171 +60133451143,419046,0.065410199556541 +60133451143,419370,0.0609756097560976 +60133451143,424538,0.0365853658536585 +60133451143,426606,0.00332594235033259 +60133451143,427239,0.0288248337028825 +60133451144,415074,0.113756613756614 +60133451144,415075,0.0925925925925926 +60133451144,416153,0.044973544973545 +60133451144,416291,0.248677248677249 +60133451144,417200,0.158730158730159 +60133451144,419362,0.150793650793651 +60133451144,425399,0.19047619047619 +60133451151,410293,0.0493237867939539 +60133451151,410294,0.0246618933969769 +60133451151,410295,0.0318217979315831 +60133451151,410668,0.0548926014319809 +60133451151,411003,0.0190930787589499 +60133451151,411362,0.0636435958631663 +60133451151,412914,0.194112967382657 +60133451151,413884,0.00238663484486874 +60133451151,414434,0.0405727923627685 +60133451151,415080,0.0708035003977725 +60133451151,415251,0.0182975338106603 +60133451151,416178,0.0572792362768496 +60133451151,417507,0.124105011933174 +60133451151,418004,0 +60133451151,418014,0.142402545743835 +60133451151,420635,0.0596658711217184 +60133451151,423379,0.0469371519490851 +60133451152,411414,0.80353982300885 +60133451152,415605,0.134513274336283 +60133451152,416967,0.0619469026548673 +60133451161,415604,0.22962962962963 +60133451161,416730,0.0172839506172839 +60133451161,425641,0.153086419753086 +60133451161,427597,0.204938271604938 +60133451161,427753,0.271604938271605 +60133451161,427754,0.123456790123457 +60133451162,416966,0.321361058601134 +60133451162,419024,0.0321361058601134 +60133451162,420204,0.338374291115312 +60133451162,424963,0.30812854442344 +60133452021,413595,0.115966386554622 +60133452021,414040,0.0285714285714286 +60133452021,414734,0.0226890756302521 +60133452021,415068,0.00756302521008403 +60133452021,415602,0.0512605042016807 +60133452021,415603,0.0420168067226891 +60133452021,416820,0.0764705882352941 +60133452021,416962,0.0798319327731092 +60133452021,419506,0.046218487394958 +60133452021,420275,0.046218487394958 +60133452021,422055,0.0747899159663866 +60133452021,422276,0.136974789915966 +60133452021,424395,0.0478991596638655 +60133452021,425408,0.026890756302521 +60133452021,425639,0.129411764705882 +60133452021,427593,0.0672268907563025 +60133452022,415079,0.00995575221238938 +60133452022,415600,0 +60133452022,416144,0.382743362831858 +60133452022,416690,0.0265486725663717 +60133452022,416823,0 +60133452022,420274,0.0763274336283186 +60133452022,421295,0 +60133452022,427592,0.504424778761062 +60133452023,412217,0.135770234986945 +60133452023,413732,0.0957354221061793 +60133452023,416818,0.178416013925152 +60133452023,416819,0.0783289817232376 +60133452023,416821,0.34638816362054 +60133452023,419359,0.165361183637946 +60133452031,412297,0.126819126819127 +60133452031,413032,0.357588357588358 +60133452031,413877,0.217255717255717 +60133452031,413878,0.00311850311850312 +60133452031,413887,0.00935550935550936 +60133452031,414724,0.0124740124740125 +60133452031,417006,0.0301455301455301 +60133452031,418907,0.0478170478170478 +60133452031,419625,0.0862785862785863 +60133452031,426006,0.109147609147609 +60133452032,413420,0 +60133452032,414295,0.172794117647059 +60133452032,414296,0.0863970588235294 +60133452032,414837,0.104779411764706 +60133452032,414838,0.0386029411764706 +60133452032,415211,0.0790441176470588 +60133452032,419355,0.235294117647059 +60133452032,419380,0.180147058823529 +60133452032,424074,0.0294117647058824 +60133452032,424959,0 +60133452032,424968,0 +60133452032,424969,0.0735294117647059 +60133452032,424970,0 +60133452033,412299,0.0686695278969957 +60133452033,412302,0.0300429184549356 +60133452033,413176,0.0257510729613734 +60133452033,413182,0.0708154506437768 +60133452033,413419,0 +60133452033,414291,0.0901287553648069 +60133452033,414292,0 +60133452033,422901,0.437768240343348 +60133452033,424166,0 +60133452033,424533,0 +60133452033,426907,0.276824034334764 +60133452033,426910,0 +60133452034,411783,0.0161290322580645 +60133452034,414130,0.0131964809384164 +60133452034,416831,0.178885630498534 +60133452034,418552,0.0513196480938416 +60133452034,418877,0.0351906158357771 +60133452034,424163,0.063049853372434 +60133452034,424165,0.0527859237536657 +60133452034,424237,0.0982404692082111 +60133452034,426007,0.00146627565982405 +60133452034,426902,0.146627565982405 +60133452034,427737,0.1158357771261 +60133452034,427895,0.151026392961877 +60133452034,428266,0.0762463343108504 +60133452041,410388,0.149110807113543 +60133452041,412624,0.00820793433652531 +60133452041,415123,0.0259917920656635 +60133452041,417505,0.255813953488372 +60133452041,420059,0.0916552667578659 +60133452041,420074,0 +60133452041,423058,0.12311901504788 +60133452041,423709,0.0820793433652531 +60133452041,425475,0.259917920656635 +60133452041,426739,0.00410396716826265 +60133452042,410145,0 +60133452042,410557,0 +60133452042,414128,0.0896686159844055 +60133452042,416580,0 +60133452042,418876,0.0116959064327485 +60133452042,419047,0.202729044834308 +60133452042,423520,0.495126705653021 +60133452042,423521,0.00779727095516569 +60133452042,424650,0.00389863547758285 +60133452042,426175,0 +60133452042,427571,0.16374269005848 +60133452042,427798,0.0253411306042885 +60133461011,411509,0.0937853107344633 +60133461011,411781,0.100564971751412 +60133461011,416445,0.0440677966101695 +60133461011,417370,0.0576271186440678 +60133461011,417905,0.0350282485875706 +60133461011,418872,0.00903954802259887 +60133461011,419516,0.0644067796610169 +60133461011,420686,0.0463276836158192 +60133461011,421848,0.0497175141242938 +60133461011,422446,0.0338983050847458 +60133461011,423686,0.0926553672316384 +60133461011,424182,0.0655367231638418 +60133461011,425725,0.115254237288136 +60133461011,426587,0.0259887005649717 +60133461011,427432,0.166101694915254 +60133461012,412056,0 +60133461012,412522,0.411330049261084 +60133461012,412632,0.0763546798029557 +60133461012,413333,0 +60133461012,415404,0.167487684729064 +60133461012,416187,0 +60133461012,417248,0.00738916256157635 +60133461012,417913,0 +60133461012,419208,0 +60133461012,419247,0.118226600985222 +60133461012,420487,0 +60133461012,427040,0.219211822660099 +60133461021,413592,0.0576 +60133461021,414607,0.0576 +60133461021,418874,0.0784 +60133461021,422448,0.4672 +60133461021,422763,0.1648 +60133461021,424160,0.0384 +60133461021,425631,0.136 +60133461022,410019,0.0834879406307978 +60133461022,411113,0.0584415584415584 +60133461022,413643,0.0909090909090909 +60133461022,413644,0.0343228200371058 +60133461022,414123,0.0853432282003711 +60133461022,414606,0.433209647495362 +60133461022,418918,0.0473098330241187 +60133461022,422899,0.0417439703153989 +60133461022,423363,0.025974025974026 +60133461022,423524,0.0528756957328386 +60133461022,427433,0.0463821892393321 +60133461023,411105,0.512915129151292 +60133461023,418681,0.243542435424354 +60133461023,419400,0.011070110701107 +60133461023,423705,0.228782287822878 +60133461023,424236,0.003690036900369 +60133462011,411112,0.0885529157667387 +60133462011,413179,0.0539956803455724 +60133462011,414133,0.0842332613390929 +60133462011,414298,0.259179265658747 +60133462011,423710,0.514038876889849 +60133462012,414297,0.111543450064851 +60133462012,414605,0.053177691309987 +60133462012,415224,0.0622568093385214 +60133462012,415264,0.0869001297016861 +60133462012,418553,0.0376134889753567 +60133462012,418860,0.0376134889753567 +60133462012,418873,0.0894941634241245 +60133462012,424240,0.181582360570687 +60133462012,424972,0.059662775616083 +60133462012,426801,0.280155642023346 +60133462013,411982,0.0543130990415335 +60133462013,416577,0.129925452609159 +60133462013,419027,0.0489882854100106 +60133462013,419652,0.053248136315229 +60133462013,421425,0.0947816826411076 +60133462013,424172,0.117145899893504 +60133462013,426714,0.451544195953142 +60133462013,427898,0.0500532481363152 +60133462014,411573,0.292452830188679 +60133462014,413325,0 +60133462014,415948,0.125 +60133462014,424170,0.582547169811321 +60133462031,413426,0.178325123152709 +60133462031,414843,0.136945812807882 +60133462031,415213,0.0305418719211823 +60133462031,415227,0.187192118226601 +60133462031,415800,0.0443349753694581 +60133462031,416449,0.00591133004926108 +60133462031,416843,0.0285714285714286 +60133462031,418862,0.158620689655172 +60133462031,419361,0.0679802955665025 +60133462031,424393,0.0275862068965517 +60133462031,424537,0.0364532019704433 +60133462031,424971,0.0640394088669951 +60133462031,425175,0.0334975369458128 +60133462032,412301,0.52605459057072 +60133462032,424169,0.114143920595533 +60133462032,424784,0.0272952853598015 +60133462032,424974,0.00992555831265509 +60133462032,427120,0.32258064516129 +60133462041,412519,0.484962406015038 +60133462041,413423,0.0263157894736842 +60133462041,413425,0.0573308270676692 +60133462041,414840,0.0770676691729323 +60133462041,418379,0.031015037593985 +60133462041,420727,0.166353383458647 +60133462041,422038,0.0733082706766917 +60133462041,425016,0.0169172932330827 +60133462041,425172,0.0404135338345865 +60133462041,427238,0.0263157894736842 +60133462042,414985,0.0978120978120978 +60133462042,416480,0.14028314028314 +60133462042,416980,0.0463320463320463 +60133462042,417761,0.0720720720720721 +60133462042,418001,0.0823680823680824 +60133462042,420464,0.150579150579151 +60133462042,420724,0.102960102960103 +60133462042,421855,0.262548262548263 +60133462042,424827,0.045045045045045 +60133462043,412216,0.143076923076923 +60133462043,412520,0 +60133462043,416448,0.107692307692308 +60133462043,417014,0 +60133462043,417353,0.396923076923077 +60133462043,419891,0.143076923076923 +60133462043,421033,0.0938461538461538 +60133462043,425180,0.115384615384615 +60133470001,411776,0.0642615558060879 +60133470001,412872,0.10597519729425 +60133470001,414162,0.169109357384442 +60133470001,416142,0.0529875986471251 +60133470001,417490,0.0383314543404735 +60133470001,418913,0.100338218714769 +60133470001,420629,0.0924464487034949 +60133470001,424652,0.056369785794814 +60133470001,425627,0.0541149943630214 +60133470001,426128,0.135287485907554 +60133470001,427761,0.130777903043968 +60133470002,410298,0.0239294710327456 +60133470002,411833,0 +60133470002,411949,0.351385390428212 +60133470002,412334,0.00125944584382872 +60133470002,412780,0 +60133470002,412870,0.1272040302267 +60133470002,412919,0 +60133470002,413065,0.00251889168765743 +60133470002,413328,0.112090680100756 +60133470002,413634,0.0856423173803526 +60133470002,413986,0.00377833753148615 +60133470002,414029,0 +60133470002,414328,0 +60133470002,414333,0 +60133470002,415128,0.00125944584382872 +60133470002,415940,0.00881612090680101 +60133470002,417734,0 +60133470002,418140,0.00503778337531486 +60133470002,418370,0.110831234256927 +60133470002,419087,0.00377833753148615 +60133470002,419851,0.0906801007556675 +60133470002,425291,0 +60133470002,425603,0.0617128463476071 +60133470002,425858,0 +60133470002,427978,0.0100755667506297 +60133470003,412189,0.043338683788122 +60133470003,412483,0.0786516853932584 +60133470003,414545,0.28892455858748 +60133470003,419375,0.12199036918138 +60133470003,419825,0.0786516853932584 +60133470003,421086,0.0224719101123595 +60133470003,423401,0.191011235955056 +60133470003,423426,0.0272873194221509 +60133470003,424642,0.0930979133226324 +60133470003,426617,0.0417335473515249 +60133470003,426618,0.0128410914927769 +60133480001,413868,0.0648854961832061 +60133480001,414882,0.312977099236641 +60133480001,418679,0.190839694656489 +60133480001,418897,0.190839694656489 +60133480001,420633,0.240458015267176 +60133480002,411076,0.0620689655172414 +60133480002,411078,0.0386206896551724 +60133480002,412892,0.266206896551724 +60133480002,413226,0.103448275862069 +60133480002,413895,0.11448275862069 +60133480002,419551,0.0206896551724138 +60133480002,421094,0.106206896551724 +60133480002,421628,0.0744827586206896 +60133480002,422759,0.132413793103448 +60133480002,425020,0.0289655172413793 +60133480002,425422,0.0524137931034483 +60133480003,411365,0.00151745068285281 +60133480003,411574,0.106221547799697 +60133480003,413984,0.300455235204856 +60133480003,413985,0.273141122913505 +60133480003,418896,0.0698027314112291 +60133480003,419086,0.0500758725341426 +60133480003,423402,0.078907435508346 +60133480003,423407,0.0455235204855842 +60133480003,423932,0.0743550834597876 +60133490001,415926,0.108585858585859 +60133490001,416287,0.0113636363636364 +60133490001,418866,0.0404040404040404 +60133490001,419009,0.580808080808081 +60133490001,420267,0.00757575757575758 +60133490001,422269,0.053030303030303 +60133490001,422737,0.0946969696969697 +60133490001,423237,0.0214646464646465 +60133490001,424786,0.0353535353535354 +60133490001,424787,0.0467171717171717 +60133490001,427450,0 +60133490002,410279,0.0723472668810289 +60133490002,413207,0.0128617363344051 +60133490002,413443,0.0980707395498392 +60133490002,414885,0.104501607717042 +60133490002,416044,0.0144694533762058 +60133490002,417629,0.318327974276527 +60133490002,418138,0.0707395498392283 +60133490002,419386,0.14951768488746 +60133490002,421579,0.0948553054662379 +60133490002,426610,0.0643086816720257 +60133490003,411386,0.0040650406504065 +60133490003,411389,0.0182926829268293 +60133490003,411650,0.0223577235772358 +60133490003,413444,0.0711382113821138 +60133490003,413445,0 +60133490003,414139,0.270325203252033 +60133490003,416678,0.0223577235772358 +60133490003,419384,0.158536585365854 +60133490003,420017,0.00609756097560976 +60133490003,420025,0 +60133490003,422267,0.17479674796748 +60133490003,426609,0.152439024390244 +60133490003,427960,0.0995934959349594 +60133500001,411086,0.0187793427230047 +60133500001,411089,0.0446009389671361 +60133500001,411387,0.112676056338028 +60133500001,413205,0.0927230046948357 +60133500001,413317,0.028169014084507 +60133500001,413987,0.00234741784037559 +60133500001,415749,0.0516431924882629 +60133500001,419371,0.0563380281690141 +60133500001,420767,0.169014084507042 +60133500001,423930,0.190140845070423 +60133500001,423933,0.028169014084507 +60133500001,426465,0.177230046948357 +60133500001,426608,0.028169014084507 +60133500002,410957,0.145214521452145 +60133500002,412655,0.0462046204620462 +60133500002,415117,0.221122112211221 +60133500002,417770,0.118811881188119 +60133500002,418512,0.122112211221122 +60133500002,419575,0.346534653465347 +60133500003,410984,0.220430107526882 +60133500003,413319,0.301075268817204 +60133500003,414184,0.24910394265233 +60133500003,418271,0.229390681003584 +60133500004,0,0 +60133500004,410300,0.218836565096953 +60133500004,410529,0.0290858725761773 +60133500004,410530,0.0332409972299169 +60133500004,413194,0 +60133500004,419251,0.117728531855956 +60133500004,424810,0 +60133500004,426598,0.601108033240997 +60133511011,413320,0.100740740740741 +60133511011,418045,0.416296296296296 +60133511011,420897,0.0177777777777778 +60133511011,423970,0.0148148148148148 +60133511011,426005,0.45037037037037 +60133511012,419791,1 +60133511013,418127,0.932112068965517 +60133511013,422450,0.0678879310344828 +60133511021,419216,0.456521739130435 +60133511021,420253,0.15916149068323 +60133511021,420899,0.110248447204969 +60133511021,420900,0.18944099378882 +60133511021,427648,0.0846273291925466 +60133511022,425476,1 +60133511023,419799,0.581798483206934 +60133511023,425992,0.418201516793066 +60133511031,411252,0.162162162162162 +60133511031,420254,0.185328185328185 +60133511031,420725,0.652509652509653 +60133511032,410154,0.105128205128205 +60133511032,410845,0.323076923076923 +60133511032,411253,0.125641025641026 +60133511032,411521,0.446153846153846 +60133512001,410986,0.122727272727273 +60133512001,419840,0.118181818181818 +60133512001,421580,0.131818181818182 +60133512001,422710,0.277272727272727 +60133512001,423194,0.075 +60133512001,425966,0.275 +60133512002,410992,0.0213333333333333 +60133512002,418372,0.257333333333333 +60133512002,420291,0.0746666666666667 +60133512002,420473,0.0626666666666667 +60133512002,421589,0.234666666666667 +60133512002,425865,0.06 +60133512002,427800,0.289333333333333 +60133512003,410281,0.323976608187135 +60133512003,410282,0.0327485380116959 +60133512003,415635,0.095906432748538 +60133512003,416565,0.111111111111111 +60133512003,420045,0.152046783625731 +60133512003,420470,0.0619883040935672 +60133512003,422049,0.139181286549708 +60133512003,425450,0.0210526315789474 +60133512003,425451,0.0315789473684211 +60133512003,425870,0.0304093567251462 +60133521011,410987,0.0347432024169184 +60133521011,410989,0.626888217522659 +60133521011,414442,0.338368580060423 +60133521012,0,0 +60133521012,410695,0 +60133521012,410961,0.662420382165605 +60133521012,414600,0.0382165605095541 +60133521012,422027,0.184713375796178 +60133521012,422149,0 +60133521012,427041,0.114649681528662 +60133521021,0,0 +60133521021,410277,0.082 +60133521021,415393,0.174 +60133521021,415640,0.086 +60133521021,417727,0.078 +60133521021,417728,0.084 +60133521021,417729,0.07 +60133521021,417730,0.024 +60133521021,421578,0.052 +60133521021,422486,0.09 +60133521021,425447,0.056 +60133521021,425448,0.102 +60133521021,425869,0.102 +60133521022,415933,0.427652733118971 +60133521022,420467,0.260450160771704 +60133521022,422485,0.15112540192926 +60133521022,426952,0.160771704180064 +60133521023,410137,0.200280112044818 +60133521023,410276,0.187675070028011 +60133521023,413086,0.176470588235294 +60133521023,416973,0.198879551820728 +60133521023,418402,0.00280112044817927 +60133521023,419621,0.19047619047619 +60133521023,423377,0.0434173669467787 +60133521024,410139,0 +60133521024,410278,0.00347222222222222 +60133521024,410816,0.128472222222222 +60133521024,410996,0.0104166666666667 +60133521024,411271,0.0625 +60133521024,413024,0 +60133521024,413087,0 +60133521024,415392,0 +60133521024,419225,0.0520833333333333 +60133521024,419406,0.5 +60133521024,420092,0 +60133521024,420468,0.145833333333333 +60133521024,425969,0.0972222222222222 +60133522011,414352,0.0850202429149798 +60133522011,417092,0.841093117408907 +60133522011,418265,0.0425101214574899 +60133522011,419986,0.0313765182186235 +60133522012,413876,0.00678733031674208 +60133522012,417094,0.0384615384615385 +60133522012,418395,0.171945701357466 +60133522012,418396,0.0520361990950226 +60133522012,418397,0.235294117647059 +60133522012,419056,0 +60133522012,419408,0.183257918552036 +60133522012,422048,0.122171945701357 +60133522012,425439,0.122171945701357 +60133522012,425442,0.0678733031674208 +60133522013,411520,0.342482100238663 +60133522013,416566,0.045346062052506 +60133522013,417899,0.113365155131265 +60133522013,418260,0.120525059665871 +60133522013,418268,0.0429594272076372 +60133522013,420086,0.137231503579952 +60133522013,425724,0.0489260143198091 +60133522013,428288,0.149164677804296 +60133522021,410133,0 +60133522021,410413,0 +60133522021,410983,0.00195503421309873 +60133522021,410985,0.0948191593352884 +60133522021,411977,0.000977517106549365 +60133522021,412666,0 +60133522021,413022,0 +60133522021,413227,0.0860215053763441 +60133522021,413735,0.0811339198435973 +60133522021,414185,0 +60133522021,418367,0.050830889540567 +60133522021,419600,0 +60133522021,419601,0.00684261974584555 +60133522021,420042,0.274682306940371 +60133522021,421632,0.0576735092864125 +60133522021,425017,0.0694037145650049 +60133522021,426010,0.275659824046921 +60133530011,416563,0.0929752066115702 +60133530011,418393,0.12603305785124 +60133530011,419985,0.0785123966942149 +60133530011,420039,0.0702479338842975 +60133530011,423876,0.632231404958678 +60133530012,410405,0 +60133530012,412058,0.00245398773006135 +60133530012,412676,0.00122699386503067 +60133530012,413585,0.910429447852761 +60133530012,418511,0.0417177914110429 +60133530012,420268,0.0294478527607362 +60133530012,422766,0.0147239263803681 +60133530021,410559,0.192452830188679 +60133530021,412317,0.513207547169811 +60133530021,418139,0.294339622641509 +60133530022,410407,0.254752851711027 +60133530022,411976,0.108365019011407 +60133530022,419783,0.0456273764258555 +60133530022,425688,0.538022813688213 +60133530022,425979,0.0532319391634981 +60133530023,410403,0.024330900243309 +60133530023,412777,0.221411192214112 +60133530023,416030,0.104622871046229 +60133530023,417753,0.143552311435523 +60133530023,417754,0.316301703163017 +60133530023,417889,0.0851581508515815 +60133530023,419983,0.104622871046229 +60133530024,416029,0.266423357664234 +60133530024,416031,0.072992700729927 +60133530024,417891,0.251824817518248 +60133530024,421835,0.0510948905109489 +60133530024,425713,0.357664233576642 +60133540011,410855,0 +60133540011,412109,0.0854700854700855 +60133540011,414199,0.00142450142450142 +60133540011,414200,0.638176638176638 +60133540011,414202,0.0797720797720798 +60133540011,417111,0.0413105413105413 +60133540011,417884,0.0740740740740741 +60133540011,418509,0.0455840455840456 +60133540011,421605,0 +60133540011,426597,0.0341880341880342 +60133540021,414176,0.130801687763713 +60133540021,418388,0.0337552742616034 +60133540021,419534,0.229957805907173 +60133540021,421585,0.168776371308017 +60133540021,421849,0.080168776371308 +60133540021,424081,0.0210970464135021 +60133540021,424577,0.335443037974684 +60133540021,424601,0 +60133540022,410125,0.382352941176471 +60133540022,415410,0.242647058823529 +60133540022,417357,0.375 +60133540023,410123,0.147512864493997 +60133540023,410399,0.0857632933104631 +60133540023,411845,0.222984562607204 +60133540023,417886,0.156089193825043 +60133540023,423366,0.137221269296741 +60133540023,423527,0.0480274442538593 +60133540023,425857,0.0823327615780446 +60133540023,425976,0.0566037735849057 +60133540023,428073,0.0634648370497427 +60133540024,410401,0 +60133540024,410687,0 +60133540024,410968,0.0484764542936288 +60133540024,411533,0.0512465373961219 +60133540024,411567,0.0872576177285319 +60133540024,414203,0.0637119113573407 +60133540024,414886,0.170360110803324 +60133540024,417862,0.315789473684211 +60133540024,421480,0.124653739612188 +60133540024,425416,0.0858725761772853 +60133540024,425975,0.0526315789473684 +60133551071,0,0 +60133551071,410589,0.0728155339805825 +60133551071,410748,0 +60133551071,410754,0.0466019417475728 +60133551071,411714,0.0359223300970874 +60133551071,411718,0.000970873786407767 +60133551071,412242,0 +60133551071,412390,0 +60133551071,412398,0 +60133551071,412560,0 +60133551071,412956,0 +60133551071,413261,0.0970873786407767 +60133551071,414223,0.00485436893203883 +60133551071,414233,0 +60133551071,414488,0 +60133551071,414489,0 +60133551071,414783,0 +60133551071,414918,0 +60133551071,415158,0 +60133551071,415292,0.000970873786407767 +60133551071,417062,0 +60133551071,417279,0.0029126213592233 +60133551071,417281,0.0029126213592233 +60133551071,418802,0.016504854368932 +60133551071,419697,0 +60133551071,419703,0 +60133551071,419704,0 +60133551071,419920,0 +60133551071,420955,0.000970873786407767 +60133551071,421352,0 +60133551071,421762,0.0436893203883495 +60133551071,422191,0.000970873786407767 +60133551071,423001,0 +60133551071,423460,0.0242718446601942 +60133551071,423464,0.0281553398058252 +60133551071,423572,0.00388349514563107 +60133551071,424476,0.000970873786407767 +60133551071,424478,0.20873786407767 +60133551071,424887,0 +60133551071,425075,0.0378640776699029 +60133551071,425078,0.0349514563106796 +60133551071,425499,0.157281553398058 +60133551071,427163,0.0854368932038835 +60133551071,427832,0.0398058252427184 +60133551071,428194,0.0514563106796116 +60133551072,410037,0.264940239043825 +60133551072,410585,0.0697211155378486 +60133551072,411292,0.0796812749003984 +60133551072,413260,0.147410358565737 +60133551072,413798,0.0099601593625498 +60133551072,423761,0.268924302788845 +60133551072,427829,0.159362549800797 +60133551081,410044,0.0288870008496177 +60133551081,410887,0.0373831775700935 +60133551081,411290,0.0985556499575191 +60133551081,411294,0.032285471537808 +60133551081,411442,0.156329651656754 +60133551081,411604,0.0314358538657604 +60133551081,411871,0.0271877655055225 +60133551081,412145,0.102803738317757 +60133551081,412396,0 +60133551081,421757,0.0824129141886151 +60133551081,422532,0.0390824129141886 +60133551081,423000,0.250637213254036 +60133551081,423459,0.0424808836023789 +60133551081,425070,0.0603228547153781 +60133551081,427161,0 +60133551081,427162,0.0101954120645709 +60133551082,410755,0.0230572160546541 +60133551082,410884,0.0503842869342442 +60133551082,410889,0.0264730999146029 +60133551082,411444,0.031596925704526 +60133551082,411716,0.164816396242528 +60133551082,415290,0.0973526900085397 +60133551082,416772,0.035866780529462 +60133551082,417573,0.0384286934244236 +60133551082,417646,0.0657557643040137 +60133551082,417652,0.0503842869342442 +60133551082,418175,0.0409906063193851 +60133551082,418176,0.0367207514944492 +60133551082,422530,0.0350128095644748 +60133551082,422531,0.0204953031596926 +60133551082,424684,0.0486763450042699 +60133551082,425510,0.0392826643894108 +60133551082,427502,0.15200683176772 +60133551082,427680,0.0426985482493595 +60133551083,410319,0.0340814630091438 +60133551083,411291,0.0357439733998337 +60133551083,412146,0.253532834580216 +60133551083,412240,0 +60133551083,412244,0 +60133551083,412706,0 +60133551083,414920,0.0249376558603491 +60133551083,415022,0 +60133551083,416769,0 +60133551083,417653,0.0224438902743142 +60133551083,419698,0.0199501246882793 +60133551083,419700,0.0548628428927681 +60133551083,419928,0.0108063175394846 +60133551083,421133,0.00249376558603491 +60133551083,421136,0.102244389027431 +60133551083,422625,0.117206982543641 +60133551083,422802,0.029093931837074 +60133551083,423102,0.0656691604322527 +60133551083,424686,0.0623441396508728 +60133551083,426032,0.0598503740648379 +60133551083,427508,0.0698254364089776 +60133551083,427673,0.0349127182044888 +60133551091,411333,0.0908108108108108 +60133551091,411910,0.0454054054054054 +60133551091,412445,0.0291891891891892 +60133551091,415353,0.102702702702703 +60133551091,415589,0.0140540540540541 +60133551091,416401,0.118918918918919 +60133551091,417854,0.0140540540540541 +60133551091,418482,0.0540540540540541 +60133551091,421010,0.0443243243243243 +60133551091,422685,0.12972972972973 +60133551091,423821,0.0421621621621622 +60133551091,425387,0.0356756756756757 +60133551091,425791,0.0356756756756757 +60133551091,426571,0.0605405405405405 +60133551091,426875,0.0335135135135135 +60133551091,427552,0.0421621621621622 +60133551091,428080,0.107027027027027 +60133551092,415588,0.636704119850187 +60133551092,417834,0.239700374531835 +60133551092,417835,0.123595505617978 +60133551093,412848,0.0498177399756987 +60133551093,413717,0.0388821385176185 +60133551093,413970,0.0437424058323208 +60133551093,415873,0.0522478736330498 +60133551093,415874,0.0558930741190765 +60133551093,416108,0.0473876063183475 +60133551093,416647,0.122721749696233 +60133551093,421007,0.201701093560146 +60133551093,423331,0.094775212636695 +60133551093,425829,0.106925880923451 +60133551093,426555,0.12636695018226 +60133551093,427574,0.0595382746051033 +60133551093,427882,0 +60133551101,410800,0.05 +60133551101,410944,0.353030303030303 +60133551101,411908,0.0909090909090909 +60133551101,416956,0.0651515151515152 +60133551101,421006,0.192424242424242 +60133551101,421820,0.0878787878787879 +60133551101,422869,0.0393939393939394 +60133551101,426273,0.0590909090909091 +60133551101,427376,0.0621212121212121 +60133551102,410799,0.134357005758157 +60133551102,413980,0.109404990403071 +60133551102,416113,0.128598848368522 +60133551102,422233,0.0518234165067179 +60133551102,423350,0.18426103646833 +60133551102,425822,0.126679462571977 +60133551102,426568,0.264875239923225 +60133551111,416111,0.0450097847358121 +60133551111,416400,0.025440313111546 +60133551111,417832,0.0499021526418787 +60133551111,418216,0.025440313111546 +60133551111,418484,0.125244618395303 +60133551111,419968,0.0489236790606654 +60133551111,420396,0.0371819960861057 +60133551111,422867,0.0332681017612524 +60133551111,424328,0.0929549902152642 +60133551111,424743,0.158512720156556 +60133551111,425585,0.0547945205479452 +60133551111,425678,0.153620352250489 +60133551111,426409,0.11545988258317 +60133551111,427585,0.0342465753424658 +60133551112,412610,0.0292682926829268 +60133551112,415587,0.101219512195122 +60133551112,415870,0.190243902439024 +60133551112,421808,0.151219512195122 +60133551112,421813,0.0914634146341463 +60133551112,423335,0.114634146341463 +60133551112,424526,0.0817073170731707 +60133551112,424528,0.140243902439024 +60133551112,424922,0.0658536585365854 +60133551112,426395,0.0341463414634146 +60133551121,0,0 +60133551121,410321,0.00184842883548983 +60133551121,410591,0.0203327171903882 +60133551121,410751,0 +60133551121,411137,0 +60133551121,411440,0.0258780036968577 +60133551121,411452,0.0739371534195934 +60133551121,411596,0 +60133551121,411872,0.00184842883548983 +60133551121,412000,0.164510166358595 +60133551121,412004,0 +60133551121,412141,0 +60133551121,412143,0.0683918669131238 +60133551121,412144,0.011090573012939 +60133551121,412249,0.00924214417744917 +60133551121,412800,0.011090573012939 +60133551121,412802,0.00739371534195933 +60133551121,412804,0 +60133551121,412807,0 +60133551121,413110,0.0129390018484288 +60133551121,413112,0.00184842883548983 +60133551121,413357,0.00184842883548983 +60133551121,413510,0 +60133551121,413515,0 +60133551121,413800,0 +60133551121,413917,0 +60133551121,414062,0 +60133551121,414479,0.0166358595194085 +60133551121,415440,0.00369685767097967 +60133551121,415687,0.00184842883548983 +60133551121,415974,0 +60133551121,416768,0.00184842883548983 +60133551121,416774,0 +60133551121,417050,0 +60133551121,417656,0.00184842883548983 +60133551121,419279,0 +60133551121,419287,0 +60133551121,419923,0.0480591497227357 +60133551121,419926,0 +60133551121,420137,0 +60133551121,421767,0 +60133551121,422527,0 +60133551121,422808,0.00184842883548983 +60133551121,423104,0.00369685767097967 +60133551121,423106,0.0406654343807763 +60133551121,423290,0.0147874306839187 +60133551121,423762,0 +60133551121,423763,0 +60133551121,425068,0.00739371534195933 +60133551121,425079,0.2181146025878 +60133551121,425337,0.177449168207024 +60133551121,426361,0 +60133551121,426362,0.0258780036968577 +60133551121,426501,0 +60133551121,426505,0 +60133551121,426659,0 +60133551121,427344,0 +60133551121,427504,0.0240295748613678 +60133551121,427506,0 +60133551122,410893,0.0808510638297872 +60133551122,412943,0.174468085106383 +60133551122,416775,0 +60133551122,422192,0 +60133551122,423765,0.25531914893617 +60133551122,427510,0.334042553191489 +60133551122,427675,0.15531914893617 +60133551122,427835,0 +60133551123,410325,0.06 +60133551123,410888,0.042 +60133551123,411298,0.49 +60133551123,413919,0 +60133551123,416512,0 +60133551123,424687,0.362 +60133551123,427681,0.046 +60133551131,410749,0.071875 +60133551131,413265,0.0765625 +60133551131,415689,0.0703125 +60133551131,417058,0.509375 +60133551131,422522,0.0984375 +60133551131,423101,0 +60133551131,423568,0.0671875 +60133551131,428011,0.10625 +60133551132,413267,0.402573529411765 +60133551132,413925,0.09375 +60133551132,416513,0.126838235294118 +60133551132,417654,0.0294117647058824 +60133551132,418804,0.255514705882353 +60133551132,428009,0.0919117647058824 +60133551133,410895,0.831600831600832 +60133551133,423575,0.108108108108108 +60133551133,423992,0.0602910602910603 +60133551141,410885,0 +60133551141,410890,0.486529318541997 +60133551141,413929,0.160063391442155 +60133551141,421940,0 +60133551141,422999,0.0744849445324881 +60133551141,424683,0.10459587955626 +60133551141,426662,0.1743264659271 +60133551142,411999,0 +60133551142,417053,0.0709219858156028 +60133551142,421366,0.0602836879432624 +60133551142,423103,0.252955082742317 +60133551142,426663,0.451536643026005 +60133551142,427336,0.164302600472813 +60133551143,410324,0.0272108843537415 +60133551143,410586,0.0418628990057561 +60133551143,410752,0.0533751962323391 +60133551143,411149,0.0010465724751439 +60133551143,411598,0.0690737833594977 +60133551143,411600,0.053898482469911 +60133551143,411862,0.0774463631606489 +60133551143,411998,0.121925693354265 +60133551143,413270,0.0355834641548927 +60133551143,413809,0.0460491889063318 +60133551143,413810,0.00627943485086342 +60133551143,414378,0.188906331763475 +60133551143,417649,0.0402930402930403 +60133551143,418711,0 +60133551143,418812,0.0136054421768707 +60133551143,419282,0.106750392464678 +60133551143,422621,0.0151753008895866 +60133551143,422622,0.0245944531658817 +60133551143,422997,0.0136054421768707 +60133551143,424679,0.0633176347462062 +60133551151,411139,0.0620805369127517 +60133551151,411148,0.00950782997762863 +60133551151,412002,0.0218120805369128 +60133551151,412403,0.126398210290828 +60133551151,414370,0.270693512304251 +60133551151,414371,0.0710290827740492 +60133551151,414376,0.21923937360179 +60133551151,414486,0.0503355704697987 +60133551151,414778,0.0889261744966443 +60133551151,415540,0 +60133551151,415542,0 +60133551151,415543,0 +60133551151,415544,0 +60133551151,418169,0.0570469798657718 +60133551151,420363,0.0229306487695749 +60133551151,424279,0 +60133551151,427340,0 +60133551161,410587,0.112337662337662 +60133551161,410746,0.0175324675324675 +60133551161,412003,0.024025974025974 +60133551161,412394,0.0285714285714286 +60133551161,412395,0.0422077922077922 +60133551161,412551,0.0688311688311688 +60133551161,413808,0.0279220779220779 +60133551161,415295,0.0188311688311688 +60133551161,418084,0 +60133551161,418086,0 +60133551161,422196,0.000649350649350649 +60133551161,422197,0.0435064935064935 +60133551161,423577,0.0415584415584416 +60133551161,425080,0.0142857142857143 +60133551161,425503,0.112987012987013 +60133551161,425887,0.437662337662338 +60133551161,427514,0.00909090909090909 +60133551171,410588,0.0886836027713626 +60133551171,410891,0.181986143187067 +60133551171,411135,0.028175519630485 +60133551171,411142,0.0304849884526559 +60133551171,411143,0.0175519630484988 +60133551171,411144,0.0351039260969977 +60133551171,412552,0.0175519630484988 +60133551171,412553,0.0272517321016166 +60133551171,412946,0.0212471131639723 +60133551171,413803,0.0212471131639723 +60133551171,413811,0.0157043879907621 +60133551171,414235,0.0226327944572748 +60133551171,414372,0.0235565819861432 +60133551171,414374,0.0203233256351039 +60133551171,414482,0.0341801385681293 +60133551171,414774,0.0531177829099307 +60133551171,416222,0.129792147806005 +60133551171,416223,0.0545034642032333 +60133551171,418168,0.146882217090069 +60133551171,419450,0.0221709006928406 +60133551171,420554,0.00092378752886836 +60133551171,420953,0 +60133551171,423998,0.0069284064665127 +60133552001,410418,0 +60133552001,410856,0 +60133552001,410860,0 +60133552001,410861,0 +60133552001,410867,0 +60133552001,410868,0 +60133552001,411090,0.621730382293763 +60133552001,411268,0 +60133552001,411408,0 +60133552001,411412,0 +60133552001,411663,0 +60133552001,411841,0 +60133552001,411924,0.0221327967806841 +60133552001,412122,0 +60133552001,412337,0 +60133552001,412357,0 +60133552001,412359,0 +60133552001,412501,0 +60133552001,412504,0.0724346076458753 +60133552001,412509,0 +60133552001,412511,0 +60133552001,412900,0 +60133552001,413220,0 +60133552001,413230,0.146881287726358 +60133552001,413487,0 +60133552001,413763,0 +60133552001,414982,0 +60133552001,416732,0 +60133552001,417099,0 +60133552001,417244,0 +60133552001,417764,0 +60133552001,419158,0 +60133552001,419205,0 +60133552001,419581,0.126760563380282 +60133552001,419633,0 +60133552001,420056,0 +60133552001,420061,0 +60133552001,421068,0 +60133552001,421209,0 +60133552001,422979,0 +60133552001,423962,0 +60133552001,424449,0 +60133552001,425050,0.0100603621730382 +60133552001,425454,0 +60133552002,411527,0.0384615384615385 +60133552002,415073,0.0332167832167832 +60133552002,415779,0.0297202797202797 +60133552002,416559,0.0856643356643357 +60133552002,417371,0 +60133552002,418257,0.11013986013986 +60133552002,419144,0 +60133552002,419156,0.0559440559440559 +60133552002,419201,0 +60133552002,419241,0.0343822843822844 +60133552002,419550,0.020979020979021 +60133552002,420636,0.0763403263403263 +60133552002,420864,0.0256410256410256 +60133552002,420915,0 +60133552002,420917,0.106643356643357 +60133552002,423245,0.0262237762237762 +60133552002,423666,0.0314685314685315 +60133552002,425218,0.0745920745920746 +60133552002,425305,0.013986013986014 +60133552002,425307,0.0425407925407925 +60133552002,425719,0.034965034965035 +60133552002,426134,0.0337995337995338 +60133552002,426331,0.100815850815851 +60133552002,426472,0.0244755244755245 +60133553011,410374,0.202156334231806 +60133553011,411680,0.0386343216531896 +60133553011,412758,0.0395327942497754 +60133553011,413779,0.123989218328841 +60133553011,415759,0.0718778077268643 +60133553011,417222,0.104222821203953 +60133553011,417740,0.0287511230907457 +60133553011,419238,0.131176999101527 +60133553011,420326,0.041329739442947 +60133553011,421438,0.00539083557951483 +60133553011,422058,0.195867026055705 +60133553011,424545,0.0170709793351303 +60133553012,410002,0.0186335403726708 +60133553012,411558,0.217391304347826 +60133553012,416310,0.128364389233954 +60133553012,416311,0.188405797101449 +60133553012,417352,0.0869565217391304 +60133553012,417537,0.167701863354037 +60133553012,420314,0.0993788819875776 +60133553012,420895,0.0476190476190476 +60133553012,421306,0.0455486542443064 +60133553013,410842,0.112696148359486 +60133553013,411553,0.0741797432239658 +60133553013,412197,0.0313837375178317 +60133553013,417612,0.111269614835949 +60133553013,421030,0.452211126961484 +60133553013,422958,0.125534950071327 +60133553013,425999,0.0927246790299572 +60133553013,426624,0 +60133553014,410995,0.291759465478842 +60133553014,411813,0.178173719376392 +60133553014,412204,0.271714922048998 +60133553014,415902,0.138084632516704 +60133553014,417620,0.120267260579065 +60133553021,412760,0.121301775147929 +60133553021,414872,0.0828402366863905 +60133553021,415373,0.136094674556213 +60133553021,418670,0.198224852071006 +60133553021,420697,0.292899408284024 +60133553021,427789,0.168639053254438 +60133553022,419091,0 +60133553022,420295,0.414201183431953 +60133553022,421308,0.14792899408284 +60133553022,423893,0.215976331360947 +60133553022,427466,0.22189349112426 +60133553023,413483,0.0321361058601134 +60133553023,413772,0.0642722117202268 +60133553023,414556,0.238185255198488 +60133553023,417741,0 +60133553023,418668,0 +60133553023,419188,0.483931947069943 +60133553023,424364,0.181474480151229 +60133553041,411555,0.921419518377693 +60133553041,420227,0.0785804816223067 +60133553042,412103,0.463696369636964 +60133553042,420667,0.0544554455445545 +60133553042,422052,0.0907590759075908 +60133553042,423531,0.13036303630363 +60133553042,426913,0.260726072607261 +60133553043,410704,0.2 +60133553043,412102,0 +60133553043,414700,0.0309859154929577 +60133553043,415905,0.27887323943662 +60133553043,417774,0.0028169014084507 +60133553043,421028,0.2 +60133553043,421048,0.107042253521127 +60133553043,424090,0.140845070422535 +60133553043,424807,0.0394366197183099 +60133553044,410698,0.0137299771167048 +60133553044,410843,0.15675057208238 +60133553044,411683,0.0091533180778032 +60133553044,412528,0.0217391304347826 +60133553044,415903,0.0297482837528604 +60133553044,415904,0.133867276887872 +60133553044,421049,0.553775743707094 +60133553044,427419,0.0812356979405034 +60133553045,410551,0.346437346437346 +60133553045,413625,0.30958230958231 +60133553045,413627,0 +60133553045,414290,0.262899262899263 +60133553045,417245,0 +60133553045,424808,0.0810810810810811 +60133553061,410997,0.057356608478803 +60133553061,412057,0 +60133553061,412104,0.00997506234413965 +60133553061,412659,0.179551122194514 +60133553061,412916,0 +60133553061,412924,0 +60133553061,413321,0.00249376558603491 +60133553061,413742,0.027431421446384 +60133553061,413778,0 +60133553061,414026,0 +60133553061,414030,0 +60133553061,414033,0.00498753117206983 +60133553061,414593,0 +60133553061,414747,0.0149625935162095 +60133553061,415397,0 +60133553061,415659,0.0498753117206983 +60133553061,418008,0 +60133553061,418646,0.0349127182044888 +60133553061,419028,0.0698254364089776 +60133553061,419171,0 +60133553061,420494,0.0199501246882793 +60133553061,420687,0 +60133553061,422758,0.029925187032419 +60133553061,422764,0.0124688279301746 +60133553061,424953,0.374064837905237 +60133553061,425206,0.00748129675810474 +60133553061,425248,0.0822942643391521 +60133553061,425744,0.0224438902743142 +60133553062,410001,0.177595628415301 +60133553062,410702,0.139344262295082 +60133553062,415901,0.0901639344262295 +60133553062,415907,0.0191256830601093 +60133553062,416874,0.23224043715847 +60133553062,419124,0.0382513661202186 +60133553062,420248,0.150273224043716 +60133553062,422971,0.133879781420765 +60133553062,425236,0.0191256830601093 +60133553063,410006,0 +60133553063,410717,0.298765432098765 +60133553063,410853,0.14320987654321 +60133553063,411816,0 +60133553063,415085,0.269135802469136 +60133553063,416441,0.0864197530864197 +60133553063,418408,0.135802469135802 +60133553063,426168,0.0666666666666667 +60133553064,411820,0.159574468085106 +60133553064,412107,0.122340425531915 +60133553064,415086,0.234042553191489 +60133553064,417503,0.0851063829787234 +60133553064,421444,0.074468085106383 +60133553064,424546,0.0984042553191489 +60133553064,426169,0.151595744680851 +60133553064,426170,0.074468085106383 +60133553065,411392,0.277551020408163 +60133553065,411818,0.269387755102041 +60133553065,411970,0.0163265306122449 +60133553065,423389,0.163265306122449 +60133553065,424954,0.151020408163265 +60133553065,426172,0.122448979591837 +60133560011,413366,0.202247191011236 +60133560011,413367,0.119850187265918 +60133560011,418964,0.280898876404494 +60133560011,418965,0.153558052434457 +60133560011,419457,0.142322097378277 +60133560011,423126,0.101123595505618 +60133560012,413933,0.0903732809430255 +60133560012,418114,0.0569744597249509 +60133560012,418600,0.0726915520628684 +60133560012,418601,0.0550098231827112 +60133560012,423125,0.0648330058939096 +60133560012,425092,0.172888015717092 +60133560012,425095,0.068762278978389 +60133560012,425529,0.0589390962671906 +60133560012,427524,0.298624754420432 +60133560012,427525,0.0609037328094303 +60133560013,410638,0 +60133560013,411073,0 +60133560013,411180,0.64 +60133560013,411185,0 +60133560013,414101,0 +60133560013,414408,0 +60133560013,414524,0 +60133560013,414786,0 +60133560013,416804,0 +60133560013,418122,0.16 +60133560013,420983,0 +60133560013,420984,0 +60133560013,423145,0 +60133560013,425125,0.2 +60133560013,425555,0 +60133560021,410107,0.0567741935483871 +60133560021,410372,0.735483870967742 +60133560021,418363,0.12258064516129 +60133560021,418495,0 +60133560021,421830,0.0851612903225806 +60133560022,410105,0.0627615062761506 +60133560022,410236,0.00836820083682008 +60133560022,410241,0.0627615062761506 +60133560022,410243,0 +60133560022,410244,0 +60133560022,410366,0 +60133560022,410369,0.096234309623431 +60133560022,410656,0 +60133560022,410804,0.0251046025104602 +60133560022,410808,0.0251046025104603 +60133560022,410950,0.0627615062761506 +60133560022,410951,0.117154811715481 +60133560022,410956,0.0502092050209205 +60133560022,411360,0.0125523012552301 +60133560022,417195,0.0125523012552301 +60133560022,417477,0.00836820083682008 +60133560022,417998,0.0460251046025105 +60133560022,420851,0 +60133560022,420852,0.276150627615063 +60133560022,422699,0.00836820083682008 +60133560022,423354,0.0251046025104603 +60133560022,423359,0.0209205020920502 +60133560022,423844,0.0292887029288703 +60133560022,424771,0.00418410041841004 +60133560022,425961,0.0251046025104602 +60133560022,426125,0.0209205020920502 +60133560023,417481,0.7 +60133560023,422890,0.163636363636364 +60133560023,426427,0.136363636363636 +60133560024,0,0 +60133560024,410102,0 +60133560024,410234,0.00138888888888889 +60133560024,410367,0.0402777777777778 +60133560024,411356,0.00138888888888889 +60133560024,411917,0 +60133560024,411918,0.00416666666666667 +60133560024,416959,0 +60133560024,416960,0 +60133560024,417192,0.0569444444444445 +60133560024,417193,0.0222222222222222 +60133560024,417994,0.00277777777777778 +60133560024,418230,0.00694444444444444 +60133560024,418358,0 +60133560024,418360,0.0208333333333333 +60133560024,418502,0 +60133560024,418503,0.00138888888888889 +60133560024,420847,0.0222222222222222 +60133560024,420849,0.0611111111111111 +60133560024,420850,0 +60133560024,421282,0 +60133560024,421284,0.0208333333333333 +60133560024,421704,0.0291666666666667 +60133560024,421705,0 +60133560024,421709,0.288888888888889 +60133560024,421712,0 +60133560024,421825,0 +60133560024,422254,0.0319444444444444 +60133560024,422442,0.025 +60133560024,422706,0 +60133560024,422889,0.0319444444444444 +60133560024,423182,0.0708333333333333 +60133560024,423184,0.00138888888888889 +60133560024,423356,0.0138888888888889 +60133560024,423847,0.0319444444444444 +60133560024,425662,0.0888888888888889 +60133560024,425664,0.0513888888888889 +60133560024,425666,0 +60133560024,425811,0 +60133560024,426435,0 +60133560024,427730,0.0722222222222222 +60133570001,0,0 +60133570001,410767,0.151315789473684 +60133570001,411893,0.263157894736842 +60133570001,415047,0 +60133570001,418730,0 +60133570001,418731,0 +60133570001,418948,0.0219298245614035 +60133570001,420595,0 +60133570001,422628,0.269736842105263 +60133570001,422629,0.195175438596491 +60133570001,422651,0.0986842105263158 +60133570002,0,0 +60133570002,411894,0.363636363636364 +60133570002,411898,0.231404958677686 +60133570002,412157,0 +60133570002,413954,0.00413223140495868 +60133570002,415330,0.119834710743802 +60133570002,415551,0 +60133570002,417437,0.204545454545455 +60133570002,417587,0.0702479338842975 +60133570002,418974,0.00619834710743802 +60133570002,419486,0 +60133570002,426861,0 +60133570003,0,0 +60133570003,412015,0 +60133570003,412813,0.91869918699187 +60133570003,413695,0 +60133570003,416795,0.0813008130081301 +60133580001,411728,0.300904977375566 +60133580001,414238,0.117647058823529 +60133580001,414413,0.135746606334842 +60133580001,416618,0.101809954751131 +60133580001,418096,0.233031674208145 +60133580001,427008,0.110859728506787 +60133580002,411730,0.152046783625731 +60133580002,411731,0.111111111111111 +60133580002,413116,0.0380116959064327 +60133580002,413118,0.160818713450292 +60133580002,415699,0.0292397660818713 +60133580002,415703,0.0935672514619883 +60133580002,416534,0.14327485380117 +60133580002,418593,0.043859649122807 +60133580002,418821,0.0818713450292398 +60133580002,423787,0.0789473684210526 +60133580002,425356,0.0672514619883041 +60133580003,412816,0.0836012861736334 +60133580003,416780,0.12540192926045 +60133580003,417433,0.15112540192926 +60133580003,418950,0.15112540192926 +60133580003,421248,0.356913183279743 +60133580003,422653,0.131832797427653 +60133580004,412964,0.092436974789916 +60133580004,414236,0.0819327731092437 +60133580004,415701,0.0777310924369748 +60133580004,415704,0.128151260504202 +60133580004,416779,0.092436974789916 +60133580004,418622,0.0567226890756303 +60133580004,420369,0.069327731092437 +60133580004,421787,0.157563025210084 +60133580004,423789,0.157563025210084 +60133580004,424293,0.0861344537815126 +60133580005,0,0 +60133580005,411074,0.102102102102102 +60133580005,411732,0 +60133580005,412266,0.018018018018018 +60133580005,412267,0 +60133580005,413696,0 +60133580005,414818,0.0810810810810811 +60133580005,415043,0.0510510510510511 +60133580005,416244,0.00600600600600601 +60133580005,416369,0.174174174174174 +60133580005,417315,0.525525525525526 +60133580005,417582,0 +60133580005,418624,0 +60133580005,418625,0 +60133580005,418729,0.00600600600600601 +60133580005,418754,0 +60133580005,418844,0 +60133580005,418845,0.021021021021021 +60133580005,418847,0.015015015015015 +60133580005,423623,0 +60133580005,423805,0 +60133591021,410202,0.122324159021407 +60133591021,412563,0.116207951070336 +60133591021,419477,0.0948012232415902 +60133591021,421575,0.296636085626911 +60133591021,421768,0.18960244648318 +60133591021,425906,0.180428134556575 +60133591022,410344,0.10727969348659 +60133591022,413294,0.0587484035759898 +60133591022,414520,0.0638569604086845 +60133591022,414521,0.0114942528735632 +60133591022,415161,0.15581098339719 +60133591022,417287,0.102171136653895 +60133591022,422111,0.070242656449553 +60133591022,422116,0.0434227330779055 +60133591022,423321,0.0306513409961686 +60133591022,426038,0.194125159642401 +60133591022,426367,0.130268199233716 +60133591022,426513,0.0319284802043423 +60133591023,411163,0.0198581560283688 +60133591023,411309,0.0950354609929078 +60133591023,412598,0.134751773049645 +60133591023,414648,0.0851063829787234 +60133591023,415163,0.113475177304965 +60133591023,421544,0.0638297872340426 +60133591023,422102,0.0482269503546099 +60133591023,422627,0.00141843971631206 +60133591023,423775,0.0312056737588652 +60133591023,426041,0.0425531914893617 +60133591023,427168,0.364539007092199 +60133591031,0,0 +60133591031,410192,0.117370892018779 +60133591031,412564,0.0727699530516432 +60133591031,414805,0.169014084507042 +60133591031,415545,0.105633802816901 +60133591031,417155,0.126760563380282 +60133591031,418585,0.00469483568075117 +60133591031,418819,0.150234741784038 +60133591031,423626,0.253521126760563 +60133591032,417289,0.526539278131635 +60133591032,423586,0.144373673036093 +60133591032,425361,0.246284501061571 +60133591032,425363,0.0828025477707006 +60133591032,426231,0 +60133591033,410193,0.102079395085066 +60133591033,410764,0.00945179584120983 +60133591033,411307,0.135160680529301 +60133591033,411735,0.0245746691871456 +60133591033,412153,0.0529300567107751 +60133591033,415546,0.0293005671077505 +60133591033,416532,0.00850661625708885 +60133591033,421249,0.0406427221172023 +60133591033,421769,0.0378071833648393 +60133591033,422202,0.0633270321361059 +60133591033,423580,0.333648393194707 +60133591033,428020,0.162570888468809 +60133591041,410758,0.412823397075366 +60133591041,411615,0.255343082114736 +60133591041,411616,0.0292463442069741 +60133591041,417065,0.302587176602925 +60133591051,0,0 +60133591051,410506,0.0788601722995361 +60133591051,411183,0.185553346587144 +60133591051,411725,0.0768721007289596 +60133591051,413122,0.0629555997349238 +60133591051,413958,0.215374420145792 +60133591051,413959,0.0390987408880053 +60133591051,414265,0.0185553346587144 +60133591051,416253,0.0145791915175613 +60133591051,416254,0.0311464546056991 +60133591051,416626,0.098078197481776 +60133591051,421995,0.0125911199469848 +60133591051,422400,0.0324718356527502 +60133591051,424129,0.0298210735586481 +60133591051,426388,0.0371106693174288 +60133591051,427003,0.0669317428760769 +60133592021,410194,0.0837378640776699 +60133592021,410345,0.095873786407767 +60133592021,411323,0.217233009708738 +60133592021,411876,0.109223300970874 +60133592021,411877,0.0485436893203883 +60133592021,413835,0.0521844660194175 +60133592021,417166,0.0279126213592233 +60133592021,417970,0.0327669902912621 +60133592021,421977,0.0521844660194175 +60133592021,422548,0.0740291262135922 +60133592021,423581,0.0351941747572816 +60133592021,423589,0.0861650485436893 +60133592021,426378,0.0351941747572816 +60133592021,426379,0.0497572815533981 +60133592022,410211,0.0613154960981048 +60133592022,412432,0.124860646599777 +60133592022,413536,0.0412486064659978 +60133592022,414806,0 +60133592022,414809,0 +60133592022,414965,0.111482720178372 +60133592022,416802,0.102564102564103 +60133592022,417954,0.140468227424749 +60133592022,421573,0.00668896321070234 +60133592022,421662,0.220735785953177 +60133592022,422664,0.052396878483835 +60133592022,423039,0.00891861761426979 +60133592022,426841,0.00557413600891862 +60133592022,427185,0.0512820512820513 +60133592022,427851,0.072463768115942 +60133592023,410198,0.0706106870229008 +60133592023,411324,0.0591603053435115 +60133592023,415559,0.127862595419847 +60133592023,415832,0.0324427480916031 +60133592023,416372,0.0973282442748092 +60133592023,416387,0.0591603053435115 +60133592023,421548,0.166030534351145 +60133592023,421549,0.101145038167939 +60133592023,428223,0.286259541984733 +60133592031,411184,1 +60133592032,413382,0 +60133592032,423585,0.911634756995582 +60133592032,425370,0.0883652430044183 +60133592032,426515,0 +60133592033,413383,0.365758754863813 +60133592033,414784,0.424124513618677 +60133592033,425540,0.21011673151751 +60133592034,410511,0.0651558073654391 +60133592034,411608,0.113314447592068 +60133592034,413370,0.0580736543909348 +60133592034,415550,0.262039660056657 +60133592034,418588,0.0439093484419263 +60133592034,422535,0.215297450424929 +60133592034,424139,0.242209631728045 +60133592035,417581,0.258333333333333 +60133592035,419458,0.179166666666667 +60133592035,424311,0.5625 +60133592041,410062,0.443661971830986 +60133592041,414959,0.330985915492958 +60133592041,416235,0.123239436619718 +60133592041,417971,0.102112676056338 +60133592042,412265,0.0710659898477157 +60133592042,413127,0.294416243654822 +60133592042,413288,0.210659898477157 +60133592042,422204,0.106598984771574 +60133592042,426517,0.144670050761421 +60133592042,426518,0.17258883248731 +60133592043,411325,0.0471337579617834 +60133592043,412721,0.0828025477707006 +60133592043,415712,0.0445859872611465 +60133592043,416624,0.335031847133758 +60133592043,417066,0.0789808917197452 +60133592043,417089,0.0305732484076433 +60133592043,417154,0.0318471337579618 +60133592043,418313,0.0369426751592357 +60133592043,422536,0.0662420382165605 +60133592043,423111,0.245859872611465 +60133601011,415560,0.045 +60133601011,418333,0.15 +60133601011,420392,0.31 +60133601011,420819,0.155 +60133601011,425762,0.26 +60133601011,428219,0.08 +60133601012,410354,0.0733229329173167 +60133601012,410472,0.285491419656786 +60133601012,411622,0.0904836193447738 +60133601012,412836,0.0561622464898596 +60133601012,413690,0.0592823712948518 +60133601012,416799,0.216848673946958 +60133601012,417602,0.0421216848673947 +60133601012,418213,0 +60133601012,422411,0.0421216848673947 +60133601012,425894,0.134165366614665 +60133601013,411043,0.17981072555205 +60133601013,411071,0.0709779179810725 +60133601013,412027,0.212933753943218 +60133601013,413693,0.192429022082019 +60133601013,413833,0.0583596214511041 +60133601013,414268,0.0378548895899054 +60133601013,420162,0.0536277602523659 +60133601013,420590,0.108832807570978 +60133601013,423324,0 +60133601013,426377,0.0851735015772871 +60133601021,412155,0.0870917573872473 +60133601021,420811,0.0419906687402799 +60133601021,421570,0.255054432348367 +60133601021,423113,0.615863141524106 +60133601022,412713,0 +60133601022,414100,0 +60133601022,415184,0 +60133601022,417950,0.33728813559322 +60133601022,418749,0 +60133601022,420810,0.0457627118644068 +60133601022,421146,0.242372881355932 +60133601022,422099,0.255932203389831 +60133601022,423582,0.11864406779661 +60133601023,411314,0.109375 +60133601023,412156,0.26953125 +60133601023,412163,0.24609375 +60133601023,417431,0.24609375 +60133601023,428206,0.12890625 +60133602001,415843,0.160690571049137 +60133602001,416083,0.104913678618858 +60133602001,416085,0.114209827357238 +60133602001,416086,0.0332005312084993 +60133602001,418332,0.366533864541833 +60133602001,418830,0.0411686586985392 +60133602001,420813,0.0690571049136786 +60133602001,420814,0.0371845949535193 +60133602001,421971,0.0411686586985392 +60133602001,421978,0.0318725099601594 +60133602002,416382,0.0575221238938053 +60133602002,416907,0.402654867256637 +60133602002,421953,0.245575221238938 +60133602002,423110,0.216814159292035 +60133602002,428039,0.0774336283185841 +60133602003,412279,0.0275229357798165 +60133602003,414665,0.176146788990826 +60133602003,415555,0.0422018348623853 +60133602003,416370,0.126605504587156 +60133602003,418833,0.124770642201835 +60133602003,421378,0.113761467889908 +60133602003,423150,0.0678899082568807 +60133602003,425086,0.154128440366972 +60133602003,425089,0.16697247706422 +60133610001,415040,0.0547112462006079 +60133610001,415185,0.389057750759878 +60133610001,415858,0.29483282674772 +60133610001,424122,0.261398176291793 +60133610002,410329,0.00429184549356223 +60133610002,410481,0.143061516452074 +60133610002,410921,0.228898426323319 +60133610002,412275,0.0987124463519313 +60133610002,412278,0.263233190271817 +60133610002,412408,0.0171673819742489 +60133610002,413674,0 +60133610002,414517,0 +60133610002,414519,0.00286123032904149 +60133610002,414815,0 +60133610002,416797,0 +60133610002,417604,0.0586552217453505 +60133610002,418120,0 +60133610002,419299,0.0743919885550787 +60133610002,422644,0.0128755364806867 +60133610002,426225,0.0958512160228898 +60133610003,410085,0 +60133610003,411609,0 +60133610003,411624,0.0283582089552239 +60133610003,412151,0.104477611940299 +60133610003,412164,0 +60133610003,413141,0 +60133610003,413142,0 +60133610003,415182,0 +60133610003,416373,0.0626865671641791 +60133610003,418115,0.332835820895522 +60133610003,418116,0.0805970149253731 +60133610003,421541,0.0507462686567164 +60133610003,422631,0 +60133610003,425088,0.26865671641791 +60133610003,426691,0 +60133610003,428040,0.0716417910447761 +60133620001,413682,0.122448979591837 +60133620001,415039,0.122448979591837 +60133620001,415859,0.116618075801749 +60133620001,417074,0.134110787172012 +60133620001,418721,0.00291545189504373 +60133620001,424296,0.230320699708455 +60133620001,424704,0.271137026239067 +60133620002,411625,0.208020050125313 +60133620002,417578,0.240601503759398 +60133620002,422092,0.0526315789473684 +60133620002,424286,0.130325814536341 +60133620002,425378,0.368421052631579 +60133620003,412818,0.0898345153664303 +60133620003,413680,0.127659574468085 +60133620003,414269,0.25531914893617 +60133620003,416242,0.106382978723404 +60133620003,421567,0.0449172576832151 +60133620003,421976,0.0543735224586288 +60133620003,422643,0.226950354609929 +60133620003,422654,0.0945626477541371 +60133630001,410071,0.00938337801608579 +60133630001,410471,0.441018766756032 +60133630001,411060,0.0348525469168901 +60133630001,417829,0.0375335120643432 +60133630001,418318,0.241286863270777 +60133630001,423307,0.235924932975871 +60133630002,411647,0.195460277427491 +60133630002,415036,0.433795712484237 +60133630002,418628,0.16141235813367 +60133630002,421566,0.0529634300126103 +60133630002,428035,0.156368221941992 +60133630003,411058,0.367924528301887 +60133630003,415033,0.130503144654088 +60133630003,420803,0.0440251572327044 +60133630003,422547,0.0157232704402516 +60133630003,424121,0.128930817610063 +60133630003,425081,0.0880503144654088 +60133630003,425082,0.224842767295597 +60133630004,411062,0.104910714285714 +60133630004,411063,0.129464285714286 +60133630004,415855,0.113839285714286 +60133630004,418329,0.122767857142857 +60133630004,418744,0 +60133630004,422544,0 +60133630004,423583,0.127232142857143 +60133630004,424723,0.0178571428571429 +60133630004,424910,0.0758928571428571 +60133630004,426039,0.308035714285714 +60133640021,414516,0.420177383592018 +60133640021,420157,0.0299334811529933 +60133640021,420158,0.0742793791574279 +60133640021,421684,0.0620842572062084 +60133640021,421685,0.0620842572062084 +60133640021,422097,0 +60133640021,422110,0.0321507760532151 +60133640021,423305,0.0953436807095344 +60133640021,426366,0.169623059866962 +60133640021,426373,0.0543237250554324 +60133640022,413289,0.118226600985222 +60133640022,413290,0.0935960591133005 +60133640022,417159,0.0738916256157636 +60133640022,417160,0.0862068965517241 +60133640022,417457,0.0689655172413793 +60133640022,419331,0.354679802955665 +60133640022,422859,0 +60133640022,426058,0.145320197044335 +60133640022,426372,0.0591133004926108 +60133640023,411040,0.102040816326531 +60133640023,411320,0.0755102040816326 +60133640023,411321,0.0571428571428571 +60133640023,412149,0.128571428571429 +60133640023,412161,0.0387755102040816 +60133640023,413293,0.0326530612244898 +60133640023,415553,0.102040816326531 +60133640023,420159,0.291836734693878 +60133640023,420160,0.0938775510204082 +60133640023,422112,0.0775510204081633 +60133650021,413828,0.0490693739424704 +60133650021,414400,0.109983079526227 +60133650021,414660,0.463620981387479 +60133650021,415574,0.115059221658206 +60133650021,416393,0.0879864636209814 +60133650021,418453,0.0355329949238579 +60133650021,423025,0.138747884940778 +60133650022,411632,0.183870967741935 +60133650022,412273,0.151612903225806 +60133650022,414929,0.196774193548387 +60133650022,415565,0.196774193548387 +60133650022,422380,0.116129032258065 +60133650022,423470,0.154838709677419 +60133650023,0,0 +60133650023,410197,0 +60133650023,410333,0.0440917107583774 +60133650023,410335,0.0388007054673721 +60133650023,410339,0.037037037037037 +60133650023,411739,0 +60133650023,411878,0.0405643738977072 +60133650023,412026,0 +60133650023,412410,0.00881834215167548 +60133650023,412975,0.0811287477954145 +60133650023,412976,0.118165784832451 +60133650023,413522,0.0246913580246914 +60133650023,413829,0.0511463844797178 +60133650023,414399,0.0828924162257496 +60133650023,418186,0.0493827160493827 +60133650023,418331,0 +60133650023,418454,0.0828924162257496 +60133650023,419715,0.00529100529100529 +60133650023,419720,0.0599647266313933 +60133650023,421392,0.222222222222222 +60133650023,421393,0.037037037037037 +60133650023,424515,0.0141093474426808 +60133650023,425784,0.0017636684303351 +60133650031,410347,0.193693693693694 +60133650031,410348,0 +60133650031,410514,0.214714714714715 +60133650031,414636,0.400900900900901 +60133650031,415462,0 +60133650031,418315,0.190690690690691 +60133650031,421370,0 +60133650031,423492,0 +60133650032,410765,1 +60133650032,421682,0 +60133650033,412431,0 +60133650033,414637,0 +60133650033,414639,0.139130434782609 +60133650033,414651,0.830434782608696 +60133650033,424101,0.0304347826086957 +60133660011,412417,0.152671755725191 +60133660011,412418,0.0559796437659033 +60133660011,415468,0.094147582697201 +60133660011,420977,0.404580152671756 +60133660011,421967,0.132315521628499 +60133660011,425528,0.16030534351145 +60133660012,412419,0.276767676767677 +60133660012,415715,0.00202020202020202 +60133660012,418445,0.381818181818182 +60133660012,421969,0.0747474747474747 +60133660012,424695,0.214141414141414 +60133660012,427170,0.0505050505050505 +60133660013,412961,0.298780487804878 +60133660013,413384,0.0396341463414634 +60133660013,418181,0.170731707317073 +60133660013,418182,0.204268292682927 +60133660013,419305,0.103658536585366 +60133660013,420164,0.182926829268293 +60133660013,427349,0 +60133660021,413824,0.11244019138756 +60133660021,418185,0.205741626794258 +60133660021,418450,0.287081339712919 +60133660021,427345,0.394736842105263 +60133660022,412958,0.144308943089431 +60133660022,413823,0.121951219512195 +60133660022,416074,0.0609756097560976 +60133660022,418753,0.205284552845528 +60133660022,419709,0.101626016260163 +60133660022,421968,0.16869918699187 +60133660022,423020,0.0752032520325203 +60133660022,427346,0.121951219512195 +60133660023,412416,0.043424317617866 +60133660023,412420,0.032258064516129 +60133660023,412421,0.054590570719603 +60133660023,413819,0.120347394540943 +60133660023,414653,0.0669975186104218 +60133660023,415836,0.0471464019851117 +60133660023,415837,0.0744416873449132 +60133660023,417083,0.352357320099256 +60133660023,418594,0.0570719602977667 +60133660023,424123,0.0595533498759305 +60133660023,427171,0.0694789081885856 +60133660023,427174,0.0223325062034739 +60133671001,415983,0.0727272727272727 +60133671001,415984,0.075 +60133671001,423306,0.127272727272727 +60133671001,423494,0.0613636363636364 +60133671001,424496,0.115909090909091 +60133671001,424497,0.0681818181818182 +60133671001,425557,0.0886363636363636 +60133671001,425769,0.113636363636364 +60133671001,425771,0.0727272727272727 +60133671001,425772,0.204545454545455 +60133671002,410617,0.110738255033557 +60133671002,411461,0.0939597315436242 +60133671002,415466,0.120805369127517 +60133671002,426208,0.674496644295302 +60133671003,410614,0.474201474201474 +60133671003,421390,0.474201474201474 +60133671003,425767,0.0515970515970516 +60133671004,412716,0.163793103448276 +60133671004,415461,0.0890804597701149 +60133671004,415464,0.135057471264368 +60133671004,421368,0.149425287356322 +60133671004,423301,0.247126436781609 +60133671004,424494,0.0948275862068965 +60133671004,425768,0.120689655172414 +60133672001,411462,0.0842332613390929 +60133672001,411463,0.114470842332613 +60133672001,411464,0.129589632829374 +60133672001,411466,0.0626349892008639 +60133672001,415840,0.0215982721382289 +60133672001,420798,0.114470842332613 +60133672001,420981,0.123110151187905 +60133672001,423303,0.08207343412527 +60133672001,423304,0.136069114470842 +60133672001,424698,0.131749460043197 +60133672002,410353,0.0822784810126582 +60133672002,410355,0 +60133672002,415465,0.146835443037975 +60133672002,415839,0.120253164556962 +60133672002,418183,0.107594936708861 +60133672002,418596,0.19493670886076 +60133672002,419335,0 +60133672002,419338,0.0430379746835443 +60133672002,422368,0.182278481012658 +60133672002,425369,0.122784810126582 +60133672003,411467,0.206349206349206 +60133672003,411468,0.178571428571429 +60133672003,412034,0.0357142857142857 +60133672003,413966,0.126984126984127 +60133672003,424498,0.452380952380952 +60133672003,426071,0 +60133680011,410051,0.139130434782609 +60133680011,413523,0.256521739130435 +60133680011,420155,0.18695652173913 +60133680011,422815,0.165217391304348 +60133680011,423472,0.104347826086957 +60133680011,423473,0.147826086956522 +60133680012,410053,0.505263157894737 +60133680012,410907,0.0842105263157895 +60133680012,414077,0.0463157894736842 +60133680012,414950,0.0694736842105263 +60133680012,423482,0.0421052631578947 +60133680012,424017,0.0505263157894737 +60133680012,424023,0.0631578947368421 +60133680012,424028,0.08 +60133680012,428211,0.0589473684210526 +60133680013,414069,0.096551724137931 +60133680013,414947,0.0862068965517241 +60133680013,414953,0.127586206896552 +60133680013,420575,0.227586206896552 +60133680013,424010,0.144827586206897 +60133680013,424011,0.096551724137931 +60133680013,424012,0.0827586206896552 +60133680013,424013,0.137931034482759 +60133680014,410064,0.149206349206349 +60133680014,410904,0.0761904761904762 +60133680014,410905,0.0952380952380952 +60133680014,413525,0.158730158730159 +60133680014,414946,0.111111111111111 +60133680014,422827,0.320634920634921 +60133680014,428025,0.0888888888888889 +60133680021,410203,0.144124168514412 +60133680021,410909,0.0931263858093126 +60133680021,413387,0.0643015521064302 +60133680021,421141,0.47450110864745 +60133680021,421964,0.133037694013304 +60133680021,426537,0.0909090909090909 +60133680022,410063,0.0324825986078886 +60133680022,410338,0.074245939675174 +60133680022,413539,0.122969837587007 +60133680022,414932,0.122969837587007 +60133680022,415481,0.0719257540603248 +60133680022,419300,0.102088167053364 +60133680022,420568,0.0510440835266821 +60133680022,420570,0.118329466357309 +60133680022,426669,0.136890951276102 +60133680022,428023,0.0672853828306264 +60133680022,428024,0.0997679814385151 +60133690011,412007,0.072265625 +60133690011,412010,0.18359375 +60133690011,412577,0.08203125 +60133690011,415999,0.326171875 +60133690011,421149,0.328125 +60133690011,424733,0.00390625 +60133690011,426051,0.00390625 +60133690012,410074,0 +60133690012,410076,0.119143239625167 +60133690012,410196,0.0950468540829987 +60133690012,411154,0.127175368139224 +60133690012,411745,0.0495314591700134 +60133690012,412985,0.0736278447121821 +60133690012,414655,0 +60133690012,415177,0.0240963855421687 +60133690012,416908,0.414993306559572 +60133690012,418817,0 +60133690012,424031,0 +60133690012,424092,0.0963855421686747 +60133690012,426670,0 +60133690013,410066,0.129577464788732 +60133690013,410067,0.0901408450704225 +60133690013,410910,0.112676056338028 +60133690013,414951,0.174647887323944 +60133690013,414952,0.101408450704225 +60133690013,420574,0.132394366197183 +60133690013,422829,0.0704225352112676 +60133690013,426671,0.0732394366197183 +60133690013,428028,0.115492957746479 +60133690014,410908,0.226386806596702 +60133690014,410911,0.368815592203898 +60133690014,418814,0 +60133690014,423584,0.334332833583208 +60133690014,424015,0.0704647676161919 +60133690021,412006,0.122562674094708 +60133690021,417322,0.28133704735376 +60133690021,417605,0.0278551532033426 +60133690021,424499,0.256267409470752 +60133690021,425901,0.00278551532033426 +60133690021,425902,0.11142061281337 +60133690021,427372,0.197771587743733 +60133690022,411723,0.0967741935483871 +60133690022,411724,0.225806451612903 +60133690022,412590,0.212903225806452 +60133690022,416529,0.151612903225806 +60133690022,418119,0.12258064516129 +60133690022,418599,0.190322580645161 +60133690023,413145,0.11214953271028 +60133690023,417070,0.264797507788162 +60133690023,423783,0.149532710280374 +60133690023,424294,0.230529595015576 +60133690023,425354,0.0996884735202492 +60133690023,426368,0 +60133690023,426520,0.143302180685358 +60133700001,412262,0.0411985018726592 +60133700001,413677,0.0730337078651685 +60133700001,413678,0.0468164794007491 +60133700001,413681,0.0468164794007491 +60133700001,417071,0.048689138576779 +60133700001,417073,0.0711610486891386 +60133700001,417147,0.0187265917602996 +60133700001,417580,0.168539325842697 +60133700001,418725,0.0917602996254682 +60133700001,418726,0.00936329588014981 +60133700001,418951,0.0393258426966292 +60133700001,422211,0.101123595505618 +60133700001,422214,0.0861423220973783 +60133700001,422645,0.0468164794007491 +60133700001,426681,0.0187265917602996 +60133700001,426848,0.0917602996254682 +60133700002,411042,0.13448275862069 +60133700002,411610,0.168965517241379 +60133700002,412261,0.155172413793103 +60133700002,414502,0.0379310344827586 +60133700002,416241,0.175862068965517 +60133700002,416781,0.196551724137931 +60133700002,425524,0.131034482758621 +60133700003,411050,0.0271186440677966 +60133700003,411054,0.122033898305085 +60133700003,414496,0.149152542372881 +60133700003,414497,0.0847457627118644 +60133700003,415320,0.00677966101694915 +60133700003,417818,0.023728813559322 +60133700003,417819,0.210169491525424 +60133700003,420378,0.0847457627118644 +60133700003,421555,0.108474576271186 +60133700003,421556,0.128813559322034 +60133700003,425542,0.0542372881355932 +60133710001,412257,0.154639175257732 +60133710001,413675,0.154639175257732 +60133710001,416523,0.0756013745704467 +60133710001,418723,0.109965635738832 +60133710001,422207,0.18213058419244 +60133710001,422208,0.123711340206186 +60133710001,424297,0.109965635738832 +60133710001,424909,0.0893470790378007 +60133710002,416236,0.105263157894737 +60133710002,422209,0.161943319838057 +60133710002,424299,0.194331983805668 +60133710002,424301,0.17004048582996 +60133710002,424304,0.214574898785425 +60133710002,426677,0.153846153846154 +60133710003,412259,0 +60133710003,415176,0.0749279538904899 +60133710003,416525,0.0518731988472622 +60133710003,416526,0.198847262247839 +60133710003,416527,0.184438040345821 +60133710003,424303,0.0951008645533141 +60133710003,425352,0.195965417867435 +60133710003,426675,0.198847262247839 +60133710004,411047,0.134986225895317 +60133710004,411048,0.046831955922865 +60133710004,415313,0.15702479338843 +60133710004,417072,0.132231404958678 +60133710004,419947,0.129476584022039 +60133710004,419950,0.0743801652892562 +60133710004,423607,0.0413223140495868 +60133710004,425537,0.0330578512396694 +60133710004,425538,0.0798898071625344 +60133710004,427705,0.170798898071625 +60133710005,410485,0.0877742946708464 +60133710005,411722,0.0344827586206897 +60133710005,412583,0.156739811912226 +60133710005,413944,0.147335423197492 +60133710005,413945,0.216300940438871 +60133710005,417312,0.191222570532915 +60133710005,419945,0.166144200626959 +60133710006,412579,0.0575079872204473 +60133710006,412580,0.271565495207668 +60133710006,425349,0.271565495207668 +60133710006,425350,0.0990415335463259 +60133710006,426212,0.146964856230032 +60133710006,426213,0.0351437699680511 +60133710006,426216,0.118210862619808 +60133720001,412571,0.225165562913907 +60133720001,415448,0.301324503311258 +60133720001,425903,0.473509933774834 +60133720002,410616,0.0606060606060606 +60133720002,411158,0.245179063360882 +60133720002,412014,0.0661157024793388 +60133720002,412573,0.146005509641873 +60133720002,415167,0.0633608815426997 +60133720002,415995,0.18732782369146 +60133720002,415997,0.112947658402204 +60133720002,416520,0.118457300275482 +60133720003,412574,0.227414330218069 +60133720003,415170,0.0623052959501558 +60133720003,415171,0.165109034267913 +60133720003,415174,0.0623052959501558 +60133720003,416521,0.149532710280374 +60133720003,423781,0.109034267912773 +60133720003,425348,0.224299065420561 +60133720004,412565,0.207119741100324 +60133720004,416514,0.155339805825243 +60133720004,416515,0.155339805825243 +60133720004,416516,0.16504854368932 +60133720004,426045,0.15210355987055 +60133720004,426050,0.16504854368932 +60133720005,412013,0.146788990825688 +60133720005,414086,0.0428134556574924 +60133720005,414088,0.192660550458716 +60133720005,419293,0.232415902140673 +60133720005,420969,0.0795107033639144 +60133720005,421772,0.0764525993883792 +60133720005,424491,0.0917431192660551 +60133720005,425763,0.137614678899083 +60133720006,410918,0.0633245382585752 +60133720006,414084,0.0949868073878628 +60133720006,414085,0.0844327176781003 +60133720006,414646,0.134564643799472 +60133720006,423293,0.102902374670185 +60133720006,423295,0.182058047493404 +60133720006,424486,0.0712401055408971 +60133720006,424487,0.134564643799472 +60133720006,424488,0.0633245382585752 +60133720006,428214,0.0686015831134565 +60133720007,410069,0.13469387755102 +60133720007,410598,0.146938775510204 +60133720007,414073,0.138775510204082 +60133720007,424018,0.216326530612245 +60133720007,424020,0.363265306122449 +60133730001,410604,0.102325581395349 +60133730001,410605,0.106976744186047 +60133730001,410607,0.106976744186047 +60133730001,410610,0.116279069767442 +60133730001,414080,0.118604651162791 +60133730001,415453,0.102325581395349 +60133730001,422833,0.127906976744186 +60133730001,428210,0.130232558139535 +60133730001,428212,0.0883720930232558 +60133730002,410060,0.138613861386139 +60133730002,410600,0.148514851485149 +60133730002,410601,0.204620462046205 +60133730002,410603,0.178217821782178 +60133730002,410899,0.122112211221122 +60133730002,422828,0.207920792079208 +60133730003,410052,0.274932614555256 +60133730003,410059,0.207547169811321 +60133730003,414937,0.148247978436658 +60133730003,414940,0.078167115902965 +60133730003,415575,0.0646900269541779 +60133730003,417324,0.00808625336927224 +60133730003,420561,0.078167115902965 +60133730003,423481,0.140161725067385 +60133740001,411168,0.0745192307692308 +60133740001,412569,0.177884615384615 +60133740001,412576,0.122596153846154 +60133740001,416517,0.110576923076923 +60133740001,424902,0.0697115384615385 +60133740001,424904,0.245192307692308 +60133740001,426049,0.199519230769231 +60133740002,411169,0.103286384976526 +60133740002,412568,0.152582159624413 +60133740002,419940,0.0985915492957746 +60133740002,421675,0.126760563380282 +60133740002,423598,0.068075117370892 +60133740002,423599,0.13849765258216 +60133740002,425534,0.161971830985915 +60133740002,427696,0.0704225352112676 +60133740002,427698,0.07981220657277 +60133740003,411454,0.0835380835380835 +60133740003,411458,0.0737100737100737 +60133740003,411459,0 +60133740003,413931,0 +60133740003,418611,0.0442260442260442 +60133740003,420975,0 +60133740003,421775,0.0958230958230958 +60133740003,423137,0.383292383292383 +60133740003,423300,0.14004914004914 +60133740003,425107,0 +60133740003,425765,0.0909090909090909 +60133740003,426048,0.0614250614250614 +60133740003,427364,0.027027027027027 +60133740004,411167,0.0799136069114471 +60133740004,411453,0.0583153347732181 +60133740004,411455,0.0539956803455724 +60133740004,411457,0.0583153347732181 +60133740004,420970,0.0799136069114471 +60133740004,420973,0.0842332613390929 +60133740004,423298,0.0583153347732181 +60133740004,423299,0.125269978401728 +60133740004,423777,0.166306695464363 +60133740004,424493,0.08207343412527 +60133740004,425764,0.0842332613390929 +60133740004,428217,0.0691144708423326 +60133750001,410609,0.18141592920354 +60133750001,410611,0.0663716814159292 +60133750001,410917,0.0907079646017699 +60133750001,410919,0.084070796460177 +60133750001,415454,0.18141592920354 +60133750001,415456,0.0973451327433628 +60133750001,415458,0.11283185840708 +60133750001,418589,0.154867256637168 +60133750001,423294,0.0309734513274336 +60133750002,410613,0.0580808080808081 +60133750002,413379,0.00505050505050505 +60133750002,414089,0.0808080808080808 +60133750002,414090,0.118686868686869 +60133750002,414789,0.0984848484848485 +60133750002,415457,0.108585858585859 +60133750002,420964,0.113636363636364 +60133750002,420965,0.101010101010101 +60133750002,420966,0.138888888888889 +60133750002,420972,0.0378787878787879 +60133750002,423292,0.138888888888889 +60133750003,410061,0.151162790697674 +60133750003,410898,0.329457364341085 +60133750003,410916,0.228682170542636 +60133750003,414945,0.290697674418605 +60133760001,410057,0.0639386189258312 +60133760001,410058,0.0869565217391304 +60133760001,410341,0.0690537084398977 +60133760001,414933,0.117647058823529 +60133760001,420156,0.127877237851662 +60133760001,420376,0.296675191815857 +60133760001,422635,0.061381074168798 +60133760001,423474,0.0869565217391304 +60133760001,427844,0.0895140664961637 +60133760002,410055,0.0219594594594595 +60133760002,410208,0.0489864864864865 +60133760002,410340,0.0506756756756757 +60133760002,410343,0.0540540540540541 +60133760002,413527,0.0929054054054054 +60133760002,414934,0.097972972972973 +60133760002,415721,0.0557432432432432 +60133760002,416075,0.123310810810811 +60133760002,416395,0.027027027027027 +60133760002,418843,0 +60133760002,420559,0.0574324324324324 +60133760002,420560,0.0388513513513514 +60133760002,420829,0.0337837837837838 +60133760002,423475,0.097972972972973 +60133760002,423478,0.118243243243243 +60133760002,426054,0.0405405405405405 +60133760002,427843,0.0405405405405405 +60133760003,410621,0 +60133760003,410897,0.0772946859903382 +60133760003,412991,0.070048309178744 +60133760003,414944,0.113526570048309 +60133760003,416076,0.466183574879227 +60133760003,424040,0.0676328502415459 +60133760003,425783,0.205314009661836 +60133760004,410896,0.0591259640102828 +60133760004,410931,0.089974293059126 +60133760004,418595,0.149100257069409 +60133760004,418818,0.336760925449871 +60133760004,420562,0 +60133760004,422820,0.275064267352185 +60133760004,427848,0.089974293059126 +60133770001,413373,0.0988023952095808 +60133770001,413374,0.137724550898204 +60133770001,414794,0.311377245508982 +60133770001,419467,0.146706586826347 +60133770001,427355,0.149700598802395 +60133770001,427356,0.0958083832335329 +60133770001,427358,0.0598802395209581 +60133770002,414791,0.20327868852459 +60133770002,414792,0.173770491803279 +60133770002,418962,0.252459016393443 +60133770002,419464,0.144262295081967 +60133770002,419465,0.114754098360656 +60133770002,423119,0.111475409836066 +60133770003,412404,0.336996336996337 +60133770003,414247,0 +60133770003,416786,0.010989010989011 +60133770003,416787,0.128205128205128 +60133770003,418959,0.131868131868132 +60133770003,422660,0 +60133770003,425090,0.164835164835165 +60133770003,427175,0.0805860805860806 +60133770003,427177,0.146520146520147 +60133770004,412819,0.111324376199616 +60133770004,412820,0.0211132437619962 +60133770004,414241,0.113243761996161 +60133770004,414244,0.072936660268714 +60133770004,416783,0.0978886756238004 +60133770004,416784,0.0767754318618042 +60133770004,418952,0.0499040307101727 +60133770004,418953,0.0441458733205374 +60133770004,418954,0.0460652591170825 +60133770004,419306,0.00191938579654511 +60133770004,419728,0.0940499040307102 +60133770004,422657,0.0652591170825336 +60133770004,424716,0.053742802303263 +60133770004,427010,0.053742802303263 +60133770004,427011,0.0268714011516315 +60133770004,427013,0.0710172744721689 +60133770005,412587,0.636492220650636 +60133770005,416935,0.234794908062235 +60133770005,422845,0.128712871287129 +60133780001,0,0 +60133780001,410079,0 +60133780001,410082,0 +60133780001,410207,0.0439952437574316 +60133780001,410497,0.0677764565992866 +60133780001,410620,0 +60133780001,410623,0 +60133780001,410937,0 +60133780001,411473,0.074910820451843 +60133780001,411633,0 +60133780001,412272,0.0214030915576694 +60133780001,412414,0 +60133780001,412585,0 +60133780001,412992,0 +60133780001,413544,0 +60133780001,415478,0 +60133780001,415568,0.0737217598097503 +60133780001,415719,0 +60133780001,416005,0 +60133780001,416089,0.0713436385255648 +60133780001,416933,0.0392390011890606 +60133780001,418631,0 +60133780001,419309,0.111771700356718 +60133780001,420373,0.0927467300832342 +60133780001,421252,0.0951248513674197 +60133780001,422818,0 +60133780001,423471,0 +60133780001,424097,0.0249702734839477 +60133780001,424290,0.124851367419738 +60133780001,425368,0.0808561236623068 +60133780001,425776,0.0701545778834721 +60133780001,427351,0.00713436385255648 +60133780001,427352,0 +60133780002,0,0 +60133780002,410626,0 +60133780002,410627,0 +60133780002,410770,0 +60133780002,410771,0.399579390115668 +60133780002,411487,0 +60133780002,411749,0 +60133780002,411875,0.092534174553102 +60133780002,412172,0 +60133780002,412596,0.0715036803364879 +60133780002,412824,0 +60133780002,413552,0 +60133780002,415570,0.168243953732913 +60133780002,416923,0.010515247108307 +60133780002,417808,0.0420609884332282 +60133780002,417809,0.0389064143007361 +60133780002,418104,0 +60133780002,419322,0 +60133780002,422392,0.103049421661409 +60133780002,422843,0 +60133780002,426665,0.0736067297581493 +60133790001,410482,0.252475247524752 +60133790001,413934,0.051980198019802 +60133790001,414804,0.116336633663366 +60133790001,415305,0.111386138613861 +60133790001,415831,0.0965346534653465 +60133790001,417299,0.0915841584158416 +60133790001,419932,0.116336633663366 +60133790001,419933,0.0915841584158416 +60133790001,427366,0.0717821782178218 +60133790002,413378,0.105670103092784 +60133790002,414797,0.152061855670103 +60133790002,414799,0.0721649484536082 +60133790002,418610,0.123711340206186 +60133790002,419472,0.185567010309278 +60133790002,425100,0.0438144329896907 +60133790002,425105,0.121134020618557 +60133790002,427365,0.195876288659794 +60133790003,410498,0.0225733634311512 +60133790003,413365,0.054176072234763 +60133790003,413376,0.0564334085778781 +60133790003,413377,0.167042889390519 +60133790003,413397,0.0338600451467269 +60133790003,419468,0.0767494356659142 +60133790003,419470,0.0496613995485327 +60133790003,419471,0.0790067720090293 +60133790003,421672,0.297968397291196 +60133790003,423130,0.103837471783296 +60133790003,424126,0.0586907449209932 +60133790004,412178,0.0465549348230912 +60133790004,412825,0.0782122905027933 +60133790004,412827,0.0446927374301676 +60133790004,412830,0.0614525139664804 +60133790004,416789,0.0819366852886406 +60133790004,417956,0.251396648044693 +60133790004,418957,0.0335195530726257 +60133790004,418958,0.102420856610801 +60133790004,418960,0.0223463687150838 +60133790004,418961,0.126629422718808 +60133790004,422217,0 +60133790004,423010,0.031657355679702 +60133790004,424717,0.119180633147114 +60133800001,0,0 +60133800001,410633,0.231585150265174 +60133800001,410634,0.0966411314083677 +60133800001,411177,0.452563347083088 +60133800001,411178,0 +60133800001,424913,0.219210371243371 +60133800002,0,0 +60133800002,410469,0.500998003992016 +60133800002,410470,0 +60133800002,410490,0.093812375249501 +60133800002,411044,0 +60133800002,411066,0.0918163672654691 +60133800002,413279,0 +60133800002,413935,0 +60133800002,413939,0 +60133800002,413951,0.0139720558882236 +60133800002,415552,0.00598802395209581 +60133800002,417081,0 +60133800002,417307,0.165668662674651 +60133800002,417308,0.063872255489022 +60133800002,423146,0 +60133800002,424288,0.00998003992015968 +60133800002,427529,0.0538922155688623 +60133800003,410479,0 +60133800003,411035,0.132352941176471 +60133800003,411481,0.0147058823529412 +60133800003,411482,0.0612745098039216 +60133800003,411883,0.0122549019607843 +60133800003,413936,0.00980392156862745 +60133800003,414787,0 +60133800003,415307,0.00980392156862745 +60133800003,415308,0.0588235294117647 +60133800003,417302,0.0686274509803922 +60133800003,417664,0 +60133800003,417665,0 +60133800003,417951,0.00490196078431373 +60133800003,418608,0.0637254901960784 +60133800003,419462,0.0122549019607843 +60133800003,422378,0.176470588235294 +60133800003,422379,0 +60133800003,423008,0 +60133800003,423122,0 +60133800003,423131,0.100490196078431 +60133800003,423135,0.259803921568627 +60133800003,423143,0 +60133800003,423594,0 +60133800003,425097,0.00245098039215686 +60133800003,426845,0.0122549019607843 +60133800003,427184,0 +60133810001,410487,0.100467289719626 +60133810001,410489,0.116822429906542 +60133810001,411470,0.0467289719626168 +60133810001,412405,0 +60133810001,417303,0 +60133810001,417313,0.0116822429906542 +60133810001,417812,0.179906542056075 +60133810001,417813,0.0677570093457944 +60133810001,417820,0.100467289719626 +60133810001,419946,0.0537383177570093 +60133810001,419948,0.0373831775700935 +60133810001,423139,0 +60133810001,424699,0 +60133810001,425543,0.135514018691589 +60133810001,428201,0.149532710280374 +60133810002,411053,0.106888361045131 +60133810002,413278,0.0190023752969121 +60133810002,415315,0.201900237529691 +60133810002,415321,0.102137767220903 +60133810002,417815,0.102137767220903 +60133810002,425547,0.121140142517815 +60133810002,427702,0.0736342042755344 +60133810002,427703,0.118764845605701 +60133810002,427853,0.154394299287411 +60133810003,410477,0.172477064220183 +60133810003,410488,0.143119266055046 +60133810003,413947,0.106422018348624 +60133810003,415303,0.0422018348623853 +60133810003,415311,0.0422018348623853 +60133810003,415314,0.0605504587155963 +60133810003,417304,0.28256880733945 +60133810003,417310,0.0587155963302752 +60133810003,419943,0.0917431192660551 +60133810004,414801,0.113636363636364 +60133810004,415304,0.0492424242424242 +60133810004,417311,0.0454545454545455 +60133810004,422636,0.0909090909090909 +60133810004,423138,0.185606060606061 +60133810004,423590,0.159090909090909 +60133810004,423597,0.0871212121212121 +60133810004,425552,0.268939393939394 +60133810005,413932,0.197802197802198 +60133810005,414800,0.00366300366300366 +60133810005,419292,0.113553113553114 +60133810005,419463,0.0769230769230769 +60133810005,419466,0.172161172161172 +60133810005,419475,0 +60133810005,422091,0.26007326007326 +60133810005,425106,0.0805860805860806 +60133810005,425530,0.0952380952380952 +60133820001,414507,0.318181818181818 +60133820001,414509,0.318181818181818 +60133820001,414510,0.0769230769230769 +60133820001,422541,0.0874125874125874 +60133820001,424114,0.199300699300699 +60133820002,410492,0.203084832904884 +60133820002,410493,0.451156812339332 +60133820002,413943,0.096401028277635 +60133820002,414494,0.0424164524421594 +60133820002,415850,0.06426735218509 +60133820002,416080,0.0565552699228792 +60133820002,424701,0.0861182519280206 +60133820003,411036,0.245140388768898 +60133820003,411057,0.0885529157667387 +60133820003,411069,0.072354211663067 +60133820003,412407,0.131749460043197 +60133820003,414508,0.145788336933045 +60133820003,415842,0.0853131749460043 +60133820003,415849,0.0475161987041037 +60133820003,416616,0.0572354211663067 +60133820003,422410,0.0496760259179266 +60133820003,427864,0.0766738660907128 +60133820004,417171,0 +60133820004,419745,0.392014519056261 +60133820004,420165,0.332123411978221 +60133820004,420385,0.139745916515427 +60133820004,421956,0.0399274047186933 +60133820004,424119,0.0453720508166969 +60133820004,425085,0 +60133820004,425541,0.0508166969147005 +60133830001,410778,0.152857142857143 +60133830001,410779,0.0614285714285714 +60133830001,417443,0.0385714285714286 +60133830001,417444,0.0728571428571429 +60133830001,419732,0.135714285714286 +60133830001,419733,0.0928571428571429 +60133830001,419734,0.0971428571428571 +60133830001,421687,0.212857142857143 +60133830001,423311,0.0785714285714286 +60133830001,423312,0.0571428571428571 +60133830002,410783,0.0683012259194396 +60133830002,411332,0.0980735551663748 +60133830002,413285,0.0753064798598949 +60133830002,413286,0.0735551663747811 +60133830002,417170,0.0823117338003503 +60133830002,417445,0.0788091068301226 +60133830002,417675,0.0297723292469352 +60133830002,420167,0.103327495621716 +60133830002,420170,0.110332749562172 +60133830002,420581,0.0805604203152364 +60133830002,422551,0.0490367775831874 +60133830002,426064,0.0945709281961471 +60133830002,426523,0.0560420315236427 +60133830003,411329,0.0642954856361149 +60133830003,411885,0.0629274965800274 +60133830003,417172,0.0232558139534884 +60133830003,417173,0.0656634746922025 +60133830003,417677,0.0683994528043776 +60133830003,417977,0.0902872777017784 +60133830003,418463,0.0341997264021888 +60133830003,420166,0.0861833105335157 +60133830003,420580,0.138166894664843 +60133830003,422553,0.0601915184678523 +60133830003,422554,0.0451436388508892 +60133830003,422557,0.0807113543091655 +60133830003,423327,0.079343365253078 +60133830003,423328,0.0807113543091655 +60133830003,426526,0.0205198358413133 +60133840001,410217,0.0663390663390663 +60133840001,411627,0 +60133840001,415180,0.0368550368550369 +60133840001,416093,0.245700245700246 +60133840001,416096,0.137592137592138 +60133840001,421151,0.16953316953317 +60133840001,425896,0.162162162162162 +60133840001,425908,0.0761670761670762 +60133840001,425909,0.105651105651106 +60133840002,410213,0.189526184538653 +60133840002,411477,0.0673316708229426 +60133840002,412166,0.0199501246882793 +60133840002,414505,0.0897755610972569 +60133840002,416087,0.107231920199501 +60133840002,416092,0.169576059850374 +60133840002,417824,0.117206982543641 +60133840002,421959,0.0623441396508728 +60133840002,427857,0.117206982543641 +60133840002,427859,0.0598503740648379 +60133840003,411611,0.0120481927710843 +60133840003,415846,0.0923694779116466 +60133840003,416928,0.160642570281124 +60133840003,420380,0.0863453815261044 +60133840003,421260,0.0963855421686747 +60133840003,424108,0.152610441767068 +60133840003,425779,0.162650602409639 +60133840003,425907,0.124497991967871 +60133840003,427856,0.112449799196787 +60133840004,411304,0.20327868852459 +60133840004,411620,0.127868852459016 +60133840004,411626,0.0721311475409836 +60133840004,414503,0.19344262295082 +60133840004,416384,0.236065573770492 +60133840004,416782,0.167213114754098 +60133851001,413555,0.107238605898123 +60133851001,416099,0.0509383378016086 +60133851001,416377,0.046916890080429 +60133851001,416642,0.0509383378016086 +60133851001,419294,0.219839142091153 +60133851001,419738,0.335120643431635 +60133851001,422104,0.130026809651475 +60133851001,424503,0.049597855227882 +60133851001,426844,0.00938337801608579 +60133851002,412588,0.015 +60133851002,413952,0.0725 +60133851002,418118,0.1225 +60133851002,421666,0.67 +60133851002,426070,0.03 +60133851002,427715,0.09 +60133852001,410216,0.116279069767442 +60133852001,410219,0.119601328903654 +60133852001,421263,0.182724252491694 +60133852001,422539,0.581395348837209 +60133852002,410768,0.377358490566038 +60133852002,416098,0.139622641509434 +60133852002,417825,0.132075471698113 +60133852002,421241,0.350943396226415 +60133860001,410221,0.172506738544474 +60133860001,412154,0 +60133860001,413818,0.134770889487871 +60133860001,414511,0.0215633423180593 +60133860001,417316,0.00808625336927224 +60133860001,418980,0.0539083557951483 +60133860001,419319,0.274932614555256 +60133860001,425544,0 +60133860001,427858,0.334231805929919 +60133860002,411056,0 +60133860002,416088,0.133047210300429 +60133860002,416103,0.124463519313305 +60133860002,416536,0.201716738197425 +60133860002,417301,0.373390557939914 +60133860002,423587,0.167381974248927 +60133860003,410769,0.305755395683453 +60133860003,410776,0.172661870503597 +60133860003,412837,0.276978417266187 +60133860003,425915,0.244604316546763 +60133860004,412169,0.0861423220973783 +60133860004,412171,0.368913857677903 +60133860004,413558,0.436329588014981 +60133860004,416101,0.0149812734082397 +60133860004,416102,0.0168539325842697 +60133860004,426060,0.0767790262172285 +60133870001,410781,0.0727762803234501 +60133870001,412727,0.0808625336927224 +60133870001,412730,0.078167115902965 +60133870001,412732,0.0754716981132075 +60133870001,412733,0.078167115902965 +60133870001,412734,0.102425876010782 +60133870001,416636,0.0700808625336927 +60133870001,417446,0.0592991913746631 +60133870001,419737,0.0754716981132075 +60133870001,421663,0 +60133870001,421688,0.078167115902965 +60133870001,425514,0.102425876010782 +60133870001,426062,0.126684636118598 +60133870002,416641,0.0974729241877256 +60133870002,423316,0.234657039711191 +60133870002,425365,0.176895306859206 +60133870002,425525,0.292418772563177 +60133870002,426063,0.101083032490975 +60133870002,426065,0.0974729241877256 +60133870003,416376,0.0494845360824742 +60133870003,416640,0.0556701030927835 +60133870003,417442,0.228865979381443 +60133870003,419736,0.088659793814433 +60133870003,419739,0.115463917525773 +60133870003,421242,0.11340206185567 +60133870003,423313,0.243298969072165 +60133870003,423314,0.0371134020618557 +60133870003,426066,0.0680412371134021 +60133880001,410784,0.0687160940325497 +60133880001,412736,0.0578661844484629 +60133880001,417450,0.0976491862567812 +60133880001,418823,0.0723327305605787 +60133880001,420171,0.122965641952984 +60133880001,420172,0.0560578661844485 +60133880001,420578,0.124773960216998 +60133880001,423315,0.0560578661844485 +60133880001,423317,0.122965641952984 +60133880001,423318,0.0614828209764919 +60133880001,426067,0.0958408679927667 +60133880001,426525,0.0632911392405063 +60133880002,411889,0.0611205432937182 +60133880002,411890,0.0814940577249576 +60133880002,417681,0.0899830220713073 +60133880002,417682,0.0611205432937182 +60133880002,417683,0.0458404074702886 +60133880002,418324,0.0696095076400679 +60133880002,418458,0.0509337860780985 +60133880002,418464,0.0780984719864177 +60133880002,418468,0.0526315789473684 +60133880002,418469,0.0967741935483871 +60133880002,420584,0.0594227504244482 +60133880002,420585,0.0645161290322581 +60133880002,422555,0.0441426146010187 +60133880002,422556,0.033955857385399 +60133880002,425526,0.0203735144312394 +60133880002,426532,0.0899830220713073 +60133891001,411892,0.0453563714902808 +60133891001,412966,0.0712742980561555 +60133891001,413831,0.0647948164146868 +60133891001,413852,0.0583153347732181 +60133891001,414402,0.203023758099352 +60133891001,414403,0.142548596112311 +60133891001,417685,0.0842332613390929 +60133891001,418470,0.0712742980561555 +60133891001,426533,0.0755939524838013 +60133891001,426534,0.183585313174946 +60133891002,413832,0.357843137254902 +60133891002,413849,0.115196078431373 +60133891002,414093,0 +60133891002,419723,0.186274509803922 +60133891002,419725,0.107843137254902 +60133891002,420588,0.0294117647058824 +60133891002,422538,0.0906862745098039 +60133891002,427354,0.112745098039216 +60133891002,427515,0 +60133892001,411886,0.293051359516616 +60133892001,413845,0.338368580060423 +60133892001,420583,0.196374622356495 +60133892001,423797,0.172205438066465 +60133892002,411887,0.0863636363636364 +60133892002,417680,0.0863636363636364 +60133892002,418457,0.138636363636364 +60133892002,418465,0.0840909090909091 +60133892002,419721,0 +60133892002,420582,0.0818181818181818 +60133892002,421540,0.172727272727273 +60133892002,423028,0.125 +60133892002,423798,0.113636363636364 +60133892002,426530,0.111363636363636 +60133901001,411319,0.174342105263158 +60133901001,414389,0.0953947368421053 +60133901001,421665,0.351973684210526 +60133901001,422373,0.207236842105263 +60133901001,425517,0.171052631578947 +60133901002,413830,0.192982456140351 +60133901002,413851,0.154970760233918 +60133901002,418188,0.125730994152047 +60133901002,420586,0.0789473684210526 +60133901002,422371,0.210526315789474 +60133901002,426069,0.152046783625731 +60133901002,426228,0.0847953216374269 +60133901003,411318,0.154121863799283 +60133901003,413276,0.121863799283154 +60133901003,416614,0.111111111111111 +60133901003,419743,0.132616487455197 +60133901003,422106,0.146953405017921 +60133901003,422107,0.14336917562724 +60133901003,422108,0.118279569892473 +60133901003,423319,0.0716845878136201 +60133902001,410330,0.0783410138248848 +60133902001,412967,0.0576036866359447 +60133902001,414385,0.182027649769585 +60133902001,414393,0.122119815668203 +60133902001,418190,0.0714285714285714 +60133902001,418193,0.110599078341014 +60133902001,419726,0.0898617511520737 +60133902001,420140,0.0645161290322581 +60133902001,422374,0.115207373271889 +60133902001,427692,0.108294930875576 +60133902002,413143,0.0887573964497041 +60133902002,413144,0.165680473372781 +60133902002,414392,0.112426035502959 +60133902002,418459,0.183431952662722 +60133902002,418460,0.118343195266272 +60133902002,418461,0.118343195266272 +60133902002,421993,0.130177514792899 +60133902002,422372,0.0828402366863905 +60133910001,410331,0.143624161073826 +60133910001,410513,0.189261744966443 +60133910001,411034,0.122147651006711 +60133910001,414092,0.209395973154362 +60133910001,414394,0.138255033557047 +60133910001,414395,0.124832214765101 +60133910001,427693,0.0724832214765101 +60133910002,410327,0.129793510324484 +60133910002,412972,0.15929203539823 +60133910002,416379,0.221238938053097 +60133910002,418325,0.132743362831858 +60133910002,425898,0.20353982300885 +60133910002,427688,0.153392330383481 +60133920001,410328,0.302771855010661 +60133920001,413531,0.121535181236674 +60133920001,414390,0.125799573560768 +60133920001,420150,0.0874200426439232 +60133920001,420563,0.0852878464818763 +60133920001,425518,0.130063965884861 +60133920001,425520,0.147121535181237 +60133920002,0,0 +60133920002,413530,0.140625 +60133920002,414391,0.134375 +60133920002,420149,0.16875 +60133920002,423486,0.1875 +60133920002,423487,0.075 +60133920002,425372,0.2375 +60133920002,426035,0.05625 +60133920003,413561,0.25938566552901 +60133920003,416615,0.170648464163823 +60133920003,418326,0.283276450511945 +60133920003,420151,0.184300341296928 +60133920003,427694,0.102389078498294 +60133922001,410772,0.12280701754386 +60133922001,410773,0.0614035087719298 +60133922001,412179,0.0548245614035088 +60133922001,412723,0.0855263157894737 +60133922001,412726,0.087719298245614 +60133922001,416634,0.0723684210526316 +60133922001,417441,0.107456140350877 +60133922001,421670,0.0482456140350877 +60133922001,421681,0.0942982456140351 +60133922001,422848,0.0745614035087719 +60133922001,422849,0.125 +60133922001,426055,0.0657894736842105 +60133922002,0,0 +60133922002,410351,0 +60133922002,410356,0 +60133922002,411067,0.000618429189857761 +60133922002,411188,0 +60133922002,411327,0.0197897340754484 +60133922002,412270,0 +60133922002,412429,0.095856524427953 +60133922002,412433,0 +60133922002,413836,0.0395794681508967 +60133922002,413837,0.0241187384044527 +60133922002,414512,0.0531849103277675 +60133922002,414812,0 +60133922002,416264,0.191094619666048 +60133922002,416542,0 +60133922002,416930,0.0587507730364873 +60133922002,417973,0.0358688930117502 +60133922002,418205,0 +60133922002,419730,0.0395794681508967 +60133922002,420998,0 +60133922002,423325,0.0173160173160173 +60133922002,423495,0 +60133922002,424511,0.307359307359307 +60133922002,424552,0.0500927643784787 +60133922002,424693,0.00371057513914657 +60133922002,426205,0 +60133922002,426380,0.0204081632653061 +60133922002,426688,0.000618429189857761 +60133922002,426840,0 +60133922002,427019,0 +60133922002,427875,0 +60133922002,428225,0.0420531849103278 +60133922003,0,0 +60133922003,411160,0.047438330170778 +60133922003,412017,0.0834914611005693 +60133922003,412018,0.0569259962049336 +60133922003,412597,0.299810246679317 +60133922003,413271,0.0891840607210626 +60133922003,414649,0.0740037950664137 +60133922003,420807,0.10246679316888 +60133922003,423774,0.0645161290322581 +60133922003,424897,0.182163187855787 +60133922004,412724,0.0959821428571429 +60133922004,415864,0 +60133922004,415992,0.189732142857143 +60133922004,416635,0.475446428571429 +60133922004,421543,0.236607142857143 +60133922004,423614,0.00223214285714286 +60133922004,425527,0 +60133923001,0,0 +60133923001,410505,0.52300785634119 +60133923001,417063,0.0561167227833895 +60133923001,418976,0.104377104377104 +60133923001,421783,0 +60133923001,421996,0.10662177328844 +60133923001,424292,0.209876543209877 +60133923001,424916,0 +60139900000,0,0 +60411011001,0,0 +60411011001,810742,0 +60411011001,810999,0.128083491461101 +60411011001,811049,0.00664136622390892 +60411011001,811104,0.0512333965844402 +60411011001,811160,0 +60411011001,811432,0.159392789373814 +60411011001,811438,0.0806451612903226 +60411011001,811516,0.120493358633776 +60411011001,811529,0 +60411011001,812122,0.055977229601518 +60411011001,812161,0 +60411011001,812858,0.123339658444023 +60411011001,813952,0.14326375711575 +60411011001,814343,0.130929791271347 +60411012001,0,0 +60411012001,810078,0 +60411012001,810194,0.318982387475538 +60411012001,811020,0.0469667318982387 +60411012001,811156,0.0283757338551859 +60411012001,811307,0.103718199608611 +60411012001,811336,0.0792563600782779 +60411012001,811527,0.0244618395303327 +60411012001,813515,0 +60411012001,813592,0 +60411012001,813721,0.206457925636008 +60411012001,813925,0.11839530332681 +60411012001,813926,0 +60411012001,813927,0.0264187866927593 +60411012001,814064,0.0469667318982387 +60411021001,810868,0.278846153846154 +60411021001,811222,0.471153846153846 +60411021001,811687,0.25 +60411021002,810356,0.0598705501618123 +60411021002,810366,0.098705501618123 +60411021002,810450,0 +60411021002,811522,0.584142394822006 +60411021002,813388,0.257281553398058 +60411021002,813514,0 +60411022021,811224,0.824324324324324 +60411022021,811710,0.0990990990990991 +60411022021,813733,0.0765765765765766 +60411022022,810071,0.478947368421053 +60411022022,810867,0.147368421052632 +60411022022,813185,0.373684210526316 +60411022023,810426,0.143511450381679 +60411022023,811694,0.099236641221374 +60411022023,813603,0.438167938931298 +60411022023,813728,0.319083969465649 +60411022024,811454,0.231671554252199 +60411022024,811888,0.158357771260997 +60411022024,814063,0.609970674486804 +60411022025,810367,0.245009074410163 +60411022025,810981,0.344827586206897 +60411022025,811165,0.201451905626134 +60411022025,813318,0.127041742286751 +60411022025,813387,0.0816696914700545 +60411022031,810073,0 +60411022031,810074,0.00589101620029455 +60411022031,810871,0.0780559646539028 +60411022031,810875,0.0500736377025037 +60411022031,810876,0.00589101620029455 +60411022031,810879,0.00294550810014728 +60411022031,811229,0.0368188512518409 +60411022031,811230,0.110456553755523 +60411022031,812116,0 +60411022031,812119,0.0147275405007364 +60411022031,813389,0 +60411022031,813588,0.0913107511045655 +60411022031,813719,0.238586156111929 +60411022031,813722,0.0618556701030928 +60411022031,813730,0.0412371134020619 +60411022031,813734,0.0662739322533137 +60411022031,813736,0.069219440353461 +60411022031,814053,0.00441826215022091 +60411022031,814240,0.0220913107511046 +60411022031,814452,0.0574374079528719 +60411022031,814454,0.0427098674521355 +60411022031,814458,0 +60411022032,810075,0.13365539452496 +60411022032,810882,0.128824476650564 +60411022032,810888,0.244766505636071 +60411022032,811235,0 +60411022032,811507,0.119162640901771 +60411022032,812114,0.00483091787439614 +60411022032,812117,0 +60411022032,812120,0 +60411022032,813523,0.07085346215781 +60411022032,813589,0.103059581320451 +60411022032,813604,0 +60411022032,813726,0.00322061191626409 +60411022032,813737,0.0144927536231884 +60411022032,814049,0.177133655394525 +60411022033,811408,0.929373996789727 +60411022033,813940,0.0706260032102729 +60411031001,810754,0.0458115183246073 +60411031001,810884,0.0667539267015707 +60411031001,810979,0.0458115183246073 +60411031001,811017,0.0366492146596859 +60411031001,811051,0.0706806282722513 +60411031001,811304,0.0929319371727749 +60411031001,811305,0.0104712041884817 +60411031001,811922,0.0418848167539267 +60411031001,812123,0.159685863874346 +60411031001,813181,0.0589005235602094 +60411031001,813182,0.0549738219895288 +60411031001,813390,0.0863874345549738 +60411031001,813517,0.12303664921466 +60411031001,813595,0.0575916230366492 +60411031001,813714,0.0405759162303665 +60411031001,813732,0.00785340314136126 +60411031002,0,0 +60411031002,810427,0.0344287949921753 +60411031002,810461,0 +60411031002,810729,0.00312989045383412 +60411031002,810743,0.00156494522691706 +60411031002,811105,0.0391236306729265 +60411031002,811154,0.00782472613458529 +60411031002,812418,0.00782472613458529 +60411031002,813189,0.483568075117371 +60411031002,814345,0.416275430359937 +60411031002,814346,0.00625978090766823 +60411031003,811153,0.070694087403599 +60411031003,811247,0.145244215938303 +60411031003,812159,0.237789203084833 +60411031003,813601,0.152956298200514 +60411031003,813768,0.143958868894602 +60411031003,814461,0.0848329048843188 +60411031003,814497,0.16452442159383 +60411031004,811046,0.233269598470363 +60411031004,811302,0.229445506692161 +60411031004,811415,0.210325047801147 +60411031004,813085,0.0592734225621415 +60411031004,814227,0.162523900573614 +60411031004,814463,0.105162523900574 +60411032001,810887,0.101214574898785 +60411032001,811524,0.338056680161943 +60411032001,813187,0.0242914979757085 +60411032001,813718,0.536437246963563 +60411032002,810072,0.156826568265683 +60411032002,810755,0.0239852398523985 +60411032002,811004,0.0756457564575646 +60411032002,811226,0.218634686346863 +60411032002,811406,0.0498154981549815 +60411032002,811451,0.3690036900369 +60411032002,813735,0.106088560885609 +60411032003,811003,0.139438085327784 +60411032003,811223,0.107180020811655 +60411032003,811227,0.032258064516129 +60411032003,811337,0.156087408949011 +60411032003,812111,0.0312174817898023 +60411032003,813186,0.0104058272632674 +60411032003,813599,0.196670135275754 +60411032003,813600,0.133194588969823 +60411032003,814450,0.160249739854318 +60411032003,814462,0.0332986472424558 +60411041011,810079,0.115501519756839 +60411041011,810191,0.100303951367781 +60411041011,810566,0.209726443768997 +60411041011,810978,0.303951367781155 +60411041011,813935,0.11854103343465 +60411041011,814476,0.151975683890578 +60411041012,810572,0.0599250936329588 +60411041012,813091,0.0973782771535581 +60411041012,814457,0.842696629213483 +60411041013,810007,0.16375 +60411041013,810008,0.13875 +60411041013,810362,0.11125 +60411041013,810575,0.035 +60411041013,811690,0.125 +60411041013,811776,0.03125 +60411041013,811925,0.24125 +60411041013,812425,0.04125 +60411041013,812729,0.1125 +60411041014,810501,0.169668246445498 +60411041014,810726,0.0767772511848341 +60411041014,811243,0.178199052132701 +60411041014,811453,0.125118483412322 +60411041014,811781,0.317535545023697 +60411041014,812731,0.0417061611374408 +60411041014,813513,0 +60411041014,814495,0.0909952606635071 +60411041021,810167,0.129191321499014 +60411041021,810513,0.0690335305719921 +60411041021,810724,0.148915187376726 +60411041021,810811,0.265285996055227 +60411041021,813093,0.029585798816568 +60411041021,813191,0.357988165680473 +60411041022,810005,0.0970504281636537 +60411041022,810076,0.335870599429115 +60411041022,810757,0.0513796384395813 +60411041022,810869,0 +60411041022,811232,0.367269267364415 +60411041022,811449,0.0570884871550904 +60411041022,811782,0.0199809705042816 +60411041022,811923,0.0114176974310181 +60411041022,813596,0 +60411041022,813936,0.0256898192197907 +60411041022,814233,0.0342530922930542 +60411042001,810438,0.0555555555555556 +60411042001,810441,0.16005291005291 +60411042001,810569,0.0714285714285714 +60411042001,810818,0.037037037037037 +60411042001,811007,0.0542328042328042 +60411042001,811409,0.0555555555555556 +60411042001,811780,0.205026455026455 +60411042001,813082,0.189153439153439 +60411042001,813947,0.12962962962963 +60411042001,814481,0.0423280423280423 +60411042002,810820,0.346622369878184 +60411042002,811411,0.191583610188261 +60411042002,811519,0.08859357696567 +60411042002,812854,0.373200442967885 +60411042003,810192,0.0515320334261838 +60411042003,810198,0.0557103064066852 +60411042003,811298,0.335654596100279 +60411042003,811919,0 +60411042003,813933,0.557103064066852 +60411042003,814347,0 +60411043001,0,0 +60411043001,810745,0 +60411043001,812412,1 +60411043001,812850,0 +60411043001,812851,0 +60411043001,812852,0 +60411043001,814061,0 +60411043001,814478,0 +60411050001,810508,0.0879284649776453 +60411050001,810570,0.592399403874814 +60411050001,810821,0.114008941877794 +60411050001,810823,0.147540983606557 +60411050001,811445,0.0201192250372578 +60411050001,811689,0.0193740685543964 +60411050001,812737,0.018628912071535 +60411050002,0,0 +60411050002,810002,0.0377668308702791 +60411050002,810173,0.0344827586206897 +60411050002,810358,0.0862068965517241 +60411050002,810431,0.0977011494252874 +60411050002,810445,0.00410509031198686 +60411050002,810464,0 +60411050002,810745,0.405582922824302 +60411050002,810752,0.0738916256157635 +60411050002,811008,0.083743842364532 +60411050002,811306,0.176518883415435 +60411060011,0,0 +60411060011,812060,1 +60411060012,811577,0 +60411060012,812059,0 +60411060012,812061,0.0825496342737722 +60411060012,812506,0.100313479623824 +60411060012,812984,0.817136886102403 +60411060012,813681,0 +60411060013,0,0 +60411060013,810053,0.061277705345502 +60411060013,810113,0.0091264667535854 +60411060013,810310,0.0521512385919166 +60411060013,810941,0 +60411060013,811200,0 +60411060013,811676,0 +60411060013,812058,0.215123859191656 +60411060013,812106,0 +60411060013,812509,0 +60411060013,812667,0.170795306388527 +60411060013,812816,0.113428943937419 +60411060013,812871,0 +60411060013,812993,0.378096479791395 +60411060021,0,0 +60411060021,810298,0.0568047337278106 +60411060021,810659,0.179881656804734 +60411060021,811357,0 +60411060021,811586,0.0887573964497041 +60411060021,811847,0 +60411060021,812105,0.0710059171597633 +60411060021,812275,0.0686390532544379 +60411060021,812557,0.0485207100591716 +60411060021,812796,0.0414201183431953 +60411060021,812902,0.115976331360947 +60411060021,813228,0.0650887573964497 +60411060021,813579,0.0556213017751479 +60411060021,813584,0.0733727810650888 +60411060021,813887,0.029585798816568 +60411060021,813993,0.105325443786982 +60411060022,0,0 +60411060022,810108,0.00148367952522255 +60411060022,810562,0.0267062314540059 +60411060022,810664,0.35459940652819 +60411060022,810665,0.0489614243323442 +60411060022,810666,0.0578635014836795 +60411060022,810679,0.0712166172106825 +60411060022,811990,0.0890207715133531 +60411060022,811994,0.0445103857566766 +60411060022,812063,0 +60411060022,812065,0.0103857566765579 +60411060022,812717,0.100890207715134 +60411060022,813792,0.140949554896142 +60411060022,813888,0 +60411060022,814163,0.0534124629080119 +60411060023,810105,0.00995024875621891 +60411060023,810658,0.162520729684909 +60411060023,812866,0.38971807628524 +60411060023,812873,0.0281923714759536 +60411060023,813230,0.409618573797678 +60411070001,810278,0.589605734767025 +60411070001,811838,0.145161290322581 +60411070001,812495,0.139784946236559 +60411070001,812505,0.0483870967741935 +60411070001,812651,0.0770609318996416 +60411070002,810384,0.184210526315789 +60411070002,811683,0.269736842105263 +60411070002,811980,0.546052631578947 +60411070003,810056,0.162534435261708 +60411070003,810057,0.0881542699724518 +60411070003,810281,0 +60411070003,810313,0.245179063360882 +60411070003,811194,0.212121212121212 +60411070003,811642,0.292011019283747 +60411070004,811903,0 +60411070004,812214,0.0318725099601594 +60411070004,812465,0.747011952191235 +60411070004,812590,0.0398406374501992 +60411070004,812862,0.181274900398406 +60411070005,812463,0.43171114599686 +60411070005,813134,0.161695447409733 +60411070005,813135,0.142857142857143 +60411070005,813219,0.120879120879121 +60411070005,813572,0.0753532182103611 +60411070005,814307,0.0675039246467818 +60411081001,810054,0.147058823529412 +60411081001,810062,0.115808823529412 +60411081001,810092,0.249080882352941 +60411081001,810099,0.0404411764705882 +60411081001,810394,0.0257352941176471 +60411081001,811195,0.0505514705882353 +60411081001,811840,0.0284926470588235 +60411081001,811843,0.0450367647058823 +60411081001,811866,0.0431985294117647 +60411081001,812496,0.0459558823529412 +60411081001,812499,0.0229779411764706 +60411081001,812593,0.0294117647058824 +60411081001,812650,0.15625 +60411081002,810934,0.0562659846547315 +60411081002,813129,0.468030690537084 +60411081002,814335,0.475703324808184 +60411081003,810058,0.0540540540540541 +60411081003,812497,0.799227799227799 +60411081003,813225,0.146718146718147 +60411081004,810283,0.0380165289256198 +60411081004,810395,0.120661157024793 +60411081004,811389,0.363636363636364 +60411081004,811673,0.0892561983471074 +60411081004,812547,0.0909090909090909 +60411081004,812648,0.0181818181818182 +60411081004,812653,0.0743801652892562 +60411081004,813362,0.109090909090909 +60411081004,813672,0.0958677685950413 +60411082001,810059,0.0899550224887556 +60411082001,810938,0.209895052473763 +60411082001,811193,0.12743628185907 +60411082001,811198,0.0149925037481259 +60411082001,811576,0.12143928035982 +60411082001,811588,0.0314842578710645 +60411082001,811849,0.04047976011994 +60411082001,811869,0.0599700149925037 +60411082001,811872,0.0584707646176912 +60411082001,812504,0.0419790104947526 +60411082001,812656,0.0509745127436282 +60411082001,812800,0.04047976011994 +60411082001,813678,0.112443778110945 +60411082002,810301,0.129565217391304 +60411082002,810558,0.0269565217391304 +60411082002,812264,0.279130434782609 +60411082002,812549,0.0382608695652174 +60411082002,812805,0.0426086956521739 +60411082002,812988,0.164347826086957 +60411082002,813080,0.0939130434782609 +60411082002,813222,0.0347826086956522 +60411082002,813227,0.051304347826087 +60411082002,813577,0.0269565217391304 +60411082002,813875,0.028695652173913 +60411082002,813883,0.0834782608695652 +60411082003,810314,0 +60411082003,811396,0 +60411082003,811677,0 +60411082003,812868,0 +60411082003,812896,0 +60411082003,813570,0 +60411082003,813576,0 +60411082003,813873,0 +60411082003,814429,1 +60411082004,811356,0.124620060790274 +60411082004,811875,0.0790273556231003 +60411082004,812462,0.525835866261398 +60411082004,812661,0.270516717325228 +60411090011,811088,0.0817391304347826 +60411090011,811388,0.266086956521739 +60411090011,812329,0.243478260869565 +60411090011,812341,0.0782608695652174 +60411090011,812402,0.11304347826087 +60411090011,812404,0.071304347826087 +60411090011,813829,0.146086956521739 +60411090012,810297,0.203661327231121 +60411090012,812283,0.354691075514874 +60411090012,813828,0.226544622425629 +60411090012,814147,0.0640732265446224 +60411090012,814428,0.151029748283753 +60411090013,810668,0.190604026845638 +60411090013,810670,0.16241610738255 +60411090013,810675,0.0926174496644295 +60411090013,811089,0.212080536912752 +60411090013,811090,0.0818791946308725 +60411090013,812237,0.0322147651006711 +60411090013,812408,0.0805369127516778 +60411090013,812503,0.036241610738255 +60411090013,812711,0.111409395973154 +60411090013,813685,0 +60411090021,810304,0.0613207547169811 +60411090021,810797,0.0377358490566038 +60411090021,812055,0.119496855345912 +60411090021,812392,0.050314465408805 +60411090021,812801,0.490566037735849 +60411090021,813364,0.0738993710691824 +60411090021,813822,0.0424528301886792 +60411090021,814164,0.0550314465408805 +60411090021,814427,0.0691823899371069 +60411090022,0,0 +60411090022,810305,0.116022099447514 +60411090022,810553,0.186740331491713 +60411090022,810795,0.14585635359116 +60411090022,810799,0.402209944751381 +60411090022,812110,0.0375690607734807 +60411090022,812278,0.0342541436464088 +60411090022,812393,0.0419889502762431 +60411090022,812508,0.00773480662983425 +60411090022,813821,0.0276243093922652 +60411090023,811581,0.202290076335878 +60411090023,812281,0.229007633587786 +60411090023,812282,0.0916030534351145 +60411090023,813824,0.148854961832061 +60411090023,813827,0.17175572519084 +60411090023,814003,0.156488549618321 +60411101001,811087,0.019672131147541 +60411101001,811769,0.137704918032787 +60411101001,812179,0.467213114754098 +60411101001,813669,0.252459016393443 +60411101001,814110,0.0540983606557377 +60411101001,814315,0.0688524590163934 +60411101002,0,0 +60411101002,812210,0.106413994169096 +60411101002,812235,0.0393586005830904 +60411101002,812238,0.0524781341107872 +60411101002,812267,0.0393586005830904 +60411101002,812324,0.0612244897959184 +60411101002,812325,0.0568513119533528 +60411101002,812459,0.097667638483965 +60411101002,812467,0.0393586005830904 +60411101002,812468,0.0830903790087464 +60411101002,812556,0.102040816326531 +60411101002,813075,0.0714285714285714 +60411101002,813632,0.0932944606413994 +60411101002,814308,0 +60411101002,814318,0.100583090379009 +60411101002,814319,0.0568513119533528 +60411101003,0,0 +60411101003,810260,0.0442733397497594 +60411101003,810262,0.0654475457170356 +60411101003,810263,0.0259865255052935 +60411101003,810264,0.0712223291626564 +60411101003,810265,0 +60411101003,811363,0 +60411101003,811985,0.041385948026949 +60411101003,811988,0 +60411101003,811989,0.0336862367661213 +60411101003,811995,0.0173243503368624 +60411101003,812272,0 +60411101003,812274,0.0548604427333975 +60411101003,812319,0.0384985563041386 +60411101003,812320,0.0798845043310876 +60411101003,812322,0.105871029836381 +60411101003,812460,0.106833493743985 +60411101003,812775,0 +60411101003,813626,0.00481231953801732 +60411101003,814113,0.12512030798845 +60411101003,814116,0.104908565928778 +60411101003,814117,0.026948989412897 +60411101003,814161,0.0384985563041386 +60411101003,814311,0.014436958614052 +60411102001,810093,0.093 +60411102001,810292,0.163 +60411102001,810300,0.156 +60411102001,811639,0.138 +60411102001,811670,0.042 +60411102001,811845,0.128 +60411102001,812108,0.038 +60411102001,812596,0.242 +60411102002,0,0 +60411102002,810257,0.0819672131147541 +60411102002,810387,0.173302107728337 +60411102002,810388,0.166276346604215 +60411102002,810390,0.110070257611241 +60411102002,811870,0.0374707259953162 +60411102002,812586,0.0608899297423888 +60411102002,813296,0 +60411102002,814395,0.370023419203747 +60411102003,810284,0.162673392181589 +60411102003,810386,0.0807061790668348 +60411102003,811355,0.306431273644388 +60411102003,811575,0.0996216897856242 +60411102003,812002,0.282471626733922 +60411102003,813585,0.0680958385876419 +60411110001,810671,0.0731707317073171 +60411110001,810672,0.20650406504065 +60411110001,811092,0 +60411110001,811093,0.0016260162601626 +60411110001,811094,0.0975609756097561 +60411110001,811095,0.00813008130081301 +60411110001,812292,0.0032520325203252 +60411110001,812331,0.0016260162601626 +60411110001,812332,0.0439024390243902 +60411110001,812335,0.0373983739837398 +60411110001,812336,0.0292682926829268 +60411110001,812406,0 +60411110001,812407,0.0959349593495935 +60411110001,812409,0.0016260162601626 +60411110001,812501,0.0829268292682927 +60411110001,812542,0 +60411110001,812545,0 +60411110001,812712,0 +60411110001,812713,0.0260162601626016 +60411110001,812906,0 +60411110001,814115,0 +60411110001,814152,0.0048780487804878 +60411110001,814153,0 +60411110001,814159,0.0601626016260163 +60411110001,814325,0.0130081300813008 +60411110001,814326,0.0487804878048781 +60411110001,814332,0.164227642276423 +60411110002,810307,0.0202247191011236 +60411110002,810805,0 +60411110002,811091,0.0629213483146067 +60411110002,812228,0.107865168539326 +60411110002,812229,0.130337078651685 +60411110002,812236,0.0157303370786517 +60411110002,812284,0.0606741573033708 +60411110002,812287,0.152808988764045 +60411110002,812288,0.0584269662921348 +60411110002,812289,0.134831460674157 +60411110002,812399,0.051685393258427 +60411110002,812405,0.0202247191011236 +60411110002,813895,0 +60411110002,814006,0.0157303370786517 +60411110002,814151,0.0112359550561798 +60411110002,814320,0.0314606741573034 +60411110002,814321,0.0651685393258427 +60411110002,814323,0.0606741573033708 +60411110003,811635,0.386519944979367 +60411110003,812551,0.239339752407153 +60411110003,812643,0.242090784044016 +60411110003,813999,0.046767537826685 +60411110003,814148,0.0852819807427785 +60411110004,810308,0.0454545454545455 +60411110004,810803,0.0547785547785548 +60411110004,810804,0.166666666666667 +60411110004,810809,0.298368298368298 +60411110004,810931,0.0431235431235431 +60411110004,812233,0.0664335664335664 +60411110004,812234,0.146853146853147 +60411110004,812500,0.0396270396270396 +60411110004,812554,0.0361305361305361 +60411110004,813894,0.041958041958042 +60411110004,814004,0.0244755244755245 +60411110004,814149,0.0361305361305361 +60411121001,810251,0.261954261954262 +60411121001,810319,0 +60411121001,810673,0 +60411121001,810674,0.0498960498960499 +60411121001,810676,0 +60411121001,810677,0 +60411121001,811102,0.0623700623700624 +60411121001,811978,0.172557172557173 +60411121001,812217,0 +60411121001,812225,0 +60411121001,812321,0 +60411121001,812340,0 +60411121001,812502,0 +60411121001,812669,0.0602910602910603 +60411121001,812994,0.135135135135135 +60411121001,813998,0.00207900207900208 +60411121001,814118,0.253638253638254 +60411121001,814312,0 +60411121001,814313,0.00207900207900208 +60411121002,810267,0.389473684210526 +60411121002,811770,0.160526315789474 +60411121002,811984,0.215789473684211 +60411121002,812813,0.1 +60411121002,813068,0.134210526315789 +60411121003,811096,0.33271375464684 +60411121003,812328,0.243494423791822 +60411121003,812334,0.115241635687732 +60411121003,812410,0.117100371747212 +60411121003,814155,0.144981412639405 +60411121003,814157,0.0464684014869888 +60411121004,810932,0.0938215102974828 +60411121004,811101,0.528604118993135 +60411121004,812262,0.363844393592677 +60411121004,814331,0.0137299771167048 +60411122011,0,0 +60411122011,811366,0.0711645101663586 +60411122011,811634,0.487985212569316 +60411122011,812209,0.0683918669131238 +60411122011,812216,0.11275415896488 +60411122011,812982,0.259704251386322 +60411122012,812327,0.105621805792164 +60411122012,812785,0.419080068143101 +60411122012,813631,0.475298126064736 +60411122021,810734,0.0577819198508854 +60411122021,810737,0.0307548928238583 +60411122021,811637,0.166821994408201 +60411122021,811771,0.111835973904939 +60411122021,812051,0.239515377446412 +60411122021,812052,0.065237651444548 +60411122021,812786,0.132339235787512 +60411122021,812789,0.0447343895619758 +60411122021,812983,0.0941286113699907 +60411122021,813634,0.0568499534016775 +60411122022,0,0 +60411122022,810271,0.0267857142857143 +60411122022,810273,0 +60411122022,810302,0.03125 +60411122022,810732,0.290178571428571 +60411122022,810736,0 +60411122022,810738,0.0133928571428571 +60411122022,811398,0 +60411122022,811584,0.517857142857143 +60411122022,812218,0.0178571428571429 +60411122022,812219,0.03125 +60411122022,812783,0 +60411122022,812790,0.00446428571428571 +60411122022,812892,0.00446428571428571 +60411122022,813124,0 +60411122022,813636,0 +60411122022,813683,0 +60411122022,813791,0 +60411122022,814119,0.0535714285714286 +60411122022,814121,0 +60411122022,814393,0 +60411122022,814394,0.00892857142857143 +60411122022,814436,0 +60411130001,810208,0.303303303303303 +60411130001,810484,0.048048048048048 +60411130001,810895,0.0510510510510511 +60411130001,810900,0.033033033033033 +60411130001,810994,0.165165165165165 +60411130001,812765,0.0510510510510511 +60411130001,813205,0.039039039039039 +60411130001,813206,0.171171171171171 +60411130001,813411,0.138138138138138 +60411130002,810209,0.636554621848739 +60411130002,810466,0.15546218487395 +60411130002,810992,0.207983193277311 +60411130003,810549,0.0735294117647059 +60411130003,811273,0.647058823529412 +60411130003,811795,0.279411764705882 +60411130004,810897,0.146699266503667 +60411130004,810995,0.0855745721271394 +60411130004,811349,0.464547677261614 +60411130004,811790,0.303178484107579 +60411141001,810245,0 +60411141001,810836,0.0786516853932584 +60411141001,810838,0 +60411141001,811055,0.0629213483146067 +60411141001,811265,0.0584269662921348 +60411141001,811330,0.049438202247191 +60411141001,811825,0.0865168539325843 +60411141001,811896,0.0730337078651685 +60411141001,811961,0.00112359550561798 +60411141001,812033,0.250561797752809 +60411141001,812183,0.0539325842696629 +60411141001,812947,0.048314606741573 +60411141001,812979,0.101123595505618 +60411141001,813270,0.0898876404494382 +60411141001,813271,0.0460674157303371 +60411141001,813453,0 +60411141002,810381,0.483211678832117 +60411141002,810840,0.516788321167883 +60411141003,811327,0.026027397260274 +60411141003,811955,0.0342465753424658 +60411141003,811956,0.258904109589041 +60411141003,812130,0.0575342465753425 +60411141003,813449,0.341095890410959 +60411141003,813744,0.0547945205479452 +60411141003,814071,0.158904109589041 +60411141003,814283,0.0410958904109589 +60411141003,814351,0.0273972602739726 +60411142001,812140,0.0613425925925926 +60411142001,812177,0.217592592592593 +60411142001,812943,0.505787037037037 +60411142001,812958,0.215277777777778 +60411142002,810086,0.0994152046783626 +60411142002,810234,0.0799220272904483 +60411142002,812040,0.0760233918128655 +60411142002,812948,0.372319688109162 +60411142002,813491,0.372319688109162 +60411150001,810019,0.000965250965250965 +60411150001,810524,0.0308880308880309 +60411150001,811121,0.0212355212355212 +60411150001,811129,0.0299227799227799 +60411150001,811320,0.346525096525097 +60411150001,811352,0.0482625482625483 +60411150001,811491,0.184362934362934 +60411150001,812137,0.0463320463320463 +60411150001,812255,0.0308880308880309 +60411150001,813788,0 +60411150001,814437,0.260617760617761 +60411150002,810588,0.138111888111888 +60411150002,811761,0.568181818181818 +60411150002,813282,0.0699300699300699 +60411150002,813474,0.0541958041958042 +60411150002,813657,0.11013986013986 +60411150002,814282,0.0594405594405594 +60411150003,810834,0.133603238866397 +60411150003,811700,0.087719298245614 +60411150003,811959,0.443994601889339 +60411150003,812032,0.0620782726045884 +60411150003,813037,0.207827260458839 +60411150003,813265,0.0647773279352227 +60411150004,811118,0.20873786407767 +60411150004,811321,0.0509708737864078 +60411150004,811331,0.339805825242718 +60411150004,813321,0.322815533980582 +60411150004,813856,0.0776699029126214 +60411160001,810240,0.118528610354223 +60411160001,812038,0.118528610354223 +60411160001,812187,0.0395095367847411 +60411160001,812256,0.291553133514986 +60411160001,812431,0.061307901907357 +60411160001,813854,0.185286103542234 +60411160001,813863,0.0381471389645777 +60411160001,813864,0.0449591280653951 +60411160001,814076,0.102179836512262 +60411160002,811116,0.0505226480836237 +60411160002,811703,0.365853658536585 +60411160002,812192,0.123693379790941 +60411160002,812193,0.109756097560976 +60411160002,813456,0.25609756097561 +60411160002,814358,0.0940766550522648 +60411170001,810371,0.0363636363636364 +60411170001,810373,0.0509090909090909 +60411170001,810515,0.0218181818181818 +60411170001,810517,0.114545454545455 +60411170001,811065,0.0363636363636364 +60411170001,811423,0.0109090909090909 +60411170001,813642,0.0418181818181818 +60411170001,813643,0.0290909090909091 +60411170001,813653,0.658181818181818 +60411170002,810022,0 +60411170002,810382,0.0477815699658703 +60411170002,811419,0.204778156996587 +60411170002,811563,0.494880546075085 +60411170002,811747,0.0784982935153584 +60411170002,812617,0 +60411170002,813322,0.146757679180887 +60411170002,813647,0.0273037542662116 +60411170003,810023,0.0833333333333333 +60411170003,810024,0.0850340136054422 +60411170003,810026,0.0782312925170068 +60411170003,811483,0.0697278911564626 +60411170003,811702,0.243197278911565 +60411170003,811764,0.119047619047619 +60411170003,812434,0.0510204081632653 +60411170003,812619,0.086734693877551 +60411170003,813460,0.122448979591837 +60411170003,813644,0.0612244897959184 +60411170004,811128,0.05 +60411170004,811417,0.111290322580645 +60411170004,811418,0.188709677419355 +60411170004,811495,0 +60411170004,811750,0.0516129032258065 +60411170004,811751,0.0790322580645161 +60411170004,812636,0.12258064516129 +60411170004,812741,0.112903225806452 +60411170004,812744,0.0419354838709677 +60411170004,813466,0.0887096774193548 +60411170004,813648,0.00806451612903226 +60411170004,813868,0.0467741935483871 +60411170004,813869,0.0983870967741935 +60411181001,811748,0.178832116788321 +60411181001,811755,0.164233576642336 +60411181001,811757,0.0875912408759124 +60411181001,813050,0.361313868613139 +60411181001,814173,0.0218978102189781 +60411181001,814293,0.186131386861314 +60411181002,810027,0.244274809160305 +60411181002,810370,0.099236641221374 +60411181002,810731,0.133587786259542 +60411181002,811064,0.0973282442748092 +60411181002,812046,0 +60411181002,812748,0.0477099236641221 +60411181002,812749,0.120229007633588 +60411181002,812750,0.0591603053435115 +60411181002,813651,0.0572519083969466 +60411181002,813866,0.00190839694656489 +60411181002,814177,0.0362595419847328 +60411181002,814178,0.103053435114504 +60411191001,811427,0.395652173913043 +60411191001,811697,0.126086956521739 +60411191001,811704,0.478260869565217 +60411191002,810376,0.254424778761062 +60411191002,810761,0.0907079646017699 +60411191002,811705,0.0464601769911504 +60411191002,812968,0.103982300884956 +60411191002,813278,0.415929203539823 +60411191002,813324,0.0884955752212389 +60411191003,0,0 +60411191003,811335,0.375 +60411191003,811899,0.326086956521739 +60411191003,812961,0.168478260869565 +60411191003,813099,0.00271739130434783 +60411191003,813325,0.127717391304348 +60411191004,810377,0.189247311827957 +60411191004,810520,0.0688172043010753 +60411191004,811332,0.191397849462366 +60411191004,811973,0.00860215053763441 +60411191004,812751,0.359139784946237 +60411191004,813096,0.0881720430107527 +60411191004,813277,0.0946236559139785 +60411191004,814182,0 +60411191005,810375,0 +60411191005,810380,0.610027855153203 +60411191005,810521,0 +60411191005,810577,0.0250696378830084 +60411191005,813095,0.214484679665738 +60411191005,813332,0 +60411191005,814179,0.15041782729805 +60411192011,810088,0.190140845070423 +60411192011,811927,0.401408450704225 +60411192011,811969,0.128169014084507 +60411192011,811975,0.194366197183099 +60411192011,812044,0.0859154929577465 +60411192012,0,0 +60411192012,811830,0.878260869565217 +60411192012,812955,0 +60411192012,813280,0.121739130434783 +60411192012,813471,0 +60411192013,0,0 +60411192013,810242,0.0566239316239316 +60411192013,811706,0.128205128205128 +60411192013,813274,0.00213675213675214 +60411192013,813288,0.134615384615385 +60411192013,813785,0.678418803418803 +60411192021,0,0 +60411192021,811060,0.131621187800963 +60411192021,811318,0.0385232744783307 +60411192021,811662,0.168539325842697 +60411192021,811895,0.0465489566613162 +60411192021,812017,0.0770465489566613 +60411192021,813330,0.0513643659711075 +60411192021,813473,0.115569823434992 +60411192021,813663,0.0417335473515249 +60411192021,814417,0.329052969502408 +60411192022,811559,0.0440944881889764 +60411192022,811565,0.0960629921259843 +60411192022,811968,0.303937007874016 +60411192022,811971,0.185826771653543 +60411192022,812966,0.078740157480315 +60411192022,812967,0.047244094488189 +60411192022,813272,0.0897637795275591 +60411192022,814444,0.154330708661417 +60411200001,810085,0.03601108033241 +60411200001,810221,0.127423822714681 +60411200001,810222,0.0609418282548476 +60411200001,811890,0.376731301939058 +60411200001,811891,0.0664819944598338 +60411200001,812021,0.0664819944598338 +60411200001,812618,0.257617728531856 +60411200001,813062,0 +60411200001,813275,0.00831024930747922 +60411200002,810231,0.604368932038835 +60411200002,811666,0.162621359223301 +60411200002,812020,0.0315533980582524 +60411200002,813290,0 +60411200002,814287,0.201456310679612 +60411200003,810216,0.00358851674641148 +60411200003,810218,0.0119617224880383 +60411200003,810759,0.00717703349282297 +60411200003,811056,0.0550239234449761 +60411200003,811465,0.0538277511961723 +60411200003,811466,0.0717703349282297 +60411200003,811467,0.0251196172248804 +60411200003,811658,0.435406698564593 +60411200003,811661,0.0789473684210526 +60411200003,811970,0.0645933014354067 +60411200003,813053,0.0657894736842105 +60411200003,813328,0 +60411200003,813329,0 +60411200003,813336,0.0311004784688995 +60411200003,814419,0.0956937799043062 +60411200004,0,0 +60411200004,811482,0.1568 +60411200004,811821,0.1232 +60411200004,811965,0.0048 +60411200004,811967,0.5104 +60411200004,812639,0.0464 +60411200004,812963,0.0224 +60411200004,813044,0.0384 +60411200004,813102,0.0976 +60411200005,0,0 +60411200005,811560,0.296795952782462 +60411200005,812614,0.0961214165261383 +60411200005,812944,0.0590219224283305 +60411200005,813476,0.06070826306914 +60411200005,813783,0.487352445193929 +60411211001,810084,0.0298804780876494 +60411211001,810217,0 +60411211001,810924,0 +60411211001,811472,0.0816733067729084 +60411211001,811474,0.0697211155378486 +60411211001,811733,0 +60411211001,812019,0.414342629482072 +60411211001,812169,0 +60411211001,813431,0.0816733067729084 +60411211001,813440,0.049800796812749 +60411211001,813443,0.121513944223108 +60411211001,813529,0.151394422310757 +60411211001,814295,0 +60411211002,810219,0.173410404624277 +60411211002,810220,0.329479768786127 +60411211002,810583,0.294797687861272 +60411211002,813058,0.124277456647399 +60411211002,813438,0.0780346820809249 +60411211003,812606,0.609403254972875 +60411211003,813435,0.390596745027125 +60411211003,813538,0 +60411211003,814277,0 +60411211004,810081,0.0783898305084746 +60411211004,810224,0.120762711864407 +60411211004,810909,0.076271186440678 +60411211004,811476,0.108050847457627 +60411211004,812025,0.0699152542372881 +60411211004,812609,0.0296610169491525 +60411211004,812630,0.199152542372881 +60411211004,813441,0.175847457627119 +60411211004,813540,0.0805084745762712 +60411211004,814420,0.0614406779661017 +60411211005,810080,0.540123456790123 +60411211005,811259,0.459876543209877 +60411212001,810237,0.746231155778894 +60411212001,811812,0.253768844221106 +60411212002,0,0 +60411212002,811319,0.117202268431002 +60411212002,811478,0.0425330812854442 +60411212002,812260,0.166351606805293 +60411212002,812476,0 +60411212002,812479,0.194706994328922 +60411212002,813031,0 +60411212002,813448,0 +60411212002,813463,0.178638941398866 +60411212002,813480,0.10586011342155 +60411212002,813495,0.125708884688091 +60411212002,813537,0 +60411212002,813738,0.0680529300567108 +60411212002,813861,0.000945179584120983 +60411212002,814290,0 +60411212002,814299,0 +60411212003,810922,0.0136054421768707 +60411212003,810926,0.13469387755102 +60411212003,811731,0.0530612244897959 +60411212003,811737,0.0353741496598639 +60411212003,812608,0.0312925170068027 +60411212003,812613,0.205442176870748 +60411212003,813039,0.401360544217687 +60411212003,813437,0.0843537414965986 +60411212003,813660,0.0340136054421769 +60411212003,813750,0 +60411212003,813751,0.00680272108843537 +60411212004,811263,0.482300884955752 +60411212004,812134,0.517699115044248 +60411220001,813480,0 +60411230001,0,0 +60411230001,810963,1 +60411230002,0,0 +60411230002,810122,0.474336283185841 +60411230002,810416,0.417699115044248 +60411230002,814080,0.0619469026548673 +60411230002,814123,0.0460176991150442 +60411241001,810600,0.0661157024793388 +60411241001,810611,0.23801652892562 +60411241001,811501,0.185123966942149 +60411241001,812581,0.262809917355372 +60411241001,812829,0.105785123966942 +60411241001,813309,0.0495867768595041 +60411241001,813767,0.0925619834710744 +60411241002,0,0 +60411241002,810849,0.0390804597701149 +60411241002,811215,0.0275862068965517 +60411241002,811592,0.0367816091954023 +60411241002,813144,0.542528735632184 +60411241002,813145,0.0804597701149425 +60411241002,813902,0.273563218390805 +60411241003,0,0 +60411241003,810845,0.906354515050167 +60411241003,811133,0.0936454849498328 +60411241004,810696,0.033695652173913 +60411241004,811135,0.00652173913043478 +60411241004,811217,0.165217391304348 +60411241004,812539,0.190217391304348 +60411241004,812684,0.122826086956522 +60411241004,812759,0.0869565217391304 +60411241004,812760,0.0597826086956522 +60411241004,813244,0.115217391304348 +60411241004,814367,0.219565217391304 +60411242001,0,0 +60411242001,812540,1 +60411242002,810040,0.394973070017953 +60411242002,811618,0.0287253141831239 +60411242002,812242,0.360861759425494 +60411242002,812298,0.0574506283662478 +60411242002,813911,0.154398563734291 +60411242002,813913,0.00359066427289048 +60411242003,0,0 +60411242003,810039,0.0497017892644135 +60411242003,810417,0.125248508946322 +60411242003,810695,0.0656063618290258 +60411242003,810961,0.0834990059642147 +60411242003,810964,0.10337972166998 +60411242003,811594,0.170974155069583 +60411242003,812296,0.296222664015905 +60411242003,812677,0.0298210735586481 +60411242003,812679,0.0755467196819085 +60411242004,0,0 +60411242004,810602,0.118892508143322 +60411242004,810847,0.125407166123779 +60411242004,810848,0.149837133550489 +60411242004,812067,0.415309446254072 +60411242004,812446,0.172638436482085 +60411242004,814222,0.0179153094462541 +60411242005,810949,0.831168831168831 +60411242005,812348,0.112987012987013 +60411242005,814124,0.0558441558441558 +60411250001,0,0 +60411250001,811619,0.169429097605893 +60411250001,814012,0.578268876611418 +60411250001,814092,0.252302025782689 +60411250002,810140,0.0648298217179903 +60411250002,810784,0 +60411250002,811620,0.183144246353323 +60411250002,812833,0.0858995137763371 +60411250002,814368,0.111831442463533 +60411250002,814500,0.554294975688817 +60411250003,810615,0.0226063829787234 +60411250003,810842,0.188829787234043 +60411250003,811218,0.361702127659574 +60411250003,811611,0.365691489361702 +60411250003,812559,0.0545212765957447 +60411250003,812914,0.00664893617021277 +60411261001,810129,0.113752122241087 +60411261001,810613,0.249575551782683 +60411261001,810859,0.106960950764007 +60411261001,811502,0 +60411261001,811607,0.100169779286927 +60411261001,813898,0.244482173174873 +60411261001,814019,0.0916808149405773 +60411261001,814215,0.0933786078098472 +60411261002,810325,0.103942652329749 +60411261002,810327,0.0537634408602151 +60411261002,811142,0.003584229390681 +60411261002,812073,0.0842293906810036 +60411261002,812081,0.0519713261648745 +60411261002,812155,0.0197132616487455 +60411261002,812156,0 +60411261002,812439,0.0519713261648745 +60411261002,812441,0.137992831541219 +60411261002,812519,0.202508960573477 +60411261002,812908,0.0698924731182796 +60411261002,813761,0.0483870967741935 +60411261002,814015,0.103942652329749 +60411261002,814023,0.014336917562724 +60411261002,814024,0.0537634408602151 +60411261003,810128,0.0759219088937093 +60411261003,810130,0.117136659436009 +60411261003,810132,0.117136659436009 +60411261003,810324,0.0498915401301518 +60411261003,810780,0.180043383947939 +60411261003,812077,0.0303687635574837 +60411261003,812078,0.0498915401301518 +60411261003,812153,0.0954446854663774 +60411261003,812353,0.0455531453362256 +60411261003,812354,0.0889370932754881 +60411261003,812355,0.06941431670282 +60411261003,812826,0.0802603036876356 +60411261004,810596,0.0510752688172043 +60411261004,810689,0.0967741935483871 +60411261004,811208,0.0940860215053763 +60411261004,811915,0.0940860215053763 +60411261004,813698,0.42741935483871 +60411261004,814016,0.0672043010752688 +60411261004,814017,0.169354838709677 +60411261005,812310,0.193548387096774 +60411261005,813138,0.0161290322580645 +60411261005,813381,0.0672043010752688 +60411261005,813556,0.252688172043011 +60411261005,813800,0 +60411261005,814212,0.338709677419355 +60411261005,814506,0.131720430107527 +60411262001,810134,0.056282722513089 +60411262001,810329,0.0824607329842932 +60411262001,810862,0.136125654450262 +60411262001,810946,0.0431937172774869 +60411262001,811209,0.119109947643979 +60411262001,812302,0.0523560209424084 +60411262001,812523,0.0366492146596859 +60411262001,812583,0.0628272251308901 +60411262001,812878,0.0706806282722513 +60411262001,812907,0.108638743455497 +60411262001,813143,0.132198952879581 +60411262001,813499,0.0405759162303665 +60411262001,814087,0.0589005235602094 +60411262002,0,0 +60411262002,811499,0.00100200400801603 +60411262002,812440,0 +60411262002,812524,0.06312625250501 +60411262002,813503,0.150300601202405 +60411262002,813759,0.169338677354709 +60411262002,813762,0.360721442885772 +60411262002,813901,0 +60411262002,813906,0.255511022044088 +60411262003,812561,1 +60411270001,810123,0.162661737523105 +60411270001,810124,0.066543438077634 +60411270001,810690,0.00739371534195933 +60411270001,811206,0.0961182994454713 +60411270001,811917,0.327171903881701 +60411270001,812351,0.0924214417744917 +60411270001,813239,0.127541589648799 +60411270001,813508,0.011090573012939 +60411270001,813753,0.0129390018484288 +60411270001,813755,0.0961182994454713 +60411270002,810399,0.384297520661157 +60411270002,810405,0.111570247933884 +60411270002,813302,0.190082644628099 +60411270002,813304,0.227272727272727 +60411270002,813555,0.0867768595041322 +60411270003,812311,0.0129032258064516 +60411270003,812823,0.987096774193548 +60411270004,810539,0.769633507853403 +60411270004,810968,0.0942408376963351 +60411270004,813236,0.0680628272251309 +60411270004,813301,0.0680628272251309 +60411270005,810177,0.134241245136187 +60411270005,810594,0.0486381322957198 +60411270005,810855,0.0933852140077821 +60411270005,810856,0.268482490272374 +60411270005,811614,0.0525291828793774 +60411270005,813237,0.229571984435798 +60411270005,813554,0.0642023346303502 +60411270005,813695,0.0350194552529183 +60411270005,813920,0.0739299610894942 +60411281001,810138,0.0281531531531532 +60411281001,810700,0.0427927927927928 +60411281001,812763,0.0337837837837838 +60411281001,812838,0.0281531531531532 +60411281001,813106,0.259009009009009 +60411281001,813108,0.256756756756757 +60411281001,813150,0.0382882882882883 +60411281001,813763,0.0506756756756757 +60411281001,813908,0.262387387387387 +60411281002,812074,0.157968970380818 +60411281002,812147,0.265162200282087 +60411281002,812570,0.358251057827927 +60411281002,812681,0.218617771509168 +60411281003,810699,0.045021645021645 +60411281003,810703,0.0787878787878788 +60411281003,810854,0.0285714285714286 +60411281003,811503,0.0874458874458874 +60411281003,812148,0.432900432900433 +60411281003,812530,0 +60411281003,812571,0.070995670995671 +60411281003,813107,0.0372294372294372 +60411281003,813148,0.0268398268398268 +60411281003,813149,0.0658008658008658 +60411281003,813699,0.0406926406926407 +60411281003,813900,0.0857142857142857 +60411281003,814125,0 +60411281003,814219,0 +60411282001,812515,0.215328467153285 +60411282001,813234,0.784671532846715 +60411282002,811211,0.0960648148148148 +60411282002,812154,0.0706018518518519 +60411282002,813307,0.122685185185185 +60411282002,813692,0.710648148148148 +60411282003,810597,0.0368020304568528 +60411282003,810779,0.15989847715736 +60411282003,811131,0.107868020304569 +60411282003,812080,0.0609137055837563 +60411282003,812442,0.0228426395939086 +60411282003,812445,0.175126903553299 +60411282003,812447,0.00253807106598985 +60411282003,812532,0.067258883248731 +60411282003,812876,0.0342639593908629 +60411282003,812909,0.118020304568528 +60411282003,813142,0.016497461928934 +60411282003,813241,0.0774111675126904 +60411282003,813242,0.0761421319796954 +60411282003,814021,0.0444162436548223 +60411282003,814185,0 +60411290001,810186,0.333333333333333 +60411290001,810407,0.220779220779221 +60411290001,812070,0.0692640692640693 +60411290001,812762,0.0324675324675325 +60411290001,814189,0.344155844155844 +60411290002,810951,0.502752293577982 +60411290002,813153,0.0513761467889908 +60411290002,814465,0.445871559633028 +60411302011,810180,0.00816993464052288 +60411302011,812150,0.36437908496732 +60411302011,812346,0.119281045751634 +60411302011,812579,0.0261437908496732 +60411302011,813340,0.48202614379085 +60411302012,810037,0.0539291217257319 +60411302012,810604,0.098613251155624 +60411302012,811203,0.38366718027735 +60411302012,811615,0.0801232665639445 +60411302012,813371,0.338983050847458 +60411302012,814036,0.0446841294298921 +60411302013,810413,0.149501661129568 +60411302013,810623,0.197674418604651 +60411302013,810955,0.205980066445183 +60411302013,810959,0.0481727574750831 +60411302013,811202,0.142857142857143 +60411302013,812345,0.0631229235880399 +60411302013,813501,0.192691029900332 +60411302021,0,0 +60411302021,810142,0 +60411302021,810144,0 +60411302021,810185,0 +60411302021,811137,0.154992548435171 +60411302021,812449,0.0909090909090909 +60411302021,813155,0.445603576751118 +60411302021,813804,0.141579731743666 +60411302021,814378,0 +60411302021,814468,0.166915052160954 +60411302022,810151,0.158119658119658 +60411302022,810152,0.0106837606837607 +60411302022,810616,0.0705128205128205 +60411302022,810617,0.117521367521368 +60411302022,810621,0.0982905982905983 +60411302022,810958,0.113247863247863 +60411302022,813370,0.0512820512820513 +60411302022,813710,0.294871794871795 +60411302022,813711,0.0854700854700855 +60411302023,810028,0.070548712206047 +60411302023,810705,0.0291153415453527 +60411302023,810707,0.051511758118701 +60411302023,812240,0.0873460246360582 +60411302023,813111,0.174692049272116 +60411302023,813154,0.124300111982083 +60411302023,813500,0.0683090705487122 +60411302023,814192,0.32026875699888 +60411302023,814194,0.0739081746920493 +60411302024,810150,0.165480427046263 +60411302024,812239,0.373665480427046 +60411302024,812344,0.147686832740214 +60411302024,813159,0.135231316725979 +60411302024,813709,0.0640569395017794 +60411302024,814013,0.113879003558719 +60411311001,0,0 +60411311001,810712,0 +60411311001,811646,0.0655737704918033 +60411311001,811884,0 +60411311001,812365,0 +60411311001,812366,0 +60411311001,812368,0 +60411311001,813000,0 +60411311001,813209,0 +60411311001,813211,0 +60411311001,813214,0 +60411311001,814127,0 +60411311001,814204,0 +60411311001,814473,0 +60411311001,814474,0.639344262295082 +60411311001,814475,0.295081967213115 +60411311002,0,0 +60411311002,810155,0.681592039800995 +60411311002,810349,0 +60411311002,810354,0 +60411311002,810644,0.00497512437810945 +60411311002,810973,0 +60411311002,811290,0.0497512437810945 +60411311002,811296,0 +60411311002,811374,0.208955223880597 +60411311002,812690,0.0447761194029851 +60411311002,812842,0 +60411311002,813173,0.00497512437810945 +60411311002,814045,0.00497512437810945 +60411311002,814046,0 +60411311002,814402,0 +60411311003,0,0 +60411311003,810091,0.00680272108843537 +60411311003,810586,0.340136054421769 +60411311003,810587,0 +60411311003,810913,0.136054421768707 +60411311003,810916,0 +60411311003,811057,0 +60411311003,811120,0 +60411311003,811322,0 +60411311003,811323,0.00680272108843537 +60411311003,811480,0 +60411311003,811549,0 +60411311003,811960,0 +60411311003,812029,0 +60411311003,812030,0.510204081632653 +60411311003,812136,0 +60411311003,813450,0 +60411311003,813451,0 +60411311003,813454,0 +60411311003,813741,0 +60411311003,813858,0 +60411321001,810351,0.0706521739130435 +60411321001,812359,0 +60411321001,812887,0.423913043478261 +60411321001,814131,0.00815217391304348 +60411321001,814132,0.497282608695652 +60411321002,0,0 +60411321002,810157,0 +60411321002,810158,0.0513552068473609 +60411321002,810159,0 +60411321002,810161,0.470756062767475 +60411321002,810162,0.121255349500713 +60411321002,810344,0.0770328102710414 +60411321002,810971,0.00570613409415121 +60411321002,811288,0.14265335235378 +60411321002,811650,0.0442225392296719 +60411321002,812375,0.00285306704707561 +60411321002,812881,0.0171184022824536 +60411321002,814129,0.0014265335235378 +60411321002,814130,0.0656205420827389 +60411322001,810041,1 +60411322002,0,0 +60411322002,810898,0.221590909090909 +60411322002,811623,0.0965909090909091 +60411322002,811712,0.525568181818182 +60411322002,812386,0.110795454545455 +60411322002,813123,0.0454545454545455 +60411322003,0,0 +60411322003,810203,0.0303030303030303 +60411322003,810552,0.00505050505050505 +60411322003,810793,0.0202020202020202 +60411322003,811257,0 +60411322003,811276,0 +60411322003,811277,0.0151515151515152 +60411322003,811537,0.0101010101010101 +60411322003,811544,0.0404040404040404 +60411322003,811548,0 +60411322003,811854,0 +60411322003,812088,0.0606060606060606 +60411322003,812164,0.0707070707070707 +60411322003,812383,0.101010101010101 +60411322003,812936,0.0353535353535354 +60411322003,813353,0 +60411322003,813424,0.181818181818182 +60411322003,813567,0.328282828282828 +60411322003,813850,0 +60411322003,813963,0.0151515151515152 +60411322003,814242,0.0101010101010101 +60411322003,814254,0.0606060606060606 +60411322003,814385,0.0151515151515152 +60411330001,0,0 +60411330001,810047,0.00245700245700246 +60411330001,810481,0.0171990171990172 +60411330001,810904,0.0147420147420147 +60411330001,810905,0.0122850122850123 +60411330001,810906,0.00982800982800983 +60411330001,811028,0.181818181818182 +60411330001,811084,0.0147420147420147 +60411330001,811176,0.0712530712530713 +60411330001,811179,0 +60411330001,811187,0.0147420147420147 +60411330001,811256,0 +60411330001,811280,0 +60411330001,811308,0.00737100737100737 +60411330001,811457,0.00737100737100737 +60411330001,811545,0.0147420147420147 +60411330001,811626,0.0884520884520885 +60411330001,811730,0.00245700245700246 +60411330001,811803,0 +60411330001,811811,0.00491400491400491 +60411330001,811942,0 +60411330001,812009,0.00245700245700246 +60411330001,812089,0.00737100737100737 +60411330001,812379,0.027027027027027 +60411330001,812600,0 +60411330001,812601,0.0122850122850123 +60411330001,812703,0 +60411330001,812719,0.00737100737100737 +60411330001,812772,0.0122850122850123 +60411330001,812931,0.00245700245700246 +60411330001,812933,0.00491400491400491 +60411330001,813201,0.0884520884520885 +60411330001,813346,0.0294840294840295 +60411330001,813347,0.0565110565110565 +60411330001,813352,0 +60411330001,813558,0.0294840294840295 +60411330001,813562,0.00737100737100737 +60411330001,813565,0.0786240786240786 +60411330001,813816,0 +60411330001,813817,0.00737100737100737 +60411330001,813970,0.058968058968059 +60411330001,813980,0.00245700245700246 +60411330001,814100,0.00737100737100737 +60411330001,814102,0 +60411330001,814136,0.00737100737100737 +60411330001,814142,0.0810810810810811 +60411330001,814146,0 +60411330001,814249,0.00491400491400491 +60411330001,814266,0 +60411330001,814413,0 +60411330002,0,0 +60411330002,810467,0.0703703703703704 +60411330002,810468,0.0740740740740741 +60411330002,810482,0 +60411330002,810495,0 +60411330002,811180,0 +60411330002,811189,0.0703703703703704 +60411330002,811535,0.3 +60411330002,812699,0.0259259259259259 +60411330002,812764,0 +60411330002,813021,0 +60411330002,813116,0 +60411330002,813118,0.0111111111111111 +60411330002,813204,0 +60411330002,813415,0 +60411330002,813771,0.0740740740740741 +60411330002,813838,0.148148148148148 +60411330002,813961,0.0851851851851852 +60411330002,813971,0 +60411330002,813977,0.0037037037037037 +60411330002,814255,0.0259259259259259 +60411330002,814259,0.0222222222222222 +60411330002,814414,0.0888888888888889 +60411330003,0,0 +60411330003,810043,0.323369565217391 +60411330003,810899,0.0380434782608696 +60411330003,811030,0.0923913043478261 +60411330003,811078,0.0135869565217391 +60411330003,811079,0.0217391304347826 +60411330003,811249,0.21195652173913 +60411330003,811381,0.0298913043478261 +60411330003,812091,0.0244565217391304 +60411330003,813199,0.0326086956521739 +60411330003,813349,0.0407608695652174 +60411330003,813350,0.0271739130434783 +60411330003,813351,0.0434782608695652 +60411330003,813419,0.0298913043478261 +60411330003,813814,0.0108695652173913 +60411330003,813851,0.00271739130434783 +60411330003,813979,0.0135869565217391 +60411330003,814141,0.0407608695652174 +60411330003,814248,0.00271739130434783 +60411330004,810496,0.0773333333333333 +60411330004,810498,0.445333333333333 +60411330004,811721,0.477333333333333 +60419901000,0,0 +60552002011,610208,0.0757894736842105 +60552002011,610810,0.128421052631579 +60552002011,610812,0.0884210526315789 +60552002011,611235,0.0484210526315789 +60552002011,611291,0.0273684210526316 +60552002011,611544,0.0336842105263158 +60552002011,611684,0.513684210526316 +60552002011,611744,0 +60552002011,612140,0.0315789473684211 +60552002011,612186,0.0442105263157895 +60552002011,612196,0.00842105263157895 +60552002012,610211,0.0948275862068965 +60552002012,610277,0.0775862068965517 +60552002012,610639,0.0021551724137931 +60552002012,610865,0.256465517241379 +60552002012,611225,0.118534482758621 +60552002012,611232,0.084051724137931 +60552002012,611354,0.0387931034482759 +60552002012,611476,0.0797413793103448 +60552002012,612049,0.0237068965517241 +60552002012,612077,0.0172413793103448 +60552002012,612078,0.105603448275862 +60552002012,612079,0.0517241379310345 +60552002012,612138,0.0495689655172414 +60552002012,612357,0 +60552002013,610025,0.101694915254237 +60552002013,610278,0.0395480225988701 +60552002013,611239,0.138418079096045 +60552002013,611240,0.0564971751412429 +60552002013,611355,0.0508474576271186 +60552002013,611485,0.0423728813559322 +60552002013,612742,0.570621468926554 +60552002021,610279,0.00673400673400673 +60552002021,610539,0.124579124579125 +60552002021,610724,0 +60552002021,610817,0.00673400673400673 +60552002021,610818,0.00336700336700337 +60552002021,610819,0 +60552002021,610888,0 +60552002021,610995,0.00336700336700337 +60552002021,610996,0 +60552002021,611131,0.427609427609428 +60552002021,611138,0.00336700336700337 +60552002021,611139,0 +60552002021,611244,0.0808080808080808 +60552002021,611353,0.111111111111111 +60552002021,611404,0.104377104377104 +60552002021,611483,0 +60552002021,611869,0 +60552002021,611880,0 +60552002021,612021,0.0336700336700337 +60552002021,612022,0.00336700336700337 +60552002021,612441,0.00336700336700337 +60552002021,612446,0 +60552002021,612508,0.0841750841750842 +60552002021,612615,0 +60552002021,612680,0.00336700336700337 +60552002021,612682,0 +60552002021,612683,0 +60552002022,0,0 +60552002022,610256,0.0386473429951691 +60552002022,610382,0.0869565217391304 +60552002022,611140,0.0144927536231884 +60552002022,611413,0.0193236714975845 +60552002022,611942,0.270531400966184 +60552002022,612149,0.178743961352657 +60552002022,612554,0.314009661835749 +60552002022,612556,0.0772946859903382 +60552002023,610217,0.0694444444444444 +60552002023,610218,0.116319444444444 +60552002023,610282,0.0590277777777778 +60552002023,610283,0.0590277777777778 +60552002023,610389,0.0434027777777778 +60552002023,610448,0.0486111111111111 +60552002023,611358,0.0555555555555556 +60552002023,611489,0.0416666666666667 +60552002023,611519,0.0659722222222222 +60552002023,611640,0.0659722222222222 +60552002023,612080,0.163194444444444 +60552002023,612251,0.0920138888888889 +60552002023,612422,0.0659722222222222 +60552002023,612545,0.0538194444444444 +60552002031,610281,0.655778894472362 +60552002031,610449,0.115577889447236 +60552002031,612142,0.042713567839196 +60552002031,612741,0.185929648241206 +60552002032,0,0 +60552002032,610334,0.145413870246085 +60552002032,610450,0.0246085011185682 +60552002032,610452,0.147651006711409 +60552002032,611410,0.058165548098434 +60552002032,611412,0.210290827740492 +60552002032,611484,0.172259507829978 +60552002032,612306,0.0514541387024608 +60552002032,612423,0.105145413870246 +60552002032,612546,0.0850111856823266 +60552003011,0,0 +60552003011,610093,0.0302521008403361 +60552003011,610192,0.203361344537815 +60552003011,610392,0.0184873949579832 +60552003011,610708,0 +60552003011,611038,0.0621848739495798 +60552003011,611229,0.0168067226890756 +60552003011,611409,0.388235294117647 +60552003011,611414,0.0605042016806723 +60552003011,611772,0.026890756302521 +60552003011,611932,0.0638655462184874 +60552003011,611949,0 +60552003011,612211,0.0605042016806723 +60552003011,612379,0.0689075630252101 +60552003011,612477,0 +60552003012,610016,0.257028112449799 +60552003012,610138,0 +60552003012,610391,0 +60552003012,610395,0.160642570281124 +60552003012,610501,0 +60552003012,610869,0 +60552003012,611520,0.309236947791165 +60552003012,611523,0.0662650602409638 +60552003012,611937,0 +60552003012,612362,0 +60552003012,612559,0.206827309236948 +60552003013,610258,0.0551181102362205 +60552003013,610707,0.0535433070866142 +60552003013,610798,0.140157480314961 +60552003013,610944,0.149606299212598 +60552003013,611209,0.0425196850393701 +60552003013,611292,0.0346456692913386 +60552003013,611417,0.0220472440944882 +60552003013,612308,0.236220472440945 +60552003013,612312,0.0519685039370079 +60552003013,612409,0.107086614173228 +60552003013,612560,0.107086614173228 +60552003021,610203,0.079155672823219 +60552003021,610554,0.176781002638522 +60552003021,610640,0.171503957783641 +60552003021,610945,0.0527704485488127 +60552003021,611056,0.131926121372032 +60552003021,611645,0.319261213720317 +60552003021,612107,0.0316622691292876 +60552003021,612315,0.0369393139841689 +60552003022,610135,0.0384615384615385 +60552003022,610269,0.358974358974359 +60552003022,610641,0.245726495726496 +60552003022,611575,0.0576923076923077 +60552003022,612316,0.0876068376068376 +60552003022,612693,0.211538461538462 +60552004001,610080,0.218085106382979 +60552004001,610540,0.0460992907801418 +60552004001,610604,0.0585106382978723 +60552004001,610755,0 +60552004001,610863,0.0514184397163121 +60552004001,610983,0.0833333333333333 +60552004001,611002,0.0851063829787234 +60552004001,611054,0.0478723404255319 +60552004001,611400,0.0354609929078014 +60552004001,611872,0.156028368794326 +60552004001,611999,0.00886524822695036 +60552004001,612201,0.00886524822695035 +60552004001,612447,0.200354609929078 +60552004002,0,0 +60552004002,610092,0.123028391167192 +60552004002,610095,0.026813880126183 +60552004002,610864,0.0772870662460568 +60552004002,610879,0 +60552004002,611300,0.0425867507886435 +60552004002,611774,0.123028391167192 +60552004002,611775,0.0457413249211356 +60552004002,611883,0.168769716088328 +60552004002,611886,0.0583596214511041 +60552004002,611887,0.0425867507886435 +60552004002,612620,0.0536277602523659 +60552004002,612621,0.10410094637224 +60552004002,612622,0.0126182965299685 +60552004002,612687,0.121451104100946 +60552004003,0,0 +60552004003,610319,0.0580110497237569 +60552004003,610672,0.0607734806629834 +60552004003,611065,0.110497237569061 +60552004003,611294,0.185082872928177 +60552004003,611295,0.0138121546961326 +60552004003,611945,0.0662983425414365 +60552004003,612061,0.074585635359116 +60552004003,612358,0.430939226519337 +60552005011,610331,0 +60552005011,610544,0 +60552005011,610573,0.503042596348884 +60552005011,611187,0 +60552005011,611250,0 +60552005011,612268,0.0608519269776876 +60552005011,612487,0.0243407707910751 +60552005011,612707,0.0547667342799189 +60552005011,612708,0.356997971602434 +60552005012,610328,0.0595533498759305 +60552005012,610630,0.119106699751861 +60552005012,610658,0.0446650124069479 +60552005012,610665,0.0669975186104218 +60552005012,611369,0.114143920595533 +60552005012,611371,0.0992555831265509 +60552005012,611375,0 +60552005012,611595,0.153846153846154 +60552005012,611599,0.0620347394540943 +60552005012,611600,0.0521091811414392 +60552005012,611601,0.0843672456575682 +60552005012,611686,0.13151364764268 +60552005012,612340,0.0124069478908189 +60552005013,610332,0.0437665782493369 +60552005013,610370,0.161803713527851 +60552005013,610809,0.0278514588859416 +60552005013,610814,0.0106100795755968 +60552005013,610955,0.0769230769230769 +60552005013,611126,0.0172413793103448 +60552005013,611128,0.0464190981432361 +60552005013,611129,0.0291777188328912 +60552005013,611609,0.255968169761273 +60552005013,611695,0.0225464190981432 +60552005013,611757,0.0344827586206897 +60552005013,612298,0.0994694960212202 +60552005013,612389,0.128647214854111 +60552005013,612439,0.0450928381962865 +60552005031,610723,0.0944558521560575 +60552005031,610813,0.0451745379876797 +60552005031,610815,0.0616016427104723 +60552005031,610992,0.00410677618069815 +60552005031,611130,0.0903490759753593 +60552005031,611688,0.026694045174538 +60552005031,612017,0.0657084188911704 +60552005031,612210,0.0225872689938398 +60552005031,612354,0.0246406570841889 +60552005031,612445,0.162217659137577 +60552005031,612506,0.316221765913758 +60552005031,612673,0.0862422997946612 +60552005032,0,0 +60552005032,610317,0 +60552005032,610428,0.014218009478673 +60552005032,610884,0.398104265402844 +60552005032,610885,0.0805687203791469 +60552005032,610993,0.18957345971564 +60552005032,611180,0 +60552005032,611210,0 +60552005032,611763,0.037914691943128 +60552005032,611770,0.0947867298578199 +60552005032,611771,0 +60552005032,611895,0 +60552005032,612093,0.033175355450237 +60552005032,612300,0.004739336492891 +60552005032,612611,0 +60552005032,612613,0.14218009478673 +60552005032,612677,0.004739336492891 +60552005041,610006,0.0275229357798165 +60552005041,610565,0.564220183486239 +60552005041,610953,0.120795107033639 +60552005041,610954,0.00917431192660551 +60552005041,611541,0.0382262996941896 +60552005041,611607,0.0107033639143731 +60552005041,611608,0.0703363914373089 +60552005041,611762,0.0214067278287462 +60552005041,612497,0.137614678899083 +60552005042,610364,0.0334148329258354 +60552005042,610577,0.0798696006519967 +60552005042,610579,0.0757946210268949 +60552005042,610662,0.0798696006519967 +60552005042,610778,0.12958435207824 +60552005042,611035,0.0301548492257539 +60552005042,611186,0.15240423797881 +60552005042,611188,0.0464547677261614 +60552005042,611223,0.000814995925020375 +60552005042,611391,0.0472697636511817 +60552005042,611401,0.228198859005705 +60552005042,612496,0.0154849225753871 +60552005042,612535,0.0806845965770171 +60552005043,610666,0.121052631578947 +60552005043,610715,0.310526315789474 +60552005043,610777,0.0736842105263158 +60552005043,611133,0.0473684210526316 +60552005043,611746,0.0868421052631579 +60552005043,612267,0.0526315789473684 +60552005043,612269,0.068421052631579 +60552005043,612271,0.107894736842105 +60552005043,612479,0.131578947368421 +60552005051,610047,0.50749063670412 +60552005051,611059,0.49250936329588 +60552005052,610194,0.503703703703704 +60552005052,611135,0.162962962962963 +60552005052,611705,0.0938271604938272 +60552005052,612060,0.0839506172839506 +60552005052,612610,0.155555555555556 +60552006011,610249,0.0938086303939963 +60552006011,610270,0.0712945590994371 +60552006011,610446,0.309568480300188 +60552006011,610472,0.0656660412757974 +60552006011,611041,0.110694183864916 +60552006011,611347,0.25515947467167 +60552006011,612255,0.0938086303939962 +60552006012,610352,0.0821529745042493 +60552006012,610475,0.0878186968838527 +60552006012,610796,0.178470254957507 +60552006012,611252,0.189801699716714 +60552006012,611253,0.110481586402266 +60552006012,611461,0.110481586402266 +60552006012,611739,0.0708215297450425 +60552006012,612086,0.0538243626062323 +60552006012,612157,0.11614730878187 +60552006013,610477,0.0357142857142857 +60552006013,610511,0.200892857142857 +60552006013,611022,0.0736607142857143 +60552006013,611255,0.078125 +60552006013,611531,0.0625 +60552006013,611659,0.0267857142857143 +60552006013,611740,0.0133928571428571 +60552006013,612085,0.0669642857142857 +60552006013,612087,0.0357142857142857 +60552006013,612160,0.100446428571429 +60552006013,612353,0.0758928571428571 +60552006013,612405,0.229910714285714 +60552006014,610474,0.488817891373802 +60552006014,610651,0 +60552006014,612478,0.479233226837061 +60552006014,612665,0.0319488817891374 +60552006021,610022,0.0894386298763083 +60552006021,610262,0.0352045670789724 +60552006021,610336,0.0142721217887726 +60552006021,610476,0.0675547098001903 +60552006021,610509,0.0951474785918173 +60552006021,610510,0.0352045670789724 +60552006021,611218,0.0371075166508088 +60552006021,611419,0.0333016175071361 +60552006021,611743,0.313035204567079 +60552006021,611992,0.110371075166508 +60552006021,611995,0.0199809705042816 +60552006021,612297,0.149381541389153 +60552006022,610508,0.0868263473053892 +60552006022,610653,0.158682634730539 +60552006022,610654,0.062874251497006 +60552006022,610978,0.137724550898204 +60552006022,611037,0.413173652694611 +60552006022,611279,0.140718562874251 +60552006023,610014,0.0443349753694581 +60552006023,610086,0.0985221674876847 +60552006023,610880,0.0665024630541872 +60552006023,611018,0.0812807881773399 +60552006023,611702,0.201970443349754 +60552006023,611737,0.177339901477833 +60552006023,611817,0.0492610837438424 +60552006023,611950,0.280788177339901 +60552007031,610225,0.294044665012407 +60552007031,610254,0.141439205955335 +60552007031,610259,0.11166253101737 +60552007031,610570,0.0359801488833747 +60552007031,611085,0.0384615384615385 +60552007031,611288,0.0260545905707196 +60552007031,611656,0.0570719602977667 +60552007031,611991,0.0843672456575682 +60552007031,612313,0.0272952853598015 +60552007031,612481,0.0359801488833747 +60552007031,612533,0.116625310173697 +60552007031,612669,0.0310173697270471 +60552007032,610404,0.481375358166189 +60552007032,610462,0.0630372492836676 +60552007032,611016,0.111747851002865 +60552007032,611246,0.169054441260745 +60552007032,612045,0.0888252148997135 +60552007032,612482,0.0859598853868195 +60552007041,610227,0.188387096774194 +60552007041,610228,0.0890322580645161 +60552007041,610379,0.0335483870967742 +60552007041,610463,0.0748387096774194 +60552007041,610464,0.0670967741935484 +60552007041,610506,0.114838709677419 +60552007041,610805,0.130322580645161 +60552007041,611972,0.0567741935483871 +60552007041,611994,0.136774193548387 +60552007041,612185,0.108387096774194 +60552007042,610020,0.0150862068965517 +60552007042,610340,0.150862068965517 +60552007042,610415,0.165948275862069 +60552007042,611185,0.209051724137931 +60552007042,611367,0.0560344827586207 +60552007042,611436,0.0560344827586207 +60552007042,611437,0.140086206896552 +60552007042,611594,0.0732758620689655 +60552007042,612261,0.0797413793103448 +60552007042,612326,0.0538793103448276 +60552007043,610765,0.0973684210526316 +60552007043,611249,0.189473684210526 +60552007043,611745,0.339473684210526 +60552007043,611846,0.00526315789473684 +60552007043,611867,0.0578947368421053 +60552007043,612415,0.310526315789474 +60552007051,610005,0.0538336052202284 +60552007051,610154,0.120717781402936 +60552007051,610330,0.0815660685154976 +60552007051,610468,0.135399673735726 +60552007051,610542,0.223491027732463 +60552007051,610661,0.0407830342577488 +60552007051,611374,0.0783034257748777 +60552007051,611597,0.0831973898858075 +60552007051,611849,0.0456769983686786 +60552007051,661598,0.137030995106036 +60552007052,610265,0.142857142857143 +60552007052,611683,0.192307692307692 +60552007052,612335,0.664835164835165 +60552007061,610371,0.231552162849873 +60552007061,610372,0.124681933842239 +60552007061,610374,0.0407124681933842 +60552007061,611283,0.0712468193384224 +60552007061,611579,0.206106870229008 +60552007061,611828,0.0763358778625954 +60552007061,612135,0.150127226463104 +60552007061,612236,0.099236641221374 +60552007062,610247,0.160975609756098 +60552007062,610613,0.34390243902439 +60552007062,611042,0.104878048780488 +60552007062,612075,0.275609756097561 +60552007062,612388,0.114634146341463 +60552007063,610188,0.0979228486646884 +60552007063,612373,0.902077151335312 +60552007071,610252,0.0134983127109111 +60552007071,610375,0.328458942632171 +60552007071,610376,0.0269966254218223 +60552007071,610795,0.0809898762654668 +60552007071,611049,0.0258717660292463 +60552007071,611050,0.061867266591676 +60552007071,611116,0.0697412823397075 +60552007071,611285,0.328458942632171 +60552007071,612531,0.0641169853768279 +60552007072,610251,0.126984126984127 +60552007072,610566,0.0430839002267574 +60552007072,610790,0.036281179138322 +60552007072,610792,0.124716553287982 +60552007072,610859,0.229024943310658 +60552007072,611286,0.117913832199546 +60552007072,611940,0.294784580498866 +60552007072,612198,0.0272108843537415 +60552008021,610034,0.492354740061162 +60552008021,610035,0.211009174311927 +60552008021,610638,0.296636085626911 +60552008022,610491,0.380451127819549 +60552008022,611068,0.0556390977443609 +60552008022,611224,0.117293233082707 +60552008022,611230,0.118796992481203 +60552008022,611540,0.12781954887218 +60552008022,611959,0.0300751879699248 +60552008022,612013,0.0601503759398496 +60552008022,612072,0.0421052631578947 +60552008022,612132,0.0676691729323308 +60552008023,0,0 +60552008023,610266,0 +60552008023,610543,0.335309060118544 +60552008023,610667,0.295512277730737 +60552008023,611241,0.0508044030482642 +60552008023,611242,0.0931414055884843 +60552008023,611636,0 +60552008023,611967,0 +60552008023,612147,0.0270956816257409 +60552008023,612208,0 +60552008023,612436,0.159187129551228 +60552008023,612705,0.0389500423370025 +60552008031,610030,0.125 +60552008031,610571,0.0416666666666667 +60552008031,611111,0.0333333333333333 +60552008031,611303,0.0472222222222222 +60552008031,611470,0.452777777777778 +60552008031,611639,0.0805555555555555 +60552008031,611957,0.15 +60552008031,612381,0.0694444444444444 +60552008032,610021,0.081799591002045 +60552008032,610224,0.398773006134969 +60552008032,610695,0.0961145194274029 +60552008032,610760,0.137014314928425 +60552008032,611173,0.229038854805726 +60552008032,612528,0.0572597137014315 +60552008041,610659,0.0985507246376812 +60552008041,610769,0.130434782608696 +60552008041,612003,0.420289855072464 +60552008041,612264,0.0869565217391304 +60552008041,612265,0.0898550724637681 +60552008041,612336,0.0869565217391304 +60552008041,612338,0.0869565217391304 +60552008042,610101,0.612299465240642 +60552008042,610774,0.10427807486631 +60552008042,611070,0.0320855614973262 +60552008042,611304,0.0775401069518717 +60552008042,611343,0.106951871657754 +60552008042,612069,0.0668449197860963 +60552008043,611306,0.0725 +60552008043,611349,0.9275 +60552008044,610033,0.0756501182033097 +60552008044,610100,0.0425531914893617 +60552008044,611307,0.574468085106383 +60552008044,611344,0.156028368794326 +60552008044,611350,0.151300236406619 +60552009001,0,0 +60552009001,610161,0.136363636363636 +60552009001,610299,0 +60552009001,610455,0 +60552009001,610932,0 +60552009001,611101,0.0454545454545455 +60552009001,612249,0 +60552009001,612427,0 +60552009001,612466,0.818181818181818 +60552009001,612733,0 +60552010031,0,0 +60552010031,610149,0.00396825396825397 +60552010031,610219,0.0119047619047619 +60552010031,610305,0.420634920634921 +60552010031,610457,0.0238095238095238 +60552010031,610773,0.0476190476190476 +60552010031,610933,0.00793650793650794 +60552010031,611650,0.111111111111111 +60552010031,611822,0 +60552010031,611898,0 +60552010031,611901,0.0238095238095238 +60552010031,612205,0.0952380952380952 +60552010031,612549,0.0277777777777778 +60552010031,612606,0.226190476190476 +60552010032,610144,0 +60552010032,610145,0.19588638589618 +60552010032,610185,0.118511263467189 +60552010032,610221,0.079333986287953 +60552010032,610245,0.136141038197845 +60552010032,610438,0.0303623898139079 +60552010032,610789,0.0264446620959843 +60552010032,610939,0.0381978452497551 +60552010032,611474,0 +60552010032,611871,0.111655239960823 +60552010032,611903,0.0950048971596474 +60552010032,612310,0.0029382957884427 +60552010032,612361,0.000979431929480901 +60552010032,612418,0.160626836434868 +60552010032,612748,0.0039177277179236 +60552010041,610140,0.0447080291970803 +60552010041,610467,0.041970802919708 +60552010041,611047,0.222627737226277 +60552010041,611453,0.0355839416058394 +60552010041,611535,0 +60552010041,611578,0.00638686131386861 +60552010041,611971,0.0374087591240876 +60552010041,612324,0.473540145985401 +60552010041,612749,0.0802919708029197 +60552010041,612752,0.0574817518248175 +60552010042,0,0 +60552010042,610222,0 +60552010042,610255,0.0316301703163017 +60552010042,610343,0.086374695863747 +60552010042,610362,0.302919708029197 +60552010042,610534,0.109489051094891 +60552010042,610559,0.01338199513382 +60552010042,610648,0.0328467153284672 +60552010042,610704,0.12043795620438 +60552010042,610797,0.0583941605839416 +60552010042,611247,0.0352798053527981 +60552010042,611372,0.0839416058394161 +60552010042,611590,0.0547445255474453 +60552010042,611948,0.0705596107055961 +60552010051,0,0 +60552010051,610024,0.0113207547169811 +60552010051,610027,0.0792452830188679 +60552010051,610039,0.0679245283018868 +60552010051,610049,0 +60552010051,610298,0.275471698113208 +60552010051,610398,0 +60552010051,610429,0 +60552010051,610458,0 +60552010051,610628,0 +60552010051,610668,0 +60552010051,610685,0.00754716981132075 +60552010051,610775,0.0641509433962264 +60552010051,610950,0 +60552010051,611061,0 +60552010051,611073,0.00754716981132075 +60552010051,611219,0.00754716981132075 +60552010051,611311,0 +60552010051,611420,0 +60552010051,611431,0 +60552010051,611495,0.207547169811321 +60552010051,611526,0.0452830188679245 +60552010051,611534,0 +60552010051,611816,0 +60552010051,611840,0 +60552010051,611874,0.147169811320755 +60552010051,611875,0.0528301886792453 +60552010051,611952,0 +60552010051,611969,0 +60552010051,612272,0 +60552010051,612434,0 +60552010051,612540,0 +60552010051,612658,0 +60552010051,612661,0.0264150943396226 +60552010051,612726,0 +60552010052,610091,0.523002421307506 +60552010052,610615,0.0920096852300242 +60552010052,612320,0.14043583535109 +60552010052,612383,0.0799031476997579 +60552010052,612410,0.164648910411622 +60552010061,610147,0.138728323699422 +60552010061,610148,0.046242774566474 +60552010061,610981,0.0327552986512524 +60552010061,611586,0.069364161849711 +60552010061,611647,0.0578034682080925 +60552010061,611673,0.0558766859344894 +60552010061,611815,0.225433526011561 +60552010061,611820,0.146435452793834 +60552010061,612136,0.0616570327552987 +60552010061,612206,0.165703275529865 +60552010062,610337,0.0808988764044944 +60552010062,610532,0.226966292134831 +60552010062,610533,0.0404494382022472 +60552010062,610556,0.0134831460674157 +60552010062,610799,0.0606741573033708 +60552010062,611452,0.0224719101123595 +60552010062,611492,0.166292134831461 +60552010062,611587,0.0674157303370786 +60552010062,611674,0.0382022471910112 +60552010062,611675,0.0179775280898876 +60552010062,611954,0.265168539325843 +60552010071,610009,0.308411214953271 +60552010071,610038,0.110280373831776 +60552010071,611212,0.194392523364486 +60552010071,611499,0.0485981308411215 +60552010071,612002,0.0953271028037383 +60552010071,612468,0.0672897196261682 +60552010071,612688,0.104672897196262 +60552010071,612747,0.0710280373831776 +60552010072,610143,0.122241086587436 +60552010072,610459,0.0713073005093379 +60552010072,610557,0.120543293718166 +60552010072,610558,0.0203735144312394 +60552010072,610616,0.186757215619694 +60552010072,611036,0.117147707979626 +60552010072,611676,0.0611205432937182 +60552010072,611832,0.112054329371817 +60552010072,612594,0.188455008488964 +60552011011,610153,0.0739030023094688 +60552011011,610322,0.445727482678984 +60552011011,610619,0.092378752886836 +60552011011,610652,0.103926096997691 +60552011011,610683,0.251732101616628 +60552011011,611107,0.0184757505773672 +60552011011,612419,0.0138568129330254 +60552011012,610044,0.257668711656442 +60552011012,610367,0.285276073619632 +60552011012,611290,0.420245398773006 +60552011012,612187,0.0368098159509202 +60552011021,0,0 +60552011021,610002,0 +60552011021,610156,0.0270793036750484 +60552011021,610351,0.0193423597678917 +60552011021,610627,0.135396518375242 +60552011021,610934,0.00580270793036751 +60552011021,610952,0.04642166344294 +60552011021,611015,0.615087040618955 +60552011021,611020,0.0735009671179884 +60552011021,611301,0.0154738878143133 +60552011021,611753,0 +60552011021,611964,0.0174081237911025 +60552011021,612154,0.0444874274661509 +60552011022,0,0 +60552011022,610028,0.0548780487804878 +60552011022,610160,0.26219512195122 +60552011022,610300,0.0335365853658537 +60552011022,611078,0.024390243902439 +60552011022,611102,0 +60552011022,611342,0.0152439024390244 +60552011022,611894,0.0457317073170732 +60552011022,611905,0.280487804878049 +60552011022,611968,0.283536585365854 +60552012001,610074,0.0640394088669951 +60552012001,610151,0.0492610837438424 +60552012001,610461,0.113300492610837 +60552012001,610989,0.0443349753694581 +60552012001,611190,0.399014778325123 +60552012001,611536,0.0197044334975369 +60552012001,611602,0.00492610837438424 +60552012001,612110,0.00985221674876847 +60552012001,612159,0.0689655172413793 +60552012001,612166,0.108374384236453 +60552012001,612273,0.118226600985222 +60552012002,610159,0.0833333333333333 +60552012002,610444,0.071078431372549 +60552012002,610516,0.0931372549019608 +60552012002,610671,0.117647058823529 +60552012002,611542,0.0661764705882353 +60552012002,612092,0.321078431372549 +60552012002,612127,0.21078431372549 +60552012002,612235,0.0367647058823529 +60552012003,610246,0.214285714285714 +60552012003,610325,0.227602905569007 +60552012003,610940,0.236077481840194 +60552012003,611058,0.0605326876513317 +60552012003,611221,0.0145278450363196 +60552012003,611493,0.0641646489104116 +60552012003,611888,0.0254237288135593 +60552012003,611947,0.138014527845036 +60552012003,612386,0.0193704600484262 +60552012004,610791,0.0760667903525046 +60552012004,611044,0.098330241187384 +60552012004,611046,0.207792207792208 +60552012004,611248,0.0556586270871985 +60552012004,611685,0.0278293135435993 +60552012004,611941,0.306122448979592 +60552012004,612287,0.0575139146567718 +60552012004,612288,0.0556586270871985 +60552012004,612302,0.0408163265306122 +60552012004,612432,0.0742115027829314 +60552013001,610150,0 +60552013001,610196,0.111313868613139 +60552013001,610271,0.0218978102189781 +60552013001,610545,0.281021897810219 +60552013001,610581,0.0364963503649635 +60552013001,610644,0.206204379562044 +60552013001,610882,0.343065693430657 +60552013002,610069,1 +60552013003,611902,1 +60552014011,0,0 +60552014011,610349,0.026634382566586 +60552014011,610562,0.0581113801452785 +60552014011,610860,0.0944309927360775 +60552014011,611014,0.113801452784504 +60552014011,611080,0.273607748184019 +60552014011,611425,0.00968523002421308 +60552014011,611583,0.0193704600484262 +60552014011,611657,0.0193704600484262 +60552014011,611900,0.130750605326877 +60552014011,611966,0.179176755447942 +60552014011,612162,0.00726392251815981 +60552014011,612421,0.0677966101694915 +60552014012,0,0 +60552014012,610007,0.0719178082191781 +60552014012,610460,0.107876712328767 +60552014012,610538,0.270547945205479 +60552014012,610624,0.0650684931506849 +60552014012,610699,0.0428082191780822 +60552014012,610867,0.0873287671232877 +60552014012,610979,0.14041095890411 +60552014012,612588,0.214041095890411 +60552014013,610347,0.481865284974093 +60552014013,610406,0.119170984455959 +60552014013,610470,0.215025906735751 +60552014013,610725,0.116580310880829 +60552014013,611699,0.0362694300518135 +60552014013,612509,0.0310880829015544 +60552014021,611823,0.895622895622896 +60552014021,611839,0.0336700336700337 +60552014021,612202,0.0707070707070707 +60552014022,611309,0.163333333333333 +60552014022,611892,0.1 +60552014022,611987,0.203333333333333 +60552014022,612590,0.263333333333333 +60552014022,612715,0.27 +60552014023,610471,0.488245931283906 +60552014023,611081,0.0180831826401447 +60552014023,611603,0.417721518987342 +60552014023,612689,0.0759493670886076 +60552014031,0,0 +60552014031,610051,0.167630057803468 +60552014031,610220,0.312138728323699 +60552014031,610807,0.0809248554913295 +60552014031,611200,0.0809248554913295 +60552014031,611652,0.219653179190751 +60552014031,612091,0.023121387283237 +60552014031,612753,0.115606936416185 +60552014032,0,0 +60552014032,610079,0.0863309352517986 +60552014032,610410,0.0143884892086331 +60552014032,610411,0.697841726618705 +60552014032,610515,0.0287769784172662 +60552014032,611191,0.172661870503597 +60552015001,0,0 +60552015001,610053,0.0548245614035088 +60552015001,610130,0.0175438596491228 +60552015001,610598,0 +60552015001,610601,0.0197368421052632 +60552015001,610694,0.0504385964912281 +60552015001,610738,0.0175438596491228 +60552015001,610744,0.0307017543859649 +60552015001,610843,0.0197368421052632 +60552015001,610856,0.00219298245614035 +60552015001,610916,0.0986842105263158 +60552015001,611402,0.0548245614035088 +60552015001,611403,0.0526315789473684 +60552015001,611561,0 +60552015001,611565,0.0592105263157895 +60552015001,611622,0.0701754385964912 +60552015001,611623,0.00219298245614035 +60552015001,611624,0.0153508771929825 +60552015001,611631,0.0285087719298246 +60552015001,611720,0.0153508771929825 +60552015001,611727,0.00657894736842105 +60552015001,612575,0.103070175438596 +60552015001,612579,0.0153508771929825 +60552015001,612582,0.199561403508772 +60552015001,612640,0.0657894736842105 +60552015002,0,0 +60552015002,610116,0.0666666666666667 +60552015002,610132,0.157575757575758 +60552015002,610133,0.0606060606060606 +60552015002,610599,0.0303030303030303 +60552015002,610689,0.127272727272727 +60552015002,610842,0.0212121212121212 +60552015002,610849,0.151515151515152 +60552015002,611171,0.0484848484848485 +60552015002,611172,0 +60552015002,611562,0.0393939393939394 +60552015002,611628,0.0151515151515152 +60552015002,611806,0.00303030303030303 +60552015002,611810,0.00909090909090909 +60552015002,612471,0.0545454545454545 +60552015002,612473,0.0515151515151515 +60552015002,612577,0.0121212121212121 +60552015002,612578,0.121212121212121 +60552015002,612770,0.0303030303030303 +60552016011,610118,0.092964824120603 +60552016011,610688,0.148241206030151 +60552016011,610752,0.050251256281407 +60552016011,611563,0.0603015075376884 +60552016011,611567,0.256281407035176 +60552016011,611627,0.195979899497487 +60552016011,612576,0.170854271356784 +60552016011,612648,0 +60552016011,612652,0.0251256281407035 +60552016012,610164,0.243298969072165 +60552016012,610749,0.109278350515464 +60552016012,610751,0 +60552016012,610844,0.461855670103093 +60552016012,610845,0.0391752577319588 +60552016012,611161,0.111340206185567 +60552016012,612765,0.0350515463917526 +60552016021,610691,0.114155251141553 +60552016021,610984,0.490867579908676 +60552016021,611168,0.214611872146119 +60552016021,611570,0.0730593607305936 +60552016021,612586,0.0616438356164384 +60552016021,612767,0.045662100456621 +60552016022,610119,0.0528301886792453 +60552016022,610122,0.566037735849057 +60552016022,610125,0.260377358490566 +60552016022,611155,0.0150943396226415 +60552016022,611725,0.105660377358491 +60552016023,610128,0.0037037037037037 +60552016023,610745,0.2 +60552016023,610847,0.0851851851851852 +60552016023,610851,0.0777777777777778 +60552016023,611162,0.137037037037037 +60552016023,611163,0.0666666666666667 +60552016023,611164,0.0296296296296296 +60552016023,611798,0.0296296296296296 +60552016023,611799,0.0555555555555556 +60552016023,612585,0.0666666666666667 +60552016023,612756,0.0777777777777778 +60552016023,612761,0.0851851851851852 +60552016023,612762,0.0851851851851852 +60552016024,610117,0.264220183486239 +60552016024,610127,0.0568807339449541 +60552016024,610602,0.557798165137615 +60552016024,610917,0 +60552016024,611625,0.121100917431193 +60552017001,0,0 +60552017001,610063,0.484978540772532 +60552017001,610166,0.133047210300429 +60552017001,610308,0.0600858369098712 +60552017001,610919,0.00858369098712446 +60552017001,610925,0.188841201716738 +60552017001,611025,0.0901287553648069 +60552017001,611333,0.0128755364806867 +60552017001,611914,0.0214592274678112 +60552017002,610066,0.675141242937853 +60552017002,610307,0.307909604519774 +60552017002,610921,0.0169491525423729 +60552017003,610058,0.213855421686747 +60552017003,610067,0.355421686746988 +60552017003,611976,0.27710843373494 +60552017003,611978,0.0331325301204819 +60552017003,611984,0 +60552017003,612169,0.120481927710843 +60552017004,0,0 +60552017004,610054,0.0681818181818182 +60552017004,610064,0.0653409090909091 +60552017004,610169,0.116477272727273 +60552017004,610311,0.0454545454545455 +60552017004,610315,0 +60552017004,610857,0.0284090909090909 +60552017004,610927,0.03125 +60552017004,610928,0.0795454545454545 +60552017004,611028,0.113636363636364 +60552017004,611093,0.0909090909090909 +60552017004,611912,0.0909090909090909 +60552017004,611913,0.269886363636364 +60552017005,610171,0.0294117647058824 +60552017005,610175,0.0661764705882353 +60552017005,610929,0.0772058823529412 +60552017005,611024,0.547794117647059 +60552017005,611031,0.0625 +60552017005,611032,0.0551470588235294 +60552017005,611098,0.121323529411765 +60552017005,611335,0.0404411764705882 +60552017006,610057,0.0639097744360902 +60552017006,610060,0.0639097744360902 +60552017006,610924,0.0789473684210526 +60552017006,611332,0.605263157894737 +60552017006,611503,0.112781954887218 +60552017006,611504,0.075187969924812 +60552018001,0,0 +60552018001,610233,0.0217391304347826 +60552018001,610242,0 +60552018001,610417,0 +60552018001,610483,0.415760869565217 +60552018001,610674,0.0190217391304348 +60552018001,611100,0 +60552018001,611262,0.0489130434782609 +60552018001,611381,0.0244565217391304 +60552018001,611507,0.00815217391304348 +60552018001,611920,0.0543478260869565 +60552018001,611921,0.00543478260869565 +60552018001,612032,0.016304347826087 +60552018001,612172,0.0244565217391304 +60552018001,612173,0.345108695652174 +60552018001,612175,0.016304347826087 +60552018002,0,0 +60552018002,610421,0.705882352941177 +60552018002,610521,0.0392156862745098 +60552018002,612348,0.254901960784314 +60552019001,610111,0.087719298245614 +60552019001,610735,0.371929824561403 +60552019001,610736,0.0210526315789474 +60552019001,610907,0 +60552019001,611313,0.189473684210526 +60552019001,611491,0.0807017543859649 +60552019001,611617,0.0842105263157895 +60552019001,611618,0.0842105263157895 +60552019001,611780,0.0701754385964912 +60552019001,612459,0.0105263157894737 +60552019001,612461,0 +60552019002,610110,0.00366300366300366 +60552019002,610113,0.0512820512820513 +60552019002,610833,0.021978021978022 +60552019002,610840,0 +60552019002,610841,0.00366300366300366 +60552019002,611150,0.311355311355311 +60552019002,611151,0.102564102564103 +60552019002,611153,0.0879120879120879 +60552019002,611312,0.021978021978022 +60552019002,611711,0.315018315018315 +60552019002,612562,0.0659340659340659 +60552019002,612565,0.010989010989011 +60552019002,612623,0.00366300366300366 +60552020001,610292,0.413173652694611 +60552020001,610899,0.542914171656687 +60552020001,611790,0.00399201596806387 +60552020001,612629,0.0399201596806387 +60552020002,610293,0.243767313019391 +60552020002,610831,0.390581717451524 +60552020002,610837,0.113573407202216 +60552020002,611319,0.0443213296398892 +60552020002,611320,0.0886426592797784 +60552020002,612400,0.0803324099722992 +60552020002,612630,0.038781163434903 +60552020003,610285,0.114638447971781 +60552020003,610288,0.0652557319223986 +60552020003,610289,0.00705467372134039 +60552020003,610290,0.0388007054673721 +60552020003,610294,0.195767195767196 +60552020003,610830,0.119929453262787 +60552020003,610839,0.0299823633156966 +60552020003,611006,0.144620811287478 +60552020003,611324,0.00352733686067019 +60552020003,611786,0.00529100529100529 +60552020003,611787,0.072310405643739 +60552020003,612561,0.126984126984127 +60552020003,612628,0.0758377425044092 +60552020004,610287,0.152542372881356 +60552020004,610291,0.198305084745763 +60552020004,610835,0.0169491525423729 +60552020004,610836,0.0898305084745763 +60552020004,610904,0.316949152542373 +60552020004,611314,0.076271186440678 +60552020004,611714,0.0169491525423729 +60552020004,611789,0.0203389830508475 +60552020004,612398,0.111864406779661 +60750101001,0,0 +60750101001,10308,0.544802867383513 +60750101001,10369,0 +60750101001,10370,0 +60750101001,10377,0 +60750101001,11368,0 +60750101001,11369,0 +60750101001,11879,0 +60750101001,12120,0.274193548387097 +60750101001,12440,0.10752688172043 +60750101001,12494,0 +60750101001,12495,0 +60750101001,13460,0 +60750101001,13461,0.0197132616487455 +60750101001,17062,0.0537634408602151 +60750101001,17260,0 +60750101002,11374,0.0221932114882507 +60750101002,11785,0 +60750101002,11839,0.178851174934726 +60750101002,12121,0.0613577023498695 +60750101002,12496,0.114882506527415 +60750101002,13414,0.100522193211488 +60750101002,13459,0.115535248041775 +60750101002,13469,0.0985639686684073 +60750101002,13928,0.0868146214099217 +60750101002,14283,0 +60750101002,17366,0.0998694516971279 +60750101002,17367,0.121409921671018 +60750102001,0,0 +60750102001,10368,0.0831168831168831 +60750102001,10489,0.166233766233766 +60750102001,10986,0.112987012987013 +60750102001,11367,0.0727272727272727 +60750102001,11882,0.0896103896103896 +60750102001,11999,0.115584415584416 +60750102001,12433,0.0792207792207792 +60750102001,15477,0 +60750102001,15478,0.051948051948052 +60750102001,15903,0.074025974025974 +60750102001,17273,0 +60750102001,17319,0 +60750102001,17362,0.154545454545455 +60750102002,10372,0.0844841592201462 +60750102002,10490,0.164906580016247 +60750102002,10989,0.09910641754671 +60750102002,10990,0.0966693744922827 +60750102002,11491,0.0885458976441917 +60750102002,15961,0.119415109666937 +60750102002,16485,0.238830219333875 +60750102002,17274,0.10804224207961 +60750102003,10600,0 +60750102003,11697,0.156537753222836 +60750102003,13066,0.268876611418048 +60750102003,14475,0.141804788213628 +60750102003,15475,0.331491712707182 +60750102003,15956,0 +60750102003,15957,0.101289134438306 +60750103001,10302,0.15422276621787 +60750103001,11127,0.0844553243574051 +60750103001,11371,0.230110159118727 +60750103001,11881,0.0391676866585067 +60750103001,13462,0.0660954712362301 +60750103001,13464,0.0514075887392901 +60750103001,13467,0.155446756425949 +60750103001,13470,0.219094247246022 +60750103002,12436,0.223853211009174 +60750103002,12439,0.264220183486239 +60750103002,12499,0.306422018348624 +60750103002,16155,0.205504587155963 +60750103003,10376,0.215361445783133 +60750103003,12438,0.137048192771084 +60750103003,12498,0.197289156626506 +60750103003,13466,0.271084337349398 +60750103003,17364,0.17921686746988 +60750104001,10309,0.474509803921569 +60750104001,11884,0.298039215686275 +60750104001,12812,0 +60750104001,12813,0.227450980392157 +60750104002,10378,0.173703256936068 +60750104002,12122,0.176115802171291 +60750104002,12123,0.165259348612786 +60750104002,12124,0.101326899879373 +60750104002,12814,0.174909529553679 +60750104002,16156,0.208685162846803 +60750104003,10218,0.0771739130434783 +60750104003,13230,0.183695652173913 +60750104003,13415,0.0880434782608696 +60750104003,13653,0.0478260869565217 +60750104003,13997,0.282608695652174 +60750104003,14000,0.0956521739130435 +60750104003,15661,0.104347826086957 +60750104003,17275,0.120652173913043 +60750104004,13119,0.353684210526316 +60750104004,13306,0.351578947368421 +60750104004,13655,0.185263157894737 +60750104004,15363,0.109473684210526 +60750105001,0,0 +60750105001,11130,0 +60750105001,13124,0 +60750105001,13235,0 +60750105001,13236,0.162745098039216 +60750105001,13307,0 +60750105001,13308,0 +60750105001,13422,0 +60750105001,13486,0 +60750105001,13657,0 +60750105001,13998,0.301960784313725 +60750105001,14002,0.0627450980392157 +60750105001,14059,0 +60750105001,14228,0.158823529411765 +60750105001,14284,0.313725490196078 +60750105001,15361,0 +60750105001,15364,0 +60750105001,15423,0 +60750105001,16262,0 +60750105001,16715,0 +60750105002,0,0 +60750105002,10087,0 +60750105002,14613,0.0264505119453925 +60750105002,14659,0 +60750105002,15080,0 +60750105002,15259,0 +60750105002,15431,0.905290102389078 +60750105002,15432,0 +60750105002,15762,0 +60750105002,15985,0 +60750105002,16716,0 +60750105002,16784,0 +60750105002,17323,0.068259385665529 +60750106001,12188,0.325769854132901 +60750106001,13999,0.340356564019449 +60750106001,15362,0.33387358184765 +60750106002,13121,0.0969455511288181 +60750106002,13309,0.127490039840637 +60750106002,13656,0.148738379814077 +60750106002,14001,0.50863213811421 +60750106002,14340,0.118193891102258 +60750106003,12303,0.189147286821705 +60750106003,12816,0.196899224806202 +60750106003,13347,0.232558139534884 +60750106003,14414,0.381395348837209 +60750107001,13348,0.44047619047619 +60750107001,13416,0.55952380952381 +60750107002,11323,0.337614678899083 +60750107002,11324,0.330275229357798 +60750107002,13417,0.332110091743119 +60750107003,11121,0.261363636363636 +60750107003,12130,0.1625 +60750107003,14415,0.198863636363636 +60750107003,17322,0.377272727272727 +60750107004,12127,0.470525187566988 +60750107004,13350,0.130760986066452 +60750107004,17365,0.398713826366559 +60750108001,10375,0.165329052969502 +60750108001,12306,0.22792937399679 +60750108001,12435,0.113964686998395 +60750108001,12923,0.258426966292135 +60750108001,13471,0.234349919743178 +60750108002,11122,0.316455696202532 +60750108002,12818,0.130379746835443 +60750108002,12924,0.234177215189873 +60750108002,13354,0.318987341772152 +60750108003,12307,0.212972972972973 +60750108003,12819,0.231351351351351 +60750108003,13523,0.121081081081081 +60750108003,13869,0.217297297297297 +60750108003,14423,0.217297297297297 +60750109001,10373,0.262809917355372 +60750109001,10724,0.277685950413223 +60750109001,12447,0.251239669421488 +60750109001,15963,0.208264462809917 +60750109002,10157,0.131856540084388 +60750109002,12434,0.160337552742616 +60750109002,12541,0.164556962025316 +60750109002,15962,0.216244725738397 +60750109002,15972,0.137130801687764 +60750109002,17363,0.189873417721519 +60750109003,11492,0.164651162790698 +60750109003,13065,0.129302325581395 +60750109003,15481,0.150697674418605 +60750109003,15907,0.217674418604651 +60750109003,15959,0.194418604651163 +60750109003,16454,0.143255813953488 +60750110001,10503,0.257936507936508 +60750110001,11125,0.271825396825397 +60750110001,12006,0.234126984126984 +60750110001,12008,0.236111111111111 +60750110002,12191,0.211221122112211 +60750110002,14416,0.166116611661166 +60750110002,14417,0.12981298129813 +60750110002,14418,0.273927392739274 +60750110002,17304,0.116611661166117 +60750110002,17316,0.102310231023102 +60750110003,12131,0.247645951035782 +60750110003,12305,0.215630885122411 +60750110003,13451,0.192090395480226 +60750110003,17254,0.164783427495292 +60750110003,17305,0.0932203389830508 +60750110003,17315,0.0866290018832392 +60750111001,10950,0.196029776674938 +60750111001,12427,0.120760959470637 +60750111001,12817,0.227460711331679 +60750111001,13063,0.0727874276261373 +60750111001,13425,0.19933829611249 +60750111001,17306,0.183622828784119 +60750111002,11326,0.217115689381933 +60750111002,11874,0.131537242472266 +60750111002,12132,0.183042789223455 +60750111002,12232,0.225832012678288 +60750111002,12492,0.043581616481775 +60750111002,13355,0.198890649762282 +60750111003,12193,0.260797342192691 +60750111003,15663,0.420265780730897 +60750111003,17256,0.318936877076412 +60750112001,10079,0.345597897503285 +60750112001,12820,0.438896189224704 +60750112001,13176,0.215505913272011 +60750112002,12192,0.156206415620642 +60750112002,12309,0.125523012552301 +60750112002,12310,0.117154811715481 +60750112002,13297,0.285913528591353 +60750112002,13870,0.315202231520223 +60750112003,12446,0.384210526315789 +60750112003,13177,0 +60750112003,13526,0 +60750112003,13871,0.00526315789473684 +60750112003,15662,0.610526315789474 +60750113001,13112,0.398425196850394 +60750113001,14336,0.28503937007874 +60750113001,15354,0.316535433070866 +60750113002,12773,0.367713004484305 +60750113002,13300,0.123318385650224 +60750113002,13528,0.0739910313901345 +60750113002,15355,0.130044843049327 +60750113002,16679,0.304932735426009 +60750117001,10259,0 +60750117001,11515,0 +60750117001,13302,0.6 +60750117001,13724,0.0255813953488372 +60750117001,13725,0 +60750117001,13726,0.223255813953488 +60750117001,13727,0 +60750117001,13729,0 +60750117001,13731,0 +60750117001,14061,0 +60750117001,14062,0 +60750117001,14166,0 +60750117001,14167,0.0558139534883721 +60750117001,14235,0 +60750117001,14238,0 +60750117001,14244,0 +60750117001,14245,0 +60750117001,14619,0.00232558139534884 +60750117001,15021,0.00232558139534884 +60750117001,15252,0 +60750117001,15260,0 +60750117001,15316,0 +60750117001,15428,0.0906976744186047 +60750117001,15433,0 +60750117001,15763,0 +60750117001,16723,0 +60750117002,10086,0 +60750117002,10460,0.0515463917525773 +60750117002,12259,0.0257731958762887 +60750117002,12779,0.0378006872852234 +60750117002,13229,0 +60750117002,13305,0.420962199312715 +60750117002,14240,0.0979381443298969 +60750117002,14241,0 +60750117002,14242,0.125429553264605 +60750117002,14243,0 +60750117002,14281,0.077319587628866 +60750117002,15076,0 +60750117002,15253,0.0567010309278351 +60750117002,15256,0 +60750117002,15313,0.104810996563574 +60750117002,15318,0 +60750117002,15319,0 +60750117002,15359,0 +60750117002,15360,0 +60750117002,16724,0.00171821305841924 +60750117002,17027,0 +60750118001,12774,0.330935251798561 +60750118001,13179,0.289208633093525 +60750118001,14617,0.0489208633093525 +60750118001,15312,0.330935251798561 +60750119011,11172,0.55685618729097 +60750119011,13357,0.44314381270903 +60750119012,11329,0.475533249686324 +60750119012,11757,0.524466750313676 +60750119021,12777,0.35511145272867 +60750119021,15106,0.362029208301307 +60750119021,15356,0.282859338970023 +60750119022,12769,0.393483709273183 +60750119022,12772,0.604010025062657 +60750119022,13298,0.0025062656641604 +60750120001,12133,0.341057204923968 +60750120001,12311,0.370745836350471 +60750120001,13454,0.0311368573497466 +60750120001,17309,0.0637219406227371 +60750120001,17361,0.193338160753077 +60750120002,12431,0.0163090128755365 +60750120002,13873,0.375107296137339 +60750120002,13874,0.357081545064378 +60750120002,14419,0.251502145922747 +60750121001,12196,0.26078914919852 +60750121001,13303,0.25462392108508 +60750121001,13875,0.229963008631319 +60750121001,14420,0.25462392108508 +60750121002,13182,0.00524475524475524 +60750121002,13529,0.493006993006993 +60750121002,13531,0.111888111888112 +60750121002,13650,0.38986013986014 +60750122011,12195,0.135309278350515 +60750122011,12822,0.218427835051546 +60750122011,13360,0.315077319587629 +60750122011,14421,0.331185567010309 +60750122012,11756,0.461883408071749 +60750122012,13876,0.538116591928251 +60750122021,11330,0.0805812417437252 +60750122021,11335,0.0871862615587847 +60750122021,12194,0.136723910171731 +60750122021,12312,0.204755614266843 +60750122021,12821,0.126816380449141 +60750122021,13872,0.291941875825627 +60750122021,17259,0.071994715984148 +60750123011,10456,0.665559246954596 +60750123011,11173,0.131782945736434 +60750123011,12776,0 +60750123011,13117,0.0897009966777409 +60750123011,13649,0 +60750123011,13651,0.112956810631229 +60750123012,13429,1 +60750123021,12197,0.441016333938294 +60750123021,12605,0.558983666061706 +60750123022,13844,0.102409638554217 +60750123022,13845,0.296184738955823 +60750123022,13846,0.100401606425703 +60750123022,15357,0.160642570281124 +60750123022,15358,0 +60750123022,15796,0.340361445783133 +60750124011,11461,0.409048938134811 +60750124011,15600,0.184672206832872 +60750124011,16547,0.406278855032318 +60750124012,10454,0.330030959752322 +60750124012,11674,0.246439628482972 +60750124012,11676,0.423529411764706 +60750124021,11730,0.434090909090909 +60750124021,11927,0 +60750124021,12676,0.284090909090909 +60750124021,15879,0.281818181818182 +60750124021,16036,0 +60750124021,16381,0 +60750124021,17025,0 +60750124022,10447,0 +60750124022,11332,0.275974025974026 +60750124022,11333,0.0405844155844156 +60750124022,12574,0 +60750124022,15576,0 +60750124022,16033,0 +60750124022,16546,0 +60750124022,16548,0 +60750124022,16549,0 +60750124022,16635,0.025974025974026 +60750124022,17231,0.657467532467532 +60750124023,10137,0.184474123539232 +60750124023,12074,0.107679465776294 +60750124023,12075,0.312186978297162 +60750124023,16035,0.326377295492487 +60750124023,16545,0.0692821368948247 +60750125011,12153,0.299642218246869 +60750125011,13114,0.0491949910554562 +60750125011,13115,0.274597495527728 +60750125011,15706,0 +60750125011,16747,0.328264758497317 +60750125011,17230,0.0483005366726297 +60750125012,10038,0.554737810487581 +60750125012,13304,0.313707451701932 +60750125012,13431,0.103035878564857 +60750125012,13652,0 +60750125012,14280,0.0285188592456302 +60750125021,11071,0.467205750224618 +60750125021,13530,0.532794249775382 +60750125022,14134,0.55700325732899 +60750125022,15382,0.44299674267101 +60750126011,10164,0.0401069518716578 +60750126011,13025,0.035427807486631 +60750126011,13026,0.0862299465240642 +60750126011,16241,0.0755347593582888 +60750126011,16243,0.088903743315508 +60750126011,16244,0.0962566844919786 +60750126011,16457,0.0481283422459893 +60750126011,16994,0.107620320855615 +60750126011,16996,0.207219251336898 +60750126011,17063,0.134358288770053 +60750126011,17129,0.0802139037433155 +60750126021,0,0 +60750126021,10151,0 +60750126021,12176,0.0681318681318681 +60750126021,13477,0.194505494505495 +60750126021,13638,0.143956043956044 +60750126021,13639,0.054945054945055 +60750126021,13640,0.136263736263736 +60750126021,16021,0.167032967032967 +60750126021,16458,0.0384615384615385 +60750126021,17064,0.0593406593406593 +60750126021,17128,0.137362637362637 +60750126022,10084,0.133906633906634 +60750126022,10165,0.151105651105651 +60750126022,11118,0.180589680589681 +60750126022,12180,0.097051597051597 +60750126022,16459,0.144963144963145 +60750126022,16995,0 +60750126022,17067,0.292383292383292 +60750127001,0,0 +60750127001,11120,0.0649064906490649 +60750127001,11752,0.0671067106710671 +60750127001,12601,0.194719471947195 +60750127001,12602,0.0979097909790979 +60750127001,12604,0.169416941694169 +60750127001,14394,0.124312431243124 +60750127001,15566,0 +60750127001,16020,0.099009900990099 +60750127001,16569,0.0209020902090209 +60750127001,16626,0.114411441144114 +60750127001,16992,0.0473047304730473 +60750127002,10160,0.196698762035763 +60750127002,10161,0.192572214580468 +60750127002,11661,0.154057771664374 +60750127002,15639,0.108665749656121 +60750127002,16242,0.170563961485557 +60750127002,16455,0.177441540577717 +60750127003,10162,0.372294372294372 +60750127003,14396,0.231601731601732 +60750127003,15638,0.0757575757575758 +60750127003,16456,0.32034632034632 +60750128001,10150,0.0535331905781585 +60750128001,10167,0.168094218415418 +60750128001,12178,0.0802997858672377 +60750128001,13027,0.0578158458244111 +60750128001,13029,0.0749464668094218 +60750128001,14582,0.10813704496788 +60750128001,16246,0.0620985010706638 +60750128001,16460,0.122055674518201 +60750128001,16700,0.0256959314775161 +60750128001,16945,0.0449678800856531 +60750128001,16998,0.149892933618844 +60750128001,17066,0.0364025695931477 +60750128001,17069,0.0160599571734475 +60750128002,10666,0.0966057441253264 +60750128002,10982,0.127937336814621 +60750128002,11485,0.177545691906005 +60750128002,11486,0.12532637075718 +60750128002,12179,0.112271540469974 +60750128002,12539,0.10443864229765 +60750128002,13634,0.120104438642298 +60750128002,16571,0.135770234986945 +60750128003,11664,0.145756457564576 +60750128003,11754,0.178966789667897 +60750128003,13024,0.142066420664207 +60750128003,13028,0.112546125461255 +60750128003,13473,0.177121771217712 +60750128003,15641,0.121771217712177 +60750128003,16047,0.121771217712177 +60750128004,10163,0.176587301587302 +60750128004,13474,0.19047619047619 +60750128004,15640,0.222222222222222 +60750128004,16993,0.259920634920635 +60750128004,17313,0.150793650793651 +60750129011,11160,0.209908735332464 +60750129011,13483,0.165580182529335 +60750129011,14594,0.165580182529335 +60750129011,14595,0.0886571056062582 +60750129011,15480,0.198174706649283 +60750129011,17317,0.172099087353325 +60750129012,10535,0.20251572327044 +60750129012,11092,0.168553459119497 +60750129012,14476,0.163522012578616 +60750129012,14593,0.134591194968553 +60750129012,14989,0.2 +60750129012,16955,0.130817610062893 +60750129021,10487,0.205920205920206 +60750129021,10536,0.114543114543115 +60750129021,11489,0.28957528957529 +60750129021,12538,0.120978120978121 +60750129021,14477,0.110682110682111 +60750129021,14596,0.158301158301158 +60750129022,10601,0.19774011299435 +60750129022,10602,0.204802259887006 +60750129022,11093,0.509887005649718 +60750129022,13061,0.0875706214689266 +60750129023,10153,0 +60750129023,10484,0.297397769516729 +60750129023,10486,0.263940520446097 +60750129023,13643,0.202602230483271 +60750129023,16247,0 +60750129023,17068,0.236059479553903 +60750130001,10488,0.0867768595041322 +60750130001,11490,0.140495867768595 +60750130001,12001,0.269972451790634 +60750130001,12540,0.163911845730028 +60750130001,15421,0.176308539944904 +60750130001,15958,0.162534435261708 +60750130002,10538,0.146643109540636 +60750130002,10985,0.192579505300353 +60750130002,11095,0.245583038869258 +60750130002,11159,0.162544169611307 +60750130002,12543,0.151943462897526 +60750130002,16956,0.100706713780919 +60750130003,10077,0.130584192439863 +60750130003,11094,0.168384879725086 +60750130003,12542,0.276632302405498 +60750130003,13358,0.13745704467354 +60750130003,15474,0.115120274914089 +60750130003,16947,0.171821305841924 +60750130004,10596,0.231775700934579 +60750130004,11085,0.162616822429907 +60750130004,14539,0.175700934579439 +60750130004,16946,0.149532710280374 +60750130004,17070,0.179439252336449 +60750130004,17071,0.100934579439252 +60750131011,10501,0.19959266802444 +60750131011,11497,0.225050916496945 +60750131011,12005,0.14765784114053 +60750131011,15848,0.223014256619145 +60750131011,15906,0.0804480651731161 +60750131011,15970,0.124236252545825 +60750131012,12550,0.226723525230988 +60750131012,12551,0.115849324804549 +60750131012,15853,0.145700071073205 +60750131012,15854,0.173418621179815 +60750131012,15908,0.11229566453447 +60750131012,15971,0.226012793176972 +60750131021,10498,0.221001221001221 +60750131021,10996,0.288156288156288 +60750131021,11498,0.153846153846154 +60750131021,12007,0.126984126984127 +60750131021,12544,0.0463980463980464 +60750131021,15849,0.0170940170940171 +60750131021,15855,0.146520146520147 +60750131022,10494,0.0996068152031455 +60750131022,12002,0.256880733944954 +60750131022,12003,0.157273918741809 +60750131022,15846,0.18086500655308 +60750131022,15847,0.0432503276539974 +60750131022,15967,0.262123197903014 +60750132001,10991,0.117199391171994 +60750132001,11151,0.172754946727549 +60750132001,11152,0.120243531202435 +60750132001,14470,0.123287671232877 +60750132001,14586,0.0350076103500761 +60750132001,14587,0.0631659056316591 +60750132001,15964,0.209284627092846 +60750132001,15965,0.118721461187215 +60750132001,16948,0.0403348554033486 +60750132002,10595,0.30421686746988 +60750132002,10700,0.0753012048192771 +60750132002,10701,0.189759036144578 +60750132002,14538,0.207831325301205 +60750132002,14585,0.22289156626506 +60750132003,10071,0.0684039087947883 +60750132003,10072,0.0504885993485342 +60750132003,10667,0.0700325732899023 +60750132003,10983,0.0960912052117264 +60750132003,10984,0.0993485342019544 +60750132003,11487,0.0358306188925081 +60750132003,11997,0.153094462540717 +60750132003,12169,0.11400651465798 +60750132003,14530,0.0358306188925081 +60750132003,14583,0.0407166123778502 +60750132003,15547,0.0798045602605863 +60750132003,17059,0.125407166123779 +60750132003,17119,0.0309446254071661 +60750133001,10790,0.164179104477612 +60750133001,12170,0.104477611940299 +60750133001,13636,0.149253731343284 +60750133001,16235,0.104477611940299 +60750133001,16236,0.0895522388059701 +60750133001,16534,0.223880597014925 +60750133001,17311,0.164179104477612 +60750133002,12171,0.0846456692913386 +60750133002,12172,0.181102362204724 +60750133002,13637,0.141732283464567 +60750133002,16238,0.21259842519685 +60750133002,16629,0.0551181102362205 +60750133002,17121,0.106299212598425 +60750133002,17122,0.0688976377952756 +60750133002,17124,0.149606299212598 +60750133003,10791,0.0772357723577236 +60750133003,14852,0.115853658536585 +60750133003,16016,0.306910569105691 +60750133003,16535,0.138211382113821 +60750133003,17061,0.103658536585366 +60750133003,17123,0.258130081300813 +60750133004,10359,0.24496644295302 +60750133004,12225,0.241610738255034 +60750133004,16051,0.275167785234899 +60750133004,16053,0.238255033557047 +60750133005,11216,0.292834890965732 +60750133005,11747,0.177570093457944 +60750133005,14851,0 +60750133005,15126,0.202492211838006 +60750133005,16050,0.0903426791277259 +60750133005,16572,0.236760124610592 +60750134001,10696,0 +60750134001,11153,0.366292134831461 +60750134001,11154,0.202247191011236 +60750134001,14541,0.292134831460674 +60750134001,16951,0.139325842696629 +60750134002,11082,0.118537200504414 +60750134002,12951,0.182849936948298 +60750134002,14468,0.109709962168979 +60750134002,14531,0.17780580075662 +60750134002,14535,0.119798234552333 +60750134002,14589,0.100882723833544 +60750134002,16988,0.0907944514501892 +60750134002,16989,0.0996216897856242 +60750134003,10073,0.112010796221323 +60750134003,10693,0.128205128205128 +60750134003,10695,0.126855600539811 +60750134003,10699,0.109311740890688 +60750134003,11079,0.183535762483131 +60750134003,11998,0.121457489878543 +60750134003,13635,0.112010796221323 +60750134003,17125,0.106612685560054 +60750135001,10992,0.16005291005291 +60750135001,10993,0.178571428571429 +60750135001,11495,0.113756613756614 +60750135001,14471,0.161375661375661 +60750135001,14472,0.0833333333333333 +60750135001,14588,0.235449735449735 +60750135001,16949,0.0674603174603175 +60750135002,10493,0.19284064665127 +60750135002,10496,0.209006928406467 +60750135002,11087,0.0069284064665127 +60750135002,11155,0.122401847575058 +60750135002,11156,0.197459584295612 +60750135002,11496,0.069284064665127 +60750135002,15850,0.0669745958429561 +60750135002,16953,0.135103926096998 +60750151001,10951,0 +60750151001,12428,0.261078998073218 +60750151001,12489,0.255298651252408 +60750151001,17307,0.284200385356455 +60750151001,17357,0.161849710982659 +60750151001,17358,0.0375722543352601 +60750151002,12430,0 +60750151002,12491,0.149108589951378 +60750151002,13455,0.145867098865478 +60750151002,17255,0.390599675850891 +60750151002,17310,0.314424635332253 +60750152001,10499,0.176904176904177 +60750152001,11501,0.212121212121212 +60750152001,12004,0.163800163800164 +60750152001,12547,0.0556920556920557 +60750152001,12548,0.152334152334152 +60750152001,12549,0.239148239148239 +60750152002,10994,0.130779392338177 +60750152002,10995,0.14663143989432 +60750152002,11499,0.151915455746367 +60750152002,12545,0.183619550858653 +60750152002,14544,0.171730515191546 +60750152002,15968,0.0990752972258917 +60750152002,15969,0.116248348745046 +60750152003,10598,0.11283185840708 +60750152003,11157,0.207964601769911 +60750152003,12546,0.280973451327434 +60750152003,14543,0.108407079646018 +60750152003,16954,0.289823008849558 +60750153001,11015,0.0718954248366013 +60750153001,14536,0.176470588235294 +60750153001,14542,0.193899782135076 +60750153001,14590,0.128540305010893 +60750153001,14592,0 +60750153001,16950,0.209150326797386 +60750153001,16952,0.220043572984749 +60750153002,10074,0.208835341365462 +60750153002,10075,0.196787148594378 +60750153002,10076,0.0140562248995984 +60750153002,10597,0.0481927710843374 +60750153002,10697,0.156626506024096 +60750153002,10698,0.186746987951807 +60750153002,14533,0.142570281124498 +60750153002,16944,0.0461847389558233 +60750154001,11080,0.21763085399449 +60750154001,12173,0.34435261707989 +60750154001,14532,0.181818181818182 +60750154001,16986,0 +60750154001,17126,0.256198347107438 +60750154002,10594,0.144366197183099 +60750154002,11081,0.133802816901408 +60750154002,11678,0.220070422535211 +60750154002,12518,0.167253521126761 +60750154002,12600,0.207746478873239 +60750154002,17127,0.126760563380282 +60750154003,10200,0.116429495472186 +60750154003,11013,0 +60750154003,12226,0.19404915912031 +60750154003,16382,0.191461836998706 +60750154003,16738,0.186287192755498 +60750154003,16987,0.129366106080207 +60750154003,17081,0.122897800776197 +60750154003,17117,0.0595084087968952 +60750154004,12104,0.272311212814645 +60750154004,12599,0.102974828375286 +60750154004,16015,0.130434782608696 +60750154004,16531,0.178489702517162 +60750154004,17060,0.100686498855835 +60750154004,17116,0 +60750154004,17118,0.215102974828375 +60750154005,11666,0.110315186246418 +60750154005,12103,0.0859598853868195 +60750154005,12223,0.120343839541547 +60750154005,15569,0.107449856733524 +60750154005,15633,0.244985673352436 +60750154005,16052,0.146131805157593 +60750154005,16627,0.0845272206303725 +60750154005,16628,0.100286532951289 +60750155001,11068,0.109211775878443 +60750155001,11500,0 +60750155001,15851,0.481481481481481 +60750155001,15904,0.0265906932573599 +60750155001,15905,0.382716049382716 +60750155002,10532,0.34578313253012 +60750155002,10840,0 +60750155002,11086,0 +60750155002,11090,0.27710843373494 +60750155002,14474,0.109638554216867 +60750155002,14545,0.0373493975903614 +60750155002,14591,0.230120481927711 +60750155003,10078,0 +60750155003,10876,0.139931740614334 +60750155003,12516,0 +60750155003,14198,0.286689419795222 +60750155003,14534,0.419795221843003 +60750155003,14796,0.15358361774744 +60750156001,10835,0.202985074626866 +60750156001,11064,0.298507462686567 +60750156001,11628,0.125373134328358 +60750156001,11630,0.137313432835821 +60750156001,15154,0.116417910447761 +60750156001,15932,0.119402985074627 +60750156002,11915,0.0931899641577061 +60750156002,11966,0.102150537634409 +60750156002,16340,0.304659498207885 +60750156002,16341,0.17921146953405 +60750156002,16383,0.118279569892473 +60750156002,17148,0.202508960573477 +60750156003,10765,0.137203166226913 +60750156003,11629,0.129287598944591 +60750156003,14895,0.213720316622691 +60750156003,15156,0.329815303430079 +60750156003,17157,0.189973614775726 +60750157001,10902,0.156196943972835 +60750157001,11014,0 +60750157001,12517,0 +60750157001,13571,0.0594227504244482 +60750157001,13703,0.0696095076400679 +60750157001,14197,0.0747028862478778 +60750157001,14749,0 +60750157001,14794,0.237691001697793 +60750157001,14795,0.147707979626486 +60750157001,16346,0.098471986417657 +60750157001,16408,0.0730050933786078 +60750157001,16409,0.0831918505942275 +60750157002,10961,0.106407322654462 +60750157002,11920,0.178489702517162 +60750157002,12522,0.124713958810069 +60750157002,14131,0.107551487414188 +60750157002,14753,0.145308924485126 +60750157002,14924,0.109839816933638 +60750157002,16410,0.116704805491991 +60750157002,16411,0.110983981693364 +60750157003,10834,0.125915080527086 +60750157003,10959,0.12298682284041 +60750157003,11916,0.140556368960469 +60750157003,11967,0.212298682284041 +60750157003,12514,0.114202049780381 +60750157003,12665,0.0790629575402635 +60750157003,13185,0.12298682284041 +60750157003,13186,0.08199121522694 +60750157004,10899,0.149184149184149 +60750157004,10957,0.0745920745920746 +60750157004,12221,0.776223776223776 +60750158011,14023,0.484375 +60750158011,14803,0.515625 +60750158011,16870,0 +60750158012,10839,0 +60750158012,11011,0 +60750158012,11067,0.172932330827068 +60750158012,13193,0.101503759398496 +60750158012,13704,0.210526315789474 +60750158012,14135,0.149122807017544 +60750158012,14797,0.184210526315789 +60750158012,14923,0.181704260651629 +60750158013,12527,0.127131782945736 +60750158013,13574,0.173643410852713 +60750158013,14024,0.192248062015504 +60750158013,14138,0.134883720930233 +60750158013,14759,0.181395348837209 +60750158013,16871,0.190697674418605 +60750158021,10143,0.223880597014925 +60750158021,13705,0.167164179104478 +60750158021,14202,0.164179104477612 +60750158021,14752,0.314925373134328 +60750158021,14798,0.129850746268657 +60750158022,11773,0.181485992691839 +60750158022,12521,0.272838002436054 +60750158022,14201,0.164433617539586 +60750158022,14204,0.119366626065773 +60750158022,14760,0.115712545676005 +60750158022,16866,0.146163215590743 +60750159001,12577,0.388940955951265 +60750159001,15169,0.426429240862231 +60750159001,17359,0.184629803186504 +60750159002,10853,0.157635467980296 +60750159002,14137,0.161740558292282 +60750159002,14203,0.561576354679803 +60750159002,14926,0.119047619047619 +60750159002,15898,0 +60750160001,12230,0.0747091243110839 +60750160001,14186,0.0630740967544397 +60750160001,14856,0.0330679730557257 +60750160001,14858,0.0440906307409675 +60750160001,15574,0.207593386405389 +60750160001,15752,0.128597672994489 +60750160001,15871,0.170238824249847 +60750160001,16193,0.000612369871402327 +60750160001,16576,0.0489895897121862 +60750160001,16577,0.0685854255970606 +60750160001,16579,0.028169014084507 +60750160001,16633,0.0661359461114513 +60750160001,17308,0.0661359461114513 +60750161001,15170,0 +60750161001,17239,0.458333333333333 +60750161001,17240,0.541666666666667 +60750161002,10681,0.137777777777778 +60750161002,14645,0.07 +60750161002,14928,0.475555555555556 +60750161002,15697,0.115555555555556 +60750161002,16872,0.201111111111111 +60750161003,10854,0.0185810810810811 +60750161003,15168,0.315878378378378 +60750161003,15751,0.326013513513513 +60750161003,16765,0.157094594594595 +60750161003,16766,0.182432432432432 +60750161004,13922,0.0907079646017699 +60750161004,14761,0.335176991150442 +60750161004,14927,0.100663716814159 +60750161004,15750,0.324115044247788 +60750161004,16763,0.149336283185841 +60750162001,14857,0.047085201793722 +60750162001,15335,0.114349775784753 +60750162001,15336,0.295964125560538 +60750162001,15337,0 +60750162001,15575,0.221973094170404 +60750162001,16056,0.320627802690583 +60750162001,16057,0 +60750162002,12107,0 +60750162002,14861,0.0556438791732909 +60750162002,15338,0.287758346581876 +60750162002,15553,0.284578696343402 +60750162002,15577,0.17329093799682 +60750162002,16586,0.19872813990461 +60750162003,12233,0.173410404624277 +60750162003,14860,0.300578034682081 +60750162003,15571,0.441233140655106 +60750162003,16637,0.0847784200385356 +60750163001,12227,0.446 +60750163001,15900,0.39 +60750163001,16055,0.164 +60750163002,10793,0.508741258741259 +60750163002,12229,0.16958041958042 +60750163002,15526,0.0891608391608392 +60750163002,15572,0.232517482517482 +60750163003,12530,0.198974358974359 +60750163003,15171,0.125128205128205 +60750163003,15172,0.133333333333333 +60750163003,15753,0.122051282051282 +60750163003,15754,0.105641025641026 +60750163003,16873,0.0738461538461539 +60750163003,17241,0.132307692307692 +60750163003,17242,0.108717948717949 +60750164001,10141,0.100580270793037 +60750164001,10142,0.147969052224371 +60750164001,13005,0.154738878143133 +60750164001,14026,0.147001934235977 +60750164001,14027,0.143133462282398 +60750164001,14139,0.0686653771760155 +60750164001,14141,0.207930367504836 +60750164001,14205,0 +60750164001,15387,0.0299806576402321 +60750164002,12524,0.149292149292149 +60750164002,12525,0.113256113256113 +60750164002,14755,0.157014157014157 +60750164002,14756,0.178893178893179 +60750164002,14800,0.12998712998713 +60750164002,14805,0.0926640926640927 +60750164002,14925,0.0141570141570142 +60750164002,16867,0.164736164736165 +60750165001,12523,0.282798833819242 +60750165001,14132,0.137026239067055 +60750165001,14133,0.128279883381924 +60750165001,14754,0.123906705539359 +60750165001,14799,0.185131195335277 +60750165001,16412,0.142857142857143 +60750165002,10962,0.204119850187266 +60750165002,12670,0.200374531835206 +60750165002,14374,0.177902621722846 +60750165002,14832,0 +60750165002,16349,0.230337078651685 +60750165002,16740,0.187265917602996 +60750165003,11969,0.164319248826291 +60750165003,12668,0.172143974960876 +60750165003,14371,0.190923317683881 +60750165003,14372,0.183098591549296 +60750165003,16348,0.18622848200313 +60750165003,16739,0.103286384976526 +60750165004,10900,0.111340206185567 +60750165004,10901,0.154639175257732 +60750165004,10958,0.101030927835052 +60750165004,11917,0.34020618556701 +60750165004,12222,0.292783505154639 +60750166001,12958,0.185185185185185 +60750166001,13573,0.183950617283951 +60750166001,14143,0.137037037037037 +60750166001,14207,0.154320987654321 +60750166001,14208,0.218518518518519 +60750166001,14802,0.120987654320988 +60750166002,10911,0.20042194092827 +60750166002,11975,0.194092827004219 +60750166002,12534,0.179324894514768 +60750166002,16351,0.151898734177215 +60750166002,16744,0.274261603375527 +60750166003,10964,0.059190031152648 +60750166003,11923,0.228971962616822 +60750166003,11974,0.129283489096573 +60750166003,14833,0.174454828660436 +60750166003,16350,0.261682242990654 +60750166003,16741,0.146417445482866 +60750166004,10906,0.24187725631769 +60750166004,10910,0.140794223826715 +60750166004,10965,0.169675090252708 +60750166004,11977,0.101083032490975 +60750166004,16743,0.182310469314079 +60750166004,16802,0.164259927797834 +60750167001,12531,0.124691358024691 +60750167001,12532,0.219753086419753 +60750167001,12533,0.154320987654321 +60750167001,15386,0.130864197530864 +60750167001,15689,0.183950617283951 +60750167001,15745,0.18641975308642 +60750167002,10392,0.426332288401254 +60750167002,15894,0.573667711598746 +60750167003,10731,0 +60750167003,14030,0.203904555314534 +60750167003,14640,0.219088937093275 +60750167003,15740,0.27765726681128 +60750167003,16753,0.17353579175705 +60750167003,16877,0.125813449023861 +60750167004,12529,0.14410480349345 +60750167004,12611,0.148471615720524 +60750167004,14206,0.173216885007278 +60750167004,14801,0.192139737991266 +60750167004,14930,0.202328966521106 +60750167004,15217,0.139737991266376 +60750168011,10856,0.323763955342903 +60750168011,10857,0.231259968102073 +60750168011,15698,0.165869218500797 +60750168011,15901,0.279106858054226 +60750168012,11260,0.321052631578947 +60750168012,12692,0.517543859649123 +60750168012,12694,0.16140350877193 +60750168013,11261,0.471395881006865 +60750168013,14855,0.146453089244851 +60750168013,14859,0.382151029748284 +60750168013,16591,0 +60750168021,15581,0.0306748466257669 +60750168021,15863,0.127300613496933 +60750168021,15864,0.102760736196319 +60750168021,15867,0.515337423312883 +60750168021,16061,0.223926380368098 +60750168022,14646,0.260096930533118 +60750168022,15573,0.245557350565428 +60750168022,16631,0.198707592891761 +60750168022,16632,0.295638126009693 +60750168023,12686,0.148217636022514 +60750168023,15332,0.281425891181989 +60750168023,16060,0.315196998123827 +60750168023,16640,0.25515947467167 +60750169001,13917,0.161809045226131 +60750169001,15163,0.170854271356784 +60750169001,15164,0.117587939698492 +60750169001,15340,0 +60750169001,15746,0.125628140703518 +60750169001,16069,0.204020100502513 +60750169001,16590,0.0753768844221105 +60750169001,16643,0.144723618090452 +60750169002,10848,0.111111111111111 +60750169002,13915,0 +60750169002,14642,0.15993265993266 +60750169002,15690,0.245791245791246 +60750169002,16755,0.175084175084175 +60750169002,16756,0.154882154882155 +60750169002,16758,0.153198653198653 +60750170001,15162,0.259336099585062 +60750170001,15741,0.242738589211618 +60750170001,15742,0.170124481327801 +60750170001,15743,0.128630705394191 +60750170001,15893,0.172199170124481 +60750170001,17084,0.0269709543568465 +60750170002,10843,0.0418342719227675 +60750170002,10847,0.0530973451327434 +60750170002,13911,0.321802091713596 +60750170002,15159,0.0571198712791633 +60750170002,15161,0.081255028157683 +60750170002,15747,0.0587288817377313 +60750170002,16387,0.13917940466613 +60750170002,16876,0.246983105390185 +60750170003,11925,0.255 +60750170003,14636,0.18 +60750170003,14638,0.1025 +60750170003,14846,0.1275 +60750170003,15458,0.2325 +60750170003,16806,0.1025 +60750171011,10912,0.167449139280125 +60750171011,14142,0.136150234741784 +60750171011,14839,0.261345852895149 +60750171011,14840,0.291079812206573 +60750171011,15218,0.143974960876369 +60750171012,10966,0.373382624768946 +60750171012,11924,0.11275415896488 +60750171012,14029,0.055452865064695 +60750171012,14845,0.255083179297597 +60750171012,16804,0.203327171903882 +60750171013,10909,0.200729927007299 +60750171013,14806,0.20985401459854 +60750171013,14838,0.215328467153285 +60750171013,16803,0.140510948905109 +60750171013,16874,0.233576642335766 +60750171021,10908,0.186084142394822 +60750171021,10914,0.121359223300971 +60750171021,10967,0.121359223300971 +60750171021,11973,0.135922330097087 +60750171021,11976,0.153721682847896 +60750171021,14834,0.108414239482201 +60750171021,16801,0.173139158576052 +60750171022,10913,0.151815181518152 +60750171022,10915,0.168316831683168 +60750171022,11978,0.181518151815182 +60750171022,14835,0.204620462046205 +60750171022,14836,0 +60750171022,14841,0.122112211221122 +60750171022,14842,0.171617161716172 +60750171023,10907,0.0939947780678851 +60750171023,11972,0.233681462140992 +60750171023,12671,0.114882506527415 +60750171023,12673,0.180156657963446 +60750171023,14837,0.0783289817232376 +60750171023,16742,0.12532637075718 +60750171023,16800,0.173629242819843 +60750176011,10144,0.571428571428571 +60750176011,12390,0 +60750176011,13372,0.380952380952381 +60750176011,13900,0.0476190476190476 +60750176011,14165,0 +60750176012,10270,0.0581127733026467 +60750176012,12391,0.116800920598389 +60750176012,12393,0.0609896432681243 +60750176012,14108,0.0201380897583429 +60750176012,15320,0.0960874568469505 +60750176012,16810,0.40506329113924 +60750176012,17238,0.242807825086306 +60750176013,10138,0.0946393117140966 +60750176013,10675,0.471211118464593 +60750176013,10922,0.0086035737921906 +60750176013,11929,0.0608868299139643 +60750176013,11930,0.0972865651886168 +60750176013,12394,0.156187954996691 +60750176013,15269,0.0946393117140966 +60750176013,16808,0.0105890138980807 +60750176013,16811,0.00595632031767042 +60750176014,10512,0 +60750176014,10920,0 +60750176014,13430,0.025 +60750176014,14180,0.125 +60750176014,15880,0 +60750176014,17233,0.517857142857143 +60750176014,17234,0.332142857142857 +60750176015,10268,0.278858625162127 +60750176015,10269,0.0894941634241245 +60750176015,11339,0.0298313878080415 +60750176015,11984,0.178988326848249 +60750176015,12392,0.138780804150454 +60750176015,16812,0.284046692607004 +60750177001,10395,0 +60750177001,10787,0 +60750177001,12091,0.154411764705882 +60750177001,12092,0 +60750177001,12093,0.316176470588235 +60750177001,12284,0.00735294117647059 +60750177001,12285,0.0661764705882353 +60750177001,12339,0 +60750177001,12342,0 +60750177001,12862,0 +60750177001,12863,0.455882352941176 +60750177001,12913,0 +60750177001,13079,0 +60750177001,13314,0 +60750177001,13315,0 +60750177001,13370,0 +60750177001,14073,0 +60750177001,16587,0 +60750177001,17175,0 +60750177002,10274,0.154605263157895 +60750177002,10275,0.00986842105263158 +60750177002,10276,0 +60750177002,10277,0.0328947368421053 +60750177002,10566,0.113486842105263 +60750177002,11349,0 +60750177002,11396,0.105263157894737 +60750177002,11397,0.0197368421052632 +60750177002,11403,0.0296052631578947 +60750177002,11462,0.138157894736842 +60750177002,11464,0.0526315789473684 +60750177002,11989,0.106907894736842 +60750177002,11991,0.00328947368421053 +60750177002,12149,0.0279605263157895 +60750177002,12684,0.0115131578947368 +60750177002,13131,0.09375 +60750177002,13134,0.0805921052631579 +60750177002,15325,0.0197368421052632 +60750178011,12346,0.885416666666667 +60750178011,13324,0.114583333333333 +60750178011,14662,0 +60750178012,12348,0.00524737631184408 +60750178012,13379,0.231634182908546 +60750178012,13381,0.287106446776612 +60750178012,13901,0.278110944527736 +60750178012,14081,0.197901049475262 +60750178021,10271,0.0501981505944518 +60750178021,10272,0.0389696169088507 +60750178021,10273,0.0330250990752972 +60750178021,10457,0.119550858652576 +60750178021,10514,0.0640686922060766 +60750178021,11401,0.0284015852047556 +60750178021,11985,0.0825627476882431 +60750178021,12098,0.0303830911492734 +60750178021,12099,0.0528401585204756 +60750178021,12288,0.152575957727873 +60750178021,12395,0.0257595772787318 +60750178021,12397,0 +60750178021,12680,0.0759577278731836 +60750178021,12682,0.0191545574636724 +60750178021,12691,0.0554821664464993 +60750178021,13323,0.0363276089828269 +60750178021,13374,0.0706737120211361 +60750178021,15321,0.0640686922060766 +60750178022,10458,0.0285714285714286 +60750178022,11259,0.248571428571429 +60750178022,11344,0.0285714285714286 +60750178022,11345,0.0271428571428571 +60750178022,11398,0.0928571428571429 +60750178022,11418,0.102857142857143 +60750178022,11463,0.191428571428571 +60750178022,11514,0 +60750178022,12412,0.128571428571429 +60750178022,15549,0.0414285714285714 +60750178022,15881,0.01 +60750178022,17235,0.0357142857142857 +60750178022,17236,0.0642857142857143 +60750179021,0,0 +60750179021,10185,0.106707317073171 +60750179021,10186,0 +60750179021,10219,0.893292682926829 +60750179021,11476,0 +60750179021,13905,0 +60750179021,16495,0 +60750180001,12290,0.00858778625954199 +60750180001,12291,0.0295801526717557 +60750180001,12353,0.0314885496183206 +60750180001,12354,0.174618320610687 +60750180001,12578,0 +60750180001,12582,0 +60750180001,13076,0.104961832061069 +60750180001,13214,0.0973282442748092 +60750180001,13376,0 +60750180001,13815,0.269083969465649 +60750180001,13975,0 +60750180001,14253,0.0305343511450382 +60750180001,14254,0.0333969465648855 +60750180001,14255,0.220419847328244 +60750180002,10283,0.0731707317073171 +60750180002,10515,0.197339246119734 +60750180002,11347,0.024390243902439 +60750180002,11352,0 +60750180002,11735,0.0177383592017738 +60750180002,11771,0.28159645232816 +60750180002,12349,0.00221729490022173 +60750180002,12442,0 +60750180002,12683,0.0487804878048781 +60750180002,13133,0 +60750180002,13325,0.106430155210643 +60750180002,13375,0.108647450110865 +60750180002,14083,0.00443458980044346 +60750180002,14084,0.0266075388026608 +60750180002,14553,0.0310421286031042 +60750180002,15322,0.0399113082039911 +60750180002,15797,0.0310421286031042 +60750180002,16854,0.00665188470066519 +60750180002,17180,0 +60750201001,10455,0.0179558011049724 +60750201001,10572,0.00138121546961326 +60750201001,11337,0.0566298342541436 +60750201001,11731,0 +60750201001,12572,0.203038674033149 +60750201001,13648,0.203038674033149 +60750201001,13707,0 +60750201001,13899,0.288674033149171 +60750201001,14090,0.0939226519337017 +60750201001,15582,0.124309392265193 +60750201001,15827,0.0110497237569061 +60750201001,17004,0 +60750201002,10107,0.126582278481013 +60750201002,13033,0 +60750201002,16465,0.18625678119349 +60750201002,16466,0.307414104882459 +60750201002,16707,0.251356238698011 +60750201002,17006,0.128390596745027 +60750201003,11402,0.186346863468635 +60750201003,11988,0.129151291512915 +60750201003,12398,0.180811808118081 +60750201003,13034,0.298892988929889 +60750201003,14092,0.20479704797048 +60750201004,12632,0.137289636846767 +60750201004,12633,0.157661647475642 +60750201004,15327,0.364924712134632 +60750201004,16552,0.229406554472985 +60750201004,16708,0.110717449069973 +60750202001,10140,0.25 +60750202001,10172,0.300653594771242 +60750202001,10312,0.138888888888889 +60750202001,10399,0.0441176470588235 +60750202001,12628,0.166666666666667 +60750202001,13970,0.0996732026143791 +60750202002,10173,0.0868192580899763 +60750202002,10877,0.0718232044198895 +60750202002,11283,0.155485398579321 +60750202002,12629,0.114443567482242 +60750202002,13030,0.205998421468035 +60750202002,14015,0.132596685082873 +60750202002,15865,0.154696132596685 +60750202002,16463,0.0781373322809787 +60750202003,10109,0.0652335063009637 +60750202003,10398,0.311341734618236 +60750202003,12035,0.0763528539659007 +60750202003,12182,0.144551519644181 +60750202003,12500,0.148257968865827 +60750202003,12630,0.108228317272053 +60750202003,14091,0.146034099332839 +60750203001,10573,0.0694626474442988 +60750203001,12271,0.249017038007864 +60750203001,12501,0.285714285714286 +60750203001,12695,0.192660550458716 +60750203001,13968,0.203145478374836 +60750203002,10104,0.119122257053292 +60750203002,10168,0.278996865203762 +60750203002,10170,0 +60750203002,13644,0.137931034482759 +60750203002,13646,0.463949843260188 +60750203003,10394,0.119170984455959 +60750203003,10564,0.153713298791019 +60750203003,10849,0.160621761658031 +60750203003,11263,0.236614853195164 +60750203003,12028,0.0725388601036269 +60750203003,15585,0.2573402417962 +60750204011,10094,0.186538461538462 +60750204011,10179,0.298076923076923 +60750204011,10180,0.107692307692308 +60750204011,16745,0.407692307692308 +60750204012,13037,0.136038186157518 +60750204012,13100,0.262529832935561 +60750204012,13499,0.284009546539379 +60750204012,16470,0.0429594272076372 +60750204012,16746,0.274463007159905 +60750204013,12674,0.0751533742331288 +60750204013,13447,0.104294478527607 +60750204013,13912,0.131901840490798 +60750204013,14009,0.133435582822086 +60750204013,15160,0.197852760736196 +60750204013,15739,0.216257668711656 +60750204013,16757,0.141104294478528 +60750204021,13865,0.248301886792453 +60750204021,14094,0.262641509433962 +60750204021,16123,0.489056603773585 +60750204022,10181,0.0507380073800738 +60750204022,10390,0.281365313653136 +60750204022,13503,0.0544280442804428 +60750204022,14093,0.0904059040590406 +60750204022,14096,0.14760147601476 +60750204022,16471,0.129151291512915 +60750204022,16472,0.0553505535055351 +60750204022,16475,0.040590405904059 +60750204022,16509,0.150369003690037 +60750205001,10850,0.206896551724138 +60750205001,15693,0.192118226600985 +60750205001,15892,0.32512315270936 +60750205001,15895,0.275862068965517 +60750205002,13920,0.246606334841629 +60750205002,14644,0.176470588235294 +60750205002,15166,0.14027149321267 +60750205002,15749,0.242081447963801 +60750205002,15891,0.178733031674208 +60750205002,15896,0.0158371040723982 +60750205003,10003,0.150943396226415 +60750205003,13918,0.150943396226415 +60750205003,14095,0.190775681341719 +60750205003,14598,0.134171907756813 +60750205003,14992,0.176100628930818 +60750205003,15897,0.19706498951782 +60750206001,12270,0 +60750206001,13645,0.129449838187702 +60750206001,13965,0 +60750206001,14943,0.116504854368932 +60750206001,16464,0.160733549083064 +60750206001,16704,0.108953613807983 +60750206001,16961,0.09277238403452 +60750206001,17001,0.252427184466019 +60750206001,17002,0.13915857605178 +60750206002,10632,0.207674943566591 +60750206002,10635,0.18961625282167 +60750206002,11027,0.144469525959368 +60750206002,11614,0.103837471783296 +60750206002,15000,0.110609480812641 +60750206002,16959,0.243792325056433 +60750206003,10169,0.137855579868709 +60750206003,10540,0.170678336980306 +60750206003,11098,0.137855579868709 +60750206003,15066,0.113785557986871 +60750206003,15167,0.142231947483589 +60750206003,16761,0.297592997811816 +60750206004,10851,0.119947848761408 +60750206004,10852,0.122555410691004 +60750206004,12181,0.126466753585398 +60750206004,13921,0.157757496740548 +60750206004,15692,0.131681877444589 +60750206004,15694,0.144719687092568 +60750206004,16760,0.0808344198174707 +60750206004,17000,0.116036505867014 +60750207001,11679,0.283950617283951 +60750207001,12634,0.106172839506173 +60750207001,15785,0.0518518518518519 +60750207001,16388,0.0156378600823045 +60750207001,16709,0.157201646090535 +60750207001,16710,0.159670781893004 +60750207001,17007,0.11522633744856 +60750207001,17008,0.110288065843621 +60750207002,10567,0.134799235181644 +60750207002,10637,0.102294455066922 +60750207002,12037,0.0975143403441683 +60750207002,12635,0.0984703632887189 +60750207002,13035,0.130975143403442 +60750207002,13966,0.134799235181644 +60750207002,15606,0.0411089866156788 +60750207002,16365,0.260038240917782 +60750207003,11934,0.225382932166302 +60750207003,12016,0.221006564551422 +60750207003,16421,0.288840262582057 +60750207003,16960,0.264770240700219 +60750208001,10110,0.521256931608133 +60750208001,12636,0.343807763401109 +60750208001,16817,0.134935304990758 +60750208002,10111,0.210769230769231 +60750208002,10278,0.175384615384615 +60750208002,11351,0.126153846153846 +60750208002,11405,0.184615384615385 +60750208002,16714,0.201538461538462 +60750208002,17009,0.101538461538462 +60750208003,16469,0.147403685092127 +60750208003,16712,0.125628140703518 +60750208003,17010,0.160804020100503 +60750208003,17011,0.169179229480737 +60750208003,17190,0.23785594639866 +60750208003,17191,0.159128978224456 +60750208004,10112,0.160264900662252 +60750208004,10279,0.28476821192053 +60750208004,12017,0.0768211920529801 +60750208004,12964,0.109933774834437 +60750208004,15859,0.0503311258278146 +60750208004,16467,0.198675496688742 +60750208004,16884,0.119205298013245 +60750209001,12965,0.115789473684211 +60750209001,14037,0.18796992481203 +60750209001,14145,0.213533834586466 +60750209001,14211,0.320300751879699 +60750209001,15394,0.162406015037594 +60750209002,14214,1 +60750209003,10927,0.708661417322835 +60750209003,11424,0.291338582677165 +60750209004,10462,0.451745379876797 +60750209004,10925,0.119096509240246 +60750209004,15385,0.316221765913758 +60750209004,16422,0.112936344969199 +60750210001,11001,0.225321888412017 +60750210001,12014,0.319742489270386 +60750210001,12557,0.259656652360515 +60750210001,16364,0.195278969957082 +60750210002,10924,0.141078838174274 +60750210002,12558,0.188796680497925 +60750210002,14014,0.37344398340249 +60750210002,15860,0.186721991701245 +60750210002,16363,0.109958506224066 +60750210003,11932,0.131578947368421 +60750210003,12012,0.156509695290859 +60750210003,12036,0.128808864265928 +60750210003,12986,0.21191135734072 +60750210003,16297,0.229916897506925 +60750210003,16367,0.141274238227147 +60750210004,11422,0.214925373134328 +60750210004,16423,0.232835820895522 +60750210004,16424,0.552238805970149 +60750211001,10551,0.077634011090573 +60750211001,12552,0.125693160813309 +60750211001,15909,0.160813308687616 +60750211001,15973,0.099815157116451 +60750211001,15974,0.120147874306839 +60750211001,15975,0.158964879852126 +60750211001,16413,0.149722735674677 +60750211001,17085,0.10720887245841 +60750211002,12009,0.0549450549450549 +60750211002,15856,0.202197802197802 +60750211002,16414,0.468131868131868 +60750211002,16958,0.274725274725275 +60750211003,10504,0.182194616977226 +60750211003,10507,0.180124223602484 +60750211003,10541,0.178053830227743 +60750211003,11100,0.13871635610766 +60750211003,11502,0.169772256728778 +60750211003,14994,0.151138716356108 +60750211004,10005,0.184895833333333 +60750211004,10006,0.229166666666667 +60750211004,11101,0.153645833333333 +60750211004,11164,0.151041666666667 +60750211004,11165,0.158854166666667 +60750211004,15067,0.122395833333333 +60750212001,10004,0.149450549450549 +60750212001,11097,0.149450549450549 +60750212001,11162,0.151648351648352 +60750212001,11163,0.112087912087912 +60750212001,14480,0.30989010989011 +60750212001,14599,0.127472527472527 +60750212002,10539,0.137432188065099 +60750212002,10605,0.0759493670886076 +60750212002,10606,0.130198915009042 +60750212002,11099,0.130198915009042 +60750212002,11166,0.148282097649186 +60750212002,11168,0.11754068716094 +60750212002,14097,0.137432188065099 +60750212002,14597,0.122965641952984 +60750212003,10114,0.20360824742268 +60750212003,10116,0.231958762886598 +60750212003,10184,0.0747422680412371 +60750212003,13103,0.170103092783505 +60750212003,16476,0.167525773195876 +60750212003,17194,0.152061855670103 +60750213001,10607,0.114173228346457 +60750213001,10608,0.118110236220472 +60750213001,11103,0.188976377952756 +60750213001,11104,0.153543307086614 +60750213001,14481,0.141732283464567 +60750213001,14600,0.131889763779528 +60750213001,14931,0.151574803149606 +60750213002,10001,0.0935143288084465 +60750213002,10002,0.0965309200603318 +60750213002,11096,0.111613876319759 +60750213002,11102,0.0904977375565611 +60750213002,11167,0.0829562594268477 +60750213002,12060,0.18552036199095 +60750213002,14479,0.174962292609351 +60750213002,14991,0.0920060331825038 +60750213002,15057,0.0723981900452489 +60750214001,10509,0.21957671957672 +60750214001,15911,0.169312169312169 +60750214001,15913,0.105820105820106 +60750214001,16417,0.505291005291005 +60750214002,10508,0.102222222222222 +60750214002,10999,0.125925925925926 +60750214002,11169,0.146666666666667 +60750214002,11508,0.146666666666667 +60750214002,12553,0.114074074074074 +60750214002,15543,0.114074074074074 +60750214002,15914,0.112592592592593 +60750214002,16418,0.137777777777778 +60750214003,10609,0 +60750214003,10611,0.169611307420495 +60750214003,11504,0.141342756183746 +60750214003,11505,0.139575971731449 +60750214003,11506,0.106007067137809 +60750214003,12010,0.167844522968198 +60750214003,14932,0.15547703180212 +60750214003,15058,0.120141342756184 +60750215001,11933,0.2 +60750215001,12555,0.16989247311828 +60750215001,15542,0.0752688172043011 +60750215001,16194,0.356989247311828 +60750215001,16296,0.197849462365591 +60750215002,10313,0.129032258064516 +60750215002,10416,0.188455008488964 +60750215002,10417,0.196943972835314 +60750215002,12868,0.132427843803056 +60750215002,15873,0.159592529711375 +60750215002,17228,0.193548387096774 +60750215003,10418,0.305489260143198 +60750215003,10929,0.178997613365155 +60750215003,11377,0.276849642004773 +60750215003,13930,0.202863961813842 +60750215003,16303,0.035799522673031 +60750215004,10930,0.230616302186879 +60750215004,11425,0.163021868787276 +60750215004,11938,0.137176938369781 +60750215004,11939,0.20675944333996 +60750215004,16370,0.184890656063618 +60750215004,16371,0.0775347912524851 +60750215005,10997,0.177589852008457 +60750215005,12011,0.158562367864693 +60750215005,12554,0.219873150105708 +60750215005,16369,0.135306553911205 +60750215005,16428,0.308668076109937 +60750216001,10007,0.209406494960806 +60750216001,10009,0.038073908174692 +60750216001,10355,0.135498320268757 +60750216001,10542,0.0526315789473684 +60750216001,10544,0.0503919372900336 +60750216001,10610,0.0470324748040314 +60750216001,11108,0.0806270996640538 +60750216001,11109,0.0615901455767077 +60750216001,11612,0.0537513997760358 +60750216001,14379,0.0291153415453527 +60750216001,14993,0.0470324748040314 +60750216001,14995,0.06494960806271 +60750216001,14996,0.0436730123180291 +60750216001,14999,0.0862262038073908 +60750216002,10202,0.0679611650485437 +60750216002,10604,0.0609002647837599 +60750216002,10612,0.254192409532215 +60750216002,10613,0.030891438658429 +60750216002,11135,0.129744042365402 +60750216002,11213,0.385701676963813 +60750216002,14990,0.0706090026478376 +60750217001,10353,0.261865793780687 +60750217001,11134,0.147299509001637 +60750217001,11136,0.114566284779051 +60750217001,14935,0.476268412438625 +60750217002,10543,0.239224137931034 +60750217002,11106,0.109913793103448 +60750217002,11171,0.178879310344828 +60750217002,11611,0.0538793103448276 +60750217002,14938,0.206896551724138 +60750217002,15061,0.0668103448275862 +60750217002,15063,0.144396551724138 +60750217003,10012,0.410788381742739 +60750217003,10547,0.0318118948824343 +60750217003,10614,0.0885200553250346 +60750217003,11613,0.12448132780083 +60750217003,14940,0.0359612724757953 +60750217003,15062,0.127247579529737 +60750217003,15628,0.0511756569847856 +60750217003,16177,0.130013831258645 +60750218001,10419,0.210820895522388 +60750218001,10420,0.208955223880597 +60750218001,11427,0.171641791044776 +60750218001,16304,0.108208955223881 +60750218001,16305,0.199626865671642 +60750218001,16426,0.100746268656716 +60750218002,10310,0.111111111111111 +60750218002,11426,0.166666666666667 +60750218002,11887,0.222222222222222 +60750218002,12020,0.176954732510288 +60750218002,12987,0.0946502057613169 +60750218002,16306,0.228395061728395 +60750218003,11429,0.183333333333333 +60750218003,12864,0.14 +60750218003,12865,0.136666666666667 +60750218003,16307,0.24 +60750218003,17368,0.123333333333333 +60750218003,17369,0.176666666666667 +60750218004,10358,0.213004484304933 +60750218004,14478,0.291479820627803 +60750218004,14941,0.12780269058296 +60750218004,14942,0.0896860986547085 +60750218004,15118,0.139013452914798 +60750218004,15622,0.139013452914798 +60750226001,0,0 +60750226001,10060,0 +60750226001,10552,0.16566265060241 +60750226001,10553,0.177710843373494 +60750226001,10554,0.0933734939759036 +60750226001,10555,0 +60750226001,10822,0 +60750226001,11541,0.141566265060241 +60750226001,11616,0 +60750226001,12718,0 +60750226001,13988,0 +60750226001,16973,0.394578313253012 +60750226001,17204,0.0271084337349398 +60750226002,10582,0 +60750226002,11028,0.161490683229814 +60750226002,11031,0 +60750226002,11059,0.093167701863354 +60750226002,11544,0.0020703933747412 +60750226002,11547,0 +60750226002,11617,0.273291925465839 +60750226002,11618,0 +60750226002,11620,0.0041407867494824 +60750226002,12046,0 +60750226002,12274,0 +60750226002,15002,0.0538302277432712 +60750226002,15008,0 +60750226002,15009,0 +60750226002,15070,0.262939958592133 +60750226002,16975,0 +60750226002,16976,0.149068322981366 +60750227021,11786,0 +60750227021,12960,0.124 +60750227021,14031,0.14 +60750227021,14210,0.126 +60750227021,14809,0.066 +60750227021,15221,0.096 +60750227021,15270,0.048 +60750227021,15271,0.178 +60750227021,15390,0.056 +60750227021,16878,0.13 +60750227021,16881,0.036 +60750227022,10823,0.0665280665280665 +60750227022,12963,0.112266112266112 +60750227022,14032,0.0748440748440748 +60750227022,14033,0.0956340956340956 +60750227022,14036,0.122661122661123 +60750227022,14144,0.112266112266112 +60750227022,14810,0.0727650727650728 +60750227022,15388,0.108108108108108 +60750227022,15391,0.027027027027027 +60750227022,15393,0.120582120582121 +60750227022,16882,0.0873180873180873 +60750227041,13085,0.215892053973014 +60750227041,13086,0.00299850074962519 +60750227041,13219,0.136431784107946 +60750227041,13221,0.136431784107946 +60750227041,13280,0.0584707646176912 +60750227041,13281,0 +60750227041,13735,0.113943028485757 +60750227041,13736,0 +60750227041,14264,0.0674662668665667 +60750227041,14265,0.0494752623688156 +60750227041,14267,0 +60750227041,14314,0.0779610194902549 +60750227041,14315,0.0239880059970015 +60750227041,14316,0.100449775112444 +60750227041,15939,0.0164917541229385 +60750227042,11147,0.0233050847457627 +60750227042,11148,0.0466101694915254 +60750227042,11150,0.139830508474576 +60750227042,11586,0.0879237288135593 +60750227042,12961,0.0614406779661017 +60750227042,13154,0.0508474576271186 +60750227042,13982,0.0974576271186441 +60750227042,14268,0.0699152542372881 +60750227042,14269,0.104872881355932 +60750227042,14270,0.0466101694915254 +60750227042,14271,0.0572033898305085 +60750227042,15219,0.0836864406779661 +60750227042,15940,0.0497881355932203 +60750227042,16879,0.0805084745762712 +60750228011,10282,0.00334448160535117 +60750228011,11250,0.0568561872909699 +60750228011,11350,0.0852842809364548 +60750228011,11992,0.0317725752508361 +60750228011,11993,0.0953177257525084 +60750228011,12095,0.0919732441471572 +60750228011,12286,0.0284280936454849 +60750228011,12341,0.31438127090301 +60750228011,12915,0 +60750228011,12920,0 +60750228011,13135,0.0635451505016722 +60750228011,13369,0.0585284280936455 +60750228011,14076,0.17056856187291 +60750228011,16818,0 +60750228012,12097,0.0665701881331404 +60750228012,12343,0.111432706222865 +60750228012,12344,0.104196816208394 +60750228012,12918,0.0434153400868307 +60750228012,12921,0.0897250361794501 +60750228012,12922,0.0347322720694645 +60750228012,13317,0.137481910274964 +60750228012,13318,0.172214182344428 +60750228012,14077,0.115774240231548 +60750228012,14079,0.124457308248915 +60750228013,10280,0.0516934046345811 +60750228013,10281,0.162210338680927 +60750228013,12094,0.163992869875223 +60750228013,12400,0.20855614973262 +60750228013,12401,0.146167557932264 +60750228013,12402,0.183600713012478 +60750228013,15328,0.0837789661319073 +60750228013,15330,0 +60750228021,11055,0.256302521008403 +60750228021,11146,0.201680672268908 +60750228021,11251,0.0252100840336134 +60750228021,12096,0.264705882352941 +60750228021,13319,0.0840336134453781 +60750228021,14078,0.168067226890756 +60750228022,10576,0.208450704225352 +60750228022,12506,0.352112676056338 +60750228022,12715,0.264788732394366 +60750228022,12928,0.0309859154929577 +60750228022,13320,0.143661971830986 +60750228022,15229,0 +60750228031,14040,0.11063829787234 +60750228031,14041,0.109219858156028 +60750228031,14146,0.0822695035460993 +60750228031,14212,0.0666666666666667 +60750228031,15222,0.243971631205674 +60750228031,15272,0.15177304964539 +60750228031,15273,0.0936170212765957 +60750228031,15395,0.141843971631206 +60750228032,12969,0.202409638554217 +60750228032,14149,0.204819277108434 +60750228032,14517,0.204819277108434 +60750228032,15228,0.212048192771084 +60750228032,15399,0.175903614457831 +60750228033,14148,0.206812652068127 +60750228033,14217,0.184914841849148 +60750228033,14218,0.226277372262774 +60750228033,14220,0.211678832116788 +60750228033,14518,0.170316301703163 +60750229011,15223,0.18135593220339 +60750229011,15274,0.150847457627119 +60750229011,15275,0.188135593220339 +60750229011,15277,0.154237288135593 +60750229011,15396,0.11864406779661 +60750229011,16886,0.206779661016949 +60750229012,11284,0.139959432048682 +60750229012,12967,0.385395537525355 +60750229012,13201,0.152129817444219 +60750229012,14215,0.22920892494929 +60750229012,17334,0.0933062880324544 +60750229013,15398,0.333333333333333 +60750229013,17333,0.666666666666667 +60750229021,12970,0.20048309178744 +60750229021,12971,0.0628019323671498 +60750229021,14219,0.164251207729469 +60750229021,15280,0.21256038647343 +60750229021,15400,0.20048309178744 +60750229021,15401,0.159420289855072 +60750229022,14151,0.13659793814433 +60750229022,14519,0.15979381443299 +60750229022,14682,0.234536082474227 +60750229022,14685,0.167525773195876 +60750229022,15282,0.170103092783505 +60750229022,15283,0.131443298969072 +60750229031,11056,0.116772823779193 +60750229031,14150,0.208067940552017 +60750229031,14221,0.167728237791932 +60750229031,14681,0.174097664543524 +60750229031,15281,0.146496815286624 +60750229031,15402,0.186836518046709 +60750229032,11268,0.228915662650602 +60750229032,12700,0.168674698795181 +60750229032,13153,0.186746987951807 +60750229032,14088,0.0572289156626506 +60750229032,16648,0.159638554216867 +60750229032,17045,0.198795180722892 +60750229033,13923,0.180952380952381 +60750229033,13924,0.13968253968254 +60750229033,14520,0.231746031746032 +60750229033,15995,0.184126984126984 +60750229033,17337,0.263492063492063 +60750230011,10124,0.0444915254237288 +60750230011,10125,0.0995762711864407 +60750230011,10463,0.0783898305084746 +60750230011,10520,0 +60750230011,10642,0.0529661016949153 +60750230011,11399,0.148305084745763 +60750230011,11692,0.0847457627118644 +60750230011,12114,0 +60750230011,12423,0.00211864406779661 +60750230011,12662,0.00211864406779661 +60750230011,13003,0.152542372881356 +60750230011,13108,0.0720338983050847 +60750230011,13293,0.0995762711864407 +60750230011,13506,0.00423728813559322 +60750230011,13507,0.076271186440678 +60750230011,15469,0.0826271186440678 +60750230012,10049,0.185507246376812 +60750230012,13513,0.0985507246376812 +60750230012,14102,0.144927536231884 +60750230012,14106,0.173913043478261 +60750230012,16479,0.16231884057971 +60750230012,17199,0.234782608695652 +60750230013,10122,0.2 +60750230013,10814,0.341414141414141 +60750230013,10819,0.121212121212121 +60750230013,11818,0.149494949494949 +60750230013,12883,0.0707070707070707 +60750230013,13136,0.117171717171717 +60750230031,11473,0.064968152866242 +60750230031,11820,0.0968152866242038 +60750230031,12366,0.0598726114649682 +60750230031,12372,0.0496815286624204 +60750230031,12887,0.0611464968152866 +60750230031,12888,0.0471337579617834 +60750230031,12945,0.0815286624203822 +60750230031,13383,0.0496815286624204 +60750230031,13515,0.0305732484076433 +60750230031,17200,0.410191082802548 +60750230031,17279,0.0484076433121019 +60750230032,11223,0.178861788617886 +60750230032,11224,0.0514905149051491 +60750230032,11225,0.111111111111111 +60750230032,11226,0 +60750230032,11821,0.127371273712737 +60750230032,12251,0.102981029810298 +60750230032,12252,0.0894308943089431 +60750230032,13286,0.178861788617886 +60750230032,15412,0.159891598915989 +60750231021,10025,0.0407608695652174 +60750231021,10464,0.0720108695652174 +60750231021,10948,0.387228260869565 +60750231021,11355,0.317934782608696 +60750231021,15233,0.00679347826086957 +60750231021,16767,0.112771739130435 +60750231021,17342,0.0625 +60750231022,10024,0.104938271604938 +60750231022,10947,0.236625514403292 +60750231022,12057,0.0925925925925926 +60750231022,16768,0.565843621399177 +60750231031,16495,0 +60750231031,17299,1 +60750231032,10590,0.123134328358209 +60750231032,12023,0.374378109452736 +60750231032,13334,0.354477611940299 +60750231032,13601,0.131840796019901 +60750231032,14974,0.00497512437810945 +60750231032,15287,0 +60750231032,16903,0 +60750231032,16905,0.0111940298507463 +60750232001,10062,0.108374384236453 +60750232001,12654,0.184729064039409 +60750232001,12657,0.125615763546798 +60750232001,12658,0.12807881773399 +60750232001,12701,0.142857142857143 +60750232001,12756,0.0221674876847291 +60750232001,13586,0.0665024630541872 +60750232001,13896,0.110837438423645 +60750232001,13897,0.110837438423645 +60750232001,14887,0 +60750232002,10660,0.0831295843520782 +60750232002,12659,0.110024449877751 +60750232002,12703,0 +60750232002,12704,0.00244498777506112 +60750232002,12757,0.0635696821515892 +60750232002,12758,0.105134474327628 +60750232002,12988,0.0317848410757946 +60750232002,13244,0.00488997555012225 +60750232002,13289,0.114914425427873 +60750232002,13518,0.110024449877751 +60750232002,13598,0.0244498777506112 +60750232002,14117,0 +60750232002,14304,0.00244498777506112 +60750232002,14334,0.124694376528117 +60750232002,14888,0.105134474327628 +60750232002,14889,0 +60750232002,14890,0.105134474327628 +60750232002,15815,0.0122249388753056 +60750232003,10022,0.0774818401937046 +60750232003,12052,0.0920096852300242 +60750232003,12373,0.0774818401937046 +60750232003,13054,0.128329297820823 +60750232003,13287,0.157384987893462 +60750232003,13832,0.113801452784504 +60750232003,13833,0.138014527845036 +60750232003,13894,0.0920096852300242 +60750232003,14885,0.123486682808717 +60750233001,10242,0.0725806451612903 +60750233001,10659,0.0725806451612903 +60750233001,10863,0 +60750233001,10864,0.0225806451612903 +60750233001,10865,0.0725806451612903 +60750233001,11274,0.0596774193548387 +60750233001,11822,0.0145161290322581 +60750233001,12785,0.151612903225806 +60750233001,12884,0.00161290322580645 +60750233001,12885,0.0790322580645161 +60750233001,12946,0.0709677419354839 +60750233001,12976,0.0870967741935484 +60750233001,13018,0.082258064516129 +60750233001,13949,0.0419354838709677 +60750233001,14400,0.0903225806451613 +60750233001,14525,0.0419354838709677 +60750233001,16934,0.0387096774193548 +60750234001,10654,0.144927536231884 +60750234001,10866,0.0966183574879227 +60750234001,10867,0.115942028985507 +60750234001,10868,0.072463768115942 +60750234001,11228,0.0072463768115942 +60750234001,11703,0 +60750234001,11823,0.120772946859903 +60750234001,12377,0.0821256038647343 +60750234001,12656,0 +60750234001,12660,0 +60750234001,12705,0 +60750234001,12753,0.0942028985507246 +60750234001,12759,0 +60750234001,12760,0 +60750234001,12890,0.0386473429951691 +60750234001,12948,0.00483091787439614 +60750234001,12949,0.106280193236715 +60750234001,13288,0 +60750234001,14401,0.115942028985507 +60750234001,15349,0 +60750234002,12661,0.0872727272727273 +60750234002,12706,0.0909090909090909 +60750234002,12707,0 +60750234002,13052,0.158181818181818 +60750234002,13517,0 +60750234002,13600,0.129090909090909 +60750234002,14814,0.0927272727272727 +60750234002,15350,0.02 +60750234002,15351,0.421818181818182 +60750234002,16936,0 +60750251001,12168,0.0863787375415282 +60750251001,14647,0.149501661129568 +60750251001,15174,0.166112956810631 +60750251001,15175,0.17109634551495 +60750251001,15616,0.0564784053156146 +60750251001,15804,0.132890365448505 +60750251001,16106,0.122923588039867 +60750251001,16108,0.0448504983388704 +60750251001,17253,0.0697674418604651 +60750251002,10023,0.0213333333333333 +60750251002,10295,0.0933333333333333 +60750251002,10300,0.282666666666667 +60750251002,11307,0.258666666666667 +60750251002,11309,0.272 +60750251002,14377,0.072 +60750251003,10944,0.0787671232876712 +60750251003,11469,0.321917808219178 +60750251003,12421,0.0821917808219178 +60750251003,12595,0 +60750251003,15884,0.0719178082191781 +60750251003,16110,0.236301369863014 +60750251003,17298,0.208904109589041 +60750252001,10978,0.0848484848484849 +60750252001,11051,0.105050505050505 +60750252001,11737,0.181818181818182 +60750252001,12968,0 +60750252001,14043,0.460606060606061 +60750252001,14516,0.167676767676768 +60750252002,10284,0.10410094637224 +60750252002,10858,0.0851735015772871 +60750252002,10859,0.10410094637224 +60750252002,11468,0.118296529968454 +60750252002,11842,0.0488958990536278 +60750252002,14684,0.138801261829653 +60750252002,15098,0.0678233438485804 +60750252002,15832,0.236593059936908 +60750252002,16161,0.0962145110410095 +60750252003,10287,0.0847784200385356 +60750252003,11293,0.129094412331407 +60750252003,13926,0.196531791907514 +60750252003,15186,0.186897880539499 +60750252003,15187,0.0809248554913295 +60750252003,16166,0.219653179190751 +60750252003,16168,0.0732177263969171 +60750252003,16354,0.0289017341040462 +60750252004,11466,0.109014675052411 +60750252004,13138,0.339622641509434 +60750252004,14651,0.138364779874214 +60750252004,16165,0.345911949685535 +60750252004,16355,0.0670859538784067 +60750253001,10316,0.175054704595186 +60750253001,10518,0.227571115973742 +60750253001,14649,0.137855579868709 +60750253001,15177,0.212253829321663 +60750253001,16162,0.140043763676149 +60750253001,16352,0.107221006564551 +60750253002,10315,0.0843023255813953 +60750253002,10317,0.244186046511628 +60750253002,10421,0.151162790697674 +60750253002,10798,0.122093023255814 +60750253002,11889,0.156976744186047 +60750253002,11892,0.241279069767442 +60750253003,12870,0.263313609467456 +60750253003,15539,0.254437869822485 +60750253003,15541,0.482248520710059 +60750253004,11378,0.32484076433121 +60750253004,11423,0.21656050955414 +60750253004,11937,0.144904458598726 +60750253004,15415,0.170382165605096 +60750253004,16300,0.143312101910828 +60750253004,16301,0 +60750254011,10425,0.157996146435453 +60750254011,11560,0.092485549132948 +60750254011,11888,0.165703275529865 +60750254011,11890,0.154142581888247 +60750254011,12934,0.221579961464355 +60750254011,13932,0.092485549132948 +60750254011,13934,0.115606936416185 +60750254012,10288,0.185792349726776 +60750254012,10289,0.174863387978142 +60750254012,11385,0.12568306010929 +60750254012,11893,0.26775956284153 +60750254012,16164,0.245901639344262 +60750254013,10801,0.209718670076726 +60750254013,11381,0.304347826086957 +60750254013,11382,0.230179028132992 +60750254013,16190,0.255754475703325 +60750254021,10292,0.245989304812834 +60750254021,11294,0.0828877005347594 +60750254021,11298,0.0240641711229947 +60750254021,11300,0.165775401069519 +60750254021,11301,0.245989304812834 +60750254021,15101,0.144385026737968 +60750254021,16361,0.0909090909090909 +60750254022,11264,0.297385620915033 +60750254022,11299,0.0457516339869281 +60750254022,11302,0.0980392156862745 +60750254022,11303,0.199346405228758 +60750254022,11304,0.137254901960784 +60750254022,15105,0.137254901960784 +60750254022,15345,0.0849673202614379 +60750254023,11267,0.15 +60750254023,11306,0.221052631578947 +60750254023,11449,0.315789473684211 +60750254023,14376,0.189473684210526 +60750254023,16111,0.123684210526316 +60750254031,10193,0.0729001584786054 +60750254031,10424,0.0839936608557845 +60750254031,11046,0.144215530903328 +60750254031,11557,0.172741679873217 +60750254031,11558,0.136291600633914 +60750254031,11891,0.0792393026941363 +60750254031,15544,0.0729001584786054 +60750254031,15555,0.237717908082409 +60750254032,10519,0.0521739130434783 +60750254032,10726,0.0683229813664596 +60750254032,10803,0.150310559006211 +60750254032,11384,0.275776397515528 +60750254032,11467,0.0894409937888199 +60750254032,12064,0.151552795031056 +60750254032,13902,0.0670807453416149 +60750254032,15888,0.0832298136645963 +60750254032,16821,0.062111801242236 +60750255001,10743,0.080952380952381 +60750255001,11375,0.104761904761905 +60750255001,11376,0.385714285714286 +60750255001,11600,0.183333333333333 +60750255001,12927,0.05 +60750255001,13929,0.123809523809524 +60750255001,16453,0.0714285714285714 +60750255002,10744,0.270114942528736 +60750255002,11444,0 +60750255002,11741,0.123563218390805 +60750255002,13743,0.232758620689655 +60750255002,15773,0.166666666666667 +60750255002,16119,0.206896551724138 +60750255003,11597,0.258389261744966 +60750255003,13742,0.187919463087248 +60750255003,14179,0.151006711409396 +60750255003,15771,0.228187919463087 +60750255003,15861,0.174496644295302 +60750255004,13547,0.215753424657534 +60750255004,13548,0.123287671232877 +60750255004,14550,0.157534246575342 +60750255004,15094,0.164383561643836 +60750255004,15268,0.178082191780822 +60750255004,15862,0.160958904109589 +60750255005,14070,0.123188405797101 +60750255005,14546,0.0797101449275362 +60750255005,14547,0.115942028985507 +60750255005,14711,0.103864734299517 +60750255005,14714,0.101449275362319 +60750255005,15441,0.222222222222222 +60750255005,17213,0.106280193236715 +60750255005,17215,0.147342995169082 +60750255006,11708,0.0186513629842181 +60750255006,12725,0.0530846484935438 +60750255006,13549,0.167862266857963 +60750255006,14279,0.157819225251076 +60750255006,14712,0.0760401721664276 +60750255006,14715,0.109038737446198 +60750255006,14717,0.0473457675753228 +60750255006,15091,0.0746054519368723 +60750255006,15266,0.162123385939742 +60750255006,15440,0.084648493543759 +60750255006,15443,0.0487804878048781 +60750256001,11359,0.103117505995204 +60750256001,11635,0.184652278177458 +60750256001,13428,0.117505995203837 +60750256001,15593,0.223021582733813 +60750256001,16103,0.136690647482014 +60750256001,16678,0.0359712230215827 +60750256001,17072,0.199040767386091 +60750256002,10933,0.116766467065868 +60750256002,11940,0.119760479041916 +60750256002,12989,0.155688622754491 +60750256002,15183,0 +60750256002,15594,0.134730538922156 +60750256002,16374,0.116766467065868 +60750256002,16375,0.107784431137725 +60750256002,16376,0.0868263473053892 +60750256002,16769,0.161676646706587 +60750256003,10194,0.120253164556962 +60750256003,10440,0.117088607594937 +60750256003,12070,0.0886075949367089 +60750256003,15937,0.120253164556962 +60750256003,16104,0.10126582278481 +60750256003,16623,0.113924050632911 +60750256003,16625,0.227848101265823 +60750256003,17074,0.110759493670886 +60750256004,10795,0.114052953156823 +60750256004,11245,0.374745417515275 +60750256004,11598,0.134419551934827 +60750256004,13677,0.146639511201629 +60750256004,16101,0.112016293279022 +60750256004,17384,0.118126272912424 +60750257011,10290,0.1671388101983 +60750257011,11297,0.0793201133144476 +60750257011,12990,0.0878186968838527 +60750257011,15185,0.0764872521246459 +60750257011,15936,0.410764872521246 +60750257011,16377,0.0793201133144476 +60750257011,16378,0.0991501416430595 +60750257012,10483,0 +60750257012,10936,0.07426597582038 +60750257012,10937,0.155440414507772 +60750257012,11432,0.0811744386873921 +60750257012,11434,0.112262521588946 +60750257012,11942,0.100172711571675 +60750257012,11943,0.134715025906736 +60750257012,13519,0.13126079447323 +60750257012,16231,0 +60750257012,16771,0.075993091537133 +60750257012,16827,0.134715025906736 +60750257013,10934,0.0601503759398496 +60750257013,11435,0.050125313283208 +60750257013,11944,0.18796992481203 +60750257013,11945,0.147869674185464 +60750257013,11946,0.0977443609022556 +60750257013,11948,0.110275689223058 +60750257013,12991,0.157894736842105 +60750257013,16772,0.18796992481203 +60750257013,16773,0 +60750257021,10434,0.0862533692722372 +60750257021,10818,0.129380053908356 +60750257021,11221,0.121293800539084 +60750257021,11817,0.16711590296496 +60750257021,11819,0.0619946091644205 +60750257021,12368,0.115902964959569 +60750257021,12881,0.0997304582210243 +60750257021,12943,0.137466307277628 +60750257021,17106,0.0808625336927224 +60750257022,10760,0.115384615384615 +60750257022,10813,0.0811965811965812 +60750257022,10817,0.102564102564103 +60750257022,10938,0.10042735042735 +60750257022,11018,0.102564102564103 +60750257022,11816,0.061965811965812 +60750257022,11947,0.094017094017094 +60750257022,11949,0.108974358974359 +60750257022,11951,0.0897435897435897 +60750257022,13834,0 +60750257022,13942,0.0641025641025641 +60750257022,16891,0.0790598290598291 +60750257023,10939,0.1 +60750257023,11433,0.102564102564103 +60750257023,11436,0.0897435897435897 +60750257023,11950,0.107692307692308 +60750257023,12995,0.0435897435897436 +60750257023,12997,0.0666666666666667 +60750257023,12998,0.105128205128205 +60750257023,16775,0 +60750257023,16776,0.0820512820512821 +60750257023,16778,0.107692307692308 +60750257023,16828,0.0794871794871795 +60750257023,16892,0.115384615384615 +60750258001,10435,0.119533527696793 +60750258001,10860,0.134110787172012 +60750258001,10940,0.113702623906706 +60750258001,11222,0.154518950437318 +60750258001,12369,0.110787172011662 +60750258001,12886,0.166180758017493 +60750258001,12944,0.110787172011662 +60750258001,13946,0.0903790087463557 +60750258002,10063,0.104803493449782 +60750258002,10130,0 +60750258002,10655,0.139737991266376 +60750258002,10658,0 +60750258002,11269,0.275109170305677 +60750258002,11270,0.11353711790393 +60750258002,13047,0.131004366812227 +60750258002,13164,0 +60750258002,13282,0.235807860262009 +60750259001,11431,0.0563380281690141 +60750259001,11941,0.0610328638497653 +60750259001,12473,0.231611893583725 +60750259001,12474,0.0563380281690141 +60750259001,12994,0.0500782472613459 +60750259001,13685,0.118935837245696 +60750259001,14057,0.164319248826291 +60750259001,16432,0.0845070422535211 +60750259001,16433,0.0610328638497653 +60750259001,16434,0.0625978090766823 +60750259001,16774,0.05320813771518 +60750259002,10727,0.0602636534839925 +60750259002,10728,0.0564971751412429 +60750259002,11952,0.0772128060263653 +60750259002,11953,0.0734463276836158 +60750259002,11954,0.0696798493408663 +60750259002,11961,0.0677966101694915 +60750259002,12475,0.137476459510358 +60750259002,12993,0.0677966101694915 +60750259002,12996,0.064030131826742 +60750259002,12999,0.0696798493408663 +60750259002,15331,0.116760828625235 +60750259002,16779,0.0696798493408663 +60750259002,16894,0.0696798493408663 +60750259003,10241,0.222929936305732 +60750259003,10861,0.184713375796178 +60750259003,12370,0.210191082802548 +60750259003,14877,0.382165605095541 +60750260011,10437,0.0731382978723404 +60750260011,11239,0.0319148936170213 +60750260011,11631,0.0757978723404255 +60750260011,11632,0.0944148936170213 +60750260011,15093,0.0904255319148936 +60750260011,15591,0.0784574468085106 +60750260011,15774,0.0917553191489362 +60750260011,16660,0.0944148936170213 +60750260011,16662,0.0944148936170213 +60750260011,16798,0.0279255319148936 +60750260011,16799,0.0824468085106383 +60750260011,17161,0.0811170212765957 +60750260011,17385,0.0837765957446809 +60750260012,10707,0.0821382007822686 +60750260012,10708,0.0808344198174707 +60750260012,14670,0.0964797913950456 +60750260012,14671,0.0977835723598435 +60750260012,14672,0.0899608865710561 +60750260012,15214,0.0625814863102999 +60750260012,15215,0.0834419817470665 +60750260012,15650,0.127770534550196 +60750260012,16661,0.0782268578878748 +60750260012,16796,0.112125162972621 +60750260012,17163,0.0886571056062582 +60750260021,10190,0.162790697674419 +60750260021,10436,0.129198966408269 +60750260021,15592,0.136950904392765 +60750260021,15933,0.147286821705426 +60750260021,16620,0.136950904392765 +60750260021,17162,0.142118863049096 +60750260021,17386,0.144702842377261 +60750260022,10195,0.0669014084507042 +60750260022,10438,0.267605633802817 +60750260022,11242,0.11443661971831 +60750260022,11634,0.0897887323943662 +60750260022,11669,0.0669014084507042 +60750260022,14739,0.195422535211268 +60750260022,16102,0.102112676056338 +60750260022,16536,0.0545774647887324 +60750260022,16538,0.0422535211267606 +60750260031,10192,0.0566666666666667 +60750260031,10441,0.125 +60750260031,11240,0.0966666666666667 +60750260031,11241,0.08 +60750260031,11243,0.08 +60750260031,11633,0.0816666666666667 +60750260031,11638,0.0833333333333333 +60750260031,11640,0.0866666666666667 +60750260031,11641,0.0683333333333333 +60750260031,15934,0.123333333333333 +60750260031,16621,0.118333333333333 +60750260032,10197,0.0728291316526611 +60750260032,10443,0.0798319327731092 +60750260032,10718,0.0784313725490196 +60750260032,10720,0.0714285714285714 +60750260032,11670,0.0840336134453782 +60750260032,15651,0.0882352941176471 +60750260032,16379,0.0784313725490196 +60750260032,16380,0.117647058823529 +60750260032,16622,0.0938375350140056 +60750260032,17075,0.0728291316526611 +60750260032,17076,0.0826330532212885 +60750260032,17077,0.0798319327731092 +60750260041,10711,0.0672926447574335 +60750260041,10716,0.05320813771518 +60750260041,13680,0.0579029733959311 +60750260041,13681,0.0938967136150235 +60750260041,15028,0.10641627543036 +60750260041,15029,0.0970266040688576 +60750260041,15643,0.111111111111111 +60750260041,15647,0.081377151799687 +60750260041,16149,0.0892018779342723 +60750260041,16665,0.0579029733959311 +60750260041,16668,0.184663536776213 +60750260042,10717,0.110891089108911 +60750260042,15037,0.110891089108911 +60750260042,15649,0.104950495049505 +60750260042,15654,0.154455445544554 +60750260042,16150,0.126732673267327 +60750260042,16151,0.158415841584158 +60750260042,16671,0.108910891089109 +60750260042,17264,0.124752475247525 +60750261001,10047,0.111570247933884 +60750261001,14449,0.239669421487603 +60750261001,14716,0.200413223140496 +60750261001,15027,0.115702479338843 +60750261001,15380,0.132231404958678 +60750261001,17261,0.200413223140496 +60750261002,10048,0.0980683506686478 +60750261002,11457,0.0594353640416048 +60750261002,11599,0.117384843982169 +60750261002,11728,0.062407132243685 +60750261002,14248,0.0921248142644874 +60750261002,14447,0.228826151560178 +60750261002,14675,0.0609212481426449 +60750261002,15083,0.0520059435364042 +60750261002,16145,0.0638930163447251 +60750261002,16440,0.0520059435364042 +60750261002,16441,0.0638930163447251 +60750261002,17210,0.0490341753343239 +60750261003,12588,0.134078212290503 +60750261003,13682,0.145251396648045 +60750261003,13740,0.0921787709497207 +60750261003,14169,0.136871508379888 +60750261003,15434,0.217877094972067 +60750261003,15764,0.153631284916201 +60750261003,15766,0.120111731843575 +60750261004,11591,0 +60750261004,11594,0 +60750261004,11727,0.140883977900552 +60750261004,14247,0.165745856353591 +60750261004,14251,0.24585635359116 +60750261004,14451,0.143646408839779 +60750261004,14713,0.0469613259668508 +60750261004,15088,0.0856353591160221 +60750261004,15993,0.171270718232044 +60750262001,11513,0.092485549132948 +60750262001,13227,0.157996146435453 +60750262001,14174,0.0886319845857418 +60750262001,14326,0.18111753371869 +60750262001,15084,0.161849710982659 +60750262001,15264,0.0751445086705202 +60750262001,15437,0.0944123314065511 +60750262001,17209,0.107899807321773 +60750262001,17212,0.0404624277456647 +60750262002,13596,0.371191135734072 +60750262002,14066,0.116343490304709 +60750262002,14249,0.102493074792244 +60750262002,15438,0.10803324099723 +60750262002,15767,0.132963988919668 +60750262002,17211,0.168975069252078 +60750262003,12295,0.0484330484330484 +60750262003,13665,0.182336182336182 +60750262003,13771,0.111111111111111 +60750262003,13772,0.190883190883191 +60750262003,14301,0.150997150997151 +60750262003,14302,0.094017094017094 +60750262003,14491,0.133903133903134 +60750262003,15814,0.0883190883190883 +60750262004,11454,0.420911528150134 +60750262004,13044,0.123324396782842 +60750262004,14003,0.201072386058981 +60750262004,14492,0.096514745308311 +60750262004,14779,0.158176943699732 +60750262005,12241,0.161716171617162 +60750262005,12329,0.0891089108910891 +60750262005,12831,0 +60750262005,13043,0.254125412541254 +60750262005,15769,0.201320132013201 +60750262005,16269,0.128712871287129 +60750262005,16518,0.165016501650165 +60750263011,15653,0.0920245398773006 +60750263011,15657,0.131901840490798 +60750263011,16442,0.196319018404908 +60750263011,16448,0.138036809815951 +60750263011,16666,0.110429447852761 +60750263011,16669,0.116564417177914 +60750263011,16670,0.0889570552147239 +60750263011,16672,0.125766871165644 +60750263012,10713,0.088145896656535 +60750263012,13098,0.0638297872340425 +60750263012,13679,0.0759878419452888 +60750263012,14177,0.115501519756839 +60750263012,14322,0.138297872340426 +60750263012,14676,0.127659574468085 +60750263012,16147,0.0729483282674772 +60750263012,16443,0.0805471124620061 +60750263012,16663,0.0957446808510638 +60750263012,16667,0.0668693009118541 +60750263012,17262,0.074468085106383 +60750263013,10714,0.242214532871972 +60750263013,11287,0.204152249134948 +60750263013,11459,0.269896193771626 +60750263013,14321,0.207612456747405 +60750263013,14443,0.0761245674740484 +60750263021,10721,0.144542772861357 +60750263021,13096,0.126843657817109 +60750263021,13097,0.191740412979351 +60750263021,14680,0.174041297935103 +60750263021,16449,0.0914454277286136 +60750263021,16674,0.141592920353982 +60750263021,16675,0.129793510324484 +60750263022,10722,0.18348623853211 +60750263022,14919,0.128440366972477 +60750263022,15482,0.119266055045872 +60750263022,15596,0.0825688073394495 +60750263022,15655,0.110091743119266 +60750263022,15658,0.116207951070336 +60750263022,16153,0 +60750263022,16450,0.0886850152905199 +60750263022,16676,0.0948012232415902 +60750263022,17266,0.0764525993883792 +60750263023,10198,0.111253196930946 +60750263023,10444,0.0537084398976982 +60750263023,11328,0.553708439897698 +60750263023,11601,0.143222506393862 +60750263023,16490,0.0856777493606138 +60750263023,16540,0.0524296675191816 +60750263031,10452,0.0438066465256798 +60750263031,11726,0.117824773413897 +60750263031,14067,0.154078549848943 +60750263031,14175,0.0845921450151057 +60750263031,15032,0.0800604229607251 +60750263031,15265,0.117824773413897 +60750263031,15378,0.110271903323263 +60750263031,15436,0.081570996978852 +60750263031,15731,0.0528700906344411 +60750263031,15795,0.0664652567975831 +60750263031,16489,0.0906344410876133 +60750263032,10411,0.0928196147110333 +60750263032,12072,0.140105078809107 +60750263032,13013,0.103327495621716 +60750263032,14903,0.0437828371278459 +60750263032,15033,0.0455341506129597 +60750263032,15297,0.0630472854640981 +60750263032,16438,0.199649737302977 +60750263032,16445,0.175131348511384 +60750263032,17324,0.136602451838879 +60750264011,10941,0.102564102564103 +60750264011,11391,0.0860805860805861 +60750264011,11439,0.333333333333333 +60750264011,11957,0.0842490842490843 +60750264011,12071,0.0659340659340659 +60750264011,12879,0.181318681318681 +60750264011,16780,0.0659340659340659 +60750264011,17078,0.0805860805860806 +60750264012,10432,0.112765957446809 +60750264012,10809,0.00425531914893617 +60750264012,11440,0.114893617021277 +60750264012,11441,0.0978723404255319 +60750264012,11442,0.117021276595745 +60750264012,12418,0.112765957446809 +60750264012,12419,0.112765957446809 +60750264012,12880,0.0723404255319149 +60750264012,12941,0.153191489361702 +60750264012,16895,0.102127659574468 +60750264021,10756,0.184782608695652 +60750264021,12245,0.210144927536232 +60750264021,13046,0.13768115942029 +60750264021,13824,0.13768115942029 +60750264021,13890,0.329710144927536 +60750264022,12330,0.0794044665012407 +60750264022,12648,0.0769230769230769 +60750264022,12649,0.101736972704715 +60750264022,13826,0.141439205955335 +60750264022,13827,0.158808933002481 +60750264022,13891,0.166253101736973 +60750264022,13990,0.129032258064516 +60750264022,14879,0.0843672456575682 +60750264022,14882,0.0620347394540943 +60750264023,11409,0.233100233100233 +60750264023,12363,0.1002331002331 +60750264023,12364,0.146853146853147 +60750264023,12877,0.188811188811189 +60750264023,12878,0.165501165501166 +60750264023,17248,0.165501165501166 +60750264031,10811,0.104536489151874 +60750264031,10812,0.0966469428007889 +60750264031,11392,0.102564102564103 +60750264031,11393,0.161735700197239 +60750264031,12365,0.0927021696252465 +60750264031,13939,0.0927021696252465 +60750264031,16210,0.349112426035503 +60750264032,10433,0.0792792792792793 +60750264032,10810,0.187387387387387 +60750264032,11610,0.122522522522523 +60750264032,12246,0.0594594594594595 +60750264032,12331,0.0900900900900901 +60750264032,12942,0.0792792792792793 +60750264032,13048,0.142342342342342 +60750264032,13137,0.102702702702703 +60750264032,13941,0.0774774774774775 +60750264032,14960,0.0594594594594595 +60750264041,11437,0.237704918032787 +60750264041,11438,0.26775956284153 +60750264041,12476,0.379781420765027 +60750264041,16830,0.114754098360656 +60750264042,10039,0.249180327868852 +60750264042,11073,0.685245901639344 +60750264042,11574,0.0655737704918033 +60750301011,10904,0.237536656891496 +60750301011,11921,0.206744868035191 +60750301011,11922,0.208211143695015 +60750301011,12672,0 +60750301011,15602,0.0454545454545455 +60750301011,15929,0.302052785923754 +60750301012,11237,0.123636363636364 +60750301012,11238,0.134545454545455 +60750301012,11627,0.161818181818182 +60750301012,15153,0.114545454545455 +60750301012,15928,0.0327272727272727 +60750301012,16097,0.145454545454545 +60750301012,17378,0.130909090909091 +60750301012,17379,0.156363636363636 +60750301013,10775,0.152588555858311 +60750301013,13545,0.188010899182561 +60750301013,15927,0.228882833787466 +60750301013,16617,0.141689373297003 +60750301013,17152,0.149863760217984 +60750301013,17381,0.138964577656676 +60750301014,11626,0.0778894472361809 +60750301014,15150,0.243718592964824 +60750301014,16095,0.135678391959799 +60750301014,17153,0.301507537688442 +60750301014,17380,0.241206030150754 +60750301021,10388,0.499148211243612 +60750301021,11026,0.330494037478705 +60750301021,15604,0.096252129471891 +60750301021,17154,0.0724020442930153 +60750301021,17155,0.00170357751277683 +60750301022,10685,0.0672268907563025 +60750301022,11864,0.210084033613445 +60750301022,14069,0.588235294117647 +60750301022,16385,0.134453781512605 +60750301023,10686,0.0645161290322581 +60750301023,10916,0.0898617511520737 +60750301023,10917,0.0875576036866359 +60750301023,10970,0.108294930875576 +60750301023,11979,0.235023041474654 +60750301023,12027,0.0622119815668203 +60750301023,14844,0.122119815668203 +60750301023,16551,0.122119815668203 +60750301023,16805,0.108294930875576 +60750302011,10401,0.19790454016298 +60750302011,10892,0.135040745052387 +60750302011,10895,0.213038416763679 +60750302011,11530,0.169965075669383 +60750302011,11531,0.0779976717112922 +60750302011,14982,0.206053550640279 +60750302012,10894,0.165618448637317 +60750302012,10896,0.29769392033543 +60750302012,11533,0.169811320754717 +60750302012,14362,0.0859538784067086 +60750302012,16732,0.274633123689727 +60750302012,16733,0.00628930817610063 +60750302013,10893,0.16600790513834 +60750302013,11914,0.162055335968379 +60750302013,12985,0.158102766798419 +60750302013,14365,0.191699604743083 +60750302013,14366,0.126482213438735 +60750302013,14623,0.195652173913043 +60750302021,10385,0.170068027210884 +60750302021,10770,0.229931972789116 +60750302021,10771,0.171428571428571 +60750302021,10774,0.125170068027211 +60750302021,11195,0.152380952380952 +60750302021,13958,0.151020408163265 +60750302022,15148,0.148936170212766 +60750302022,15920,0.143262411347518 +60750302022,15924,0.131914893617021 +60750302022,16613,0.150354609929078 +60750302022,16614,0.218439716312057 +60750302022,16616,0.20709219858156 +60750302023,10386,0.133540372670807 +60750302023,10772,0.141304347826087 +60750302023,10773,0.178571428571429 +60750302023,14983,0.136645962732919 +60750302023,17150,0.21583850931677 +60750302023,17376,0.194099378881988 +60750303011,11578,0.138655462184874 +60750303011,12409,0.046218487394958 +60750303011,13139,0.111344537815126 +60750303011,13491,0.0903361344537815 +60750303011,13851,0.13655462184874 +60750303011,13852,0.0945378151260504 +60750303011,16094,0.117647058823529 +60750303011,16277,0.119747899159664 +60750303011,16337,0.144957983193277 +60750303012,11196,0.108949416342412 +60750303012,11625,0.0843060959792477 +60750303012,15147,0.0998702983138781 +60750303012,15151,0.0648508430609598 +60750303012,15923,0.110246433203632 +60750303012,15926,0.0453955901426719 +60750303012,16096,0.137483787289235 +60750303012,17151,0.147859922178988 +60750303012,17375,0.0856031128404669 +60750303012,17377,0.115434500648508 +60750303013,11394,0.072289156626506 +60750303013,11647,0.0828313253012048 +60750303013,11648,0.114457831325301 +60750303013,11649,0.146084337349398 +60750303013,11806,0.159638554216867 +60750303013,11861,0.112951807228916 +60750303013,12849,0.134036144578313 +60750303013,16507,0.0617469879518072 +60750303013,16698,0.115963855421687 +60750303014,10233,0.0310421286031042 +60750303014,10344,0.181818181818182 +60750303014,10628,0.0665188470066519 +60750303014,11582,0.0709534368070953 +60750303014,12741,0.0909090909090909 +60750303014,12798,0.0709534368070953 +60750303014,12801,0.126385809312639 +60750303014,13495,0.0665188470066519 +60750303014,15053,0.0953436807095344 +60750303014,16615,0.199556541019956 +60750303021,11579,0.0993657505285412 +60750303021,12161,0.114164904862579 +60750303021,12740,0.145877378435518 +60750303021,13490,0.114164904862579 +60750303021,13492,0.133192389006343 +60750303021,13796,0.13107822410148 +60750303021,13854,0.06553911205074 +60750303021,15051,0.0930232558139535 +60750303021,15052,0.103594080338266 +60750303022,10874,0.31264367816092 +60750303022,11807,0.144827586206897 +60750303022,12467,0.105747126436782 +60750303022,13625,0.0919540229885057 +60750303022,16697,0.344827586206897 +60750303023,10101,0.128755364806867 +60750303023,10232,0.0536480686695279 +60750303023,10235,0.0708154506437768 +60750303023,12162,0.0450643776824034 +60750303023,12163,0.107296137339056 +60750303023,12802,0.092274678111588 +60750303023,12803,0.0429184549356223 +60750303023,12805,0.165236051502146 +60750303023,13668,0.0901287553648069 +60750303023,15054,0.122317596566524 +60750303023,15510,0.0815450643776824 +60750304001,10350,0.0521091811414392 +60750304001,10351,0.0669975186104218 +60750304001,11814,0.0471464019851117 +60750304001,12851,0.166253101736973 +60750304001,12898,0.0645161290322581 +60750304001,13342,0.0769230769230769 +60750304001,13344,0.121588089330025 +60750304001,13628,0.0521091811414392 +60750304001,17165,0.270471464019851 +60750304001,17166,0.0818858560794045 +60750304002,10347,0.0441176470588235 +60750304002,11653,0.0661764705882353 +60750304002,12078,0.0686274509803922 +60750304002,12119,0.450980392156863 +60750304002,13413,0.132352941176471 +60750304002,16112,0.0759803921568627 +60750304002,17164,0.0980392156862745 +60750304002,17167,0.0637254901960784 +60750304003,10236,0.0766208251473477 +60750304003,11717,0.117878192534381 +60750304003,11809,0.131630648330059 +60750304003,12164,0.0923379174852652 +60750304003,12811,0.170923379174853 +60750304003,13626,0.0923379174852652 +60750304003,13798,0.100196463654224 +60750304003,13856,0.0844793713163065 +60750304003,16384,0.0353634577603143 +60750304003,16699,0.0982318271119843 +60750304004,10873,0.183453237410072 +60750304004,11602,0.165467625899281 +60750304004,13496,0.158273381294964 +60750304004,13799,0.158273381294964 +60750304004,13857,0.151079136690647 +60750304004,15056,0.183453237410072 +60750304005,10403,0.235820895522388 +60750304005,13691,0.17910447761194 +60750304005,13755,0.253731343283582 +60750304005,14461,0.188059701492537 +60750304005,15954,0.143283582089552 +60750305001,10201,0.0867208672086721 +60750305001,11677,0.100271002710027 +60750305001,12079,0.0948509485094851 +60750305001,12623,0.0650406504065041 +60750305001,12747,0.2710027100271 +60750305001,13262,0.102981029810298 +60750305001,16386,0.0758807588075881 +60750305001,16497,0.203252032520325 +60750305002,10450,0.0956521739130435 +60750305002,13263,0.0782608695652174 +60750305002,13267,0.0753623188405797 +60750305002,13269,0.133333333333333 +60750305002,13270,0.27536231884058 +60750305002,13271,0.139130434782609 +60750305002,15515,0.127536231884058 +60750305002,15516,0.0753623188405797 +60750305003,11831,0.85958904109589 +60750305003,13862,0.14041095890411 +60750305003,15513,0 +60750306001,10786,0.088339222614841 +60750306001,12283,0.190812720848057 +60750306001,12387,0.106007067137809 +60750306001,12808,0.166077738515901 +60750306001,13409,0.0954063604240283 +60750306001,14306,0.113074204946996 +60750306001,15518,0.0918727915194346 +60750306001,15617,0.148409893992933 +60750306002,11319,0.328671328671329 +60750306002,11667,0.143356643356643 +60750306002,12282,0.0944055944055944 +60750306002,12619,0.122377622377622 +60750306002,12749,0.041958041958042 +60750306002,13501,0.129370629370629 +60750306002,16171,0.13986013986014 +60750306003,11021,0.260135135135135 +60750306003,12911,0.131756756756757 +60750306003,13627,0.239864864864865 +60750306003,17171,0.368243243243243 +60750307001,11236,0.0656044985941893 +60750307001,12045,0.0449859418931584 +60750307001,12414,0.201499531396439 +60750307001,13073,0 +60750307001,13074,0.0524835988753515 +60750307001,13075,0.0440487347703843 +60750307001,13204,0.0346766635426429 +60750307001,13205,0.0402999062792877 +60750307001,13206,0.0178069353327085 +60750307001,13210,0.0440487347703843 +60750307001,13408,0.192127460168697 +60750307001,13809,0.0328022492970947 +60750307001,13814,0.0346766635426429 +60750307001,13972,0.0468603561387067 +60750307001,15519,0.0234301780693533 +60750307001,15523,0.0384254920337395 +60750307001,16124,0.0862230552952202 +60750307002,10546,0.0476190476190476 +60750307002,11107,0.0788690476190476 +60750307002,12410,0.0773809523809524 +60750307002,13702,0.145833333333333 +60750307002,13813,0.0357142857142857 +60750307002,13973,0.0803571428571429 +60750307002,14196,0.0699404761904762 +60750307002,14310,0.107142857142857 +60750307002,14387,0.0505952380952381 +60750307002,14998,0.178571428571429 +60750307002,15059,0.0446428571428571 +60750307002,15122,0.0833333333333333 +60750307003,10684,0.0274122807017544 +60750307003,11132,0.218201754385965 +60750307003,11133,0.0460526315789474 +60750307003,12618,0.0855263157894737 +60750307003,12745,0.0559210526315789 +60750307003,13072,0.0800438596491228 +60750307003,13208,0.0350877192982456 +60750307003,13213,0.0701754385964912 +60750307003,13261,0.0745614035087719 +60750307003,13275,0.0471491228070175 +60750307003,13498,0.0307017543859649 +60750307003,13811,0.0756578947368421 +60750307003,13812,0.0394736842105263 +60750307003,14309,0.0449561403508772 +60750307003,15521,0.0405701754385965 +60750307003,17083,0.0285087719298246 +60750308001,10352,0.191044776119403 +60750308001,10780,0.0865671641791045 +60750308001,10782,0.176119402985075 +60750308001,10783,0.137313432835821 +60750308001,11234,0.107462686567164 +60750308001,11869,0.0626865671641791 +60750308001,12281,0.122388059701493 +60750308001,12383,0.116417910447761 +60750308001,12906,0 +60750308002,12280,0.143382352941176 +60750308002,12384,0.176470588235294 +60750308002,12616,0.0845588235294118 +60750308002,12860,0.0257352941176471 +60750308002,13860,0.569852941176471 +60750308003,11316,0.182879377431907 +60750308003,11360,0.252918287937743 +60750308003,11656,0.0778210116731518 +60750308003,11828,0.124513618677043 +60750308003,12902,0.194552529182879 +60750308003,13630,0.140077821011673 +60750308003,17170,0.0272373540856031 +60750308004,10349,0.0640834575260805 +60750308004,10871,0.299552906110283 +60750308004,11603,0.0774962742175857 +60750308004,11604,0.0789865871833085 +60750308004,11605,0.0983606557377049 +60750308004,11867,0.0432190760059613 +60750308004,11868,0.029806259314456 +60750308004,12278,0.0417287630402385 +60750308004,12855,0.0387481371087928 +60750308004,13692,0.0566318926974665 +60750308004,14744,0.0760059612518629 +60750308004,14745,0.0760059612518629 +60750308004,17168,0.0193740685543964 +60750308005,11716,0.0786885245901639 +60750308005,12469,0.0573770491803279 +60750308005,12895,0.060655737704918 +60750308005,12896,0.0672131147540984 +60750308005,12897,0.0688524590163934 +60750308005,13552,0.1 +60750308005,13553,0.0754098360655738 +60750308005,13690,0.108196721311475 +60750308005,13754,0.0213114754098361 +60750308005,14328,0.0901639344262295 +60750308005,14330,0.0754098360655738 +60750308005,14460,0.108196721311475 +60750308005,15955,0.0885245901639344 +60750309001,10683,0.0583090379008746 +60750309001,11232,0.0408163265306122 +60750309001,11388,0.0991253644314869 +60750309001,11719,0.0816326530612245 +60750309001,12382,0.166180758017493 +60750309001,12617,0.119533527696793 +60750309001,13259,0.0787172011661808 +60750309001,13260,0.0816326530612245 +60750309001,13404,0.131195335276968 +60750309001,13859,0.142857142857143 +60750309002,10750,0.054 +60750309002,10805,0.048 +60750309002,10806,0.082 +60750309002,11231,0.052 +60750309002,11386,0.068 +60750309002,11389,0.046 +60750309002,11897,0.068 +60750309002,12361,0.086 +60750309002,12874,0.116 +60750309002,12940,0.12 +60750309002,13198,0.054 +60750309002,13935,0.038 +60750309002,13936,0.054 +60750309002,13938,0.114 +60750309003,10427,0.0668316831683168 +60750309003,10428,0.0618811881188119 +60750309003,10430,0.113861386138614 +60750309003,10431,0.0717821782178218 +60750309003,10753,0.123762376237624 +60750309003,11358,0.153465346534653 +60750309003,12872,0.0668316831683168 +60750309003,12873,0.0668316831683168 +60750309003,12937,0.150990099009901 +60750309003,12938,0.0618811881188119 +60750309003,13363,0.0618811881188119 +60750309004,10879,0.25886524822695 +60750309004,11680,0.202127659574468 +60750309004,11715,0.0602836879432624 +60750309004,12358,0.184397163120567 +60750309004,13436,0.184397163120567 +60750309004,15681,0.109929078014184 +60750309005,10776,0.113138686131387 +60750309005,11315,0.062043795620438 +60750309005,11658,0.197080291970803 +60750309005,11826,0.00364963503649635 +60750309005,11894,0.200729927007299 +60750309005,11895,0.204379562043796 +60750309005,12333,0.197080291970803 +60750309005,13402,0.0218978102189781 +60750309006,11606,0.234741784037559 +60750309006,13400,0.0657276995305164 +60750309006,13763,0.187793427230047 +60750309006,14404,0.211267605633803 +60750309006,14790,0.15962441314554 +60750309006,15346,0.140845070422535 +60750309007,13699,0.243161094224924 +60750309007,14193,0.173252279635258 +60750309007,15092,0.088145896656535 +60750309007,15262,0.13677811550152 +60750309007,15660,0.221884498480243 +60750309007,15997,0.13677811550152 +60750310001,11390,0.0618892508143322 +60750310001,12607,0.172638436482085 +60750310001,12824,0.11400651465798 +60750310001,12875,0.146579804560261 +60750310001,13861,0.0456026058631922 +60750310001,14308,0.172638436482085 +60750310001,14344,0.146579804560261 +60750310001,15366,0.140065146579805 +60750310002,12110,0.0906862745098039 +60750310002,14005,0.200980392156863 +60750310002,14006,0.0686274509803922 +60750310002,14409,0.0318627450980392 +60750310002,14482,0.169117647058824 +60750310002,14862,0.071078431372549 +60750310002,15367,0.149509803921569 +60750310002,15370,0.0735294117647059 +60750310002,16511,0.144607843137255 +60750310003,10203,0.0359712230215827 +60750310003,10204,0.0719424460431655 +60750310003,10878,0.0701438848920863 +60750310003,11759,0.0539568345323741 +60750310003,12356,0.0179856115107914 +60750310003,12825,0.0683453237410072 +60750310003,12826,0.0503597122302158 +60750310003,12876,0.052158273381295 +60750310003,13361,0.0467625899280576 +60750310003,13362,0.388489208633093 +60750310003,13879,0.0341726618705036 +60750310003,16113,0.109712230215827 +60750311001,10549,0.0206896551724138 +60750311001,10745,0.119540229885057 +60750311001,11312,0.177011494252874 +60750311001,11744,0.204597701149425 +60750311001,14382,0.119540229885057 +60750311001,15379,0.0781609195402299 +60750311001,15619,0.128735632183908 +60750311001,16175,0.151724137931034 +60750311002,13130,0.0880733944954128 +60750311002,13592,0.126605504587156 +60750311002,13768,0.0972477064220184 +60750311002,13769,0.0972477064220184 +60750311002,14068,0.11743119266055 +60750311002,14296,0.146788990825688 +60750311002,14356,0.0899082568807339 +60750311002,15439,0.108256880733945 +60750311002,15812,0.128440366972477 +60750311003,13175,0.190114068441065 +60750311003,13238,0.311787072243346 +60750311003,13661,0.0836501901140684 +60750311003,14295,0.193916349809886 +60750311003,14297,0.220532319391635 +60750311003,16516,0 +60750311004,13129,0.027027027027027 +60750311004,13660,0.158004158004158 +60750311004,14289,0.0997920997920998 +60750311004,14290,0.101871101871102 +60750311004,14294,0.147609147609148 +60750311004,14348,0.116424116424116 +60750311004,14349,0.0748440748440748 +60750311004,14354,0.108108108108108 +60750311004,14485,0.112266112266112 +60750311004,15371,0.0540540540540541 +60750311005,13659,0.119241192411924 +60750311005,13664,0.0555555555555556 +60750311005,13767,0.0677506775067751 +60750311005,14347,0.0663956639566396 +60750311005,14355,0.0663956639566396 +60750311005,14483,0.0636856368563686 +60750311005,14484,0.0826558265582656 +60750311005,14487,0.0677506775067751 +60750311005,14488,0.127371273712737 +60750311005,15060,0.0799457994579946 +60750311005,15085,0.0718157181571816 +60750311005,15811,0.131436314363144 +60750312011,10052,0.0414746543778802 +60750312011,12642,0.0967741935483871 +60750312011,12828,0.10752688172043 +60750312011,13127,0.101382488479263 +60750312011,13239,0.105990783410138 +60750312011,13594,0.0476190476190476 +60750312011,14291,0.17357910906298 +60750312011,14352,0.098310291858679 +60750312011,15372,0.119815668202765 +60750312011,15878,0.10752688172043 +60750312012,10119,0.161425576519916 +60750312012,10187,0.157232704402516 +60750312012,12293,0.192872117400419 +60750312012,14100,0.134171907756813 +60750312012,14293,0.125786163522013 +60750312012,14863,0.228511530398323 +60750312013,10725,0.213178294573643 +60750312013,11762,0.294573643410853 +60750312013,12608,0.124031007751938 +60750312013,13880,0.248062015503876 +60750312013,14426,0.12015503875969 +60750312014,11767,0.189265536723164 +60750312014,11768,0.220338983050847 +60750312014,12316,0.146892655367232 +60750312014,12317,0.152542372881356 +60750312014,14087,0.161016949152542 +60750312014,14427,0.129943502824859 +60750312021,13765,0.171957671957672 +60750312021,13817,0.132275132275132 +60750312021,14292,0.137566137566138 +60750312021,14353,0.248677248677249 +60750312021,14864,0.14021164021164 +60750312021,15810,0.169312169312169 +60750312022,12727,0.0152505446623094 +60750312022,12780,0.117647058823529 +60750312022,13226,0.128540305010893 +60750312022,13240,0.113289760348584 +60750312022,13510,0.0849673202614379 +60750312022,14299,0.0806100217864924 +60750312022,14300,0.113289760348584 +60750312022,14357,0.132897603485839 +60750312022,14358,0.111111111111111 +60750312022,14490,0.10239651416122 +60750313011,10429,0.148484848484848 +60750313011,10751,0.151515151515152 +60750313011,10754,0.166666666666667 +60750313011,12362,0.148484848484848 +60750313011,12939,0.142424242424242 +60750313011,15732,0.242424242424242 +60750313012,11769,0.100409836065574 +60750313012,11770,0.100409836065574 +60750313012,12236,0.10655737704918 +60750313012,12643,0.0983606557377049 +60750313012,12829,0.0717213114754098 +60750313012,12830,0.0983606557377049 +60750313012,13365,0.102459016393443 +60750313012,13438,0.0860655737704918 +60750313012,14865,0.0942622950819672 +60750313012,14988,0.0389344262295082 +60750313012,15683,0.102459016393443 +60750313013,11764,0.158013544018059 +60750313013,12237,0.119638826185102 +60750313013,12238,0.115124153498871 +60750313013,12314,0.130925507900677 +60750313013,12315,0.119638826185102 +60750313013,12641,0.126410835214447 +60750313013,12827,0.110609480812641 +60750313013,13366,0.119638826185102 +60750313021,12320,0.123543123543124 +60750313021,12323,0.111888111888112 +60750313021,12644,0.135198135198135 +60750313021,13038,0.114219114219114 +60750313021,13039,0.107226107226107 +60750313021,13881,0.137529137529138 +60750313021,14869,0.123543123543124 +60750313021,14871,0.146853146853147 +60750313022,12318,0.156177156177156 +60750313022,12319,0.0979020979020979 +60750313022,13882,0.13986013986014 +60750313022,14631,0.0792540792540792 +60750313022,14866,0.0512820512820513 +60750313022,14867,0.118881118881119 +60750313022,16553,0.135198135198135 +60750313022,17086,0.221445221445221 +60750313023,10044,0.0500544069640914 +60750313023,10045,0.0576713819368879 +60750313023,11512,0.423286180631121 +60750313023,12321,0.0413492927094668 +60750313023,12322,0.0402611534276387 +60750313023,12325,0.0533188248095756 +60750313023,13368,0.0848748639825898 +60750313023,14870,0.0794341675734494 +60750313023,14948,0.0652883569096844 +60750313023,15377,0.0565832426550598 +60750313023,15877,0.0478781284004353 +60750314001,12645,0.205607476635514 +60750314001,12646,0.144859813084112 +60750314001,13241,0.205607476635514 +60750314001,13888,0.219626168224299 +60750314001,14359,0.224299065420561 +60750314002,12833,0.419354838709677 +60750314002,12834,0.117511520737327 +60750314002,13107,0.297235023041475 +60750314002,14319,0.0714285714285714 +60750314002,14811,0.0944700460829493 +60750314003,12326,0.192105263157895 +60750314003,12327,0.189473684210526 +60750314003,12328,0.239473684210526 +60750314003,12832,0.173684210526316 +60750314003,13889,0.205263157894737 +60750314004,12243,0.210526315789474 +60750314004,13819,0 +60750314004,13820,0.228947368421053 +60750314004,13883,0.221052631578947 +60750314004,13887,0.163157894736842 +60750314004,14875,0.176315789473684 +60750314005,12242,0.198433420365535 +60750314005,12324,0.156657963446475 +60750314005,13818,0.182767624020888 +60750314005,13885,0.203655352480418 +60750314005,13886,0.0783289817232376 +60750314005,14872,0.180156657963446 +60750326011,10099,0.111292962356792 +60750326011,10384,0.108019639934534 +60750326011,10400,0.109656301145663 +60750326011,11529,0.180032733224223 +60750326011,11912,0.206219312602291 +60750326011,12214,0.129296235679214 +60750326011,13148,0.155482815057283 +60750326012,10098,0.173992673992674 +60750326012,11795,0.102564102564103 +60750326012,13147,0.172161172161172 +60750326012,14360,0.135531135531136 +60750326012,16272,0.0952380952380952 +60750326012,16273,0.122710622710623 +60750326012,16274,0.197802197802198 +60750326013,10102,0.162872154115587 +60750326013,10530,0.10507880910683 +60750326013,11794,0.148861646234676 +60750326013,11911,0.131348511383538 +60750326013,12216,0.108581436077058 +60750326013,14361,0.12784588441331 +60750326013,16275,0.215411558669002 +60750326021,10627,0.0579494799405646 +60750326021,11207,0.0936106983655275 +60750326021,11845,0.136701337295691 +60750326021,11846,0.11887072808321 +60750326021,12570,0.0742942050520059 +60750326021,13149,0.0936106983655275 +60750326021,13618,0.101040118870728 +60750326021,16222,0.112927191679049 +60750326021,16224,0.111441307578009 +60750326021,16225,0.099554234769688 +60750326022,10477,0.117768595041322 +60750326022,11199,0.15495867768595 +60750326022,11913,0.111570247933884 +60750326022,12215,0.140495867768595 +60750326022,12217,0.12603305785124 +60750326022,14363,0.214876033057851 +60750326022,16334,0.134297520661157 +60750326023,10226,0.111328125 +60750326023,12739,0.29296875 +60750326023,12793,0.10546875 +60750326023,12796,0.126953125 +60750326023,13397,0.130859375 +60750326023,15046,0.13671875 +60750326023,16689,0.095703125 +60750327001,12142,0.261168384879725 +60750327001,12146,0.147766323024055 +60750327001,12568,0.154639175257732 +60750327001,12569,0.120274914089347 +60750327001,15289,0.154639175257732 +60750327001,15842,0.161512027491409 +60750327002,10671,0.162447257383966 +60750327002,10889,0.185654008438819 +60750327002,12145,0.168776371308017 +60750327002,12147,0.135021097046413 +60750327002,12567,0.170886075949367 +60750327002,16030,0.177215189873418 +60750327003,10669,0.135011441647597 +60750327003,10670,0.183066361556064 +60750327003,12143,0.1441647597254 +60750327003,12144,0.17162471395881 +60750327003,13146,0.167048054919908 +60750327003,17285,0.19908466819222 +60750327004,10891,0.171428571428571 +60750327004,11198,0.193650793650794 +60750327004,12452,0.073015873015873 +60750327004,16031,0.165079365079365 +60750327004,16221,0.206349206349206 +60750327004,17020,0.19047619047619 +60750327005,10955,0.193548387096774 +60750327005,10956,0.186379928315412 +60750327005,11206,0 +60750327005,13616,0.21505376344086 +60750327005,16338,0.193548387096774 +60750327005,16687,0.211469534050179 +60750327006,10133,0.214285714285714 +60750327006,10890,0.163265306122449 +60750327006,11964,0.180272108843537 +60750327006,11965,0.187074829931973 +60750327006,16027,0.105442176870748 +60750327006,16846,0.149659863945578 +60750327007,10668,0.192691029900332 +60750327007,14691,0.222591362126246 +60750327007,15238,0.249169435215947 +60750327007,16026,0.222591362126246 +60750327007,17019,0.112956810631229 +60750328011,10229,0.096078431372549 +60750328011,10230,0.129411764705882 +60750328011,10231,0.105882352941176 +60750328011,10234,0.141176470588235 +60750328011,12738,0.115686274509804 +60750328011,12742,0.0843137254901961 +60750328011,13795,0.101960784313725 +60750328011,15050,0.125490196078431 +60750328011,15055,0.1 +60750328012,12744,0.152917505030181 +60750328012,12788,0.144869215291751 +60750328012,13394,0.116700201207243 +60750328012,13433,0.173038229376258 +60750328012,14459,0.118712273641851 +60750328012,15511,0.120724346076459 +60750328012,15675,0.173038229376258 +60750328013,12463,0.132558139534884 +60750328013,12845,0.130232558139535 +60750328013,12846,0.118604651162791 +60750328013,13620,0.134883720930233 +60750328013,13793,0.0976744186046512 +60750328013,13794,0.130232558139535 +60750328013,13850,0 +60750328013,15049,0.132558139534884 +60750328013,16690,0.123255813953488 +60750328021,10228,0.116370808678501 +60750328021,11799,0 +60750328021,12462,0.126232741617357 +60750328021,12737,0.112426035502959 +60750328021,12795,0.140039447731755 +60750328021,13398,0.122287968441815 +60750328021,13487,0.159763313609467 +60750328021,13849,0.112426035502959 +60750328021,15047,0.110453648915187 +60750328022,10227,0.0961923847695391 +60750328022,12159,0.0761523046092184 +60750328022,12160,0.150300601202405 +60750328022,12797,0.120240480961924 +60750328022,13488,0.150300601202405 +60750328022,13489,0.110220440881764 +60750328022,13847,0.0921843687374749 +60750328022,13848,0.106212424849699 +60750328022,15048,0.0981963927855711 +60750328023,12460,0.160183066361556 +60750328023,12794,0.11441647597254 +60750328023,12843,0.121281464530892 +60750328023,13022,0.11441647597254 +60750328023,13399,0.137299771167048 +60750328023,15045,0.0869565217391304 +60750328023,17292,0.128146453089245 +60750328023,17293,0.137299771167048 +60750329011,10336,0.131105398457584 +60750329011,11204,0.161953727506427 +60750329011,11854,0.154241645244216 +60750329011,13619,0.146529562982005 +60750329011,16228,0.138817480719794 +60750329011,16229,0.136246786632391 +60750329011,17288,0.131105398457584 +60750329011,17289,0 +60750329012,10337,0.122931442080378 +60750329012,11203,0.130023640661939 +60750329012,11855,0.118203309692671 +60750329012,12455,0.125295508274232 +60750329012,12838,0.125295508274232 +60750329012,12840,0.125295508274232 +60750329012,12844,0.115839243498818 +60750329012,16686,0.137115839243499 +60750329013,11205,0.119540229885057 +60750329013,11208,0.114942528735632 +60750329013,11796,0.131034482758621 +60750329013,11800,0.133333333333333 +60750329013,11856,0.119540229885057 +60750329013,12461,0.12183908045977 +60750329013,12839,0.117241379310345 +60750329013,12841,0.142528735632184 +60750329014,10223,0.15673289183223 +60750329014,10340,0.134657836644592 +60750329014,11801,0.134657836644592 +60750329014,12734,0.154525386313466 +60750329014,12735,0.0993377483443709 +60750329014,13339,0.105960264900662 +60750329014,16691,0.114790286975717 +60750329014,16693,0.0993377483443709 +60750329021,10898,0.128266033254157 +60750329021,11797,0.149643705463183 +60750329021,11848,0.111638954869359 +60750329021,11852,0.0878859857482185 +60750329021,12219,0.147268408551069 +60750329021,12458,0.118764845605701 +60750329021,13150,0.125890736342043 +60750329021,16736,0.130641330166271 +60750329022,10897,0.128089887640449 +60750329022,11201,0.112359550561798 +60750329022,11798,0.130337078651685 +60750329022,12459,0.119101123595506 +60750329022,13615,0.119101123595506 +60750329022,16226,0.134831460674157 +60750329022,16688,0.132584269662921 +60750329022,17287,0.123595505617978 +60750329023,11851,0.114093959731544 +60750329023,11853,0.134228187919463 +60750329023,12454,0.120805369127517 +60750329023,12842,0.125279642058166 +60750329023,13152,0.129753914988814 +60750329023,13617,0.118568232662192 +60750329023,17290,0.118568232662192 +60750329023,17291,0.138702460850112 +60750330001,12157,0.120901639344262 +60750330001,13021,0.114754098360656 +60750330001,13497,0.131147540983607 +60750330001,13753,0.0860655737704918 +60750330001,13800,0.116803278688525 +60750330001,14624,0.131147540983607 +60750330001,16278,0.145491803278689 +60750330001,16280,0.0778688524590164 +60750330001,16283,0.0758196721311475 +60750330002,10402,0.0465116279069767 +60750330002,12789,0.134366925064599 +60750330002,12791,0.124031007751938 +60750330002,13750,0.157622739018088 +60750330002,13858,0.136950904392765 +60750330002,14699,0.170542635658915 +60750330002,14700,0.118863049095607 +60750330002,16281,0.111111111111111 +60750330003,10225,0.11472275334608 +60750330003,12790,0.0458891013384321 +60750330003,13020,0.173996175908222 +60750330003,13395,0.0611854684512428 +60750330003,13688,0.105162523900574 +60750330003,14701,0.103250478011472 +60750330003,15296,0.105162523900574 +60750330003,16279,0.0956022944550669 +60750330003,16282,0.103250478011472 +60750330003,16695,0.0917782026768642 +60750330004,10736,0.0242130750605327 +60750330004,11646,0.0823244552058111 +60750330004,11792,0.0895883777239709 +60750330004,11804,0.0581113801452785 +60750330004,11805,0.099273607748184 +60750330004,11824,0.0944309927360775 +60750330004,12451,0 +60750330004,12466,0.145278450363196 +60750330004,12732,0.0702179176755448 +60750330004,12848,0.0508474576271186 +60750330004,13338,0.0677966101694915 +60750330004,13624,0.104116222760291 +60750330004,14526,0.0944309927360775 +60750330004,16285,0.0193704600484262 +60750330005,11802,0.123255813953488 +60750330005,12464,0.16046511627907 +60750330005,12465,0.111627906976744 +60750330005,12733,0.104651162790698 +60750330005,13393,0.158139534883721 +60750330005,13790,0.111627906976744 +60750330005,13791,0.12093023255814 +60750330005,15043,0.109302325581395 +60750330006,10224,0.115973741794311 +60750330006,11642,0.148796498905908 +60750330006,11643,0.133479212253829 +60750330006,11803,0.115973741794311 +60750330006,12786,0.118161925601751 +60750330006,12787,0.118161925601751 +60750330006,13792,0.133479212253829 +60750330006,16696,0.115973741794311 +60750331001,11229,0.126582278481013 +60750331001,11230,0.109704641350211 +60750331001,14332,0.282700421940928 +60750331001,14456,0.0675105485232067 +60750331001,14458,0.177215189873418 +60750331001,14462,0.122362869198312 +60750331001,14742,0.113924050632911 +60750331002,12792,0.122015915119363 +60750331002,13434,0.0742705570291777 +60750331002,13697,0.0716180371352785 +60750331002,13751,0.0557029177718833 +60750331002,14457,0.0742705570291777 +60750331002,14702,0.127320954907162 +60750331002,14703,0.0848806366047745 +60750331002,15676,0.122015915119363 +60750331002,15677,0.0795755968169761 +60750331002,15953,0.0530503978779841 +60750331002,16286,0.0557029177718833 +60750331002,16402,0.0795755968169761 +60750331003,14463,0.398671096345515 +60750331003,14748,0.601328903654485 +60750331004,10593,0 +60750331004,10665,0.0929791271347249 +60750331004,12039,0.0702087286527514 +60750331004,12040,0.0777988614800759 +60750331004,12156,0.0910815939278937 +60750331004,12891,0.0759013282732448 +60750331004,13396,0.0683111954459203 +60750331004,13696,0.0910815939278938 +60750331004,14466,0.0303605313092979 +60750331004,14787,0.0853889943074004 +60750331004,14910,0.104364326375712 +60750331004,16139,0.132827324478178 +60750331004,16401,0.079696394686907 +60750332011,11843,0.14064914992272 +60750332011,11983,0 +60750332011,12041,0.080370942812983 +60750332011,13562,0.678516228748068 +60750332011,13759,0.0293663060278207 +60750332011,16589,0.071097372488408 +60750332031,13802,0.486813186813187 +60750332031,14630,0.067032967032967 +60750332031,17058,0.446153846153846 +60750332032,12959,0.375 +60750332032,13437,0.112676056338028 +60750332032,14627,0.107394366197183 +60750332032,14628,0.110915492957746 +60750332032,14704,0.0704225352112676 +60750332032,14705,0.109154929577465 +60750332032,16288,0.11443661971831 +60750332041,10405,0.153284671532847 +60750332041,11361,0 +60750332041,13761,0.172749391727494 +60750332041,14986,0.340632603406326 +60750332041,15682,0.177615571776156 +60750332041,15728,0.145985401459854 +60750332041,15729,0.0097323600973236 +60750332042,17195,1 +60750332043,10117,0.648114901256733 +60750332043,13564,0.165170556552962 +60750332043,14788,0.0825852782764811 +60750332043,16473,0.104129263913824 +60750351001,14160,0.164835164835165 +60750351001,14692,0.147252747252747 +60750351001,14693,0.156043956043956 +60750351001,14980,0.197802197802198 +60750351001,15290,0.193406593406593 +60750351001,15487,0.140659340659341 +60750351002,11174,0.161147902869757 +60750351002,14658,0.183222958057395 +60750351002,16134,0.145695364238411 +60750351002,16158,0.194260485651214 +60750351002,16209,0.185430463576159 +60750351002,16908,0.130242825607064 +60750351003,10258,0.15625 +60750351003,11175,0.165865384615385 +60750351003,16160,0.182692307692308 +60750351003,16681,0.175480769230769 +60750351003,16683,0.146634615384615 +60750351003,16907,0.173076923076923 +60750351004,15129,0.216606498194946 +60750351004,15488,0.202166064981949 +60750351004,15664,0.0794223826714801 +60750351004,16157,0.227436823104693 +60750351004,16159,0.101083032490975 +60750351004,16596,0.173285198555957 +60750351005,10326,0.207207207207207 +60750351005,11180,0.141141141141141 +60750351005,15671,0.165165165165165 +60750351005,16603,0.168168168168168 +60750351005,16915,0.165165165165165 +60750351005,16916,0.153153153153153 +60750351006,11181,0.16969696969697 +60750351006,15133,0.163636363636364 +60750351006,15497,0.163636363636364 +60750351006,16602,0.172727272727273 +60750351006,16917,0.190909090909091 +60750351006,17137,0.139393939393939 +60750351007,10327,0.156387665198238 +60750351007,10328,0.121145374449339 +60750351007,15498,0.127753303964758 +60750351007,15499,0.121145374449339 +60750351007,15500,0.118942731277533 +60750351007,15672,0.114537444933921 +60750351007,16920,0.121145374449339 +60750351007,17136,0.118942731277533 +60750352011,15490,0.206043956043956 +60750352011,15493,0.167582417582418 +60750352011,15668,0.195054945054945 +60750352011,16597,0.118131868131868 +60750352011,16600,0.134615384615385 +60750352011,17131,0.178571428571429 +60750352012,0,0 +60750352012,11509,0 +60750352012,15130,0.182370820668693 +60750352012,15494,0.170212765957447 +60750352012,15673,0.167173252279635 +60750352012,16598,0.139817629179331 +60750352012,16913,0.148936170212766 +60750352012,17134,0.191489361702128 +60750352013,10321,0.222222222222222 +60750352013,11176,0.146341463414634 +60750352013,15489,0.192411924119241 +60750352013,15667,0.140921409214092 +60750352013,16911,0.149051490514905 +60750352013,16914,0.149051490514905 +60750352014,15017,0.117773019271949 +60750352014,15018,0.124197002141328 +60750352014,15981,0.122055674518201 +60750352014,16208,0.11134903640257 +60750352014,16326,0.374732334047109 +60750352014,16782,0.149892933618844 +60750352015,10324,0.157738095238095 +60750352015,15491,0.169642857142857 +60750352015,15492,0.107142857142857 +60750352015,15666,0.217261904761905 +60750352015,16685,0.181547619047619 +60750352015,17132,0.166666666666667 +60750352021,10254,0.219474497681607 +60750352021,10256,0.187017001545595 +60750352021,10257,0.119010819165379 +60750352021,14161,0.160741885625966 +60750352021,14655,0.182380216383308 +60750352021,15291,0.131375579598145 +60750352022,10255,0.168674698795181 +60750352022,14657,0.10671256454389 +60750352022,15980,0.139414802065404 +60750352022,16205,0.259896729776248 +60750352022,16206,0.223752151462995 +60750352022,16783,0.101549053356282 +60750352023,14656,0.10634328358209 +60750352023,15015,0.296641791044776 +60750352023,16131,0.130597014925373 +60750352023,16133,0.138059701492537 +60750352023,16207,0.100746268656716 +60750352023,16327,0.227611940298507 +60750353001,10329,0.165680473372781 +60750353001,10330,0.159763313609467 +60750353001,10882,0.159763313609467 +60750353001,11184,0 +60750353001,15135,0.180473372781065 +60750353001,15501,0.168639053254438 +60750353001,15502,0.165680473372781 +60750353002,10206,0.0923076923076923 +60750353002,10338,0.125 +60750353002,11210,0.123076923076923 +60750353002,15608,0.151923076923077 +60750353002,16391,0.15 +60750353002,16692,0.125 +60750353002,17087,0.130769230769231 +60750353002,17088,0.101923076923077 +60750353003,10208,0.122905027932961 +60750353003,10209,0.156424581005587 +60750353003,11211,0.164804469273743 +60750353003,11685,0.162011173184358 +60750353003,12083,0.167597765363128 +60750353003,13623,0.156424581005587 +60750353003,16554,0.0698324022346369 +60750353003,16555,0 +60750353004,10341,0.188679245283019 +60750353004,11684,0.160377358490566 +60750353004,12084,0.144654088050314 +60750353004,12847,0.154088050314465 +60750353004,16392,0.176100628930818 +60750353004,16556,0.176100628930818 +60750353005,10207,0.114649681528662 +60750353005,10881,0.148619957537155 +60750353005,10883,0.178343949044586 +60750353005,11681,0.165605095541401 +60750353005,11683,0.146496815286624 +60750353005,15609,0.0785562632696391 +60750353005,16086,0.167728237791932 +60750353006,10333,0.167770419426049 +60750353006,11182,0.121412803532009 +60750353006,11183,0.119205298013245 +60750353006,15134,0.125827814569536 +60750353006,16080,0.123620309050773 +60750353006,16918,0.121412803532009 +60750353006,17138,0.121412803532009 +60750353006,17142,0.0993377483443709 +60750354001,0,0 +60750354001,10322,0.103211009174312 +60750354001,10323,0.121559633027523 +60750354001,11177,0.169724770642202 +60750354001,11179,0.128440366972477 +60750354001,15131,0.126146788990826 +60750354001,15669,0.137614678899083 +60750354001,17133,0.213302752293578 +60750354002,10325,0.0910973084886128 +60750354002,11178,0.115942028985507 +60750354002,15495,0.111801242236025 +60750354002,15496,0.109730848861284 +60750354002,15670,0.115942028985507 +60750354002,16599,0.113871635610766 +60750354002,16601,0.109730848861284 +60750354002,16919,0.12008281573499 +60750354002,17135,0.111801242236025 +60750354003,15503,0.158536585365854 +60750354003,16081,0.234146341463415 +60750354003,16082,0.146341463414634 +60750354003,16921,0.173170731707317 +60750354003,16922,0.136585365853659 +60750354003,17139,0.151219512195122 +60750354004,10331,0.105691056910569 +60750354004,11186,0.123577235772358 +60750354004,15136,0.108943089430894 +60750354004,15139,0.0975609756097561 +60750354004,15504,0.0991869918699187 +60750354004,16085,0.11869918699187 +60750354004,16604,0.0991869918699187 +60750354004,16606,0.139837398373984 +60750354004,17140,0.107317073170732 +60750354005,11682,0.18013856812933 +60750354005,15138,0.203233256351039 +60750354005,15505,0.0577367205542725 +60750354005,15506,0.355658198614319 +60750354005,16605,0.1270207852194 +60750354005,17089,0.0762124711316397 +60750401001,11746,0.220338983050847 +60750401001,13142,0.200564971751412 +60750401001,15124,0.141242937853107 +60750401001,15125,0.231638418079096 +60750401001,16129,0.206214689265537 +60750401002,15632,0.428030303030303 +60750401002,16089,0.278409090909091 +60750401002,16183,0.293560606060606 +60750401003,10334,0.194444444444444 +60750401003,10763,0.19281045751634 +60750401003,11192,0.160130718954248 +60750401003,16181,0.145424836601307 +60750401003,16609,0.161764705882353 +60750401003,17144,0.145424836601307 +60750401004,10762,0.357723577235772 +60750401004,14392,0.235772357723577 +60750401004,16749,0.24390243902439 +60750401004,16750,0.16260162601626 +60750402001,10414,0.165061898211829 +60750402001,10706,0.137551581843191 +60750402001,14635,0.176066024759285 +60750402001,15158,0.0866574965612105 +60750402001,15213,0.0206327372764787 +60750402001,15736,0.154057771664374 +60750402001,15737,0.143053645116919 +60750402001,16748,0.116918844566713 +60750402002,10266,0.268472906403941 +60750402002,10527,0.332512315270936 +60750402002,12212,0.17487684729064 +60750402002,15212,0.0640394088669951 +60750402002,15992,0.160098522167488 +60750402003,10413,0.21841155234657 +60750402003,15310,0.146209386281588 +60750402003,15456,0.148014440433213 +60750402003,15687,0.180505415162455 +60750402003,16267,0.306859205776173 +60750402004,11280,0.0315789473684211 +60750402004,14634,0.130827067669173 +60750402004,14709,0.169924812030075 +60750402004,14710,0.114285714285714 +60750402004,14961,0.184962406015038 +60750402004,15246,0.219548872180451 +60750402004,15735,0.148872180451128 +60750426011,11200,0.204513399153738 +60750426011,11901,0.152327221438646 +60750426011,12201,0.173483779971791 +60750426011,14605,0.148095909732017 +60750426011,14606,0.0916784203102962 +60750426011,16397,0.077574047954866 +60750426011,17286,0.152327221438646 +60750426012,14053,0.123711340206186 +60750426012,14054,0.111340206185567 +60750426012,14957,0.141237113402062 +60750426012,15305,0.0969072164948454 +60750426012,15307,0.106185567010309 +60750426012,16256,0.12680412371134 +60750426012,16257,0.123711340206186 +60750426012,16258,0.170103092783505 +60750426021,10467,0.117096018735363 +60750426021,11902,0.152224824355972 +60750426021,12204,0.19672131147541 +60750426021,12211,0.220140515222482 +60750426021,16265,0.313817330210773 +60750426022,13715,0.199570815450644 +60750426022,13717,0.158798283261803 +60750426022,14780,0.218884120171674 +60750426022,14783,0.178111587982833 +60750426022,16259,0.244635193133047 +60750426023,13718,0.206563706563707 +60750426023,14056,0.154440154440154 +60750426023,14782,0.241312741312741 +60750426023,14958,0.185328185328185 +60750426023,15309,0.212355212355212 +60750427001,14049,0.0961038961038961 +60750427001,14128,0.211688311688312 +60750427001,14951,0.145454545454545 +60750427001,14952,0.163636363636364 +60750427001,16249,0.181818181818182 +60750427001,16250,0.201298701298701 +60750427002,10885,0 +60750427002,10887,0.15802781289507 +60750427002,12134,0.165613147914033 +60750427002,12138,0.151706700379267 +60750427002,15615,0.15929203539823 +60750427002,16022,0.18078381795196 +60750427002,16395,0.184576485461441 +60750427003,13786,0.137800252844501 +60750427003,14825,0.0632111251580278 +60750427003,15610,0.154235145385588 +60750427003,15611,0.0847029077117573 +60750427003,15614,0.111251580278129 +60750427003,17091,0.101137800252844 +60750427003,17092,0.199747155499368 +60750427003,17098,0.147914032869785 +60750428001,13783,0.078125 +60750428001,13785,0.171875 +60750428001,14048,0.287946428571429 +60750428001,14773,0.220982142857143 +60750428001,14827,0.171875 +60750428001,14950,0.0691964285714286 +60750428002,0,0 +60750428002,13614,0.561797752808989 +60750428002,13782,0.438202247191011 +60750428003,13714,0.246575342465753 +60750428003,13719,0.287671232876712 +60750428003,14781,0.0867579908675799 +60750428003,14830,0.132420091324201 +60750428003,15304,0.246575342465753 +60750451001,10030,0.195629552549428 +60750451001,10767,0.0551508844953174 +60750451001,10768,0.121748178980229 +60750451001,12515,0.0915712799167534 +60750451001,15917,0.0957336108220603 +60750451001,16092,0.174817898022893 +60750451001,17145,0.119667013527575 +60750451001,17146,0.145681581685744 +60750451002,10766,0.0930656934306569 +60750451002,15916,0.193430656934307 +60750451002,15918,0.180656934306569 +60750451002,16091,0.208029197080292 +60750451002,16093,0.260948905109489 +60750451002,16610,0.0638686131386861 +60750451003,10764,0.209048361934477 +60750451003,11065,0.115444617784711 +60750451003,11191,0.174726989079563 +60750451003,14962,0.145085803432137 +60750451003,15915,0.168486739469579 +60750451003,17371,0.187207488299532 +60750452001,10335,0.162237762237762 +60750452001,10837,0.181818181818182 +60750452001,10838,0.151048951048951 +60750452001,13187,0.211188811188811 +60750452001,15507,0.170629370629371 +60750452001,16924,0.123076923076923 +60750452002,11190,0.111432706222865 +60750452002,15145,0.136034732272069 +60750452002,16607,0.170767004341534 +60750452002,16608,0.160636758321274 +60750452002,17143,0.193921852387844 +60750452002,17147,0.227206946454414 +60750452003,10529,0.187341772151899 +60750452003,15142,0.30126582278481 +60750452003,15508,0.169620253164557 +60750452003,16270,0.108860759493671 +60750452003,16925,0.232911392405063 +60750452004,10528,0.150943396226415 +60750452004,10705,0.117924528301887 +60750452004,10761,0.120283018867925 +60750452004,14667,0.125 +60750452004,15143,0.264150943396226 +60750452004,16088,0.221698113207547 +60750452005,11008,0.296078431372549 +60750452005,11063,0.172549019607843 +60750452005,14893,0.229411764705882 +60750452005,15026,0.149019607843137 +60750452005,16331,0.152941176470588 +60750476001,10468,0.185737976782753 +60750476001,10523,0.218905472636816 +60750476001,11005,0.134328358208955 +60750476001,11062,0.106135986733002 +60750476001,11903,0.101160862354892 +60750476001,13908,0.253731343283582 +60750476002,10469,0.142857142857143 +60750476002,10470,0.171814671814672 +60750476002,11525,0.214285714285714 +60750476002,12205,0.166023166023166 +60750476002,16263,0.16023166023166 +60750476002,16329,0.144787644787645 +60750476003,10472,0.0785714285714286 +60750476003,10473,0.14047619047619 +60750476003,10525,0.19047619047619 +60750476003,16268,0.207142857142857 +60750476003,16328,0.192857142857143 +60750476003,16332,0.19047619047619 +60750476004,10474,0.158227848101266 +60750476004,10526,0.166139240506329 +60750476004,11527,0.151898734177215 +60750476004,11907,0.162974683544304 +60750476004,11908,0.14873417721519 +60750476004,12210,0.212025316455696 +60750477011,12140,0.224035608308605 +60750477011,12563,0.169139465875371 +60750477011,12720,0.13946587537092 +60750477011,14438,0.167655786350148 +60750477011,14439,0.166172106824926 +60750477011,14510,0.13353115727003 +60750477012,11006,0.139605462822458 +60750477012,11522,0.166919575113809 +60750477012,11847,0.207890743550835 +60750477012,12202,0.153262518968134 +60750477012,12203,0.153262518968134 +60750477012,13906,0.179059180576631 +60750477013,12139,0.136194029850746 +60750477013,12564,0.152985074626866 +60750477013,16559,0.149253731343284 +60750477013,16560,0.182835820895522 +60750477013,16561,0.199626865671642 +60750477013,16840,0.17910447761194 +60750477021,10213,0.135321100917431 +60750477021,10214,0.190366972477064 +60750477021,12141,0.174311926605505 +60750477021,16562,0.185779816513761 +60750477021,16842,0.144495412844037 +60750477021,17099,0.169724770642202 +60750477022,10466,0.120622568093385 +60750477022,10524,0.140077821011673 +60750477022,11524,0.235408560311284 +60750477022,12207,0.138132295719844 +60750477022,12208,0.142023346303502 +60750477022,12209,0.223735408560311 +60750477023,10215,0.324503311258278 +60750477023,11523,0.134105960264901 +60750477023,16563,0.149006622516556 +60750477023,16564,0.0860927152317881 +60750477023,17015,0.132450331125828 +60750477023,17016,0.173841059602649 +60750478011,10212,0.20253164556962 +60750478011,10886,0.111814345991561 +60750478011,12136,0.166666666666667 +60750478011,16557,0.215189873417722 +60750478011,16558,0.172995780590717 +60750478011,17096,0.130801687763713 +60750478012,10884,0.260042283298097 +60750478012,11687,0.171247357293869 +60750478012,16203,0.0887949260042283 +60750478012,16325,0.186046511627907 +60750478012,17094,0.141649048625793 +60750478012,17095,0.152219873150106 +60750478013,10211,0.136826783114993 +60750478013,12135,0.0101892285298399 +60750478013,12137,0.119359534206696 +60750478013,12561,0.074235807860262 +60750478013,12562,0.098981077147016 +60750478013,14508,0.152838427947598 +60750478013,15613,0.120815138282387 +60750478013,16393,0.189228529839884 +60750478013,17097,0.0975254730713246 +60750478021,10210,0.372340425531915 +60750478021,11002,0.0425531914893617 +60750478021,11686,0.282978723404255 +60750478021,17090,0.302127659574468 +60750478022,10253,0.122844827586207 +60750478022,15194,0.196120689655172 +60750478022,15195,0.191810344827586 +60750478022,15196,0.133620689655172 +60750478022,15983,0.142241379310345 +60750478022,16324,0.213362068965517 +60750478023,10587,0.207815275310835 +60750478023,11004,0.145648312611012 +60750478023,12086,0.177619893428064 +60750478023,12509,0.188277087033748 +60750478023,14505,0.198934280639432 +60750478023,16323,0.0817051509769094 +60750479011,14653,0.154929577464789 +60750479011,15012,0.0915492957746479 +60750479011,15716,0.176056338028169 +60750479011,15721,0.244131455399061 +60750479011,15723,0.166666666666667 +60750479011,16321,0.166666666666667 +60750479012,0,0 +60750479012,10250,0.131034482758621 +60750479012,14058,0.175172413793103 +60750479012,14564,0.104827586206897 +60750479012,14611,0.191724137931034 +60750479012,14612,0 +60750479012,15311,0.172413793103448 +60750479012,15422,0.0993103448275862 +60750479012,16318,0.12551724137931 +60750479013,14191,0.122033898305085 +60750479013,15011,0.120338983050847 +60750479013,15191,0.122033898305085 +60750479013,15559,0.1 +60750479013,16198,0.1 +60750479013,16199,0.177966101694915 +60750479013,16201,0.138983050847458 +60750479013,16319,0.11864406779661 +60750479014,10252,0.127931769722815 +60750479014,14652,0.138592750533049 +60750479014,15013,0.155650319829424 +60750479014,15190,0.142857142857143 +60750479014,15192,0.127931769722815 +60750479014,15722,0.174840085287846 +60750479014,15979,0.132196162046908 +60750479015,10249,0.0717391304347826 +60750479015,14190,0.0608695652173913 +60750479015,15713,0.0869565217391304 +60750479015,15714,0.158695652173913 +60750479015,16200,0.108695652173913 +60750479015,16315,0.18695652173913 +60750479015,16316,0.156521739130435 +60750479015,16317,0.169565217391304 +60750479021,10247,0.126984126984127 +60750479021,14226,0.129251700680272 +60750479021,15557,0.238095238095238 +60750479021,15710,0.120181405895692 +60750479021,16260,0.108843537414966 +60750479021,16312,0.122448979591837 +60750479021,16313,0.154195011337868 +60750479022,10248,0.117252931323283 +60750479022,10585,0.14070351758794 +60750479022,11060,0.112227805695142 +60750479022,14189,0.110552763819095 +60750479022,14436,0.160804020100503 +60750479022,14562,0.123953098827471 +60750479022,15188,0.234505862646566 +60750479023,10251,0.182978723404255 +60750479023,10586,0.182978723404255 +60750479023,15715,0.117021276595745 +60750479023,15717,0.15531914893617 +60750479023,15976,0.204255319148936 +60750479023,16320,0.157446808510638 +60750601001,0,0 +60750601001,10147,0.369369369369369 +60750601001,10380,0.427027027027027 +60750601001,11419,0.0486486486486487 +60750601001,11569,0.154954954954955 +60750604001,0,0 +60750604001,13803,0.311688311688312 +60750604001,15708,0.688311688311688 +60750604001,16083,0 +60750604001,17281,0 +60750605021,11590,1 +60750605022,12073,1 +60750605023,10445,0.630484988452656 +60750605023,10446,0.210161662817552 +60750605023,11673,0.0808314087759815 +60750605023,15598,0.0785219399538106 +60750607001,0,0 +60750607001,10056,0.0232558139534884 +60750607001,11074,0 +60750607001,11075,0 +60750607001,11139,0.0630847367014167 +60750607001,11343,0.0719059075113606 +60750607001,11475,0 +60750607001,11585,0 +60750607001,11589,0 +60750607001,11790,0.0836674685912858 +60750607001,13077,0 +60750607001,13083,0.0473135525260625 +60750607001,13087,0 +60750607001,13089,0 +60750607001,13144,0.0296712109061748 +60750607001,13215,0.153167602245389 +60750607001,13277,0.0839347767976477 +60750607001,13278,0.00481154771451484 +60750607001,13580,0.0940924886394012 +60750607001,14262,0.0593424218123496 +60750607001,14276,0.0133654103180968 +60750607001,14904,0.0598770382250735 +60750607001,16038,0.139267575514568 +60750607001,16311,0.0382250735097567 +60750607001,16794,0.00828655439721999 +60750607001,16795,0 +60750607001,17223,0.0267308206361935 +60750607002,10735,0 +60750607002,11145,0.145454545454545 +60750607002,11149,0 +60750607002,11587,0 +60750607002,11588,0 +60750607002,12415,0.854545454545454 +60750607002,13080,0 +60750607002,13081,0 +60750607002,13082,0 +60750607002,13217,0 +60750607002,13218,0 +60750607002,13983,0 +60750607002,14260,0 +60750607002,14263,0 +60750607002,14312,0 +60750607002,14313,0 +60750607002,14501,0 +60750607002,15529,0 +60750607003,10649,0.467368421052632 +60750607003,10650,0.532631578947368 +60750610001,0,0 +60750610001,10064,0 +60750610001,10065,0.0310734463276836 +60750610001,12591,0.862994350282486 +60750610001,12702,0.0155367231638418 +60750610001,13599,0.0903954802259887 +60750610002,11353,0.083710407239819 +60750610002,12248,0.165158371040724 +60750610002,12750,0.0995475113122172 +60750610002,12751,0.235294117647059 +60750610002,12754,0.126696832579186 +60750610002,14231,0.00678733031674208 +60750610002,15020,0.282805429864253 +60750611001,13233,0.0226537216828479 +60750611001,13310,0 +60750611001,13723,0.0420711974110032 +60750611001,14229,0.0113268608414239 +60750611001,14236,0 +60750611001,14237,0 +60750611001,14239,0 +60750611001,14616,0.244336569579288 +60750611001,14618,0.406148867313916 +60750611001,14620,0 +60750611001,15074,0 +60750611001,15249,0 +60750611001,15250,0 +60750611001,15315,0 +60750611001,15426,0 +60750611001,15427,0 +60750611001,16721,0.273462783171521 +60750611002,13113,0.448484848484848 +60750611002,13301,0.292929292929293 +60750611002,14233,0.182828282828283 +60750611002,14614,0.0757575757575758 +60750611003,12771,0.563567362428843 +60750611003,14615,0.436432637571157 +60750612001,10482,0 +60750612001,10977,0.109785202863962 +60750612001,11041,0.0954653937947494 +60750612001,11042,0.105011933174224 +60750612001,11044,0.13126491646778 +60750612001,12050,0 +60750612001,12054,0.171837708830549 +60750612001,13449,0 +60750612001,15464,0.0596658711217184 +60750612001,15465,0.109785202863962 +60750612001,15533,0.217183770883055 +60750612002,10053,0.0316091954022989 +60750612002,10054,0.0833333333333333 +60750612002,10975,0.100574712643678 +60750612002,10976,0.0933908045977011 +60750612002,11039,0.126436781609195 +60750612002,14107,0.0905172413793103 +60750612002,14109,0.135057471264368 +60750612002,14110,0.0862068965517241 +60750612002,15408,0.0416666666666667 +60750612002,15411,0.125 +60750612002,17201,0.0862068965517241 +60750614001,10575,0 +60750614001,10734,0.157731958762887 +60750614001,11083,0.189690721649485 +60750614001,11257,0.0164948453608247 +60750614001,11411,0.045360824742268 +60750614001,11699,0.0515463917525773 +60750614001,13155,0.0618556701030928 +60750614001,16000,0.136082474226804 +60750614001,16077,0.184536082474227 +60750614001,16651,0.0680412371134021 +60750614001,16654,0 +60750614001,17051,0.088659793814433 +60750614002,10018,0 +60750614002,11471,0.0745412844036697 +60750614002,11615,0.0951834862385321 +60750614002,12962,0.0779816513761468 +60750614002,13157,0.137614678899083 +60750614002,13903,0.0825688073394495 +60750614002,14035,0.0607798165137615 +60750614002,15220,0.14105504587156 +60750614002,15392,0.0676605504587156 +60750614002,16969,0.125 +60750614002,17052,0.137614678899083 +60750614003,15389,0.11328125 +60750614003,15794,0.171875 +60750614003,15802,0.115234375 +60750614003,16649,0.197265625 +60750614003,16965,0.205078125 +60750614003,17046,0.197265625 +60750615001,0,0 +60750615001,10159,0 +60750615001,10222,0 +60750615001,10260,0 +60750615001,10261,0 +60750615001,10262,0.220853858784893 +60750615001,10263,0 +60750615001,10677,0.0517241379310345 +60750615001,11128,0 +60750615001,11129,0 +60750615001,11341,0.077175697865353 +60750615001,11342,0.000821018062397373 +60750615001,11736,0.107553366174056 +60750615001,11774,0 +60750615001,13068,0 +60750615001,13712,0.00164203612479475 +60750615001,13734,0 +60750615001,14064,0 +60750615001,14660,0 +60750615001,14661,0 +60750615001,15022,0.132183908045977 +60750615001,15039,0 +60750615001,15081,0 +60750615001,15201,0 +60750615001,15206,0 +60750615001,15257,0 +60750615001,15429,0.402298850574713 +60750615001,15430,0 +60750615001,15601,0 +60750615001,15760,0 +60750615001,15761,0.00492610837438424 +60750615001,16726,0 +60750615001,16727,0.000821018062397373 +60750615002,10265,0.25990099009901 +60750615002,10517,0.0717821782178218 +60750615002,11517,0 +60750615002,13336,0 +60750615002,15203,0.100247524752475 +60750615002,15204,0.403465346534653 +60750615002,15205,0.0680693069306931 +60750615002,15207,0 +60750615002,16213,0 +60750615002,16214,0 +60750615002,16786,0.0965346534653465 +60750615002,16787,0 +60750615002,17079,0 +60750615003,0,0 +60750615003,10702,0 +60750615003,10704,0.0391111111111111 +60750615003,14665,0 +60750615003,15476,0 +60750615003,15989,0.452444444444444 +60750615003,16212,0 +60750615003,16217,0.244444444444444 +60750615003,16656,0 +60750615003,16790,0 +60750615003,16792,0.264 +60750615004,10127,0.101869158878505 +60750615004,10703,0 +60750615004,13078,0.000934579439252336 +60750615004,13514,0 +60750615004,14769,0.208411214953271 +60750615004,15988,0.219626168224299 +60750615004,16215,0.25981308411215 +60750615004,16657,0.0495327102803738 +60750615004,16793,0.15981308411215 +60750615005,10055,0.0181488203266788 +60750615005,10646,0.199637023593466 +60750615005,10680,0.0417422867513612 +60750615005,11138,0.23049001814882 +60750615005,11474,0.0199637023593466 +60750615005,13516,0.0362976406533575 +60750615005,15883,0.453720508166969 +60750615006,0,0 +60750615006,10128,0.167411823149528 +60750615006,11694,0.391455538996523 +60750615006,14666,0.440635866865375 +60750615006,15990,0 +60750615006,16658,0 +60750615006,16930,0.000496770988574267 +60759802001,0,0 +60759802001,15829,1 +60759803001,0,0 +60759803001,10476,0 +60759803001,10769,1 +60759803001,13189,0 +60759803001,14200,0 +60759803001,16261,0 +60759804011,0,0 +60759804011,16084,0 +60759805011,14453,0.57847533632287 +60759805011,15595,0.417040358744395 +60759805011,17073,0.00448430493273543 +60759806001,0,0 +60759806001,11453,1 +60759806001,13249,0 +60759809001,0,0 +60759809001,10017,0 +60759809001,10021,0.0410958904109589 +60759809001,10123,0 +60759809001,10581,0 +60759809001,10972,0.0205479452054795 +60759809001,11033,0 +60759809001,11038,0 +60759809001,11548,0 +60759809001,11549,0 +60759809001,11550,0 +60759809001,11622,0.205479452054795 +60759809001,11623,0 +60759809001,11693,0 +60759809001,11698,0.404109589041096 +60759809001,11701,0.00684931506849315 +60759809001,11871,0 +60759809001,12113,0 +60759809001,12488,0 +60759809001,13106,0 +60759809001,13158,0 +60759809001,13159,0 +60759809001,13160,0 +60759809001,13161,0.00684931506849315 +60759809001,13162,0 +60759809001,13163,0 +60759809001,13171,0 +60759809001,13384,0 +60759809001,13389,0.0136986301369863 +60759809001,13448,0 +60759809001,13509,0 +60759809001,13576,0.0205479452054795 +60759809001,13904,0 +60759809001,14103,0 +60759809001,14434,0 +60759809001,14689,0 +60759809001,15010,0 +60759809001,15071,0.123287671232877 +60759809001,15407,0 +60759809001,15409,0.089041095890411 +60759809001,15461,0 +60759809001,15531,0.0410958904109589 +60759809001,15800,0 +60759809001,15803,0 +60759809001,16002,0 +60759809001,16079,0.0273972602739726 +60759809001,16510,0 +60759809001,16513,0 +60759809001,16514,0 +60759809001,16883,0 +60759809001,17103,0 +60759809001,17109,0 +60759809001,17183,0 +60759809001,17344,0 +60759901000,0,0 +60816001001,0,0 +60816001001,110995,0.435695538057743 +60816001001,111137,0.0971128608923885 +60816001001,111357,0 +60816001001,111358,0 +60816001001,111483,0 +60816001001,111703,0 +60816001001,111772,0.0236220472440945 +60816001001,112445,0 +60816001001,112483,0 +60816001001,113272,0 +60816001001,115645,0.062992125984252 +60816001001,115930,0 +60816001001,116524,0.0026246719160105 +60816001001,116548,0.0984251968503937 +60816001001,117484,0.279527559055118 +60816001001,117555,0 +60816001001,117764,0 +60816001001,118031,0 +60816001002,111008,0.0619578686493185 +60816001002,112045,0.158612143742255 +60816001002,112524,0.111524163568773 +60816001002,113622,0.120198265179678 +60816001002,115647,0.0842627013630731 +60816001002,117766,0.114002478314746 +60816001002,118109,0.0954151177199504 +60816001002,118158,0.0793060718711276 +60816001002,118740,0.174721189591078 +60816001003,113884,0.141935483870968 +60816001003,115646,0.202150537634409 +60816001003,115648,0.118279569892473 +60816001003,117558,0.0709677419354839 +60816001003,117765,0.113978494623656 +60816001003,118279,0.131182795698925 +60816001003,118739,0.221505376344086 +60816002001,110544,0.036231884057971 +60816002001,111351,0.606884057971015 +60816002001,115267,0.0815217391304348 +60816002001,115643,0.0960144927536232 +60816002001,115788,0 +60816002001,117556,0.0561594202898551 +60816002001,118028,0.123188405797101 +60816002002,111356,0.126629422718808 +60816002002,112341,0.0912476722532588 +60816002002,112853,0.0875232774674116 +60816002002,115268,0.0670391061452514 +60816002002,115397,0.0186219739292365 +60816002002,115398,0.0837988826815642 +60816002002,115644,0.0726256983240224 +60816002002,117196,0.0931098696461825 +60816002002,117197,0.0837988826815642 +60816002002,117552,0.0782122905027933 +60816002002,117553,0.197392923649907 +60816003001,111143,0.0797227036395147 +60816003001,111355,0.0849220103986135 +60816003001,112338,0.0329289428076256 +60816003001,112339,0.0849220103986135 +60816003001,112586,0.0589254766031196 +60816003001,112716,0.152512998266898 +60816003001,112718,0.128249566724437 +60816003001,115171,0.0693240901213172 +60816003001,115640,0.0814558058925477 +60816003001,117193,0.155979202772964 +60816003001,117890,0.0710571923743501 +60816003002,110924,0.0397727272727273 +60816003002,113251,0.379261363636364 +60816003002,115381,0.171875 +60816003002,115431,0.210227272727273 +60816003002,117052,0.0823863636363636 +60816003002,117472,0.116477272727273 +60816004011,110685,0.420454545454545 +60816004011,111922,0.326704545454545 +60816004011,118934,0.252840909090909 +60816004012,111615,0.155555555555556 +60816004012,111774,0.158333333333333 +60816004012,112337,0.0777777777777778 +60816004012,112703,0.147222222222222 +60816004012,114742,0.163888888888889 +60816004012,116615,0.136111111111111 +60816004012,116616,0.025 +60816004012,117891,0.136111111111111 +60816004021,114680,0.125333333333333 +60816004021,116611,0 +60816004021,116612,0.154666666666667 +60816004021,116613,0.125333333333333 +60816004021,116614,0.117333333333333 +60816004021,116985,0.125333333333333 +60816004021,116986,0.0906666666666667 +60816004021,116987,0.154666666666667 +60816004021,119026,0.106666666666667 +60816004022,111771,0.0738137082601054 +60816004022,114343,0.105448154657293 +60816004022,114736,0.103690685413005 +60816004022,114737,0.086115992970123 +60816004022,114738,0.0843585237258348 +60816004022,114740,0.0685413005272408 +60816004022,114741,0.0650263620386643 +60816004022,114864,0.107205623901582 +60816004022,116609,0.0720562390158172 +60816004022,119023,0.0790861159929701 +60816004022,119024,0.0790861159929701 +60816004022,119025,0.0755711775043937 +60816004023,111773,0.0921501706484642 +60816004023,112702,0.208191126279863 +60816004023,114739,0.21160409556314 +60816004023,115116,0.177474402730375 +60816004023,118498,0.310580204778157 +60816005001,110773,0.196491228070175 +60816005001,110774,0.294736842105263 +60816005001,111689,0.056140350877193 +60816005001,112192,0.087719298245614 +60816005001,112587,0.0701754385964912 +60816005001,114337,0.0964912280701754 +60816005001,114733,0.140350877192982 +60816005001,116982,0.0578947368421053 +60816005002,114181,0.416666666666667 +60816005002,114593,0.16304347826087 +60816005002,116607,0.253623188405797 +60816005002,118510,0.166666666666667 +60816005003,110775,0.121718377088305 +60816005003,110788,0.0978520286396181 +60816005003,111767,0 +60816005003,112190,0.162291169451074 +60816005003,112191,0.164677804295943 +60816005003,112715,0.0954653937947494 +60816005003,115114,0.0596658711217184 +60816005003,115261,0.0930787589498807 +60816005003,116608,0.102625298329356 +60816005003,118723,0.102625298329356 +60816005004,112794,1 +60816005005,110543,0.283333333333333 +60816005005,111212,0.0833333333333333 +60816005005,111622,0.204166666666667 +60816005005,114672,0.341666666666667 +60816005005,118511,0.0875 +60816006001,110634,0.0604026845637584 +60816006001,110635,0.0536912751677852 +60816006001,111493,0.0724832214765101 +60816006001,113778,0.138255033557047 +60816006001,114334,0.146308724832215 +60816006001,114592,0.179865771812081 +60816006001,116049,0.139597315436242 +60816006001,116604,0.0791946308724832 +60816006001,116975,0.130201342281879 +60816006002,111618,0.0767004341534009 +60816006002,111619,0.0723589001447178 +60816006002,111620,0.0984081041968162 +60816006002,112588,0.138929088277858 +60816006002,114365,0.206946454413893 +60816006002,114590,0.0752532561505065 +60816006002,114591,0.0897250361794501 +60816006002,115503,0.0752532561505065 +60816006002,115975,0.0173661360347323 +60816006002,116045,0.0159189580318379 +60816006002,116407,0.0593342981186686 +60816006002,118503,0.0738060781476122 +60816007001,110632,0.138069705093834 +60816007001,111614,0.0911528150134048 +60816007001,111621,0.0750670241286863 +60816007001,111686,0 +60816007001,112065,0.100536193029491 +60816007001,114583,0.128686327077748 +60816007001,114585,0.0857908847184987 +60816007001,114587,0.0764075067024129 +60816007001,115499,0.0509383378016086 +60816007001,118501,0.14745308310992 +60816007001,118504,0.105898123324397 +60816007002,110627,0.0484429065743945 +60816007002,111210,0.0795847750865052 +60816007002,113773,0.0432525951557093 +60816007002,113776,0.0467128027681661 +60816007002,114180,0.00865051903114187 +60816007002,114342,0.069204152249135 +60816007002,116411,0.0605536332179931 +60816007002,116412,0.100346020761246 +60816007002,116610,0.0484429065743945 +60816007002,118496,0.1280276816609 +60816007002,118505,0.0069204152249135 +60816007002,118507,0.115916955017301 +60816007002,118508,0.0674740484429066 +60816007002,118509,0.0726643598615917 +60816007002,119022,0.103806228373702 +60816007003,110633,0.247910863509749 +60816007003,111617,0.20891364902507 +60816007003,115501,0.158774373259053 +60816007003,115502,0.0919220055710306 +60816007003,116046,0.0696378830083565 +60816007003,116408,0.0947075208913649 +60816007003,116409,0.122562674094708 +60816007003,116410,0.00557103064066852 +60816007004,110629,0.127596439169139 +60816007004,111616,0.186943620178042 +60816007004,114588,0.142433234421365 +60816007004,116404,0.121661721068249 +60816007004,116405,0.169139465875371 +60816007004,117622,0.160237388724036 +60816007004,118500,0.0919881305637982 +60816008001,114445,0.524017467248908 +60816008001,115310,0.475982532751092 +60816008002,110541,0.24207492795389 +60816008002,111061,0.362151777137368 +60816008002,112392,0.0922190201729107 +60816008002,112666,0.079731027857829 +60816008002,113051,0 +60816008002,117404,0.0576368876080692 +60816008002,117405,0.113352545629203 +60816008002,118886,0.0528338136407301 +60816008003,111012,0 +60816008003,114025,0.0442678774120318 +60816008003,114026,0.75255391600454 +60816008003,115858,0.0238365493757094 +60816008003,117969,0.0408626560726447 +60816008003,118888,0.138479001135074 +60816008004,113613,0.446927374301676 +60816008004,114444,0.553072625698324 +60816009001,111060,0.0593667546174142 +60816009001,112663,0.050131926121372 +60816009001,113220,0.0844327176781003 +60816009001,113479,0.0606860158311346 +60816009001,113480,0.129287598944591 +60816009001,113614,0.0263852242744063 +60816009001,114900,0.267810026385224 +60816009001,114981,0.0870712401055409 +60816009001,114982,0.0870712401055409 +60816009001,117397,0.0461741424802111 +60816009001,117966,0.0514511873350923 +60816009001,118885,0 +60816009001,118887,0.050131926121372 +60816009002,0,0 +60816009002,112659,0.0492040520984081 +60816009002,112661,0.0477568740955137 +60816009002,112662,0.0318379160636758 +60816009002,112916,0.0535455861070912 +60816009002,113047,0.130246020260492 +60816009002,113888,0.0868306801736614 +60816009002,114440,0.0578871201157742 +60816009002,115430,0.0115774240231548 +60816009002,117399,0.0520984081041968 +60816009002,117401,0.0390738060781476 +60816009002,118356,0.0738060781476122 +60816009002,118359,0.154848046309696 +60816009002,118744,0.0694645441389291 +60816009002,118745,0.0564399421128799 +60816009002,119096,0.085383502170767 +60816010001,0,0 +60816010001,112399,0.186413902053712 +60816010001,114975,0.0521327014218009 +60816010001,114976,0.0774091627172196 +60816010001,115942,0.0884676145339652 +60816010001,117398,0.341232227488152 +60816010001,118743,0.0410742496050553 +60816010001,118747,0.126382306477093 +60816010001,118881,0.0868878357030016 +60816010002,110484,0.0936170212765957 +60816010002,111924,0.0702127659574468 +60816010002,111925,0.0702127659574468 +60816010002,113213,0.0957446808510638 +60816010002,113404,0.0595744680851064 +60816010002,114977,0.0936170212765957 +60816010002,114978,0.0978723404255319 +60816010002,115328,0.136170212765957 +60816010002,116203,0.048936170212766 +60816010002,116482,0.153191489361702 +60816010002,118111,0.0808510638297872 +60816010003,113823,0.34020618556701 +60816010003,115385,0.0795287187039764 +60816010003,116336,0.0648011782032401 +60816010003,116485,0.0765832106038292 +60816010003,117329,0.0883652430044183 +60816010003,118265,0.0795287187039764 +60816010003,118882,0.270986745213549 +60816010004,110486,0.232227488151659 +60816010004,113064,0.255924170616114 +60816010004,113212,0.184834123222749 +60816010004,114970,0.151658767772512 +60816010004,115326,0.175355450236967 +60816011001,112917,0.130293159609121 +60816011001,112918,0.0879478827361563 +60816011001,113048,0.0814332247557003 +60816011001,113049,0.208469055374593 +60816011001,114442,0.208469055374593 +60816011001,117402,0.175895765472313 +60816011001,117403,0.107491856677524 +60816011002,113062,0.107883817427386 +60816011002,113477,0.149377593360996 +60816011002,114443,0.107883817427386 +60816011002,114971,0.112033195020747 +60816011002,114972,0.136929460580913 +60816011002,115327,0.033195020746888 +60816011002,118357,0.228215767634855 +60816011002,118746,0.12448132780083 +60816011003,113214,0.475247524752475 +60816011003,113216,0.0767326732673267 +60816011003,113218,0.0891089108910891 +60816011003,113610,0.111386138613861 +60816011003,114974,0.0668316831683168 +60816011003,114979,0.0940594059405941 +60816011003,115857,0.0866336633663366 +60816011004,110489,0.106666666666667 +60816011004,113215,0.126666666666667 +60816011004,113219,0.102222222222222 +60816011004,113612,0.0533333333333333 +60816011004,114973,0.208888888888889 +60816011004,117963,0.146666666666667 +60816011004,117964,0.157777777777778 +60816011004,118883,0.0977777777777778 +60816011005,110485,0.0795698924731183 +60816011005,112658,0.129032258064516 +60816011005,114441,0.105376344086022 +60816011005,114801,0.103225806451613 +60816011005,114802,0.0666666666666667 +60816011005,114803,0.135483870967742 +60816011005,115325,0.0645161290322581 +60816011005,117400,0.0451612903225806 +60816011005,117417,0.0473118279569892 +60816011005,118358,0.105376344086022 +60816011005,118880,0.118279569892473 +60816012001,111610,0 +60816012001,113225,0.0509803921568627 +60816012001,113226,0.118954248366013 +60816012001,113252,0 +60816012001,113618,0.166013071895425 +60816012001,113619,0.069281045751634 +60816012001,113810,0.0418300653594771 +60816012001,114030,0.0287581699346405 +60816012001,115484,0.0444444444444444 +60816012001,115862,0.16078431372549 +60816012001,115863,0.0156862745098039 +60816012001,116111,0.0509803921568627 +60816012001,116481,0.100653594771242 +60816012001,117971,0.149019607843137 +60816012001,117973,0.00261437908496732 +60816012001,118890,0 +60816012002,112667,0.238805970149254 +60816012002,115309,0.66865671641791 +60816012002,115855,0.0925373134328358 +60816012003,111275,0.140625 +60816012003,111492,0.59375 +60816012003,113770,0.191964285714286 +60816012003,114173,0.00669642857142857 +60816012003,115927,0.0491071428571429 +60816012003,118493,0.0178571428571429 +60816012004,110488,0.941176470588235 +60816012004,118567,0.0588235294117647 +60816013001,111766,0.175609756097561 +60816013001,112189,0.0926829268292683 +60816013001,114331,0.0609756097560976 +60816013001,115112,0.190243902439024 +60816013001,115113,0.148780487804878 +60816013001,116605,0.129268292682927 +60816013001,116981,0.0853658536585366 +60816013001,119018,0.117073170731707 +60816013002,110843,0.0816326530612245 +60816013002,110849,0.0276967930029154 +60816013002,111688,0.0364431486880466 +60816013002,111769,0.0991253644314869 +60816013002,112186,0 +60816013002,112193,0.112244897959184 +60816013002,112194,0.192419825072886 +60816013002,114332,0.065597667638484 +60816013002,114735,0.100583090379009 +60816013002,116713,0.0204081632653061 +60816013002,119017,0.12536443148688 +60816013002,119021,0.138483965014577 +60816013003,111611,0 +60816013003,111763,0.0870406189555126 +60816013003,112184,0.141199226305609 +60816013003,114589,0.131528046421663 +60816013003,115110,0.0889748549323017 +60816013003,116048,0.181818181818182 +60816013003,116603,0.00580270793036751 +60816013003,116976,0.0947775628626693 +60816013003,116978,0.201160541586073 +60816013003,116979,0.0618955512572534 +60816013003,119016,0.00580270793036751 +60816013004,111274,0.0363636363636364 +60816013004,111350,0.0573426573426573 +60816013004,111687,0.142657342657343 +60816013004,111765,0.0293706293706294 +60816013004,111768,0.131468531468531 +60816013004,112185,0 +60816013004,114333,0.186013986013986 +60816013004,114336,0.0699300699300699 +60816013004,114339,0.0699300699300699 +60816013004,114340,0.0503496503496504 +60816013004,116606,0.0727272727272727 +60816013004,119162,0.153846153846154 +60816014001,111062,0.110629067245119 +60816014001,111612,0.0303687635574837 +60816014001,114172,0.130151843817787 +60816014001,114983,0.193058568329718 +60816014001,115483,0.158351409978308 +60816014001,115497,0.0932754880694143 +60816014001,115874,0.123644251626898 +60816014001,115875,0.0455531453362256 +60816014001,116401,0.00216919739696312 +60816014001,116771,0.112798264642082 +60816014002,113407,0.0839328537170264 +60816014002,113408,0.0815347721822542 +60816014002,113409,0.0935251798561151 +60816014002,113825,0.052757793764988 +60816014002,114175,0.401678657074341 +60816014002,116488,0.0911270983213429 +60816014002,116773,0.0599520383693046 +60816014002,118285,0.0683453237410072 +60816014002,118640,0.0671462829736211 +60816014003,111927,0 +60816014003,111928,0.0586370839936609 +60816014003,111931,0.0998415213946117 +60816014003,113274,0.0586370839936609 +60816014003,113478,0.0396196513470681 +60816014003,113532,0.0380348652931854 +60816014003,113819,0.0681458003169572 +60816014003,113820,0.0443740095087163 +60816014003,114980,0.0744849445324881 +60816014003,115038,0.172741679873217 +60816014003,115565,0.045958795562599 +60816014003,116338,0.0697305863708399 +60816014003,118283,0.0618066561014263 +60816014003,118884,0.12202852614897 +60816014003,118889,0.045958795562599 +60816015011,111926,0.0700757575757576 +60816015011,115807,0.0568181818181818 +60816015011,115808,0.0984848484848485 +60816015011,116204,0.0757575757575758 +60816015011,116205,0.109848484848485 +60816015011,116483,0.071969696969697 +60816015011,117503,0.212121212121212 +60816015011,118112,0.0757575757575758 +60816015011,118113,0.0757575757575758 +60816015011,118114,0.0890151515151515 +60816015011,118282,0.0643939393939394 +60816015012,111929,0.0636132315521628 +60816015012,113405,0.0636132315521628 +60816015012,113821,0.145038167938931 +60816015012,113822,0.111959287531807 +60816015012,114663,0.134860050890585 +60816015012,116206,0.101781170483461 +60816015012,116207,0.134860050890585 +60816015012,116208,0.145038167938931 +60816015012,118115,0.099236641221374 +60816015013,111932,0.104368932038835 +60816015013,113410,0.114077669902913 +60816015013,113411,0.0946601941747573 +60816015013,116339,0.157766990291262 +60816015013,116484,0.0995145631067961 +60816015013,116487,0.116504854368932 +60816015013,118110,0.111650485436893 +60816015013,118286,0.101941747572816 +60816015013,118641,0.0995145631067961 +60816015021,110689,0.35528596187175 +60816015021,111939,0 +60816015021,113536,0.225303292894281 +60816015021,116785,0.0251299826689775 +60816015021,118287,0.0415944540727903 +60816015021,118288,0.300693240901213 +60816015021,119109,0.0277296360485269 +60816015021,119110,0.024263431542461 +60816015022,113826,1 +60816016011,111501,0.125968992248062 +60816016011,111685,0.143410852713178 +60816016011,113533,0.0271317829457364 +60816016011,114368,0 +60816016011,114734,0.0968992248062016 +60816016011,115176,0.00581395348837209 +60816016011,115382,0.0562015503875969 +60816016011,115567,0.00581395348837209 +60816016011,116983,0.507751937984496 +60816016011,119161,0.0310077519379845 +60816016012,112334,0.135728542914172 +60816016012,115394,0.331337325349301 +60816016012,117332,0.532934131736527 +60816016031,111158,0.187766714082504 +60816016031,111502,0.0981507823613087 +60816016031,114114,0.0810810810810811 +60816016031,115421,0.027027027027027 +60816016031,115442,0.0568990042674253 +60816016031,115570,0.0227596017069701 +60816016031,115571,0.17923186344239 +60816016031,117626,0.284495021337127 +60816016031,118179,0.0625889046941678 +60816016032,110703,0.211832061068702 +60816016032,111135,0.299618320610687 +60816016032,114117,0.192748091603053 +60816016032,114671,0.066793893129771 +60816016032,115985,0.0515267175572519 +60816016032,118045,0.118320610687023 +60816016032,118712,0.0591603053435115 +60816016033,110702,0.441717791411043 +60816016033,111853,0.0506134969325153 +60816016033,116129,0.0291411042944785 +60816016033,116130,0.220858895705521 +60816016033,117113,0.257668711656442 +60816016041,111154,0 +60816016041,111764,0 +60816016041,111919,0.0267702936096718 +60816016041,113416,0 +60816016041,113954,0.00604490500863558 +60816016041,115443,0.901554404145078 +60816016041,116784,0.035405872193437 +60816016041,117889,0 +60816016041,118652,0.0302245250431779 +60816016051,115983,0 +60816016051,117904,1 +60816016052,111941,0.208695652173913 +60816016052,116348,0.31304347826087 +60816016052,117057,0.173913043478261 +60816016052,118653,0.304347826086957 +60816016053,110715,0.107309486780715 +60816016053,111156,0.32348367029549 +60816016053,111697,0.073094867807154 +60816016053,115569,0.133748055987558 +60816016053,118037,0.0653188180404355 +60816016053,118038,0.104199066874028 +60816016053,118711,0.192846034214619 +60816016054,110922,0.353305785123967 +60816016054,113537,0.0371900826446281 +60816016054,113962,0.146694214876033 +60816016054,113963,0.111570247933884 +60816016054,116786,0.159090909090909 +60816016054,118570,0.192148760330579 +60816017001,111159,0.338557993730408 +60816017001,111509,0.263322884012539 +60816017001,114895,0.25705329153605 +60816017001,115978,0.141065830721003 +60816017001,116708,0 +60816017002,111489,0.0463821892393321 +60816017002,114119,0.0333951762523191 +60816017002,114120,0.0797773654916512 +60816017002,115198,0.0834879406307978 +60816017002,115578,0.0538033395176252 +60816017002,115980,0.0408163265306122 +60816017002,118041,0.337662337662338 +60816017002,118182,0.100185528756957 +60816017002,118183,0.0371057513914657 +60816017002,118586,0.187384044526902 +60816017003,110698,0.118161925601751 +60816017003,111013,0.050328227571116 +60816017003,111507,0.100656455142232 +60816017003,111508,0.109409190371991 +60816017003,115446,0.0765864332603939 +60816017003,115573,0.0787746170678337 +60816017003,115574,0.0547045951859956 +60816017003,117054,0.196936542669584 +60816017003,118180,0.050328227571116 +60816017003,118181,0.0831509846827133 +60816017003,118958,0.0809628008752735 +60816018001,110699,0.0286225402504472 +60816018001,110700,0.0295169946332737 +60816018001,110701,0.0402504472271914 +60816018001,110708,0.0608228980322004 +60816018001,110859,0.0286225402504472 +60816018001,111162,0.0313059033989267 +60816018001,111163,0.0322003577817531 +60816018001,111511,0.0313059033989267 +60816018001,111514,0.0259391771019678 +60816018001,111682,0.0590339892665474 +60816018001,113336,0.0518783542039356 +60816018001,114121,0.0322003577817531 +60816018001,114122,0.0796064400715563 +60816018001,114125,0.054561717352415 +60816018001,115035,0.141323792486583 +60816018001,115579,0.0134168157423971 +60816018001,115981,0.0697674418604651 +60816018001,115982,0.0330948121645796 +60816018001,116124,0.0670840787119857 +60816018001,116131,0.0304114490161002 +60816018001,116690,0.0304114490161002 +60816018001,118710,0.0286225402504472 +60816018002,110850,0.0559284116331096 +60816018002,110992,0.0805369127516778 +60816018002,110993,0 +60816018002,111280,0.0402684563758389 +60816018002,111286,0.0436241610738255 +60816018002,111696,0.0302013422818792 +60816018002,112243,0.0492170022371365 +60816018002,113685,0.0335570469798658 +60816018002,114127,0.0503355704697987 +60816018002,114667,0.0279642058165548 +60816018002,115034,0.120805369127517 +60816018002,115702,0.0604026845637584 +60816018002,116132,0.0357941834451902 +60816018002,116538,0.00782997762863535 +60816018002,117092,0.0514541387024608 +60816018002,117093,0.0447427293064877 +60816018002,117094,0.0447427293064877 +60816018002,117095,0.087248322147651 +60816018002,118043,0.0380313199105145 +60816018002,118048,0.0973154362416107 +60816019011,110858,0.0795454545454545 +60816019011,112249,0.09375 +60816019011,112250,0.113636363636364 +60816019011,115423,0.150568181818182 +60816019011,115696,0.105113636363636 +60816019011,116691,0.0880681818181818 +60816019011,118421,0.133522727272727 +60816019011,119232,0.133522727272727 +60816019011,119233,0.102272727272727 +60816019012,113135,0.0516795865633075 +60816019012,118929,0.948320413436692 +60816019013,110860,0.144444444444444 +60816019013,111278,0.177777777777778 +60816019013,111281,0.151851851851852 +60816019013,113133,0.0962962962962963 +60816019013,115705,0.0962962962962963 +60816019013,116692,0.137037037037037 +60816019013,119235,0.196296296296296 +60816019021,113686,0.526932084309134 +60816019021,115697,0.0690866510538642 +60816019021,115701,0.403981264637002 +60816019022,111279,0.175824175824176 +60816019022,113131,0.146520146520147 +60816019022,115698,0.117216117216117 +60816019022,115699,0.113553113553114 +60816019022,115700,0.120879120879121 +60816019022,116535,0.216117216117216 +60816019022,116536,0.10989010989011 +60816019023,111002,0.04 +60816019023,111282,0.0572727272727273 +60816019023,111414,0.120909090909091 +60816019023,112251,0.110909090909091 +60816019023,115036,0.224545454545455 +60816019023,115424,0.0354545454545455 +60816019023,115703,0.13 +60816019023,115707,0.0172727272727273 +60816019023,116537,0.121818181818182 +60816019023,117085,0.0572727272727273 +60816019023,118564,0.0645454545454545 +60816019023,119236,0.02 +60816020001,110690,0.044205495818399 +60816020001,111482,0.017921146953405 +60816020001,112260,0.0860215053763441 +60816020001,112775,0 +60816020001,112902,0.0669056152927121 +60816020001,112906,0.039426523297491 +60816020001,114789,0.032258064516129 +60816020001,114796,0.0537634408602151 +60816020001,114797,0.038231780167264 +60816020001,115712,0.037037037037037 +60816020001,116135,0.0573476702508961 +60816020001,116842,0.016726403823178 +60816020001,117086,0.03584229390681 +60816020001,117834,0.0585424133811231 +60816020001,118705,0 +60816020001,119237,0.318996415770609 +60816020001,119239,0.033452807646356 +60816020001,119240,0.0633213859020311 +60816020002,112903,0.117782909930716 +60816020002,112904,0.0254041570438799 +60816020002,114791,0.069284064665127 +60816020002,114793,0.286374133949192 +60816020002,117833,0.0554272517321016 +60816020002,118036,0.108545034642032 +60816020002,118207,0.173210161662818 +60816020002,118208,0.163972286374134 +60816020003,110538,0.110236220472441 +60816020003,112517,0.133858267716535 +60816020003,113683,0.125984251968504 +60816020003,113879,0.0748031496062992 +60816020003,116250,0.0905511811023622 +60816020003,116251,0.21259842519685 +60816020003,117091,0.251968503937008 +60816020004,112575,0.0504322766570605 +60816020004,117055,0.949567723342939 +60816020005,111283,0.149812734082397 +60816020005,111284,0.280898876404494 +60816020005,112259,0.146067415730337 +60816020005,115713,0.191011235955056 +60816020005,117088,0.0411985018726592 +60816020005,119241,0.191011235955056 +60816021001,113052,0.113702623906706 +60816021001,114447,0.0903790087463557 +60816021001,115312,0.177842565597668 +60816021001,115313,0.0932944606413994 +60816021001,118749,0.0728862973760933 +60816021001,119086,0.451895043731778 +60816021002,112521,0.0456026058631922 +60816021002,112522,0.0293159609120521 +60816021002,112907,0.149837133550489 +60816021002,117396,0.146579804560261 +60816021002,117835,0.166123778501629 +60816021002,118211,0.247557003257329 +60816021002,118736,0.214983713355049 +60816021003,112139,0.230519480519481 +60816021003,112912,0.0876623376623377 +60816021003,112913,0.0811688311688312 +60816021003,113882,0.237012987012987 +60816021003,113883,0.24025974025974 +60816021003,118737,0.123376623376623 +60816022001,111415,0.0997442455242967 +60816022001,111417,0.112531969309463 +60816022001,112252,0.0997442455242967 +60816022001,112253,0.112531969309463 +60816022001,112254,0.260869565217391 +60816022001,112255,0.120204603580563 +60816022001,113136,0.194373401534527 +60816022002,112670,0.0445344129554656 +60816022002,112671,0.0708502024291498 +60816022002,112674,0.0546558704453441 +60816022002,112908,0.0850202429149798 +60816022002,112909,0.0546558704453441 +60816022002,113880,0.153846153846154 +60816022002,113881,0.153846153846154 +60816022002,114450,0.0323886639676113 +60816022002,114794,0.0809716599190283 +60816022002,115316,0.0101214574898785 +60816022002,117406,0.145748987854251 +60816022002,117831,0 +60816022002,118362,0.0222672064777328 +60816022002,118364,0.0910931174089069 +60816022003,110472,0.0501930501930502 +60816022003,111004,0.0772200772200772 +60816022003,111838,0.0836550836550837 +60816022003,111978,0.118404118404118 +60816022003,111981,0.0810810810810811 +60816022003,113465,0.0437580437580438 +60816022003,113695,0.0913770913770914 +60816022003,114235,0.0785070785070785 +60816022003,115314,0.0952380952380952 +60816022003,115315,0.0334620334620335 +60816022003,117263,0.109395109395109 +60816022003,117407,0.045045045045045 +60816022003,117410,0.0553410553410553 +60816022003,117411,0.0373230373230373 +60816022004,111285,0.0988235294117647 +60816022004,111834,0.104705882352941 +60816022004,111835,0.0694117647058824 +60816022004,113682,0.0964705882352941 +60816022004,113684,0.0823529411764706 +60816022004,115714,0.295294117647059 +60816022004,116254,0.0635294117647059 +60816022004,116259,0.0482352941176471 +60816022004,117255,0.0576470588235294 +60816022004,117262,0.0835294117647059 +60816023001,0,0 +60816023001,110471,0 +60816023001,110474,0 +60816023001,110619,0 +60816023001,110620,0 +60816023001,110697,0.0482041587901701 +60816023001,110707,0 +60816023001,111003,0.0604914933837429 +60816023001,111067,0 +60816023001,111069,0 +60816023001,111075,0 +60816023001,111290,0.0311909262759924 +60816023001,111429,0.0217391304347826 +60816023001,111836,0.0482041587901701 +60816023001,111839,0.0179584120982987 +60816023001,111840,0 +60816023001,111913,0.0472589792060491 +60816023001,111980,0 +60816023001,111982,0.000945179584120983 +60816023001,112268,0 +60816023001,112669,0 +60816023001,112768,0.0425330812854442 +60816023001,112915,0.055765595463138 +60816023001,113053,0 +60816023001,113227,0 +60816023001,113324,0.0226843100189036 +60816023001,113468,0 +60816023001,113691,0.0189035916824197 +60816023001,113694,0.0283553875236295 +60816023001,113886,0.0642722117202268 +60816023001,114033,0 +60816023001,114101,0.194706994328922 +60816023001,114236,0.0283553875236295 +60816023001,114449,0.00945179584120983 +60816023001,114451,0 +60816023001,114800,0 +60816023001,115044,0.0274102079395085 +60816023001,115200,0 +60816023001,115318,0 +60816023001,115319,0 +60816023001,115867,0.000945179584120983 +60816023001,115964,0 +60816023001,116261,0.0151228733459357 +60816023001,116263,0 +60816023001,116264,0.0207939508506616 +60816023001,116265,0.0245746691871456 +60816023001,116693,0.0283553875236295 +60816023001,116705,0.0359168241965974 +60816023001,117101,0.0387523629489603 +60816023001,117408,0 +60816023001,117477,0 +60816023001,117671,0.0198487712665406 +60816023001,117674,0 +60816023001,117675,0 +60816023001,118166,0 +60816023001,118267,0 +60816023001,118363,0 +60816023001,118365,0 +60816023001,118367,0 +60816023001,118415,0 +60816023001,118717,0 +60816023001,118799,0.000945179584120983 +60816023001,118932,0.0463137996219282 +60816024001,110537,0.165841584158416 +60816024001,111428,0.512376237623762 +60816024001,112772,0.111386138613861 +60816024001,112976,0.0668316831683168 +60816024001,117259,0.0693069306930693 +60816024001,118933,0.0742574257425743 +60816024002,111001,0.0433070866141732 +60816024002,111289,0.0485564304461942 +60816024002,111425,0.041994750656168 +60816024002,111426,0.0538057742782152 +60816024002,111430,0.0511811023622047 +60816024002,111567,0.0564304461942257 +60816024002,111984,0.0511811023622047 +60816024002,111985,0.0236220472440945 +60816024002,113951,0.0958005249343832 +60816024002,114237,0.036745406824147 +60816024002,114238,0.0406824146981627 +60816024002,116267,0.0721784776902887 +60816024002,117261,0.036745406824147 +60816024002,117265,0.0511811023622047 +60816024002,117266,0.0354330708661417 +60816024002,117676,0.031496062992126 +60816024002,117677,0.0485564304461942 +60816024002,118034,0.181102362204724 +60816024003,110536,0.14622641509434 +60816024003,111419,0.0518867924528302 +60816024003,111420,0.0723270440251572 +60816024003,112767,0.419811320754717 +60816024003,112770,0.0408805031446541 +60816024003,116255,0.10377358490566 +60816024003,116256,0.0141509433962264 +60816024003,117096,0.0534591194968553 +60816024003,117097,0.0424528301886792 +60816024003,117102,0.0550314465408805 +60816024004,110696,0.00117508813160987 +60816024004,110996,0.0282021151586369 +60816024004,111000,0.0446533490011751 +60816024004,111421,0.0740305522914219 +60816024004,111422,0.0399529964747356 +60816024004,111424,0.0340775558166862 +60816024004,111869,0.0235017626321974 +60816024004,113687,0.0258519388954172 +60816024004,113688,0.0188014101057579 +60816024004,114664,0.332549941245593 +60816024004,115186,0.063454759106933 +60816024004,116257,0.0376028202115159 +60816024004,116260,0.132784958871915 +60816024004,117256,0.0552291421856639 +60816024004,117258,0.00235017626321974 +60816024004,117631,0.0434782608695652 +60816024004,118931,0.0423031727379553 +60816025001,110709,0.126482213438735 +60816025001,110852,0.0691699604743083 +60816025001,110854,0.0948616600790514 +60816025001,113125,0.0671936758893281 +60816025001,116683,0.0731225296442688 +60816025001,116685,0.314229249011858 +60816025001,116686,0.0612648221343874 +60816025001,119227,0.0988142292490119 +60816025001,119228,0.0948616600790514 +60816025002,111138,0.112941176470588 +60816025002,111277,0.08 +60816025002,111699,0.103529411764706 +60816025002,112055,0.0847058823529412 +60816025002,112244,0.143529411764706 +60816025002,116126,0.0658823529411765 +60816025002,116128,0.08 +60816025002,116682,0.0988235294117647 +60816025002,118029,0.0470588235294118 +60816025002,118044,0.0917647058823529 +60816025002,118713,0.0917647058823529 +60816025003,111700,0.447841726618705 +60816025003,113129,0.052158273381295 +60816025003,115042,0.449640287769784 +60816025003,115324,0.0503597122302158 +60816026001,112053,0.0764044943820225 +60816026001,113152,0.123595505617978 +60816026001,115724,0.440449438202247 +60816026001,116110,0.298876404494382 +60816026001,118708,0.0606741573033708 +60816026002,111006,0.412578616352201 +60816026002,118046,0.587421383647799 +60816026003,114894,0.261627906976744 +60816026003,116125,0.0267441860465116 +60816026003,118050,0 +60816026003,118580,0.711627906976744 +60816026004,115580,0.411247803163445 +60816026004,115974,0.588752196836555 +60816027001,111940,1 +60816027002,111938,0.109126984126984 +60816027002,112987,0.890873015873016 +60816027003,111583,0.101010101010101 +60816027003,112049,0.141414141414141 +60816027003,113415,0.163636363636364 +60816027003,114390,0.311111111111111 +60816027003,114520,0.0787878787878788 +60816027003,117071,0.0585858585858586 +60816027003,117905,0.0828282828282828 +60816027003,117906,0.0626262626262626 +60816027004,111575,0.0524271844660194 +60816027004,112607,0.203883495145631 +60816027004,116116,0.194174757281553 +60816027004,117903,0.401941747572816 +60816027004,119178,0.147572815533981 +60816028001,112605,0.185840707964602 +60816028001,116489,0.103244837758112 +60816028001,117336,0.469026548672566 +60816028001,117624,0.0324483775811209 +60816028001,118119,0.0530973451327434 +60816028001,118284,0.156342182890855 +60816028002,111937,0.0612980769230769 +60816028002,112978,0.344951923076923 +60816028002,113414,0.0552884615384615 +60816028002,113831,0.0300480769230769 +60816028002,116346,0.0516826923076923 +60816028002,116500,0.0228365384615385 +60816028002,116901,0.0600961538461538 +60816028002,117275,0.0661057692307692 +60816028002,118650,0.0564903846153846 +60816028002,119163,0.251201923076923 +60816028003,112462,0.144736842105263 +60816028003,112463,0.164473684210526 +60816028003,113965,0.164473684210526 +60816028003,114386,0.184210526315789 +60816028003,114674,0.342105263157895 +60816029001,0,0 +60816029001,110691,0.0274111675126904 +60816029001,112048,0.0426395939086294 +60816029001,112461,0.0365482233502538 +60816029001,113835,0.0456852791878173 +60816029001,113887,0.0385786802030457 +60816029001,116349,0.241624365482233 +60816029001,116350,0.0324873096446701 +60816029001,117058,0.016243654822335 +60816029001,118116,0.275126903553299 +60816029001,118655,0.0395939086294416 +60816029001,118809,0.0598984771573604 +60816029001,118811,0.0213197969543147 +60816029001,119167,0.0436548223350254 +60816029001,119168,0.0385786802030457 +60816029001,119169,0.0121827411167513 +60816029001,119170,0.0284263959390863 +60816029002,112464,0.0361842105263158 +60816029002,112465,0.0328947368421053 +60816029002,112466,0.0970394736842105 +60816029002,112468,0.0526315789473684 +60816029002,113967,0.0361842105263158 +60816029002,113968,0.0855263157894737 +60816029002,113969,0.179276315789474 +60816029002,115386,0.174342105263158 +60816029002,116351,0.0164473684210526 +60816029002,116353,0.0526315789473684 +60816029002,117059,0.0427631578947368 +60816029002,117060,0.0328947368421053 +60816029002,117061,0.0361842105263158 +60816029002,118812,0.0444078947368421 +60816029002,118815,0.0394736842105263 +60816029002,119171,0.0411184210526316 +60816030001,112459,0.0450751252086811 +60816030001,112984,0.0567612687813022 +60816030001,117070,0.0317195325542571 +60816030001,117351,0.0350584307178631 +60816030001,117471,0.736227045075125 +60816030001,118824,0.0951585976627713 +60816030002,110553,0.151603498542274 +60816030002,112983,0.513119533527697 +60816030002,112985,0.128279883381924 +60816030002,112995,0.0466472303206997 +60816030002,113538,0.0291545189504373 +60816030002,118823,0.131195335276968 +60816030003,110551,0.137724550898204 +60816030003,110552,0.0508982035928144 +60816030003,110692,0.317365269461078 +60816030003,114529,0.194610778443114 +60816030003,117348,0.29940119760479 +60816030004,0,0 +60816030004,112469,0.0419463087248322 +60816030004,112470,0.0553691275167785 +60816030004,113971,0.0956375838926175 +60816030004,114378,0.208053691275168 +60816030004,114380,0.0620805369127517 +60816030004,116354,0.0218120805369128 +60816030004,116903,0.0671140939597315 +60816030004,116904,0.0335570469798658 +60816030004,117063,0.0620805369127517 +60816030004,117340,0.0453020134228188 +60816030004,117470,0.0352348993288591 +60816030004,117696,0 +60816030004,118816,0.0738255033557047 +60816030004,119100,0.13758389261745 +60816030004,119173,0.0604026845637584 +60816031001,111299,0.811066126855601 +60816031001,114679,0.0107962213225371 +60816031001,115054,0.0431848852901484 +60816031001,115433,0.0958164642375169 +60816031001,118572,0.039136302294197 +60816031002,0,0 +60816031002,110554,0.0686868686868687 +60816031002,111354,0.187878787878788 +60816031002,112996,0.0606060606060606 +60816031002,113953,0.256565656565657 +60816031002,114898,0.0545454545454545 +60816031002,114909,0.105050505050505 +60816031002,117072,0.0464646464646465 +60816031002,118571,0.22020202020202 +60816031002,119084,0 +60816032001,114526,0.070281124497992 +60816032001,114527,0.242971887550201 +60816032001,114528,0.0461847389558233 +60816032001,114908,0.070281124497992 +60816032001,115418,0.224899598393574 +60816032001,117487,0.0943775100401607 +60816032001,117901,0.204819277108434 +60816032001,119183,0.0461847389558233 +60816032002,111914,0 +60816032002,114522,0.126050420168067 +60816032002,114524,0.319327731092437 +60816032002,117074,0.109243697478992 +60816032002,118697,0.445378151260504 +60816032003,112991,0.0826210826210826 +60816032003,112992,0.216524216524217 +60816032003,114523,0.233618233618234 +60816032003,117634,0.165242165242165 +60816032003,118822,0.0626780626780627 +60816032003,118825,0.0598290598290598 +60816032003,118826,0.0712250712250712 +60816032003,119182,0.108262108262108 +60816032004,0,0 +60816032004,110919,0.144542772861357 +60816032004,112261,0.00589970501474926 +60816032004,114106,0.47787610619469 +60816032004,114521,0.00589970501474926 +60816032004,116112,0 +60816032004,117636,0.0412979351032448 +60816032004,117908,0.215339233038348 +60816032004,119181,0.109144542772861 +60816033001,111288,0.440559440559441 +60816033001,111581,0.0853146853146853 +60816033001,115055,0.0447552447552448 +60816033001,115434,0.0517482517482517 +60816033001,116911,0.0783216783216783 +60816033001,117109,0.198601398601399 +60816033001,117652,0.0643356643356643 +60816033001,118439,0.0363636363636364 +60816033002,110549,0.0622171945701357 +60816033002,111134,0.0384615384615385 +60816033002,111148,0.100678733031674 +60816033002,113555,0.16289592760181 +60816033002,114366,0.139140271493213 +60816033002,117488,0.0328054298642534 +60816033002,117492,0.0260180995475113 +60816033002,117911,0.193438914027149 +60816033002,118437,0.244343891402715 +60816033003,110550,0.122194513715711 +60816033003,111486,0.199501246882793 +60816033003,111490,0.239401496259352 +60816033003,112456,0.172069825436409 +60816033003,113556,0.027431421446384 +60816033003,114507,0.0635910224438903 +60816033003,115435,0.043640897755611 +60816033003,117489,0.0448877805486284 +60816033003,118169,0.0523690773067332 +60816033003,118274,0 +60816033003,118441,0.0349127182044888 +60816034001,111304,0 +60816034001,112457,0.675590551181102 +60816034001,116268,0.0708661417322835 +60816034001,116831,0.0929133858267717 +60816034001,116834,0.100787401574803 +60816034001,117633,0.0598425196850394 +60816034002,111574,0.0850515463917526 +60816034002,112977,0.847938144329897 +60816034002,117822,0.0670103092783505 +60816034002,118168,0 +60816034003,110943,0.124248496993988 +60816034003,116832,0.142284569138277 +60816034003,118170,0.210420841683367 +60816034003,118936,0.140280561122244 +60816034003,118944,0.382765531062124 +60816034004,114098,0.390542907180385 +60816034004,115056,0.495621716287215 +60816034004,116922,0.0840630472854641 +60816034004,118943,0.0297723292469352 +60816037001,110853,0.161856963613551 +60816037001,110855,0.0564617314930991 +60816037001,110856,0.0451693851944793 +60816037001,112246,0.0664993726474279 +60816037001,112248,0.0915934755332497 +60816037001,112791,0.0752823086574655 +60816037001,113127,0.0313676286072773 +60816037001,115695,0.0338770388958595 +60816037001,116127,0.132998745294856 +60816037001,116528,0.0614805520702635 +60816037001,116529,0.0200752823086575 +60816037001,116533,0.0514429109159348 +60816037001,116687,0.0476787954830615 +60816037001,119229,0.0439146800501882 +60816037001,119230,0.0803011292346299 +60816037002,110998,0.0548245614035088 +60816037002,111571,0.0493421052631579 +60816037002,111573,0.0383771929824561 +60816037002,112771,0.0789473684210526 +60816037002,113327,0.0515350877192982 +60816037002,113689,0.0581140350877193 +60816037002,114103,0.0197368421052632 +60816037002,114373,0.0526315789473684 +60816037002,115185,0.0570175438596491 +60816037002,115988,0.103070175438596 +60816037002,116530,0.0230263157894737 +60816037002,116534,0.190789473684211 +60816037002,116689,0.0394736842105263 +60816037002,116830,0.0285087719298246 +60816037002,117257,0.0460526315789474 +60816037002,117679,0.0416666666666667 +60816037002,117819,0.0339912280701754 +60816037002,117820,0.0328947368421053 +60816038011,114785,1 +60816038021,111144,0 +60816038021,111576,0.150173611111111 +60816038021,111992,0.0833333333333333 +60816038021,111994,0.0190972222222222 +60816038021,112136,0.0321180555555556 +60816038021,112387,0.0755208333333333 +60816038021,113333,0.0381944444444444 +60816038021,113396,0.112847222222222 +60816038021,113872,0.0251736111111111 +60816038021,114516,0.0434027777777778 +60816038021,115555,0.1171875 +60816038021,116835,0.0390625 +60816038021,118157,0.239583333333333 +60816038021,118202,0.0243055555555556 +60816038022,111149,0.0382081686429512 +60816038022,111572,0.0263504611330698 +60816038022,111848,0.111989459815547 +60816038022,111849,0.0382081686429512 +60816038022,111991,0.0895915678524374 +60816038022,112124,0.0408432147562582 +60816038022,112126,0.0764163372859025 +60816038022,113329,0.0447957839262187 +60816038022,113331,0.0368906455862978 +60816038022,113332,0.0461133069828722 +60816038022,116684,0.069828722002635 +60816038022,117494,0.0355731225296443 +60816038022,117680,0.0487483530961792 +60816038022,117682,0.0421607378129117 +60816038022,117683,0.0395256916996047 +60816038022,117902,0.214756258234519 +60816039001,110624,0.0555555555555556 +60816039001,111078,0.166666666666667 +60816039001,111079,0.158730158730159 +60816039001,113627,0.134920634920635 +60816039001,114042,0.0833333333333333 +60816039001,114043,0.170634920634921 +60816039001,114168,0.115079365079365 +60816039001,117983,0.115079365079365 +60816039002,111627,0.0696095076400679 +60816039002,113462,0.0441426146010187 +60816039002,114183,0.0865874363327674 +60816039002,114184,0.0916808149405773 +60816039002,114324,0.00169779286926995 +60816039002,114599,0.067911714770798 +60816039002,114600,0.0780984719864177 +60816039002,114602,0.0797962648556876 +60816039002,114603,0.0764006791171477 +60816039002,115179,0.132427843803056 +60816039002,115868,0.0780984719864177 +60816039002,116050,0.0848896434634974 +60816039002,116053,0.0509337860780985 +60816039002,116417,0.0577249575551783 +60816039003,116051,0.163333333333333 +60816039003,118032,0.76 +60816039003,118159,0.0766666666666667 +60816039004,112135,0.226890756302521 +60816039004,113768,0.126050420168067 +60816039004,114041,0.184873949579832 +60816039004,117982,0.130252100840336 +60816039004,118201,0.163865546218487 +60816039004,118492,0.168067226890756 +60816039005,112395,0.140287769784173 +60816039005,112514,0.136690647482014 +60816039005,113877,0.133093525179856 +60816039005,114788,0.151079136690647 +60816039005,117981,0.161870503597122 +60816039005,118199,0.133093525179856 +60816039005,118200,0.143884892086331 +60816039006,110916,1 +60816040001,110622,0 +60816040001,110623,0.274914089347079 +60816040001,113464,0.202749140893471 +60816040001,113624,0.0824742268041237 +60816040001,113625,0.0240549828178694 +60816040001,114038,0 +60816040001,115870,0.116838487972509 +60816040001,116837,0.298969072164948 +60816040002,112133,0.0603248259860789 +60816040002,112393,0.392111368909513 +60816040002,113767,0.0881670533642691 +60816040002,113876,0.0672853828306264 +60816040002,117980,0.0928074245939675 +60816040002,118419,0.299303944315545 +60816040003,112132,0.0619047619047619 +60816040003,112134,0.142857142857143 +60816040003,112391,0.0619047619047619 +60816040003,112396,0.180952380952381 +60816040003,113873,0.0690476190476191 +60816040003,114787,0.0690476190476191 +60816040003,116838,0.204761904761905 +60816040003,116839,0.0619047619047619 +60816040003,118700,0.0642857142857143 +60816040003,118701,0.0833333333333333 +60816041011,111624,0.0100430416068867 +60816041011,111628,0.0530846484935438 +60816041011,112778,0.100430416068867 +60816041011,113142,0.0602582496413199 +60816041011,113319,0.0961262553802009 +60816041011,113320,0.0674318507890961 +60816041011,113321,0.0401721664275466 +60816041011,114185,0.084648493543759 +60816041011,114186,0.0329985652797704 +60816041011,114595,0.0961262553802009 +60816041011,114596,0.0114777618364419 +60816041011,114597,0.0129124820659971 +60816041011,114598,0.078909612625538 +60816041011,116415,0.137733142037303 +60816041011,118512,0.117647058823529 +60816041012,111630,0.0648379052369077 +60816041012,112177,0.0623441396508728 +60816041012,112577,0.0598503740648379 +60816041012,113781,0.0423940149625935 +60816041012,114325,0.0660847880299252 +60816041012,114327,0.0885286783042394 +60816041012,114728,0.0423940149625935 +60816041012,115107,0.0610972568578554 +60816041012,115494,0.0386533665835411 +60816041012,115966,0.0872817955112219 +60816041012,116058,0.0473815461346633 +60816041012,116059,0.0349127182044888 +60816041012,116419,0.071072319201995 +60816041012,116420,0.0760598503740648 +60816041012,118579,0.0411471321695761 +60816041012,119013,0.0673316708229426 +60816041012,119088,0.0486284289276808 +60816041013,110477,0.0705882352941176 +60816041013,110478,0.0245098039215686 +60816041013,110480,0.0666666666666667 +60816041013,111625,0.00784313725490196 +60816041013,112513,0 +60816041013,113056,0.0362745098039216 +60816041013,113057,0.042156862745098 +60816041013,113058,0.0333333333333333 +60816041013,113471,0.0411764705882353 +60816041013,113472,0.0274509803921569 +60816041013,113473,0.0441176470588235 +60816041013,113626,0.00294117647058824 +60816041013,113779,0.00882352941176471 +60816041013,114037,0.0254901960784314 +60816041013,114039,0.0490196078431373 +60816041013,114040,0.00490196078431373 +60816041013,115311,0.0303921568627451 +60816041013,115321,0.0303921568627451 +60816041013,115492,0.0382352941176471 +60816041013,115493,0.0549019607843137 +60816041013,115873,0.0441176470588235 +60816041013,117413,0.125490196078431 +60816041013,117978,0.0411764705882353 +60816041013,117979,0.0509803921568627 +60816041013,118514,0 +60816041013,118806,0.000980392156862745 +60816041013,118872,0.0362745098039216 +60816041013,118875,0.0617647058823529 +60816041021,111841,0.0973180076628353 +60816041021,111844,0 +60816041021,111987,0.0689655172413793 +60816041021,111988,0.522605363984674 +60816041021,111989,0 +60816041021,112083,0.182375478927203 +60816041021,112131,0 +60816041021,112388,0 +60816041021,114241,0 +60816041021,114242,0 +60816041021,114243,0 +60816041021,114250,0 +60816041021,114968,0 +60816041021,115965,0 +60816041021,116119,0 +60816041021,117100,0 +60816041021,117685,0 +60816041021,118033,0.128735632183908 +60816041021,118879,0 +60816041021,119251,0 +60816042001,110621,0 +60816042001,112080,0 +60816042001,113060,0.101123595505618 +60816042001,113211,0.101123595505618 +60816042001,113470,0.0674157303370786 +60816042001,113764,0.187265917602996 +60816042001,115865,0.142322097378277 +60816042001,117415,0.149812734082397 +60816042001,117416,0.123595505617978 +60816042001,117974,0.127340823970037 +60816042002,110481,0.076271186440678 +60816042002,113466,0.5 +60816042002,115178,0 +60816042002,115322,0.415254237288136 +60816042002,118876,0.00847457627118644 +60816042003,110482,0.0673575129533679 +60816042003,110483,0.0673575129533679 +60816042003,111066,0.0604490500863558 +60816042003,111564,0.0518134715025907 +60816042003,113476,0.0535405872193437 +60816042003,114182,0.0552677029360967 +60816042003,114375,0.326424870466321 +60816042003,114594,0.0621761658031088 +60816042003,115866,0.0621761658031088 +60816042003,115869,0.0984455958549223 +60816042003,116414,0.0500863557858377 +60816042003,118035,0 +60816042003,118513,0.0449050086355786 +60816044001,111221,0.0310077519379845 +60816044001,111224,0.0294573643410853 +60816044001,111626,0.0310077519379845 +60816044001,112180,0.048062015503876 +60816044001,114652,0.127131782945736 +60816044001,115108,0.0806201550387597 +60816044001,115967,0.128682170542636 +60816044001,116061,0.0806201550387597 +60816044001,116062,0.272868217054264 +60816044001,116421,0.0511627906976744 +60816044001,119014,0.11937984496124 +60816044002,0,0 +60816044002,111294,0 +60816044002,111775,0.117801047120419 +60816044002,112704,0.0732984293193717 +60816044002,112705,0.0680628272251309 +60816044002,113261,0 +60816044002,113262,0 +60816044002,114867,0 +60816044002,115119,0.0785340314136126 +60816044002,115390,0.0680628272251309 +60816044002,115401,0.0680628272251309 +60816044002,115798,0 +60816044002,116988,0.0732984293193717 +60816044002,117046,0.06282722513089 +60816044002,117563,0.0680628272251309 +60816044002,118416,0.12303664921466 +60816044002,118803,0.198952879581152 +60816044003,111361,0 +60816044003,112181,0.0517799352750809 +60816044003,112182,0 +60816044003,112789,0.131067961165049 +60816044003,112855,0.0242718446601942 +60816044003,113259,0.0906148867313916 +60816044003,115109,0.0728155339805825 +60816044003,115124,0.0550161812297735 +60816044003,115789,0 +60816044003,115790,0.0177993527508091 +60816044003,115791,0.106796116504854 +60816044003,115935,0.210355987055016 +60816044003,116974,0 +60816044003,116990,0.0307443365695793 +60816044003,117179,0.087378640776699 +60816044003,117560,0.121359223300971 +60816045001,111217,0.223880597014925 +60816045001,114604,0.104477611940299 +60816045001,116054,0.119402985074627 +60816045001,116055,0.348258706467662 +60816045001,119010,0.203980099502488 +60816045002,111216,0.11340206185567 +60816045002,111629,0.195876288659794 +60816045002,113785,0.154639175257732 +60816045002,114725,0.326460481099656 +60816045002,116056,0.0927835051546392 +60816045002,119009,0.116838487972509 +60816045003,111220,0.027027027027027 +60816045003,111864,0.0466830466830467 +60816045003,112175,0.0503685503685504 +60816045003,112515,0.0479115479115479 +60816045003,112579,0.0221130221130221 +60816045003,113334,0.0380835380835381 +60816045003,114323,0.097051597051597 +60816045003,114370,0.119164619164619 +60816045003,115925,0.251842751842752 +60816045003,116063,0.230958230958231 +60816045003,118160,0.0687960687960688 +60816046001,112137,0.080078125 +60816046001,112397,0.068359375 +60816046001,112580,0.041015625 +60816046001,113878,0.052734375 +60816046001,114111,0.068359375 +60816046001,116052,0.06640625 +60816046001,116120,0.04296875 +60816046001,116416,0.064453125 +60816046001,116840,0.076171875 +60816046001,116841,0.072265625 +60816046001,118203,0.06640625 +60816046001,118418,0.2421875 +60816046001,119008,0.05859375 +60816046002,112900,0.221130221130221 +60816046002,112901,0.058968058968059 +60816046002,114515,0.265356265356265 +60816046002,114653,0.137592137592138 +60816046002,114868,0.248157248157248 +60816046002,114870,0.0687960687960688 +60816047001,110776,0.0439739413680782 +60816047001,110777,0.0325732899022801 +60816047001,111679,0.0407166123778502 +60816047001,114371,0.0895765472312704 +60816047001,114871,0.0635179153094463 +60816047001,114872,0.0358306188925081 +60816047001,114873,0.0993485342019544 +60816047001,115120,0.0309446254071661 +60816047001,115121,0.0488599348534202 +60816047001,116617,0.136807817589577 +60816047001,118204,0.37785016286645 +60816047002,114727,0.11878453038674 +60816047002,114874,0.160220994475138 +60816047002,115558,0.720994475138122 +60816048001,110626,0.0411280846063455 +60816048001,111225,0.125734430082256 +60816048001,111780,0.0470035252643948 +60816048001,114372,0.0752056404230317 +60816048001,114875,0.113983548766157 +60816048001,115123,0.169212690951821 +60816048001,116064,0.132784958871915 +60816048001,116619,0.144535840188014 +60816048001,116623,0.150411280846063 +60816048002,110778,0.0707070707070707 +60816048002,110779,0.0707070707070707 +60816048002,112327,0.106060606060606 +60816048002,112707,0.0606060606060606 +60816048002,112709,0.0555555555555556 +60816048002,114511,0.186868686868687 +60816048002,114655,0.111111111111111 +60816048002,114659,0 +60816048002,114877,0.0606060606060606 +60816048002,115126,0.0606060606060606 +60816048002,116622,0.0883838383838384 +60816048002,116624,0.0303030303030303 +60816048002,116989,0.053030303030303 +60816048002,117181,0.0454545454545455 +60816048003,110781,0.0698027314112291 +60816048003,110782,0.047040971168437 +60816048003,110784,0.0637329286798179 +60816048003,112711,0.0531107738998483 +60816048003,112856,0.0682852807283763 +60816048003,114876,0.0743550834597876 +60816048003,115127,0.0531107738998483 +60816048003,115253,0.047040971168437 +60816048003,115254,0.0561456752655539 +60816048003,116191,0.0409711684370258 +60816048003,116992,0.103186646433991 +60816048003,117180,0.0743550834597876 +60816048003,117767,0.0424886191198786 +60816048003,117768,0.206373292867982 +60816049001,112328,0.0314285714285714 +60816049001,112329,0.03 +60816049001,112330,0.0485714285714286 +60816049001,112331,0.0842857142857143 +60816049001,112858,0.0728571428571429 +60816049001,115128,0.0514285714285714 +60816049001,115252,0.0414285714285714 +60816049001,115256,0.0314285714285714 +60816049001,115387,0.0785714285714286 +60816049001,115559,0.0414285714285714 +60816049001,116480,0.128571428571429 +60816049001,117186,0.0414285714285714 +60816049001,117187,0.0585714285714286 +60816049001,117188,0.0457142857142857 +60816049001,119246,0.214285714285714 +60816049002,110842,0.0627306273062731 +60816049002,111779,0.103321033210332 +60816049002,112712,0.416974169741697 +60816049002,113394,0.0904059040590406 +60816049002,114510,0.0479704797047971 +60816049002,115170,0.0682656826568266 +60816049002,115258,0.107011070110701 +60816049002,115634,0.033210332103321 +60816049002,118939,0.0701107011070111 +60816050001,112765,0 +60816050001,112859,0.311814859926918 +60816050001,112860,0.0755176613885506 +60816050001,112862,0.0511571254567601 +60816050001,113263,0 +60816050001,113264,0.267965895249695 +60816050001,115936,0.0243605359317905 +60816050001,116194,0.0572472594397077 +60816050001,117564,0.211936662606577 +60816050002,112582,0.0690690690690691 +60816050002,112863,0.0570570570570571 +60816050002,112864,0.15015015015015 +60816050002,112868,0.102102102102102 +60816050002,115561,0.0630630630630631 +60816050002,115794,0.0930930930930931 +60816050002,115795,0.0900900900900901 +60816050002,115938,0.0870870870870871 +60816050002,116196,0.0780780780780781 +60816050002,116197,0.0930930930930931 +60816050002,117776,0.117117117117117 +60816050003,110984,0 +60816050003,111681,0.0364963503649635 +60816050003,111935,0.0302398331595412 +60816050003,111936,0.0229405630865485 +60816050003,112866,0.0396246089676747 +60816050003,113256,0.312825860271116 +60816050003,114658,0.118873826903024 +60816050003,115793,0.00938477580813347 +60816050003,115797,0.00312825860271116 +60816050003,116498,0.0844629822732012 +60816050003,116499,0.0510948905109489 +60816050003,116782,0.0302398331595412 +60816050003,118263,0.0782064650677789 +60816050003,118818,0.0396246089676747 +60816050003,119083,0.0813347236704901 +60816050003,119174,0.0615224191866528 +60816050004,110786,0.0728643216080402 +60816050004,114657,0.0979899497487437 +60816050004,115259,0.14070351758794 +60816050004,115635,0.0954773869346734 +60816050004,115969,0.0527638190954774 +60816050004,116994,0.0904522613065327 +60816050004,117182,0.28643216080402 +60816050004,117184,0.0954773869346734 +60816050004,117189,0.0678391959798995 +60816050005,112129,0.100609756097561 +60816050005,112714,0.112804878048781 +60816050005,112861,0.149390243902439 +60816050005,113265,0.0731707317073171 +60816050005,115389,0.195121951219512 +60816050005,116195,0.125 +60816050005,117549,0.0731707317073171 +60816050005,117550,0.170731707317073 +60816051001,112581,0.194029850746269 +60816051001,113400,0.141791044776119 +60816051001,115562,0.190298507462687 +60816051001,115943,0.100746268656716 +60816051001,118164,0.373134328358209 +60816051002,0,0 +60816051002,111365,0 +60816051002,111933,0.121841155234657 +60816051002,112919,0 +60816051002,112981,0.0595667870036101 +60816051002,113827,0.046028880866426 +60816051002,113973,0.0351985559566787 +60816051002,113974,0.0740072202166065 +60816051002,113975,0.0794223826714801 +60816051002,114681,0 +60816051002,115403,0 +60816051002,115800,0 +60816051002,115802,0.0785198555956679 +60816051002,115947,0.0279783393501805 +60816051002,116192,0 +60816051002,116340,0.0703971119133574 +60816051002,116475,0 +60816051002,116493,0.0568592057761733 +60816051002,116775,0.0243682310469314 +60816051002,117777,0 +60816051002,118105,0 +60816051002,118276,0 +60816051002,118290,0.0252707581227437 +60816051002,118291,0.0956678700361011 +60816051002,118706,0.0243682310469314 +60816051002,118801,0 +60816051002,118820,0.082129963898917 +60816051002,119101,0.000902527075812274 +60816051002,119116,0 +60816051002,119176,0.0974729241877256 +60816052001,113266,0.105820105820106 +60816052001,115801,0.103174603174603 +60816052001,115945,0.0925925925925926 +60816052001,115946,0.105820105820106 +60816052001,118277,0.425925925925926 +60816052001,119087,0.166666666666667 +60816052002,111367,0.203389830508475 +60816052002,111369,0.127118644067797 +60816052002,113267,0.0847457627118644 +60816052002,113268,0.107344632768362 +60816052002,113269,0.121468926553672 +60816052002,113399,0.0169491525423729 +60816052002,115804,0.0988700564971751 +60816052002,115950,0.0649717514124294 +60816052002,116199,0.096045197740113 +60816052002,116200,0.0790960451977401 +60816052003,111364,0.1171875 +60816052003,113401,0.10546875 +60816052003,115175,0.12109375 +60816052003,115803,0.0859375 +60816052003,115949,0.09765625 +60816052003,116198,0.140625 +60816052003,117775,0.17578125 +60816052003,118106,0.15625 +60816052004,111368,0.131147540983607 +60816052004,112867,0.170491803278689 +60816052004,115937,0.226229508196721 +60816052004,115940,0.147540983606557 +60816052004,115948,0.131147540983607 +60816052004,117773,0.0885245901639344 +60816052004,118278,0.104918032786885 +60816053001,110560,0.0541455160744501 +60816053001,112241,0.0829103214890017 +60816053001,112997,0.0727580372250423 +60816053001,113541,0.0575296108291032 +60816053001,113542,0.050761421319797 +60816053001,114914,0.0626057529610829 +60816053001,115048,0.0592216582064298 +60816053001,116915,0.0473773265651438 +60816053001,117066,0.0575296108291032 +60816053001,117347,0.0642978003384095 +60816053001,117637,0.106598984771574 +60816053001,117638,0.0490693739424704 +60816053001,117642,0.0558375634517767 +60816053001,118428,0.121827411167513 +60816053001,118429,0.0575296108291032 +60816053002,110556,0.0689655172413793 +60816053002,110557,0.134796238244514 +60816053002,110683,0.214733542319749 +60816053002,111150,0.0297805642633229 +60816053002,113539,0.0736677115987461 +60816053002,113976,0.0297805642633229 +60816053002,114913,0.0501567398119122 +60816053002,115047,0.0517241379310345 +60816053002,116906,0.0862068965517241 +60816053002,117495,0.189655172413793 +60816053002,117640,0.0125391849529781 +60816053002,118426,0.0579937304075235 +60816053003,110555,0.051980198019802 +60816053003,110928,0.245049504950495 +60816053003,113828,0.0594059405940594 +60816053003,113977,0.099009900990099 +60816053003,116495,0.0792079207920792 +60816053003,116496,0.0643564356435644 +60816053003,116780,0.0618811881188119 +60816053003,118294,0.0643564356435644 +60816053003,118647,0.215346534653465 +60816053003,118648,0.0594059405940594 +60816053004,113412,0.125448028673835 +60816053004,113413,0.229390681003584 +60816053004,116343,0.0824372759856631 +60816053004,116494,0.111111111111111 +60816053004,116497,0.0752688172043011 +60816053004,116779,0.21505376344086 +60816053004,118646,0.161290322580645 +60816054001,110562,0.132867132867133 +60816054001,110564,0.0839160839160839 +60816054001,110937,0.22027972027972 +60816054001,114919,0.13986013986014 +60816054001,114923,0.0699300699300699 +60816054001,117644,0.353146853146853 +60816054002,110568,0.0631578947368421 +60816054002,110569,0.0631578947368421 +60816054002,110570,0.068421052631579 +60816054002,110939,0.0578947368421053 +60816054002,110941,0.0657894736842105 +60816054002,113548,0.0657894736842105 +60816054002,114922,0.0842105263157895 +60816054002,114925,0.0657894736842105 +60816054002,115052,0.0736842105263158 +60816054002,115432,0.0657894736842105 +60816054002,117049,0.0815789473684211 +60816054002,117648,0.0552631578947368 +60816054002,117649,0.0631578947368421 +60816054002,118434,0.0631578947368421 +60816054002,118435,0.0631578947368421 +60816054003,110567,0.0447552447552448 +60816054003,110938,0.0377622377622378 +60816054003,110940,0.0741258741258741 +60816054003,111152,0 +60816054003,113549,0.0657342657342657 +60816054003,113550,0.0391608391608392 +60816054003,114921,0.233566433566434 +60816054003,114924,0.0475524475524476 +60816054003,115050,0.0363636363636364 +60816054003,115051,0.0363636363636364 +60816054003,116920,0.034965034965035 +60816054003,116921,0.0405594405594406 +60816054003,117645,0.118881118881119 +60816054003,117646,0.0629370629370629 +60816054003,117647,0.0615384615384615 +60816054003,118433,0.0657342657342657 +60816054004,110932,0.134903640256959 +60816054004,110934,0.0556745182012848 +60816054004,113543,0.119914346895075 +60816054004,113544,0.0364025695931477 +60816054004,113547,0.0578158458244111 +60816054004,115049,0.0556745182012848 +60816054004,116917,0.134903640256959 +60816054004,116918,0.0920770877944325 +60816054004,117050,0.207708779443255 +60816054004,118431,0.104925053533191 +60816054005,0,0 +60816054005,110930,0.0283870967741936 +60816054005,110931,0.0335483870967742 +60816054005,114514,0 +60816054005,114911,0.0567741935483871 +60816054005,114916,0.0774193548387097 +60816054005,115563,0.0696774193548387 +60816054005,116916,0.0270967741935484 +60816054005,117064,0.0258064516129032 +60816054005,117343,0 +60816054005,117344,0.44 +60816054005,117345,0.203870967741935 +60816054005,117641,0.0374193548387097 +60816054005,118941,0 +60816055001,110561,0.159600997506234 +60816055001,110933,0.0598503740648379 +60816055001,110944,0.172069825436409 +60816055001,111496,0.00374064837905237 +60816055001,114917,0.183915211970075 +60816055001,115436,0.0411471321695761 +60816055001,117497,0.00623441396508728 +60816055001,117500,0 +60816055001,117643,0.18142144638404 +60816055001,118430,0.064214463840399 +60816055001,118945,0.127805486284289 +60816055002,111495,0 +60816055002,112606,0 +60816055002,113558,0.0731707317073171 +60816055002,115059,0.152439024390244 +60816055002,115060,0.207317073170732 +60816055002,117498,0.11280487804878 +60816055002,117502,0 +60816055002,118172,0.140243902439024 +60816055002,118173,0.0304878048780488 +60816055002,118724,0 +60816055002,118946,0.13109756097561 +60816055002,118947,0.11890243902439 +60816055002,118949,0.0335365853658537 +60816055003,111498,0.0515463917525773 +60816055003,111499,0.0283505154639175 +60816055003,113559,0.126288659793814 +60816055003,115061,0.0373711340206186 +60816055003,115062,0.0502577319587629 +60816055003,115437,0.0451030927835052 +60816055003,115438,0 +60816055003,118587,0.0837628865979381 +60816055003,118596,0 +60816055003,118948,0.0399484536082474 +60816055003,118950,0.0760309278350515 +60816055003,118951,0.0373711340206186 +60816055003,118952,0.105670103092784 +60816055003,118953,0.0786082474226804 +60816055003,118954,0 +60816055003,119097,0.0914948453608247 +60816055003,119248,0.14819587628866 +60816056001,110973,0.0105633802816901 +60816056001,111731,0.214788732394366 +60816056001,112006,0.123239436619718 +60816056001,112743,0.140845070422535 +60816056001,115129,0.288732394366197 +60816056001,116387,0.221830985915493 +60816056002,110411,0.189349112426035 +60816056002,110976,0.130177514792899 +60816056002,111733,0.269230769230769 +60816056002,114555,0.269230769230769 +60816056002,115373,0.00591715976331361 +60816056002,115903,0.136094674556213 +60816056003,110972,0.0716049382716049 +60816056003,111734,0.091358024691358 +60816056003,112208,0.128395061728395 +60816056003,112489,0.116049382716049 +60816056003,113582,0.118518518518519 +60816056003,114153,0.128395061728395 +60816056003,115838,0.11358024691358 +60816056003,118142,0.0839506172839506 +60816056003,118475,0.0246913580246914 +60816056003,118845,0.123456790123457 +60816056004,110069,0.0442176870748299 +60816056004,110409,0.072562358276644 +60816056004,110410,0.00453514739229025 +60816056004,110413,0.0646258503401361 +60816056004,110414,0.0464852607709751 +60816056004,111969,0.0476190476190476 +60816056004,112488,0.0204081632653061 +60816056004,112883,0.0941043083900227 +60816056004,112885,0.0328798185941043 +60816056004,112887,0.0555555555555556 +60816056004,113431,0.0306122448979592 +60816056004,113518,0.036281179138322 +60816056004,113698,0.146258503401361 +60816056004,116078,0.104308390022676 +60816056004,116101,0.0521541950113379 +60816056004,116236,0.0442176870748299 +60816056004,116237,0.0238095238095238 +60816056004,116238,0.0385487528344671 +60816056004,116802,0.0306122448979592 +60816056004,118138,0.0102040816326531 +60816057001,110753,0.0753246753246753 +60816057001,110754,0.0649350649350649 +60816057001,112342,0.137662337662338 +60816057001,112528,0.194805194805195 +60816057001,112681,0.127272727272727 +60816057001,113178,0.038961038961039 +60816057001,113375,0.0467532467532468 +60816057001,114702,0.0727272727272727 +60816057001,115233,0.0753246753246753 +60816057001,116428,0.0831168831168831 +60816057001,117043,0.0831168831168831 +60816057002,111949,0.285046728971963 +60816057002,114934,0.179906542056075 +60816057002,115601,0.088785046728972 +60816057002,115602,0.0537383177570093 +60816057002,117038,0.0490654205607477 +60816057002,118979,0.343457943925234 +60816057003,111591,0.132411067193676 +60816057003,112039,0.0316205533596838 +60816057003,112101,0.0375494071146245 +60816057003,112744,0.254940711462451 +60816057003,113904,0.223320158102767 +60816057003,114157,0.0434782608695652 +60816057003,115091,0.0691699604743083 +60816057003,115471,0.104743083003953 +60816057003,118976,0.102766798418972 +60816057004,111590,0.291845493562232 +60816057004,111735,0.148068669527897 +60816057004,112096,0.182403433476395 +60816057004,112303,0.150214592274678 +60816057004,114429,0.092274678111588 +60816057004,117523,0.126609442060086 +60816057004,118076,0.00858369098712446 +60816058001,111029,0.0890052356020942 +60816058001,111534,0.0968586387434555 +60816058001,111736,0.151832460732984 +60816058001,112630,0.371727748691099 +60816058001,113590,0.138743455497382 +60816058001,114557,0.0418848167539267 +60816058001,117524,0.109947643979058 +60816058002,113591,0.0857908847184987 +60816058002,113592,0.0616621983914209 +60816058002,114223,0.211796246648794 +60816058002,117526,0.0509383378016086 +60816058002,118074,0.378016085790885 +60816058002,118981,0.211796246648794 +60816058003,111551,0.0925925925925926 +60816058003,111737,0.307407407407407 +60816058003,113587,0.103703703703704 +60816058003,113588,0.0962962962962963 +60816058003,114556,0.1 +60816058003,114558,0.111111111111111 +60816058003,114943,0.107407407407407 +60816058003,118473,0.0814814814814815 +60816059001,110977,0.0857142857142857 +60816059001,111594,0.0755102040816327 +60816059001,112140,0.0326530612244898 +60816059001,112306,0.0724489795918367 +60816059001,112308,0.0938775510204082 +60816059001,112628,0.0836734693877551 +60816059001,114701,0.0346938775510204 +60816059001,115604,0.0744897959183674 +60816059001,117525,0.195918367346939 +60816059001,118080,0.0408163265306122 +60816059001,118081,0.0908163265306123 +60816059001,118980,0.00510204081632653 +60816059001,118983,0.114285714285714 +60816059002,110745,0.0466867469879518 +60816059002,110748,0.105421686746988 +60816059002,111595,0.0647590361445783 +60816059002,112141,0.0828313253012048 +60816059002,112307,0.141566265060241 +60816059002,112641,0.103915662650602 +60816059002,112642,0.0978915662650602 +60816059002,113373,0.100903614457831 +60816059002,114703,0.0542168674698795 +60816059002,117143,0.0542168674698795 +60816059002,117144,0.147590361445783 +60816059003,110751,0.103485838779956 +60816059003,110752,0.189542483660131 +60816059003,113179,0.104575163398693 +60816059003,113186,0.137254901960784 +60816059003,115231,0.122004357298475 +60816059003,116168,0.0664488017429194 +60816059003,116169,0.120915032679739 +60816059003,119144,0.155773420479303 +60816060001,113027,0.677802524127691 +60816060001,113581,0.0601336302895323 +60816060001,114421,0.0512249443207127 +60816060001,115031,0.0616184112843356 +60816060001,117456,0.0727542687453601 +60816060001,118684,0.0267260579064588 +60816060001,118685,0.0244988864142539 +60816060001,119034,0.0252412769116555 +60816060002,112143,0.0579345088161209 +60816060002,113372,0.0541561712846348 +60816060002,116018,0.0755667506297229 +60816060002,116019,0.0957178841309824 +60816060002,116213,0.220403022670025 +60816060002,116695,0.0554156171284635 +60816060002,118082,0.0755667506297229 +60816060002,118984,0.132241813602015 +60816060002,119249,0.232997481108312 +60816061001,0,0 +60816061001,110600,0.0658857979502196 +60816061001,110897,0.206442166910688 +60816061001,113190,0.0644216691068814 +60816061001,114423,0.427525622254758 +60816061001,114552,0.215226939970717 +60816061001,117937,0.020497803806735 +60816061002,110792,0.0797101449275362 +60816061002,110970,0.0942028985507246 +60816061002,111200,0.0966183574879227 +60816061002,115545,0.263285024154589 +60816061002,116746,0.0821256038647343 +60816061002,117005,0.0483091787439614 +60816061002,117318,0.0990338164251208 +60816061002,117520,0.0893719806763285 +60816061002,118448,0.0942028985507246 +60816061002,118602,0.0531400966183575 +60816061003,111517,0.0952380952380952 +60816061003,111721,0.226190476190476 +60816061003,112346,0.226190476190476 +60816061003,114851,0.0833333333333333 +60816061003,115241,0.0674603174603175 +60816061003,115591,0.0833333333333333 +60816061003,116388,0.146825396825397 +60816061003,118449,0.0714285714285714 +60816062001,110749,0.116788321167883 +60816062001,110750,0.1338199513382 +60816062001,111329,0.0924574209245742 +60816062001,111330,0.0340632603406326 +60816062001,111331,0.0754257907542579 +60816062001,113185,0.0802919708029197 +60816062001,113380,0.24330900243309 +60816062001,116738,0.0924574209245742 +60816062001,117148,0.0632603406326034 +60816062001,119151,0.0681265206812652 +60816062002,111332,0.0777957860615883 +60816062002,112685,0.0729335494327391 +60816062002,112688,0.0761750405186386 +60816062002,113184,0.0632090761750405 +60816062002,113382,0.059967585089141 +60816062002,113383,0.0567260940032415 +60816062002,115237,0.0826580226904376 +60816062002,116739,0.0972447325769854 +60816062002,116740,0.0421393841166937 +60816062002,116741,0.0810372771474878 +60816062002,116742,0.0761750405186386 +60816062002,117145,0.0291734197730956 +60816062002,117149,0.0486223662884927 +60816062002,119150,0.0729335494327391 +60816062002,119153,0.0632090761750405 +60816062003,110898,0.0399361022364217 +60816062003,111335,0.0479233226837061 +60816062003,112686,0.060702875399361 +60816062003,112687,0.215654952076677 +60816062003,113188,0.0303514376996805 +60816062003,113189,0.012779552715655 +60816062003,113740,0.0910543130990415 +60816062003,113930,0.0575079872204473 +60816062003,113931,0.0638977635782748 +60816062003,114503,0.0862619808306709 +60816062003,115239,0.0527156549520767 +60816062003,116305,0.073482428115016 +60816062003,117154,0.0894568690095847 +60816062003,117744,0.0782747603833866 +60816062004,113741,0.0379746835443038 +60816062004,113748,0.0397830018083183 +60816062004,114504,0.222423146473779 +60816062004,116307,0.0343580470162749 +60816062004,116310,0.115732368896926 +60816062004,116634,0.0867992766726944 +60816062004,117319,0.421338155515371 +60816062004,117913,0.0415913200723327 +60816063001,110719,0.0466867469879518 +60816063001,111273,0.0406626506024096 +60816063001,111724,0.0617469879518072 +60816063001,111907,0.0993975903614458 +60816063001,113672,0.0768072289156626 +60816063001,113673,0.052710843373494 +60816063001,114285,0.134036144578313 +60816063001,115737,0.143072289156627 +60816063001,116007,0.0632530120481928 +60816063001,118248,0.0632530120481928 +60816063001,118249,0.0783132530120482 +60816063001,118250,0.0813253012048193 +60816063001,119074,0.0225903614457831 +60816063001,119076,0.036144578313253 +60816063002,110247,0.0432098765432099 +60816063002,111466,0 +60816063002,111467,0.273662551440329 +60816063002,111468,0.281893004115226 +60816063002,111469,0 +60816063002,111906,0.051440329218107 +60816063002,114348,0 +60816063002,114353,0.162551440329218 +60816063002,115016,0.01440329218107 +60816063002,115017,0.0493827160493827 +60816063002,116306,0.0390946502057613 +60816063002,117745,0.0761316872427984 +60816063002,117872,0 +60816063002,117874,0.00823045267489712 +60816063002,118242,0 +60816063003,110755,0.248595505617978 +60816063003,111462,0.0126404494382022 +60816063003,112411,0.161516853932584 +60816063003,112680,0.217696629213483 +60816063003,113374,0 +60816063003,113742,0 +60816063003,113746,0.00842696629213483 +60816063003,113929,0.198033707865169 +60816063003,114347,0.11376404494382 +60816063003,115015,0 +60816063003,115240,0 +60816063003,116311,0 +60816063003,116865,0 +60816063003,117153,0.0393258426966292 +60816063003,118241,0 +60816064001,112142,0.00475435816164818 +60816064001,113177,0.378763866877971 +60816064001,116171,0.080824088748019 +60816064001,118015,0.535657686212361 +60816064002,111463,0.0629139072847682 +60816064002,111901,0.172185430463576 +60816064002,111902,0.122516556291391 +60816064002,114350,0.433774834437086 +60816064002,117321,0.139072847682119 +60816064002,118246,0.0695364238410596 +60816064003,114354,0.0914205344585091 +60816064003,114355,0.0450070323488045 +60816064003,114610,0.50070323488045 +60816064003,116314,0.222222222222222 +60816064003,118252,0.140646976090014 +60816064004,111900,0.253012048192771 +60816064004,112683,0.0913654618473896 +60816064004,113639,0.291164658634538 +60816064004,113743,0.0933734939759036 +60816064004,115234,0.0441767068273092 +60816064004,116170,0.16566265060241 +60816064004,117747,0.0612449799196787 +60816065001,111326,0.116 +60816065001,111328,0.2 +60816065001,113378,0.124 +60816065001,114349,0.104 +60816065001,115011,0.104 +60816065001,115012,0.1 +60816065001,118243,0.252 +60816065002,111471,0.0598086124401914 +60816065002,114541,0.062200956937799 +60816065002,115013,0.0598086124401914 +60816065002,115019,0.107655502392345 +60816065002,116316,0.212918660287081 +60816065002,116317,0.069377990430622 +60816065002,116318,0.110047846889952 +60816065002,117362,0.15311004784689 +60816065002,117871,0.165071770334928 +60816065003,110580,0.0754716981132075 +60816065003,111327,0.154088050314465 +60816065003,112926,0.0566037735849057 +60816065003,113376,0.220125786163522 +60816065003,113379,0.191823899371069 +60816065003,114351,0.150943396226415 +60816065003,116736,0.150943396226415 +60816065004,110126,0.198863636363636 +60816065004,112277,0.110795454545455 +60816065004,112721,0.0710227272727273 +60816065004,114535,0.0909090909090909 +60816065004,115473,0.196022727272727 +60816065004,115592,0.00284090909090909 +60816065004,117360,0.0653409090909091 +60816065004,117876,0.150568181818182 +60816065004,117986,0.113636363636364 +60816066001,110264,0.075098814229249 +60816066001,110265,0.110671936758893 +60816066001,114302,0.205533596837945 +60816066001,114356,0.104743083003953 +60816066001,115020,0.0671936758893281 +60816066001,116145,0.114624505928854 +60816066001,117875,0.185770750988142 +60816066001,118253,0.0711462450592885 +60816066001,118254,0.0652173913043478 +60816066002,110299,0.030241935483871 +60816066002,110582,0.0443548387096774 +60816066002,110585,0.0604838709677419 +60816066002,110587,0.0483870967741935 +60816066002,110723,0.17741935483871 +60816066002,113168,0.127016129032258 +60816066002,113567,0.0544354838709677 +60816066002,113568,0 +60816066002,113569,0.0625 +60816066002,114545,0.0604838709677419 +60816066002,114609,0.0262096774193548 +60816066002,114936,0 +60816066002,114939,0.0866935483870968 +60816066002,115132,0.0403225806451613 +60816066002,116146,0.122983870967742 +60816066002,119185,0.0584677419354839 +60816066003,110130,0.0512820512820513 +60816066003,110131,0.0629370629370629 +60816066003,111473,0.0885780885780886 +60816066003,113565,0.0512820512820513 +60816066003,114289,0.324009324009324 +60816066003,114935,0.0559440559440559 +60816066003,114937,0.0536130536130536 +60816066003,117506,0.0512820512820513 +60816066003,118669,0.0652680652680653 +60816066003,119184,0.195804195804196 +60816067001,111167,0.13968253968254 +60816067001,114538,0.0634920634920635 +60816067001,116632,0.796825396825397 +60816067002,110066,0.0461538461538462 +60816067002,110133,0.06 +60816067002,110588,0.0815384615384615 +60816067002,111382,0 +60816067002,113572,0.0984615384615385 +60816067002,114544,0.0107692307692308 +60816067002,114546,0.0384615384615385 +60816067002,114547,0.0384615384615385 +60816067002,114548,0.0676923076923077 +60816067002,114549,0.04 +60816067002,114941,0.0553846153846154 +60816067002,114942,0.0369230769230769 +60816067002,117504,0.393846153846154 +60816067002,119186,0.0323076923076923 +60816068001,112105,0.0630630630630631 +60816068001,112720,0.222972972972973 +60816068001,113561,0.0630630630630631 +60816068001,115093,0.279279279279279 +60816068001,116017,0.371621621621622 +60816068001,118444,0 +60816068002,110068,0 +60816068002,114888,0.075812274368231 +60816068002,115334,0.363417569193743 +60816068002,116001,0.0998796630565584 +60816068002,116940,0 +60816068002,118218,0.138387484957882 +60816068002,119032,0.322503008423586 +60816069001,112103,0.115264797507788 +60816069001,112404,0.218068535825545 +60816069001,113576,0.152647975077882 +60816069001,114551,0.0747663551401869 +60816069001,116633,0.0903426791277259 +60816069001,118891,0.348909657320872 +60816069002,110137,0.0643382352941176 +60816069002,114128,0.424632352941177 +60816069002,115585,0.0863970588235294 +60816069002,116014,0.0698529411764706 +60816069002,116429,0.176470588235294 +60816069002,117512,0.15625 +60816069002,119188,0.0220588235294118 +60816070001,117364,0.570200573065903 +60816070001,117510,0.429799426934097 +60816070002,110052,0.173617846750727 +60816070002,110053,0.0184287099903007 +60816070002,110055,0.04364694471387 +60816070002,110197,0.0708050436469447 +60816070002,112345,0.0872938894277401 +60816070002,113640,0.117361784675073 +60816070002,116858,0.02909796314258 +60816070002,118143,0.0717749757516974 +60816070002,118217,0.026188166828322 +60816070002,118526,0.032007759456838 +60816070002,118600,0.0155189136760427 +60816070002,118668,0.314258001939864 +60816071001,110515,0.4140625 +60816071001,113507,0.20703125 +60816071001,113924,0.0234375 +60816071001,118894,0.35546875 +60816071002,110337,0.0551876379690949 +60816071002,112021,0.251655629139073 +60816071002,112202,0.0529801324503311 +60816071002,112418,0.0772626931567329 +60816071002,113509,0.112582781456954 +60816071002,114274,0.17439293598234 +60816071002,115886,0.103752759381898 +60816071002,118912,0.172185430463576 +60816071003,110079,0.0407124681933842 +60816071003,110242,0.0152671755725191 +60816071003,110330,0.175572519083969 +60816071003,114271,0.0788804071246819 +60816071003,114475,0.089058524173028 +60816071003,114477,0.106870229007634 +60816071003,117207,0.0534351145038168 +60816071003,117724,0.11704834605598 +60816071003,117725,0.0712468193384224 +60816071003,118226,0.145038167938931 +60816071003,118227,0.106870229007634 +60816072001,110238,0.041501976284585 +60816072001,111881,0.125494071146245 +60816072001,112016,0.139328063241107 +60816072001,112413,0.0839920948616601 +60816072001,114272,0.141304347826087 +60816072001,114482,0.124505928853755 +60816072001,114483,0.105731225296443 +60816072001,116869,0.238142292490119 +60816072001,117300,0 +60816072002,110080,0.0292164674634794 +60816072002,110268,0.0650730411686587 +60816072002,110280,0 +60816072002,110335,0.0318725099601594 +60816072002,112020,0.098273572377158 +60816072002,112022,0.047808764940239 +60816072002,112551,0 +60816072002,114275,0.0385126162018592 +60816072002,115140,0.0969455511288181 +60816072002,116873,0.0876494023904383 +60816072002,116874,0.0544488711819389 +60816072002,117465,0.0225763612217795 +60816072002,117854,0 +60816072002,117855,0.0239043824701195 +60816072002,117861,0.236387782204515 +60816072002,118231,0.0385126162018592 +60816072002,118259,0.0969455511288181 +60816072002,118384,0 +60816072002,118770,0.0318725099601594 +60816073001,110134,0.0876404494382022 +60816073001,110239,0.0943820224719101 +60816073001,110591,0.17752808988764 +60816073001,113571,0.121348314606742 +60816073001,114550,0.0539325842696629 +60816073001,116292,0.0674157303370786 +60816073001,117365,0.134831460674157 +60816073001,117509,0.2 +60816073001,117713,0.0629213483146067 +60816073002,110243,0.0401284109149278 +60816073002,111885,0.0626003210272873 +60816073002,112007,0.14446227929374 +60816073002,112201,0.173354735152488 +60816073002,113710,0.123595505617978 +60816073002,113713,0.0385232744783307 +60816073002,114269,0.0449438202247191 +60816073002,114270,0.0240770465489567 +60816073002,114751,0.243980738362761 +60816073002,116296,0.0642054574638844 +60816073002,117717,0.0401284109149278 +60816073003,111164,0.33976833976834 +60816073003,113711,0.332046332046332 +60816073003,116295,0.150579150579151 +60816073003,116733,0.177606177606178 +60816074001,110078,0.139315230224321 +60816074001,110583,0.063754427390791 +60816074001,110794,0.144037780401417 +60816074001,111456,0.050767414403778 +60816074001,112348,0.0354191263282172 +60816074001,113171,0.0696576151121606 +60816074001,114543,0 +60816074001,115136,0.076741440377804 +60816074001,116731,0.0578512396694215 +60816074001,117709,0.050767414403778 +60816074001,119039,0.311688311688312 +60816074002,110235,0.289752650176678 +60816074002,111874,0.11660777385159 +60816074002,113172,0.144876325088339 +60816074002,113917,0.183745583038869 +60816074002,113918,0.159010600706714 +60816074002,113919,0.00706713780918728 +60816074002,116729,0.0742049469964664 +60816074002,117712,0.0247349823321555 +60816074003,110240,0.128065395095368 +60816074003,111458,0.0258855585831063 +60816074003,111877,0.215258855585831 +60816074003,111878,0.152588555858311 +60816074003,111879,0.205722070844687 +60816074003,111882,0.0476839237057221 +60816074003,113920,0 +60816074003,113921,0.0326975476839237 +60816074003,114750,0.0490463215258856 +60816074003,116293,0.0408719346049046 +60816074003,117710,0.0653950953678474 +60816074003,117711,0.0367847411444142 +60816075001,110232,0.054980595084088 +60816075001,110237,0.0019404915912031 +60816075001,110725,0 +60816075001,112406,0.0174644243208279 +60816075001,112407,0.51228978007762 +60816075001,112724,0 +60816075001,113174,0.0336351875808538 +60816075001,113176,0.0717981888745149 +60816075001,114837,0.184346701164295 +60816075001,115366,0.0937904269081501 +60816075001,115370,0.000646830530401035 +60816075001,116728,0.0226390685640362 +60816075001,117129,0.00258732212160414 +60816075001,117879,0.00388098318240621 +60816076001,110722,0 +60816076001,110731,0 +60816076001,112618,0.235483870967742 +60816076001,113343,0 +60816076001,115739,0.338709677419355 +60816076001,115743,0.125806451612903 +60816076001,117130,0.193548387096774 +60816076001,117131,0.106451612903226 +60816076002,110262,0.620071684587814 +60816076002,110721,0.0860215053763441 +60816076002,110881,0.293906810035842 +60816076003,110301,1 +60816076003,112812,0 +60816076004,110298,0.111455108359133 +60816076004,110882,0.157894736842105 +60816076004,112814,0.13312693498452 +60816076004,114264,0.0959752321981424 +60816076004,114611,0.148606811145511 +60816076004,115742,0.164086687306502 +60816076004,119030,0.188854489164087 +60816077011,110205,0 +60816077011,110255,0.0425531914893617 +60816077011,110258,0.0507364975450082 +60816077011,112614,0.435351882160393 +60816077011,112615,0.0474631751227496 +60816077011,114748,0.0965630114566285 +60816077011,116140,0.0965630114566285 +60816077011,116141,0.0474631751227496 +60816077011,117124,0.134206219312602 +60816077011,117125,0.0490998363338789 +60816077012,110257,0.215962441314554 +60816077012,112808,0.117370892018779 +60816077012,115736,0.248826291079812 +60816077012,116142,0.230046948356808 +60816077012,118450,0.187793427230047 +60816077012,118603,0 +60816077013,110304,0.092896174863388 +60816077013,110718,0.0983606557377049 +60816077013,110878,0.0737704918032787 +60816077013,110880,0.0792349726775956 +60816077013,112620,0.158469945355191 +60816077013,112933,0.248633879781421 +60816077013,115135,0.166666666666667 +60816077013,117134,0.0819672131147541 +60816077021,110259,0.171503957783641 +60816077021,110260,0.0870712401055409 +60816077021,110726,0.0844327176781003 +60816077021,110727,0.0554089709762533 +60816077021,110728,0.139841688654354 +60816077021,110884,0.0949868073878628 +60816077021,112619,0.0554089709762533 +60816077021,112809,0.100263852242744 +60816077021,115744,0.0554089709762533 +60816077021,115746,0.0527704485488127 +60816077021,118606,0.102902374670185 +60816077022,110261,0.162094763092269 +60816077022,110305,0.134663341645885 +60816077022,110886,0.122194513715711 +60816077022,110887,0.117206982543641 +60816077022,112622,0.0972568578553616 +60816077022,112623,0.0598503740648379 +60816077022,112624,0.162094763092269 +60816077022,113348,0.144638403990025 +60816078001,0,0 +60816078001,111870,0.050682261208577 +60816078001,113352,0.0818713450292398 +60816078001,113913,0.0545808966861598 +60816078001,115547,0 +60816078001,116149,0.263157894736842 +60816078001,116724,0.0487329434697856 +60816078001,118238,0.458089668615984 +60816078001,119029,0.0428849902534113 +60816078002,110230,0.0831600831600832 +60816078002,111873,0.0644490644490645 +60816078002,113350,0.101871101871102 +60816078002,113351,0.0498960498960499 +60816078002,113914,0.0415800415800416 +60816078002,116273,0.207900207900208 +60816078002,116286,0.0582120582120582 +60816078002,116726,0.392931392931393 +60816079001,110799,0 +60816079001,111872,0 +60816079001,113342,1 +60816079001,114403,0 +60816079001,118132,0 +60816079001,118134,0 +60816079002,112531,0.0170316301703163 +60816079002,116631,0.978102189781022 +60816079002,117462,0.0048661800486618 +60816079003,0,0 +60816079003,111454,0.124031007751938 +60816079003,112023,0 +60816079003,116365,0.497416020671835 +60816079003,116875,0.255813953488372 +60816079003,119121,0.122739018087855 +60816080011,111375,0.276885043263288 +60816080011,112815,0.0667490729295426 +60816080011,114706,0.489493201483313 +60816080011,116024,0.166872682323857 +60816080012,0,0 +60816080012,114705,1 +60816080021,0,0 +60816080021,110284,0.360208062418726 +60816080021,115270,0.309492847854356 +60816080021,116559,0.330299089726918 +60816080022,0,0 +60816080022,110081,0.301369863013699 +60816080022,112279,0.143835616438356 +60816080022,116088,0.133561643835616 +60816080022,118905,0.0958904109589041 +60816080022,119035,0.325342465753425 +60816080023,0,0 +60816080023,112279,0.204620462046205 +60816080023,115353,0.716171617161716 +60816080023,118926,0.0792079207920792 +60816080041,0,0 +60816080041,117867,0.0479233226837061 +60816080041,118924,0.952076677316294 +60816080042,111675,0.0846645367412141 +60816080042,112548,0.0654952076677316 +60816080042,112557,0.0623003194888179 +60816080042,114644,0.0319488817891374 +60816080042,115515,0.111821086261981 +60816080042,117237,0.0559105431309904 +60816080042,117446,0.356230031948882 +60816080042,118379,0.0431309904153355 +60816080042,118771,0.188498402555911 +60816080043,0,0 +60816080043,113499,0.144963144963145 +60816080043,115007,0.716216216216216 +60816080043,115593,0.138820638820639 +60816080044,0,0 +60816080044,111738,0 +60816080044,112198,0 +60816080044,112199,0 +60816080044,112213,0 +60816080044,112440,0.11913357400722 +60816080044,112541,0 +60816080044,112544,0 +60816080044,113483,0 +60816080044,114614,0 +60816080044,114752,0 +60816080044,114757,0.121540312876053 +60816080044,114998,0 +60816080044,115001,0 +60816080044,115006,0 +60816080044,115010,0.310469314079422 +60816080044,115025,0.0469314079422383 +60816080044,115130,0.146811070998797 +60816080044,115510,0 +60816080044,115821,0.133574007220217 +60816080044,116076,0 +60816080044,116283,0 +60816080044,117440,0.0312876052948255 +60816080044,117466,0.00120336943441637 +60816080044,117863,0 +60816080044,118237,0 +60816080044,118301,0.0565583634175692 +60816080044,118764,0 +60816080044,118786,0 +60816080044,119028,0.0324909747292419 +60816080131,0,0 +60816080131,110082,0.13953488372093 +60816080131,112872,0.188782489740082 +60816080131,113503,0.0341997264021888 +60816080131,114754,0.470588235294118 +60816080131,115812,0.0437756497948016 +60816080131,116105,0.12311901504788 +60816080132,118302,0.822942643391521 +60816080132,118959,0.177057356608479 +60816080133,0,0 +60816080133,110093,0.750663129973475 +60816080133,110874,0.188328912466843 +60816080133,115813,0.0610079575596817 +60816080231,0,0 +60816080231,110099,0.132013201320132 +60816080231,112353,0.0792079207920792 +60816080231,112400,0.141914191419142 +60816080231,112729,0.201320132013201 +60816080231,113505,0.115511551155116 +60816080231,116883,0.0858085808580858 +60816080231,118009,0.244224422442244 +60816080232,110285,0.0942028985507246 +60816080232,110510,0.0543478260869565 +60816080232,112944,0.103260869565217 +60816080232,113502,0.0634057971014493 +60816080232,115352,0.11231884057971 +60816080232,116099,0.177536231884058 +60816080232,117044,0.117753623188406 +60816080232,118904,0.143115942028986 +60816080232,118906,0.0923913043478261 +60816080232,118907,0.0416666666666667 +60816081001,0,0 +60816081001,110275,0.0234558248631744 +60816081001,111263,0.0891321344800625 +60816081001,111373,0.0617670054730258 +60816081001,112935,0.0336200156372166 +60816081001,113345,0.0891321344800625 +60816081001,114284,0.0437842064112588 +60816081001,115008,0.0594214229867084 +60816081001,116020,0.0797498045347928 +60816081001,117249,0.193901485535575 +60816081001,117441,0.211102423768569 +60816081001,118758,0.114933541829554 +60816082001,0,0 +60816082001,111033,0.0481283422459893 +60816082001,111535,0.0847975553857907 +60816082001,112545,0.0634071810542399 +60816082001,113286,0.093964858670741 +60816082001,113517,0.106951871657754 +60816082001,115661,0.0802139037433155 +60816082001,116999,0.0168067226890756 +60816082001,117418,0.0443086325439267 +60816082001,117432,0 +60816082001,117701,0.106187929717341 +60816082001,117785,0.254392666157372 +60816082001,117941,0.100840336134454 +60816083001,0,0 +60816083001,110090,0.155197657393851 +60816083001,111380,0.187408491947291 +60816083001,112358,0.0644216691068814 +60816083001,112871,0.0746705710102489 +60816083001,114506,0.143484626647145 +60816083001,115608,0.276720351390922 +60816083001,118985,0.0980966325036603 +60816083002,0,0 +60816083002,112631,0.131901840490798 +60816083002,113288,0.585889570552147 +60816083002,116021,0.196319018404908 +60816083002,118613,0.0858895705521472 +60816084001,0,0 +60816084001,112350,0.117585848074922 +60816084001,116629,0.218522372528616 +60816084001,117467,0.530697190426639 +60816084001,117851,0.0489073881373569 +60816084001,117869,0.0842872008324662 +60816084002,0,0 +60816084002,114187,0.348178137651822 +60816084002,114188,0.651821862348178 +60816084003,115152,1 +60816084003,117870,0 +60816085011,110333,0.104 +60816085011,110334,0.058 +60816085011,110797,0 +60816085011,112421,0.176 +60816085011,114276,0.412 +60816085011,116871,0.036 +60816085011,117858,0.104 +60816085011,117859,0.11 +60816085012,110278,0.0538599640933573 +60816085012,110279,0.102333931777379 +60816085012,111271,0.296229802513465 +60816085012,112939,0.0359066427289048 +60816085012,112942,0.104129263913824 +60816085012,115009,0.0466786355475763 +60816085012,115518,0.102333931777379 +60816085012,118378,0.0502692998204668 +60816085012,118380,0.0502692998204668 +60816085012,118381,0.0359066427289048 +60816085012,118382,0.059245960502693 +60816085012,118767,0.0628366247755835 +60816085013,110266,0.0819672131147541 +60816085013,112019,0.0710382513661202 +60816085013,114457,0.0218579234972678 +60816085013,114825,0.0901639344262295 +60816085013,115516,0.0765027322404372 +60816085013,115517,0.14207650273224 +60816085013,117447,0.0901639344262295 +60816085013,117448,0.101092896174863 +60816085013,117450,0.139344262295082 +60816085013,118383,0.12568306010929 +60816085013,118768,0.0601092896174863 +60816085014,110800,0.224615384615385 +60816085014,112431,0.147692307692308 +60816085014,113574,0.147692307692308 +60816085014,117203,0.132307692307692 +60816085014,118232,0.273846153846154 +60816085014,118233,0.0738461538461539 +60816085021,110015,0.0441666666666667 +60816085021,110016,0 +60816085021,110282,0.0575 +60816085021,115649,0.235 +60816085021,116432,0.0275 +60816085021,117449,0.623333333333333 +60816085021,118385,0.0125 +60816086001,112554,0.0560975609756098 +60816086001,112940,0.0926829268292683 +60816086001,114828,0.0707317073170732 +60816086001,114829,0.151219512195122 +60816086001,115552,0.395121951219512 +60816086001,118256,0.234146341463415 +60816086002,0,0 +60816086002,110003,0.310880829015544 +60816086002,111249,0.0751295336787565 +60816086002,111647,0.077720207253886 +60816086002,111802,0 +60816086002,111803,0.16839378238342 +60816086002,116447,0.077720207253886 +60816086002,117232,0.0803108808290155 +60816086002,118544,0.0829015544041451 +60816086002,118895,0 +60816086002,119046,0.0803108808290155 +60816086002,119049,0.0466321243523316 +60816086003,110385,0.024 +60816086003,111242,0.038 +60816086003,111243,0.045 +60816086003,112553,0.152 +60816086003,112555,0.105 +60816086003,112556,0.025 +60816086003,115519,0.593 +60816086003,117786,0 +60816086003,118547,0.018 +60816087001,110365,0.0666666666666667 +60816087001,110367,0.0435374149659864 +60816087001,110379,0.0503401360544218 +60816087001,110661,0.0979591836734694 +60816087001,113511,0.0571428571428571 +60816087001,114075,0.219047619047619 +60816087001,114210,0.0394557823129252 +60816087001,115651,0.125170068027211 +60816087001,115894,0.0571428571428571 +60816087001,116440,0.107482993197279 +60816087001,118010,0.054421768707483 +60816087001,118012,0.0476190476190476 +60816087001,118539,0.0340136054421769 +60816087002,111240,0.171428571428571 +60816087002,112419,0.0352941176470588 +60816087002,114205,0.0352941176470588 +60816087002,114827,0.0336134453781513 +60816087002,115273,0.0689075630252101 +60816087002,116439,0.640336134453781 +60816087002,118540,0.0151260504201681 +60816087003,111475,0.12781954887218 +60816087003,113278,0.0300751879699248 +60816087003,114213,0.31328320802005 +60816087003,114214,0.177944862155388 +60816087003,114621,0 +60816087003,116656,0.0601503759398496 +60816087003,117423,0.0300751879699248 +60816087003,117779,0.260651629072682 +60816087004,111112,0.174556213017751 +60816087004,111639,0.381656804733728 +60816087004,114076,0.144970414201183 +60816087004,114620,0.174556213017751 +60816087004,116073,0.124260355029586 +60816087005,110662,0.109656301145663 +60816087005,111942,0.126022913256956 +60816087005,112880,0.0981996726677578 +60816087005,115655,0.0801963993453355 +60816087005,116652,0.34860883797054 +60816087005,116653,0.0458265139116203 +60816087005,117208,0.127659574468085 +60816087005,118785,0.0638297872340425 +60816088001,110360,0.161803713527851 +60816088001,110366,0.169761273209549 +60816088001,111093,0.177718832891247 +60816088001,113510,0.090185676392573 +60816088001,115888,0.0981432360742706 +60816088001,115893,0.119363395225464 +60816088001,118011,0.183023872679045 +60816088002,110359,0.161904761904762 +60816088002,110363,0.154761904761905 +60816088002,110663,0.188095238095238 +60816088002,113646,0.0857142857142857 +60816088002,113649,0.1 +60816088002,115892,0.0642857142857143 +60816088002,118913,0.245238095238095 +60816088003,111094,0.288461538461538 +60816088003,117206,0.711538461538461 +60816088004,111795,0.106060606060606 +60816088004,113642,0.0833333333333333 +60816088004,113645,0.131313131313131 +60816088004,116094,0.128787878787879 +60816088004,116638,0.0782828282828283 +60816088004,116639,0.103535353535354 +60816088004,119036,0.368686868686869 +60816088005,111270,0.164556962025316 +60816088005,112722,0.275316455696203 +60816088005,114845,0.140822784810127 +60816088005,115271,0.129746835443038 +60816088005,118597,0.289556962025316 +60816089001,110204,0 +60816089001,110519,0.0591836734693878 +60816089001,113287,0.036734693877551 +60816089001,114359,0.0489795918367347 +60816089001,115889,0.216326530612245 +60816089001,117704,0.577551020408163 +60816089001,118911,0.0612244897959184 +60816089002,114079,0.135321100917431 +60816089002,114081,0.107798165137615 +60816089002,114207,0.153669724770642 +60816089002,115272,0.120412844036697 +60816089002,117426,0.311926605504587 +60816089002,118524,0.170871559633028 +60816089003,0,0 +60816089003,110084,0.0211524434719183 +60816089003,110645,0.150984682713348 +60816089003,111720,0.0138584974471189 +60816089003,112572,0.0641867250182349 +60816089003,112727,0.265499635302699 +60816089003,113508,0.00948212983223924 +60816089003,114694,0.258205689277899 +60816089003,115653,0.188183807439825 +60816089003,116642,0.0153172866520788 +60816089003,118446,0.0131291028446389 +60816089004,112731,0.143835616438356 +60816089004,115650,0.0856164383561644 +60816089004,116005,0.136986301369863 +60816089004,116433,0.304794520547945 +60816089004,116995,0.113013698630137 +60816089004,118447,0.0753424657534247 +60816089004,118553,0.00684931506849315 +60816089004,118599,0.133561643835616 +60816090001,110208,0.0910891089108911 +60816090001,110226,0.0356435643564356 +60816090001,110439,0.281188118811881 +60816090001,110816,0.120792079207921 +60816090001,111804,0.235643564356436 +60816090001,114628,0 +60816090001,115145,0.0831683168316832 +60816090001,115727,0.00396039603960396 +60816090001,117015,0.0495049504950495 +60816090001,117791,0.0910891089108911 +60816090001,119047,0.00792079207920792 +60816090002,110805,0.0950704225352113 +60816090002,111642,0.0457746478873239 +60816090002,112869,0.170774647887324 +60816090002,114080,0.205985915492958 +60816090002,114613,0.051056338028169 +60816090002,116425,0.35387323943662 +60816090002,118542,0.0774647887323944 +60816091001,110812,0 +60816091001,111659,0 +60816091001,111998,0 +60816091001,112634,0.00335570469798658 +60816091001,112825,0.144295302013423 +60816091001,114846,0.23489932885906 +60816091001,115613,0.130872483221477 +60816091001,116580,0.144295302013423 +60816091001,116628,0 +60816091001,117017,0 +60816091001,117234,0 +60816091001,117436,0.211409395973154 +60816091001,118298,0 +60816091001,118619,0 +60816091001,118621,0.130872483221477 +60816091002,110062,0 +60816091002,110271,0.00711743772241993 +60816091002,111337,0.0569395017793594 +60816091002,111527,0 +60816091002,112542,0 +60816091002,113086,0 +60816091002,113087,0 +60816091002,113194,0.124555160142349 +60816091002,113230,0.149466192170819 +60816091002,113933,0.0355871886120996 +60816091002,113935,0 +60816091002,113937,0 +60816091002,114262,0.0320284697508897 +60816091002,114817,0 +60816091002,114831,0 +60816091002,114891,0 +60816091002,115615,0.217081850533808 +60816091002,115751,0 +60816091002,116071,0.345195729537367 +60816091002,116441,0 +60816091002,116750,0.0320284697508897 +60816091002,116751,0 +60816091002,117156,0 +60816091002,118772,0 +60816091002,119120,0 +60816092011,110171,0.074468085106383 +60816092011,110172,0.0702127659574468 +60816092011,111344,0.1 +60816092011,111730,0.0574468085106383 +60816092011,111889,0.0702127659574468 +60816092011,112543,0 +60816092011,113238,0.048936170212766 +60816092011,113240,0.0659574468085106 +60816092011,113241,0.0638297872340425 +60816092011,113726,0.0680851063829787 +60816092011,115212,0.0595744680851064 +60816092011,115758,0.0702127659574468 +60816092011,116755,0.0468085106382979 +60816092011,117437,0.00212765957446809 +60816092011,117438,0.202127659574468 +60816092012,110899,0.352445193929174 +60816092012,110900,0.0370994940978078 +60816092012,112689,0.0944350758853288 +60816092012,113193,0.00168634064080944 +60816092012,113837,0.112984822934233 +60816092012,113932,0.279932546374368 +60816092012,115753,0.0252951096121417 +60816092012,116747,0.00168634064080944 +60816092012,116749,0.0539629005059022 +60816092012,117158,0.0404721753794266 +60816092013,110096,0.0714285714285714 +60816092013,110901,0.164092664092664 +60816092013,113195,0.0444015444015444 +60816092013,113196,0.0521235521235521 +60816092013,113936,0.0598455598455598 +60816092013,113944,0.0366795366795367 +60816092013,113945,0.104247104247104 +60816092013,113946,0.0366795366795367 +60816092013,115756,0.137065637065637 +60816092013,115757,0.0521235521235521 +60816092013,116557,0.0617760617760618 +60816092013,116754,0.0482625482625483 +60816092013,117728,0.0849420849420849 +60816092013,118455,0.0463320463320463 +60816092021,110441,0.100267379679144 +60816092021,110442,0.156417112299465 +60816092021,110443,0 +60816092021,110444,0.0427807486631016 +60816092021,110817,0 +60816092021,110818,0.0601604278074866 +60816092021,110820,0.053475935828877 +60816092021,110823,0.0454545454545455 +60816092021,111807,0.133689839572193 +60816092021,112212,0.0735294117647059 +60816092021,114765,0.0628342245989305 +60816092021,115149,0.0254010695187166 +60816092021,115150,0.100267379679144 +60816092021,115157,0.036096256684492 +60816092021,117242,0.0655080213903743 +60816092021,119082,0.0441176470588235 +60816092022,110739,0 +60816092022,110741,0.110808356039964 +60816092022,110742,0.0072661217075386 +60816092022,110821,0.0435967302452316 +60816092022,110822,0.171662125340599 +60816092022,111808,0.111716621253406 +60816092022,112153,0.0263396911898274 +60816092022,112216,0.0908265213442325 +60816092022,112826,0.0572207084468665 +60816092022,112827,0.0072661217075386 +60816092022,115614,0.0917347865576748 +60816092022,117018,0.036330608537693 +60816092022,117019,0.108083560399637 +60816092022,117794,0.0435967302452316 +60816092022,118622,0.0935513169845595 +60816093001,110272,0.10054844606947 +60816093001,110341,0.0127970749542962 +60816093001,111525,0.0877513711151737 +60816093001,111728,0.0493601462522852 +60816093001,111729,0.0694698354661792 +60816093001,112946,0.129798903107861 +60816093001,112947,0.0475319926873857 +60816093001,113089,0.0731261425959781 +60816093001,114280,0 +60816093001,114281,0.10054844606947 +60816093001,114830,0.0859232175502742 +60816093001,117439,0.0895795246800731 +60816093001,117999,0.0786106032906764 +60816093001,118774,0.0621572212065814 +60816093001,118775,0.0127970749542962 +60816093002,110095,0.0457796852646638 +60816093002,110173,0.0386266094420601 +60816093002,111727,0.0443490701001431 +60816093002,113245,0.0357653791130186 +60816093002,113727,0.0529327610872675 +60816093002,113728,0.0400572246065808 +60816093002,113947,0.050071530758226 +60816093002,114834,0.0357653791130186 +60816093002,115211,0.0786838340486409 +60816093002,115683,0.0314735336194564 +60816093002,115761,0.0314735336194564 +60816093002,115762,0.0429184549356223 +60816093002,115763,0.0400572246065808 +60816093002,115764,0.0486409155937053 +60816093002,116556,0.0414878397711016 +60816093002,116757,0.0386266094420601 +60816093002,117730,0.050071530758226 +60816093002,117731,0.0386266094420601 +60816093002,117732,0.0715307582260372 +60816093002,117733,0.0143061516452074 +60816093002,117865,0.0443490701001431 +60816093002,118453,0.0443490701001431 +60816093002,118827,0.0400572246065808 +60816094001,110665,0.0634231103388358 +60816094001,110902,0.0251954821894005 +60816094001,111343,0.0330147697654214 +60816094001,111890,0.0312771503040834 +60816094001,113197,0.0208514335360556 +60816094001,113231,0.0208514335360556 +60816094001,113233,0.052128583840139 +60816094001,113234,0.0469157254561251 +60816094001,113239,0.103388357949609 +60816094001,113242,0.0217202432667246 +60816094001,113939,0.0217202432667246 +60816094001,113940,0.0199826238053866 +60816094001,113941,0.0225890529973936 +60816094001,113942,0.0234578627280626 +60816094001,114189,0.0608166811468288 +60816094001,115155,0.0225890529973936 +60816094001,115283,0.0243266724587315 +60816094001,115663,0.0469157254561251 +60816094001,115754,0.0217202432667246 +60816094001,115755,0.0191138140747176 +60816094001,115908,0.0364900086880973 +60816094001,116752,0.0243266724587315 +60816094001,117157,0.0443092962641182 +60816094001,117159,0.0590790616854909 +60816094001,117160,0.0208514335360556 +60816094001,117609,0.0347523892267593 +60816094001,117793,0.00781928757602085 +60816094001,118614,0.0234578627280626 +60816094001,119079,0.0469157254561251 +60816095001,110048,0.0881971465629053 +60816095001,110386,0.114137483787289 +60816095001,110440,0.0363164721141375 +60816095001,110813,0.066147859922179 +60816095001,110814,0.0337224383916991 +60816095001,111244,0.0907911802853437 +60816095001,111806,0.0337224383916991 +60816095001,113105,0.0389105058365759 +60816095001,113676,0.00907911802853437 +60816095001,113677,0.0415045395590143 +60816095001,114624,0.0518806744487678 +60816095001,114626,0.0739299610894942 +60816095001,114766,0.0363164721141375 +60816095001,114769,0.0700389105058366 +60816095001,114770,0.0700389105058366 +60816095001,115148,0.0415045395590143 +60816095001,115275,0.0207522697795071 +60816095001,117016,0.0428015564202335 +60816095001,118545,0.0402075226977951 +60816095002,111247,0.0837537840565086 +60816095002,111248,0.0403632694248234 +60816095002,111386,0.0403632694248234 +60816095002,111387,0.024217961654894 +60816095002,111809,0.0332996972754793 +60816095002,114622,0.12108980827447 +60816095002,115151,0.029263370332997 +60816095002,115154,0.0585267406659939 +60816095002,115280,0.0353178607467205 +60816095002,116443,0.0544904137235116 +60816095002,116445,0.0353178607467205 +60816095002,117020,0.0201816347124117 +60816095002,117427,0.0998990918264379 +60816095002,117573,0.082744702320888 +60816095002,117780,0.10393541876892 +60816095002,118221,0.0494450050454087 +60816095002,119045,0.0877901109989909 +60816096011,110491,0.218181818181818 +60816096011,110642,0.0826446280991736 +60816096011,110643,0.00165289256198347 +60816096011,111388,0.0272727272727273 +60816096011,111950,0.0900826446280992 +60816096011,113066,0.0371900826446281 +60816096011,113486,0.0429752066115702 +60816096011,113702,0.0727272727272727 +60816096011,113705,0.0826446280991736 +60816096011,117210,0.123140495867769 +60816096011,117798,0.0355371900826446 +60816096011,117880,0.179338842975207 +60816096011,118756,0.00661157024793388 +60816096021,110448,0.0499243570347958 +60816096021,111226,0.556732223903177 +60816096021,112218,0.152798789712557 +60816096021,112739,0.0453857791225416 +60816096021,115276,0.0574886535552194 +60816096021,115682,0.075642965204236 +60816096021,117799,0.0620272314674735 +60816096031,112477,0.00994318181818182 +60816096031,113661,0.163352272727273 +60816096031,114082,0 +60816096031,114192,0.794034090909091 +60816096031,114814,0.0326704545454545 +60816096032,110446,0.0856610800744879 +60816096032,111384,0.0502793296089385 +60816096032,111790,0.2756052141527 +60816096032,113243,0.0484171322160149 +60816096032,115153,0.17877094972067 +60816096032,115279,0.0409683426443203 +60816096032,116513,0.109869646182495 +60816096032,117847,0.210428305400372 +60816096033,111341,0.112084063047285 +60816096033,112360,0.0875656742556918 +60816096033,112480,0.0683012259194396 +60816096033,113244,0.0858143607705779 +60816096033,113430,0.0980735551663748 +60816096033,114193,0.010507880910683 +60816096033,115295,0.124343257443082 +60816096033,115814,0.0858143607705779 +60816096033,116756,0.122591943957968 +60816096033,117209,0.0753064798598949 +60816096033,117588,0.0963222416812609 +60816096033,117727,0.0332749562171629 +60816096034,111953,0.0939597315436242 +60816096034,112482,0.0939597315436242 +60816096034,113282,0.228187919463087 +60816096034,113423,0.231543624161074 +60816096034,118222,0.167785234899329 +60816096034,118374,0.184563758389262 +60816097001,110140,0.042674253200569 +60816097001,110678,0.0810810810810811 +60816097001,111671,0.00995732574679943 +60816097001,112490,0.00142247510668563 +60816097001,112876,0.0711237553342817 +60816097001,114084,0.00284495021337127 +60816097001,114292,0.0355618776671408 +60816097001,115952,0.106685633001422 +60816097001,115957,0.149359886201991 +60816097001,116654,0.0327169274537696 +60816097001,117422,0.105263157894737 +60816097001,117576,0.0128022759601707 +60816097001,117783,0.0455192034139403 +60816097001,118122,0.0554765291607397 +60816097001,118670,0.0654338549075391 +60816097001,118794,0.182076813655761 +60816097002,110180,0.00339366515837104 +60816097002,110601,0.0961538461538461 +60816097002,110605,0.0294117647058824 +60816097002,112493,0.0463800904977376 +60816097002,113117,0.0214932126696833 +60816097002,113284,0.0339366515837104 +60816097002,113303,0.0497737556561086 +60816097002,113304,0.0497737556561086 +60816097002,113529,0.0373303167420815 +60816097002,113852,0.00904977375565611 +60816097002,114086,0.0893665158371041 +60816097002,114396,0.0124434389140271 +60816097002,114404,0.0633484162895928 +60816097002,115954,0.00791855203619909 +60816097002,116368,0.0735294117647059 +60816097002,116457,0.108597285067873 +60816097002,116668,0.0780542986425339 +60816097002,116787,0.119909502262443 +60816097002,116795,0.0135746606334842 +60816097002,117031,0.0565610859728507 +60816098001,111962,0.0824742268041237 +60816098001,112372,0.185567010309278 +60816098001,112741,0.185567010309278 +60816098001,116232,0.233676975945017 +60816098001,116235,0.11340206185567 +60816098001,116458,0.154639175257732 +60816098001,117598,0.0446735395189003 +60816098002,110151,0.0951585976627713 +60816098002,110152,0.0550918196994992 +60816098002,112539,0.0517529215358932 +60816098002,113113,0.0851419031719532 +60816098002,113846,0.0918196994991653 +60816098002,115815,0.0701168614357262 +60816098002,116217,0.0901502504173623 +60816098002,116358,0.0333889816360601 +60816098002,116454,0.0684474123539232 +60816098002,116665,0.00333889816360601 +60816098002,116790,0.0517529215358932 +60816098002,118452,0.0517529215358932 +60816098002,118609,0.130217028380634 +60816098002,118830,0.121869782971619 +60816098003,110402,0.14336917562724 +60816098003,110406,0.28673835125448 +60816098003,110424,0.0788530465949821 +60816098003,111968,0.200716845878136 +60816098003,112742,0.046594982078853 +60816098003,113495,0.0752688172043011 +60816098003,117595,0.0824372759856631 +60816098003,117600,0.0860215053763441 +60816098004,113112,0.169847328244275 +60816098004,115829,0.0954198473282443 +60816098004,115884,0.305343511450382 +60816098004,115917,0.0248091603053435 +60816098004,117004,0.0534351145038168 +60816098004,117916,0.206106870229008 +60816098004,118336,0.0896946564885496 +60816098004,118549,0.0553435114503817 +60816099001,110094,0.0432692307692308 +60816099001,110343,0.110576923076923 +60816099001,115003,0.0552884615384615 +60816099001,115210,0.235576923076923 +60816099001,115525,0.129807692307692 +60816099001,116009,0.0865384615384615 +60816099001,117594,0.0913461538461538 +60816099001,118390,0.0673076923076923 +60816099001,118611,0.0913461538461539 +60816099001,118778,0.0889423076923077 +60816099002,110344,0.0715372907153729 +60816099002,110403,0.0213089802130898 +60816099002,110504,0.0441400304414003 +60816099002,111966,0.0319634703196347 +60816099002,112371,0.0700152207001522 +60816099002,112881,0.0989345509893455 +60816099002,112951,0.0745814307458143 +60816099002,113530,0.0821917808219178 +60816099002,114399,0.0517503805175038 +60816099002,114835,0.0365296803652968 +60816099002,115329,0.091324200913242 +60816099002,115527,0.0410958904109589 +60816099002,115529,0.0426179604261796 +60816099002,117597,0.0319634703196347 +60816099002,118399,0.0410958904109589 +60816099002,118780,0.0821917808219178 +60816099002,118841,0.0867579908675799 +60816100001,110345,0.125494071146245 +60816100001,110506,0.0187747035573123 +60816100001,110650,0.00494071146245059 +60816100001,110651,0.0326086956521739 +60816100001,111097,0.0790513833992095 +60816100001,111099,0.024703557312253 +60816100001,112953,0.0296442687747036 +60816100001,112954,0.0849802371541502 +60816100001,113100,0.0306324110671937 +60816100001,113497,0.100790513833992 +60816100001,113498,0 +60816100001,113512,0.0948616600790514 +60816100001,113513,0.0345849802371542 +60816100001,114064,0.000988142292490119 +60816100001,115343,0.0938735177865613 +60816100001,118005,0.0227272727272727 +60816100001,118395,0.041501976284585 +60816100001,118396,0.0612648221343874 +60816100001,118398,0.0286561264822134 +60816100001,118781,0.0207509881422925 +60816100001,118782,0.0266798418972332 +60816100001,118897,0.0424901185770751 +60816100002,110346,0.0656934306569343 +60816100002,110349,0.0924574209245742 +60816100002,110372,0.150851581508516 +60816100002,113098,0.0948905109489051 +60816100002,113099,0.116788321167883 +60816100002,115344,0.072992700729927 +60816100002,115531,0.0559610705596107 +60816100002,118007,0.0681265206812652 +60816100002,118397,0.0778588807785888 +60816100002,118678,0.097323600973236 +60816100002,118842,0.10705596107056 +60816100003,112952,0.104240282685512 +60816100003,113096,0.519434628975265 +60816100003,115342,0.0989399293286219 +60816100003,118001,0.0830388692579505 +60816100003,118387,0.0530035335689046 +60816100003,118773,0 +60816100003,118776,0.0671378091872792 +60816100003,118777,0.0742049469964664 +60816101001,110340,0.0644796380090498 +60816101001,110509,0.085972850678733 +60816101001,110652,0.080316742081448 +60816101001,111095,0.080316742081448 +60816101001,111098,0.0169683257918552 +60816101001,111943,0.104072398190045 +60816101001,112948,0.0169683257918552 +60816101001,113091,0.0192307692307692 +60816101001,113102,0.0429864253393665 +60816101001,113490,0.0305429864253394 +60816101001,114063,0.0531674208144796 +60816101001,114988,0.0271493212669683 +60816101001,115533,0.0656108597285068 +60816101001,116081,0.0599547511312217 +60816101001,116645,0.0328054298642534 +60816101001,118000,0.0690045248868778 +60816101001,118531,0.0384615384615385 +60816101001,118532,0.0644796380090498 +60816101001,118898,0.0475113122171946 +60816102011,113494,0.391891891891892 +60816102011,114608,0 +60816102011,114631,0 +60816102011,114632,0 +60816102011,114761,0 +60816102011,116075,0.189189189189189 +60816102011,116450,0.418918918918919 +60816102011,116651,0 +60816102011,117224,0 +60816102012,111653,0.387096774193548 +60816102012,114634,0.0372208436724566 +60816102012,117223,0.0471464019851117 +60816102012,119058,0.317617866004963 +60816102012,119059,0.210918114143921 +60816102013,110217,0.194805194805195 +60816102013,110218,0.0909090909090909 +60816102013,114759,0.672077922077922 +60816102013,117025,0.0422077922077922 +60816102014,110216,0.137980085348506 +60816102014,110451,0.180654338549075 +60816102014,111255,0.00995732574679943 +60816102014,111256,0.0170697012802276 +60816102014,111392,0.578947368421053 +60816102014,111393,0.058321479374111 +60816102014,115669,0.0170697012802276 +60816102021,0,0 +60816102021,110030,0 +60816102021,110369,0 +60816102021,110370,0 +60816102021,110371,0.0415045395590143 +60816102021,110377,0 +60816102021,110449,0.223086900129702 +60816102021,110496,0 +60816102021,110507,0 +60816102021,110646,0 +60816102021,110647,0 +60816102021,110648,0.0752269779507134 +60816102021,110649,0 +60816102021,110653,0 +60816102021,110654,0 +60816102021,110656,0 +60816102021,111103,0 +60816102021,111104,0 +60816102021,111105,0.0012970168612192 +60816102021,111107,0.0402075226977951 +60816102021,111641,0 +60816102021,111676,0 +60816102021,112220,0.0765239948119326 +60816102021,113092,0.00259403372243839 +60816102021,113491,0 +60816102021,113651,0.0881971465629053 +60816102021,113656,0.00259403372243839 +60816102021,113657,0 +60816102021,113659,0.0453955901426719 +60816102021,114067,0 +60816102021,114068,0.0168612191958495 +60816102021,114073,0 +60816102021,114200,0.108949416342412 +60816102021,114202,0.16083009079118 +60816102021,114303,0.00389105058365759 +60816102021,115345,0 +60816102021,115532,0 +60816102021,115666,0 +60816102021,115895,0 +60816102021,115896,0 +60816102021,115900,0 +60816102021,115901,0 +60816102021,115902,0 +60816102021,116436,0 +60816102021,116438,0 +60816102021,116647,0.0246433203631647 +60816102021,116932,0 +60816102021,117023,0.0311284046692607 +60816102021,117024,0.00518806744487678 +60816102021,118303,0.0012970168612192 +60816102021,118529,0.0012970168612192 +60816102021,118536,0 +60816102021,118537,0 +60816102021,118901,0.0492866407263294 +60816102031,110220,0.00895522388059702 +60816102031,110965,0 +60816102031,111125,0.0447761194029851 +60816102031,111254,0.0537313432835821 +60816102031,111258,0.0686567164179104 +60816102031,112409,0.0955223880597015 +60816102031,112571,0.0955223880597015 +60816102031,114221,0 +60816102031,114607,0.0686567164179104 +60816102031,114629,0 +60816102031,117214,0.33134328358209 +60816102031,117220,0.176119402985075 +60816102031,119052,0.00298507462686567 +60816102031,119056,0.0537313432835821 +60816102032,110660,0.0946166394779772 +60816102032,111106,0 +60816102032,111108,0.0603588907014682 +60816102032,111650,0 +60816102032,114199,0.132137030995106 +60816102032,114203,0.194127243066884 +60816102032,116951,0.285481239804241 +60816102032,117247,0.0391517128874388 +60816102032,119050,0.194127243066884 +60816102032,119062,0 +60816103021,0,0 +60816103021,110452,0.575060532687651 +60816103021,111096,0.00121065375302663 +60816103021,111228,0.146489104116223 +60816103021,111432,0 +60816103021,111433,0 +60816103021,112534,0 +60816103021,113492,0 +60816103021,114836,0.0205811138014528 +60816103021,117287,0.00121065375302663 +60816103021,117842,0 +60816103021,118019,0.25544794188862 +60816103031,110534,0.160636758321274 +60816103031,114251,0.0159189580318379 +60816103031,114559,0.167872648335745 +60816103031,115542,0.0130246020260492 +60816103031,116143,0.0882778581765557 +60816103031,116505,0.117221418234443 +60816103031,116677,0.138929088277858 +60816103031,117248,0.232995658465991 +60816103031,117805,0.065123010130246 +60816103032,0,0 +60816103032,110915,0.108726752503577 +60816103032,112957,0.639484978540773 +60816103032,113668,0.184549356223176 +60816103032,115612,0.067238912732475 +60816103033,0,0 +60816103033,112429,0.419895287958115 +60816103033,114762,0.23979057591623 +60816103033,116675,0.284816753926702 +60816103033,117295,0.0554973821989529 +60816103034,0,0 +60816103034,110177,0.0404040404040404 +60816103034,110747,0.0555555555555556 +60816103034,111436,0.351851851851852 +60816103034,112401,0.151515151515152 +60816103034,112564,0.257575757575758 +60816103034,112970,0.143097643097643 +60816103041,112149,0.128318584070796 +60816103041,112402,0.679941002949852 +60816103041,116578,0.191740412979351 +60816103042,0,0 +60816103042,110528,0.544631306597671 +60816103042,112028,0 +60816103042,114459,0.455368693402329 +60816103042,115408,0 +60816103042,115610,0 +60816103042,117420,0 +60816103042,117612,0 +60816103043,0,0 +60816103043,110057,0.0507042253521127 +60816103043,110963,0 +60816103043,112152,0 +60816103043,112566,0.298591549295775 +60816103043,112927,0 +60816103043,115457,0 +60816103043,116854,0 +60816103043,117003,0 +60816103043,117464,0 +60816103043,118406,0.650704225352113 +60816103043,118784,0 +60816104001,110031,0.0514800514800515 +60816104001,111230,0.0373230373230373 +60816104001,112356,0.115830115830116 +60816104001,112734,0 +60816104001,112735,0.0630630630630631 +60816104001,112959,0.0604890604890605 +60816104001,115292,0.0733590733590734 +60816104001,115679,0.093951093951094 +60816104001,117585,0.0785070785070785 +60816104001,117586,0.0501930501930502 +60816104001,118318,0.144144144144144 +60816104001,118320,0.0643500643500644 +60816104001,118321,0.167310167310167 +60816104002,110392,0.0230582524271845 +60816104002,110394,0.0533980582524272 +60816104002,110497,0.0436893203883495 +60816104002,111398,0.0533980582524272 +60816104002,111399,0.0266990291262136 +60816104002,111813,0.111650485436893 +60816104002,111817,0.0898058252427184 +60816104002,112225,0.0594660194174757 +60816104002,113067,0.0837378640776699 +60816104002,115289,0.037621359223301 +60816104002,115291,0.0546116504854369 +60816104002,115678,0.109223300970874 +60816104002,117029,0.0606796116504854 +60816104002,117583,0.0194174757281553 +60816104002,117801,0.0436893203883495 +60816104002,117802,0.0266990291262136 +60816104002,117803,0.0412621359223301 +60816104002,118315,0.0242718446601942 +60816104002,118316,0.037621359223301 +60816105001,110221,0.032 +60816105001,110454,0.004 +60816105001,111810,0.212 +60816105001,111811,0 +60816105001,114637,0 +60816105001,114638,0 +60816105001,115285,0.02 +60816105001,115286,0.088 +60816105001,115672,0.352 +60816105001,117012,0.036 +60816105001,117222,0.004 +60816105001,117225,0.02 +60816105001,117569,0 +60816105001,117581,0.12 +60816105001,117804,0.104 +60816105001,119060,0.008 +60816105002,110222,0.0964912280701754 +60816105002,110223,0.0818713450292398 +60816105002,110224,0.0789473684210526 +60816105002,110453,0.14327485380117 +60816105002,110680,0.0146198830409357 +60816105002,111394,0.00292397660818713 +60816105002,111395,0.178362573099415 +60816105002,111657,0.0760233918128655 +60816105002,112478,0 +60816105002,114989,0.0906432748538012 +60816105002,115670,0.0672514619883041 +60816105002,117227,0.087719298245614 +60816105002,117228,0.0760233918128655 +60816105002,118314,0.00292397660818713 +60816105002,119061,0.00292397660818713 +60816105003,110390,0.441964285714286 +60816105003,111085,0.205357142857143 +60816105003,118215,0.352678571428571 +60816105004,110393,0.0585365853658537 +60816105004,111814,0.0268292682926829 +60816105004,111815,0.0804878048780488 +60816105004,111816,0.0585365853658537 +60816105004,112355,0.102439024390244 +60816105004,114283,0.31219512195122 +60816105004,115288,0.0609756097560976 +60816105004,115290,0.119512195121951 +60816105004,115675,0.0658536585365854 +60816105004,117582,0.0560975609756098 +60816105004,118317,0.0585365853658537 +60816106011,110905,0.0877862595419847 +60816106011,111891,0.127862595419847 +60816106011,113729,0.0534351145038168 +60816106011,113795,0.145038167938931 +60816106011,114489,0.0973282442748092 +60816106011,117303,0.116412213740458 +60816106011,117734,0.0744274809160305 +60816106011,117735,0.0381679389312977 +60816106011,118370,0.259541984732824 +60816106012,111541,0.157575757575758 +60816106012,113079,0.135353535353535 +60816106012,113792,0.0323232323232323 +60816106012,114487,0.0444444444444444 +60816106012,114491,0.0383838383838384 +60816106012,114844,0.0222222222222222 +60816106012,115032,0.141414141414141 +60816106012,115770,0.0646464646464646 +60816106012,115907,0.0464646464646465 +60816106012,117246,0.17979797979798 +60816106012,117736,0.0828282828282828 +60816106012,118409,0.0545454545454545 +60816106013,113370,0.114457831325301 +60816106013,113371,0.0803212851405622 +60816106013,114146,0.124497991967871 +60816106013,114147,0.0481927710843374 +60816106013,114948,0.0983935742971888 +60816106013,115229,0.102409638554217 +60816106013,116165,0.0763052208835341 +60816106013,117302,0.0401606425702811 +60816106013,119142,0.166666666666667 +60816106013,119143,0.14859437751004 +60816106021,111173,0.0111524163568773 +60816106021,113895,0.0855018587360595 +60816106021,114498,0.104089219330855 +60816106021,117309,0.100371747211896 +60816106021,117310,0.0817843866171004 +60816106021,117312,0.104089219330855 +60816106021,117741,0.282527881040892 +60816106021,117743,0.230483271375465 +60816106022,111234,0.5 +60816106022,114497,0.310897435897436 +60816106022,117311,0.189102564102564 +60816106023,110904,0.00520833333333333 +60816106023,110906,0.0434027777777778 +60816106023,111438,0.0329861111111111 +60816106023,111894,0.0572916666666667 +60816106023,111896,0.0746527777777778 +60816106023,111897,0.0642361111111111 +60816106023,113730,0.0208333333333333 +60816106023,113794,0.0711805555555556 +60816106023,114490,0.0729166666666667 +60816106023,114492,0.131944444444444 +60816106023,114495,0.0711805555555556 +60816106023,115673,0.0381944444444444 +60816106023,115680,0.0798611111111111 +60816106023,115769,0.102430555555556 +60816106023,117737,0.0486111111111111 +60816106023,117738,0.0590277777777778 +60816106023,118921,0.0260416666666667 +60816107001,110033,0.070362473347548 +60816107001,110153,0.023454157782516 +60816107001,110457,0.0863539445628998 +60816107001,111199,0.0394456289978678 +60816107001,111232,0.0831556503198294 +60816107001,111540,0.0277185501066098 +60816107001,112922,0 +60816107001,113579,0.0916844349680171 +60816107001,114046,0.0682302771855011 +60816107001,115332,0.0415778251599147 +60816107001,116956,0.309168443496802 +60816107001,116957,0.0874200426439232 +60816107001,117517,0.0415778251599147 +60816107001,117933,0.0298507462686567 +60816107002,110034,0.0547309833024119 +60816107002,110437,0.0547309833024119 +60816107002,111081,0.036178107606679 +60816107002,113580,0.0500927643784787 +60816107002,114012,0.0602968460111317 +60816107002,114563,0.0324675324675325 +60816107002,114564,0.038961038961039 +60816107002,114947,0.120593692022263 +60816107002,114949,0.0714285714285714 +60816107002,114950,0.112244897959184 +60816107002,115504,0.241187384044527 +60816107002,117934,0.0593692022263451 +60816107002,117991,0.0677179962894249 +60816108001,110050,0.295487627365357 +60816108001,110503,0.183406113537118 +60816108001,110967,0.174672489082969 +60816108001,111231,0.0727802037845706 +60816108001,111739,0.136826783114993 +60816108001,113665,0.11353711790393 +60816108001,116955,0.0232896652110626 +60816108002,111185,0.097452934662237 +60816108002,111186,0.070874861572536 +60816108002,111187,0.0697674418604651 +60816108002,111194,0.0199335548172757 +60816108002,112570,0.119601328903654 +60816108002,113860,0.0830564784053156 +60816108002,113861,0.248062015503876 +60816108002,116670,0.174972314507198 +60816108002,117927,0.116279069767442 +60816109001,110374,0.130434782608696 +60816109001,110596,0.0448807854137447 +60816109001,110659,0.0953716690042076 +60816109001,111109,0.091164095371669 +60816109001,113017,0.0631136044880785 +60816109001,113018,0.0532959326788219 +60816109001,114070,0.0701262272089762 +60816109001,114071,0.0603085553997195 +60816109001,114072,0.0659186535764376 +60816109001,115898,0.05890603085554 +60816109001,116435,0.0504908835904628 +60816109001,116649,0.11781206171108 +60816109001,117371,0.0981767180925666 +60816109002,110434,0.064968152866242 +60816109002,110599,0.0777070063694267 +60816109002,110964,0.0445859872611465 +60816109002,113442,0.0484076433121019 +60816109002,114204,0.0636942675159236 +60816109002,114220,0.103184713375796 +60816109002,114419,0.0738853503184713 +60816109002,116437,0.0764331210191083 +60816109002,116650,0.089171974522293 +60816109002,117531,0.0751592356687898 +60816109002,117932,0.282802547770701 +60816109003,110373,0.118598382749326 +60816109003,110657,0.123989218328841 +60816109003,110658,0.1455525606469 +60816109003,111101,0.21832884097035 +60816109003,113655,0.129380053908356 +60816109003,113660,0.115902964959569 +60816109003,114069,0.115902964959569 +60816109003,118534,0.032345013477089 +60816109004,110289,0.0783505154639175 +60816109004,110598,0.0824742268041237 +60816109004,112292,0.0721649484536082 +60816109004,113019,0.0989690721649484 +60816109004,113024,0.0618556701030928 +60816109004,113296,0.105154639175258 +60816109004,113302,0.0680412371134021 +60816109004,113439,0.0309278350515464 +60816109004,113443,0.0618556701030928 +60816109004,114561,0.0762886597938144 +60816109004,116386,0.0927835051546392 +60816109004,118681,0.101030927835052 +60816109004,118682,0.0701030927835052 +60816110001,110597,0.0850574712643678 +60816110001,113297,0.133333333333333 +60816110001,114045,0.0896551724137931 +60816110001,114282,0.0942528735632184 +60816110001,116382,0.188505747126437 +60816110001,116424,0.0804597701149425 +60816110001,117374,0.248275862068966 +60816110001,117984,0.0804597701149425 +60816110002,113020,0.12933025404157 +60816110002,113021,0.10161662817552 +60816110002,113290,0.0969976905311778 +60816110002,113300,0.023094688221709 +60816110002,113435,0.113163972286374 +60816110002,113441,0.110854503464203 +60816110002,114640,0.0785219399538106 +60816110002,116378,0.106235565819861 +60816110002,116381,0.0808314087759815 +60816110002,117373,0.159353348729792 +60816110003,113515,0.0660377358490566 +60816110003,114007,0.226415094339623 +60816110003,116385,0.117924528301887 +60816110003,116849,0.183962264150943 +60816110003,117930,0.0495283018867925 +60816110003,119212,0.0731132075471698 +60816110003,119213,0.283018867924528 +60816110004,110175,0.0762800417972832 +60816110004,110419,0.191222570532915 +60816110004,111188,0.0480668756530825 +60816110004,111193,0.0261233019853709 +60816110004,113070,0.0668756530825496 +60816110004,113862,0.0376175548589342 +60816110004,114050,0.0198537095088819 +60816110004,115296,0.0282131661442006 +60816110004,116363,0.0365726227795193 +60816110004,117375,0.0208986415882968 +60816110004,117533,0.0438871473354232 +60816110004,117928,0.134796238244514 +60816110004,117943,0.180773249738767 +60816110004,118260,0.0606060606060606 +60816110004,119206,0.0282131661442006 +60816111001,110045,0.0456905503634476 +60816111001,110073,0.063343717549325 +60816111001,110111,0.0342679127725857 +60816111001,110431,0.0695742471443406 +60816111001,110501,0.0747663551401869 +60816111001,111168,0.0228452751817238 +60816111001,111437,0.0384215991692627 +60816111001,113436,0.0353063343717549 +60816111001,113984,0.0269989615784008 +60816111001,114405,0.0228452751817238 +60816111001,114806,0.104880581516096 +60816111001,114992,0.0384215991692627 +60816111001,116070,0.0612668743509865 +60816111001,116366,0.0488058151609553 +60816111001,116369,0.0550363447559709 +60816111001,116370,0.0342679127725857 +60816111001,117915,0.0404984423676012 +60816111001,118053,0.0404984423676012 +60816111001,118129,0.0218068535825545 +60816111001,118133,0.0332294911734164 +60816111001,118656,0.0872274143302181 +60816111002,110426,0.0419235511713933 +60816111002,110427,0.0715166461159063 +60816111002,111787,0.0665844636251541 +60816111002,112494,0.00493218249075216 +60816111002,112495,0.064118372379778 +60816111002,112497,0.0394574599260173 +60816111002,112500,0.0271270036991369 +60816111002,113111,0.117139334155364 +60816111002,113291,0.0443896424167694 +60816111002,113292,0.0271270036991369 +60816111002,113293,0.0382244143033292 +60816111002,113707,0.0456226880394575 +60816111002,113893,0.0135635018495684 +60816111002,114003,0.0209617755856967 +60816111002,115833,0.0345252774352651 +60816111002,116379,0.0542540073982737 +60816111002,116380,0.0419235511713933 +60816111002,116810,0.0826140567200987 +60816111002,116812,0.030826140567201 +60816111002,116813,0.0406905055487053 +60816111002,116814,0.0591861898890259 +60816111002,118856,0 +60816111002,118858,0.0332922318125771 +60816111003,0,0 +60816111003,110637,0.13135593220339 +60816111003,111637,0.497881355932203 +60816111003,113840,0.0656779661016949 +60816111003,113983,0.11228813559322 +60816111003,116464,0.0783898305084746 +60816111003,118130,0.114406779661017 +60816112001,110429,0.0243217960710945 +60816112001,110430,0.0523854069223573 +60816112001,110432,0.0439663236669785 +60816112001,111190,0 +60816112001,111195,0.0505144995322732 +60816112001,111196,0.0542563143124415 +60816112001,113033,0.0411599625818522 +60816112001,113437,0.0495790458372311 +60816112001,113863,0.0617399438727783 +60816112001,114004,0.0617399438727783 +60816112001,114005,0.0411599625818522 +60816112001,114006,0.039289055191768 +60816112001,114008,0.0112254443405051 +60816112001,114009,0.0439663236669785 +60816112001,114413,0.0252572497661366 +60816112001,114414,0.039289055191768 +60816112001,114417,0.028999064546305 +60816112001,115331,0.039289055191768 +60816112001,115336,0.0355472404115996 +60816112001,115416,0.0551917680074836 +60816112001,116877,0 +60816112001,116949,0.0355472404115996 +60816112001,118257,0.0140318054256314 +60816112001,119205,0.0308699719363891 +60816112001,119207,0.0495790458372311 +60816112001,119208,0.048643592142189 +60816112001,119210,0.0224508886810103 +60816113001,111036,0.058 +60816113001,111542,0.086 +60816113001,112297,0.054 +60816113001,114148,0.042 +60816113001,114150,0.056 +60816113001,115082,0.03 +60816113001,115083,0.098 +60816113001,115085,0.094 +60816113001,115158,0.024 +60816113001,117534,0.098 +60816113001,118461,0.082 +60816113001,118462,0.054 +60816113001,118467,0.108 +60816113001,118548,0.116 +60816113002,110004,0.0589101620029455 +60816113002,111547,0.0147275405007364 +60816113002,111548,0.0309278350515464 +60816113002,112300,0.0559646539027982 +60816113002,113074,0.0559646539027982 +60816113002,113427,0.0397643593519882 +60816113002,114047,0.0927835051546392 +60816113002,114149,0.0338733431516937 +60816113002,115463,0.120765832106038 +60816113002,116218,0.138438880706922 +60816113002,116950,0.0353460972017673 +60816113002,117243,0.0206185567010309 +60816113002,117989,0.0839469808541973 +60816113002,118069,0.0795287187039764 +60816113002,118460,0.0235640648011782 +60816113002,118463,0.0721649484536083 +60816113002,118468,0.0427098674521355 +60816113003,110037,0.361538461538462 +60816113003,114956,0.142307692307692 +60816113003,114995,0.0846153846153846 +60816113003,115084,0.411538461538462 +60816113004,111037,0.296078431372549 +60816113004,112432,0.101960784313725 +60816113004,112484,0.237254901960784 +60816113004,115508,0.2 +60816113004,116219,0.0764705882352941 +60816113004,116360,0.0882352941176471 +60816114001,111042,0.0900473933649289 +60816114001,113988,0.0758293838862559 +60816114001,115333,0.184834123222749 +60816114001,115506,0.265402843601896 +60816114001,117992,0.383886255924171 +60816114002,110021,0.0411522633744856 +60816114002,110116,0.0452674897119342 +60816114002,110908,0.308641975308642 +60816114002,113799,0.176954732510288 +60816114002,116304,0.411522633744856 +60816114002,117425,0.0164609053497942 +60816114003,112444,0.084051724137931 +60816114003,113520,0.112068965517241 +60816114003,114565,0.148706896551724 +60816114003,115086,0.0193965517241379 +60816114003,118465,0.165948275862069 +60816114003,118469,0.0625 +60816114003,118470,0.316810344827586 +60816114003,118472,0.0905172413793103 +60816114004,111044,0.156387665198238 +60816114004,112294,0.0969162995594714 +60816114004,113072,0.0242290748898678 +60816114004,113073,0.151982378854626 +60816114004,113080,0.0969162995594714 +60816114004,113734,0.0550660792951542 +60816114004,113791,0.162995594713656 +60816114004,115767,0.107929515418502 +60816114004,117305,0.0638766519823789 +60816114004,118026,0.0837004405286344 +60816115001,110165,0.242063492063492 +60816115001,111087,0.0277777777777778 +60816115001,113076,0.26984126984127 +60816115001,114136,0.194444444444444 +60816115001,117315,0.0436507936507936 +60816115001,117698,0.222222222222222 +60816115002,110040,0.118421052631579 +60816115002,110909,0.155263157894737 +60816115002,110912,0.0710526315789474 +60816115002,112030,0.197368421052632 +60816115002,114493,0.160526315789474 +60816115002,114500,0.113157894736842 +60816115002,117308,0.0815789473684211 +60816115002,118020,0.102631578947368 +60816115003,110164,0.174846625766871 +60816115003,110947,0.202453987730061 +60816115003,110948,0.0245398773006135 +60816115003,110950,0.156441717791411 +60816115003,111174,0.245398773006135 +60816115003,112226,0.196319018404908 +60816116001,110128,0.149397590361446 +60816116001,110955,0.0746987951807229 +60816116001,111716,0.0843373493975904 +60816116001,112196,0.00240963855421687 +60816116001,112801,0.0674698795180723 +60816116001,114684,0.101204819277108 +60816116001,114685,0.0987951807228916 +60816116001,115079,0.0795180722891566 +60816116001,115995,0.091566265060241 +60816116001,116573,0.0578313253012048 +60816116001,116574,0.0795180722891566 +60816116001,118064,0.113253012048193 +60816116002,110954,0.0124688279301746 +60816116002,111175,0.0822942643391521 +60816116002,113082,0.0423940149625935 +60816116002,114255,0.396508728179551 +60816116002,117845,0.0648379052369077 +60816116002,117920,0.401496259351621 +60816117001,110251,0.075875486381323 +60816117001,110397,0.0622568093385214 +60816117001,110876,0.0136186770428016 +60816117001,112367,0.136186770428016 +60816117001,112802,0.066147859922179 +60816117001,116139,0.0797665369649805 +60816117001,117121,0.0700389105058366 +60816117001,117590,0.0914396887159533 +60816117001,117591,0.0544747081712062 +60816117001,117592,0.0739299610894942 +60816117001,118328,0.0680933852140078 +60816117001,118973,0.208171206225681 +60816117002,110250,0.058027079303675 +60816117002,112195,0.264990328820116 +60816117002,115462,0.145067698259188 +60816117002,115732,0.0502901353965184 +60816117002,115996,0.0560928433268859 +60816117002,116226,0.104448742746615 +60816117002,116572,0.0483558994197292 +60816117002,117589,0.0696324951644101 +60816117002,118065,0.0735009671179884 +60816117002,118325,0.0522243713733075 +60816117002,118563,0.0773694390715667 +60816117003,110169,0 +60816117003,111956,0.135977337110482 +60816117003,115826,0.135977337110482 +60816117003,116228,0.158640226628895 +60816117003,116229,0.138810198300283 +60816117003,118327,0.141643059490085 +60816117003,118330,0.288951841359773 +60816117004,0,0 +60816117004,110498,0 +60816117004,111400,0 +60816117004,112357,0 +60816117004,112733,0 +60816117004,114616,0 +60816117004,115538,0 +60816117004,115681,0 +60816117004,117587,0 +60816117004,117702,0 +60816117004,118223,0 +60816117004,118224,0 +60816117004,118971,0 +60816118001,0,0 +60816118001,110014,0.340050377833753 +60816118001,110398,0.10831234256927 +60816118001,111315,0 +60816118001,112364,0 +60816118001,112368,0 +60816118001,112369,0.0327455919395466 +60816118001,112370,0.0453400503778338 +60816118001,113907,0 +60816118001,114257,0 +60816118001,115827,0.0755667506297229 +60816118001,115828,0.0730478589420655 +60816118001,116068,0 +60816118001,116230,0.130982367758186 +60816118001,117430,0 +60816118001,117593,0.123425692695214 +60816118001,118334,0.0680100755667506 +60816118001,118974,0.00251889168765743 +60816118002,110051,0.0660980810234542 +60816118002,110324,0.0682302771855011 +60816118002,111320,0.0618336886993603 +60816118002,113364,0.0746268656716418 +60816118002,113721,0.100213219616205 +60816118002,113722,0.102345415778252 +60816118002,113908,0.0639658848614073 +60816118002,113909,0.219616204690832 +60816118002,116069,0.185501066098081 +60816118002,117706,0.0575692963752665 +60816119001,113910,0.120762711864407 +60816119001,117296,0.0275423728813559 +60816119001,117707,0.591101694915254 +60816119001,117721,0.260593220338983 +60816119002,0,0 +60816119002,112013,0.0863636363636364 +60816119002,115028,0.0772727272727273 +60816119002,116276,0.745454545454545 +60816119002,117723,0.0909090909090909 +60816119003,110044,0.179310344827586 +60816119003,110326,0.0896551724137931 +60816119003,112412,0.1 +60816119003,114473,0.162068965517241 +60816119003,116864,0.110344827586207 +60816119003,117297,0.196551724137931 +60816119003,117299,0.162068965517241 +60816119004,0,0 +60816119004,114474,0.707865168539326 +60816119004,116863,0.123595505617978 +60816119004,117298,0.168539325842697 +60816119005,110672,0.0581395348837209 +60816119005,111324,0.101744186046512 +60816119005,112410,0.402616279069767 +60816119005,114299,0.0406976744186047 +60816119005,114470,0.0436046511627907 +60816119005,114841,0.168604651162791 +60816119005,114881,0.184593023255814 +60816119006,113634,0.0894308943089431 +60816119006,113723,0.16260162601626 +60816119006,114059,0.132791327913279 +60816119006,116282,0.192411924119241 +60816119006,116722,0.203252032520325 +60816119006,118519,0.219512195121951 +60816120001,110314,0.210648148148148 +60816120001,110316,0.333333333333333 +60816120001,111319,0.0902777777777778 +60816120001,111321,0.0532407407407407 +60816120001,111784,0.0833333333333333 +60816120001,115879,0.175925925925926 +60816120001,118331,0.0532407407407407 +60816120002,110735,0.0197802197802198 +60816120002,110894,0.0659340659340659 +60816120002,111316,0.0967032967032967 +60816120002,111445,0.164835164835165 +60816120002,113159,0.114285714285714 +60816120002,113163,0.103296703296703 +60816120002,113165,0.0637362637362637 +60816120002,113167,0.0703296703296703 +60816120002,113906,0.112087912087912 +60816120002,116718,0.105494505494505 +60816120002,117139,0.0835164835164835 +60816120003,110252,0.0396341463414634 +60816120003,110306,0.0701219512195122 +60816120003,110312,0.170731707317073 +60816120003,110733,0.182926829268293 +60816120003,112804,0.185975609756098 +60816120003,112806,0.0914634146341463 +60816120003,113156,0.0640243902439024 +60816120003,113362,0.0975609756097561 +60816120003,117136,0.0975609756097561 +60816120003,117452,0 +60816120004,110317,0 +60816120004,111446,0.0984615384615385 +60816120004,111447,0.129230769230769 +60816120004,111449,0.135384615384615 +60816120004,111633,0.00307692307692308 +60816120004,111785,0.215384615384615 +60816120004,112008,0.150769230769231 +60816120004,113911,0.08 +60816120004,113912,0.0830769230769231 +60816120004,116721,0.104615384615385 +60816121001,113361,0.131645569620253 +60816121001,113632,0.29873417721519 +60816121001,113697,0.118987341772152 +60816121001,115725,0.149367088607595 +60816121001,116153,0.0531645569620253 +60816121001,116716,0.248101265822785 +60816121002,115824,0.418055555555556 +60816121002,117138,0.581944444444444 +60816121003,115912,0.45766590389016 +60816121003,116862,0.54233409610984 +60816121004,110321,0.536458333333333 +60816121004,115537,0 +60816121004,116723,0.463541666666667 +60816121005,116861,0.0757575757575758 +60816121005,118520,0.924242424242424 +60816125001,110167,0 +60816125001,110949,0.0392422192151556 +60816125001,110953,0.171853856562923 +60816125001,111179,0.117726657645467 +60816125001,113847,0 +60816125001,114138,0.175913396481732 +60816125001,115075,0.06765899864682 +60816125001,115077,0.163734776725304 +60816125001,115458,0.16914749661705 +60816125001,115915,0 +60816125001,118657,0.094722598105548 +60816125002,110114,0.101626016260163 +60816125002,110638,0.0853658536585366 +60816125002,113004,0.304878048780488 +60816125002,114408,0.0121951219512195 +60816125002,116372,0.150406504065041 +60816125002,116796,0.0873983739837398 +60816125002,117878,0.258130081300813 +60816125003,110186,0.00746268656716418 +60816125003,110193,0.0559701492537313 +60816125003,110194,0.054726368159204 +60816125003,112089,0.0236318407960199 +60816125003,114986,0.180348258706468 +60816125003,115582,0.104477611940299 +60816125003,115583,0.0323383084577114 +60816125003,116876,0.164179104477612 +60816125003,118442,0.20771144278607 +60816125003,118443,0.0808457711442786 +60816125003,118966,0.0883084577114428 +60816126001,110042,0.201456310679612 +60816126001,115219,0.0970873786407767 +60816126001,115220,0.0776699029126214 +60816126001,115514,0.315533980582524 +60816126001,116565,0.058252427184466 +60816126001,117922,0 +60816126001,118968,0.087378640776699 +60816126001,119133,0.162621359223301 +60816126002,110106,0.055472263868066 +60816126002,115217,0.0704647676161919 +60816126002,115662,0.362818590704648 +60816126002,116560,0 +60816126002,116563,0.0359820089955022 +60816126002,116564,0.15592203898051 +60816126002,117924,0.0299850074962519 +60816126002,118062,0.179910044977511 +60816126002,118965,0.109445277361319 +60816126002,119129,0 +60816126003,110951,0 +60816126003,110952,0 +60816126003,111236,0 +60816126003,113005,0.144444444444444 +60816126003,114361,0 +60816126003,114928,0.417777777777778 +60816126003,115076,0 +60816126003,116373,0 +60816126003,116931,0.0177777777777778 +60816126003,117356,0.14 +60816126003,118059,0.0155555555555556 +60816126003,118658,0.264444444444444 +60816126003,118964,0 +60816126004,111788,0.553259141494436 +60816126004,113012,0.1939586645469 +60816126004,116562,0.130365659777424 +60816126004,117994,0.12241653418124 +60816127001,110105,0.0882352941176471 +60816127001,112284,0.0882352941176471 +60816127001,113083,0.205882352941176 +60816127001,113996,0.194117647058824 +60816127001,115597,0.120588235294118 +60816127001,116566,0.179411764705882 +60816127001,118967,0.0852941176470588 +60816127001,119131,0.0382352941176471 +60816127002,110575,0.0536912751677852 +60816127002,111118,0.0447427293064877 +60816127002,113011,0.105145413870246 +60816127002,113993,0.0469798657718121 +60816127002,113995,0.12751677852349 +60816127002,114927,0.0536912751677852 +60816127002,117353,0.0715883668903803 +60816127002,117354,0.0827740492170022 +60816127002,117355,0.087248322147651 +60816127002,117357,0.0984340044742729 +60816127002,118022,0.228187919463087 +60816128001,110122,0.0328638497652582 +60816128001,110161,0.154929577464789 +60816128001,113628,0.0453834115805947 +60816128001,114407,0.0688575899843505 +60816128001,114929,0.081377151799687 +60816128001,115511,0.156494522691706 +60816128001,116930,0.0782472613458529 +60816128001,116933,0.0688575899843505 +60816128001,116934,0.0688575899843505 +60816128001,116935,0.0579029733959311 +60816128001,118055,0.18622848200313 +60816128002,110002,0.0551330798479087 +60816128002,110162,0.064638783269962 +60816128002,114053,0.133079847908745 +60816128002,114055,0.300380228136882 +60816128002,114133,0.106463878326996 +60816128002,115455,0.0836501901140684 +60816128002,115726,0.0532319391634981 +60816128002,116801,0.0551330798479087 +60816128002,117358,0.0760456273764259 +60816128002,118661,0.0532319391634981 +60816128002,118666,0.0190114068441065 +60816129001,110020,0.0147058823529412 +60816129001,110119,0.0866013071895425 +60816129001,110571,0.0457516339869281 +60816129001,110572,0.0408496732026144 +60816129001,110574,0.0735294117647059 +60816129001,112536,0.161764705882353 +60816129001,113008,0.0310457516339869 +60816129001,113992,0.0375816993464052 +60816129001,114410,0.0686274509803922 +60816129001,114411,0.0343137254901961 +60816129001,116798,0.0866013071895425 +60816129001,116800,0.076797385620915 +60816129001,116923,0.0359477124183007 +60816129001,116928,0.0473856209150327 +60816129001,116929,0.0310457516339869 +60816129001,117839,0.0294117647058824 +60816129001,118660,0.0751633986928105 +60816129001,118662,0.0228758169934641 +60816129002,111946,0.146258503401361 +60816129002,113006,0.054421768707483 +60816129002,113845,0.122448979591837 +60816129002,113989,0.0850340136054422 +60816129002,113990,0.0816326530612245 +60816129002,116797,0.0714285714285714 +60816129002,116888,0.159863945578231 +60816129002,116926,0.0884353741496599 +60816129002,117697,0.19047619047619 +60816129003,110578,0.110062893081761 +60816129003,111170,0.144654088050314 +60816129003,111172,0.0408805031446541 +60816129003,113341,0.0157232704402516 +60816129003,115069,0.141509433962264 +60816129003,116936,0.0754716981132075 +60816129003,116937,0.169811320754717 +60816129003,118054,0.132075471698113 +60816129003,118665,0.169811320754717 +60816129004,113340,0.114119922630561 +60816129004,117914,0.818181818181818 +60816129004,118969,0.0676982591876209 +60816130001,110120,0.150121065375303 +60816130001,110121,0.0460048426150121 +60816130001,110124,0.319612590799031 +60816130001,112286,0.213075060532688 +60816130001,112828,0.0278450363196126 +60816130001,115224,0.0786924939467312 +60816130001,118836,0.049636803874092 +60816130001,118837,0.0387409200968523 +60816130001,118838,0.076271186440678 +60816130002,0,0 +60816130002,110248,0.0427728613569322 +60816130002,111268,0.00147492625368732 +60816130002,112091,0.210914454277286 +60816130002,114062,0.486725663716814 +60816130002,115225,0.0545722713864307 +60816130002,116163,0 +60816130002,116927,0.20353982300885 +60816132001,0,0 +60816132001,111090,0.606617647058823 +60816132001,113444,0.198529411764706 +60816132001,114074,0 +60816132001,114463,0.00183823529411765 +60816132001,115226,0 +60816132001,118970,0.193014705882353 +60816132002,110038,0.142608695652174 +60816132002,110039,0.100869565217391 +60816132002,111267,0.031304347826087 +60816132002,112010,0.00695652173913044 +60816132002,112093,0.0939130434782609 +60816132002,112610,0.0539130434782609 +60816132002,112800,0.0382608695652174 +60816132002,113077,0.311304347826087 +60816132002,115227,0.0991304347826087 +60816132002,115228,0.0660869565217391 +60816132002,116164,0.0556521739130435 +60816132003,110246,0.108459869848156 +60816132003,112567,0.0629067245119306 +60816132003,114083,0.151843817787419 +60816132003,114810,0.151843817787419 +60816132003,116297,0.017353579175705 +60816132003,117429,0.459869848156182 +60816132003,118922,0.0477223427331887 +60816132004,110640,0.0128755364806867 +60816132004,111887,0.187410586552217 +60816132004,113353,0.0400572246065808 +60816132004,115002,0.150214592274678 +60816132004,116357,0.566523605150215 +60816132004,116588,0.0429184549356223 +60816132005,111091,0.19434628975265 +60816132005,112288,0.0989399293286219 +60816132005,112640,0.0989399293286219 +60816132005,112676,0.23321554770318 +60816132005,115223,0.0777385159010601 +60816132005,116156,0.215547703180212 +60816132005,117990,0.0812720848056537 +60816133001,111182,0 +60816133001,111372,0.123539232053422 +60816133001,111586,0.0517529215358932 +60816133001,112302,0.0717863105175292 +60816133001,114955,0.0734557595993322 +60816133001,115144,0.0250417362270451 +60816133001,115454,0.0500834724540902 +60816133001,115958,0.0183639398998331 +60816133001,116423,0.103505843071786 +60816133001,116880,0.0818030050083473 +60816133001,116998,0.0801335559265442 +60816133001,117443,0.25542570951586 +60816133001,117987,0.0651085141903172 +60816133002,110286,0.0725995316159251 +60816133002,110287,0.515222482435597 +60816133002,111670,0.325526932084309 +60816133002,112537,0.053864168618267 +60816133002,115817,0.0327868852459016 +60816134001,110294,0.11358024691358 +60816134001,111181,0.0765432098765432 +60816134001,112004,0.106172839506173 +60816134001,113029,0.00987654320987654 +60816134001,113854,0.0962962962962963 +60816134001,114460,0.106172839506173 +60816134001,115372,0.0320987654320988 +60816134001,117379,0.0345679012345679 +60816134001,117424,0.0469135802469136 +60816134001,117513,0.0395061728395062 +60816134001,117850,0.192592592592593 +60816134001,118052,0.0790123456790123 +60816134001,119194,0.00246913580246914 +60816134001,119200,0.0641975308641975 +60816134002,110418,0.50381679389313 +60816134002,112746,0.0114503816793893 +60816134002,115909,0.0305343511450382 +60816134002,117883,0.0343511450381679 +60816134002,118375,0.0229007633587786 +60816134002,118752,0.0114503816793893 +60816134002,118896,0.324427480916031 +60816134002,119201,0.0152671755725191 +60816134002,119203,0.0458015267175573 +60816134003,110027,0 +60816134003,110065,0.176938369781312 +60816134003,110493,0.0755467196819085 +60816134003,110639,0.121272365805169 +60816134003,111080,0.0437375745526839 +60816134003,113841,0.0715705765407555 +60816134003,113842,0.204771371769384 +60816134003,113857,0.10337972166998 +60816134003,114930,0.0556660039761431 +60816134003,115066,0.00795228628230616 +60816134003,116274,0.0815109343936382 +60816134003,117515,0.0178926441351889 +60816134003,119204,0.0397614314115308 +60816135011,0,0 +60816135011,112161,0.0649546827794562 +60816135011,112851,0.0558912386706949 +60816135011,113310,0.0800604229607251 +60816135011,113866,0.16012084592145 +60816135011,115843,0.0513595166163142 +60816135011,116180,0.0800604229607251 +60816135011,116323,0.119335347432024 +60816135011,116969,0.0468277945619335 +60816135011,117661,0.0981873111782477 +60816135011,117817,0.0574018126888218 +60816135011,117952,0.0483383685800604 +60816135011,118624,0.137462235649547 +60816135012,0,0 +60816135012,110771,0 +60816135012,110839,0 +60816135012,111750,0 +60816135012,111829,0.0108024691358025 +60816135012,112383,0 +60816135012,112643,0.290123456790123 +60816135012,112690,0.0246913580246914 +60816135012,112695,0 +60816135012,113864,0 +60816135012,116334,0 +60816135012,117618,0.029320987654321 +60816135012,117669,0.00617283950617284 +60816135012,117756,0 +60816135012,119223,0.638888888888889 +60816135021,110831,0.542395693135935 +60816135021,110983,0.00672947510094213 +60816135021,111602,0.053835800807537 +60816135021,112159,0.0134589502018843 +60816135021,112381,0.053835800807537 +60816135021,112843,0.0376850605652759 +60816135021,114570,0.0699865410497981 +60816135021,115781,0.0524899057873486 +60816135021,117173,0.0699865410497981 +60816135021,119001,0.0995962314939435 +60816135022,0,0 +60816135022,111740,0.0494791666666667 +60816135022,113037,0.09375 +60816135022,113308,0.0677083333333333 +60816135022,114571,0.130208333333333 +60816135022,115164,0.0572916666666667 +60816135022,115306,0.3046875 +60816135022,116825,0.0833333333333333 +60816135022,117809,0.213541666666667 +60816135023,115786,0.110726643598616 +60816135023,116026,0.027681660899654 +60816135023,116516,0.423875432525952 +60816135023,117175,0.122837370242215 +60816135023,117948,0.197231833910035 +60816135023,118100,0.0519031141868512 +60816135023,118184,0.0622837370242214 +60816135023,118728,0.00346020761245675 +60816135024,110610,0.0205479452054795 +60816135024,111608,0.125 +60816135024,111609,0.089041095890411 +60816135024,111746,0.0667808219178082 +60816135024,112839,0.00856164383561644 +60816135024,112840,0.0633561643835616 +60816135024,117947,0.479452054794521 +60816135024,118096,0.0513698630136986 +60816135024,118349,0 +60816135024,118732,0.0222602739726027 +60816135024,119003,0.0222602739726027 +60816135024,119005,0.0513698630136986 +60816136001,0,0 +60816136001,111053,0.0209580838323353 +60816136001,111054,0.0608782435129741 +60816136001,111973,0.0029940119760479 +60816136001,111974,0.0648702594810379 +60816136001,111977,0.0119760479041916 +60816136001,112693,0 +60816136001,113752,0.0349301397205589 +60816136001,113753,0.0369261477045908 +60816136001,113760,0.0379241516966068 +60816136001,113763,0.0379241516966068 +60816136001,114307,0.0738522954091816 +60816136001,115242,0.0189620758483034 +60816136001,115244,0.0848303393213573 +60816136001,115245,0.305389221556886 +60816136001,115481,0.0239520958083832 +60816136001,115617,0.0139720558882236 +60816136001,115684,0 +60816136001,118088,0.0518962075848303 +60816136001,118155,0.0279441117764471 +60816136001,118489,0.0898203592814371 +60816136002,110764,0 +60816136002,111598,0.0827586206896552 +60816136002,111741,0.112068965517241 +60816136002,112314,0.0275862068965517 +60816136002,112319,0.0224137931034483 +60816136002,112375,0.275862068965517 +60816136002,113755,0.0672413793103448 +60816136002,114773,0.046551724137931 +60816136002,115248,0.220689655172414 +60816136002,116592,0.13448275862069 +60816136002,117165,0.0103448275862069 +60816136003,111599,0.0262390670553936 +60816136003,112320,0.0349854227405248 +60816136003,112832,0.221574344023324 +60816136003,113306,0.134110787172012 +60816136003,115303,0.451895043731778 +60816136003,116824,0.102040816326531 +60816136003,118085,0.00291545189504373 +60816136003,118994,0.0262390670553936 +60816136004,0,0 +60816136004,112321,0.899598393574297 +60816136004,114313,0.036144578313253 +60816136004,115631,0.0200803212851406 +60816136004,117171,0.0401606425702811 +60816136004,119002,0.00401606425702811 +60816137001,110460,0.143181818181818 +60816137001,110463,0.0102272727272727 +60816137001,110464,0.00568181818181818 +60816137001,111751,0.00795454545454545 +60816137001,111760,0.00681818181818182 +60816137001,112386,0.231818181818182 +60816137001,112655,0.0443181818181818 +60816137001,113607,0.0897727272727273 +60816137001,113609,0.0113636363636364 +60816137001,114163,0.0386363636363636 +60816137001,114574,0.0215909090909091 +60816137001,114576,0.0420454545454545 +60816137001,114578,0 +60816137001,114579,0.00113636363636364 +60816137001,114580,0.00909090909090909 +60816137001,114719,0.0352272727272727 +60816137001,115095,0.0329545454545455 +60816137001,116031,0.0181818181818182 +60816137001,116032,0.0375 +60816137001,117076,0.00454545454545455 +60816137001,117616,0.0329545454545455 +60816137001,117752,0.0375 +60816137001,117807,0.120454545454545 +60816137001,117955,0.0170454545454545 +60816137002,0,0 +60816137002,110608,0.00383141762452107 +60816137002,111407,0 +60816137002,112509,0.513409961685824 +60816137002,112753,0.329501915708812 +60816137002,113205,0.137931034482759 +60816137002,114229,0 +60816137002,114432,0 +60816137002,114435,0.00383141762452107 +60816137002,114777,0 +60816137002,118863,0.0114942528735632 +60816137003,0,0 +60816137003,110465,0.306167400881057 +60816137003,110467,0.314977973568282 +60816137003,110768,0.0066079295154185 +60816137003,112652,0.0682819383259912 +60816137003,114771,0.0154185022026432 +60816137003,115844,0.0991189427312775 +60816137003,116036,0.140969162995595 +60816137003,116247,0.00220264317180617 +60816137003,116335,0.0462555066079295 +60816137004,0,0 +60816137004,110462,0.13265306122449 +60816137004,111752,0.0994897959183673 +60816137004,111758,0.0255102040816327 +60816137004,112506,0.0153061224489796 +60816137004,112646,0.100765306122449 +60816137004,112649,0.0586734693877551 +60816137004,112691,0.0255102040816327 +60816137004,116035,0.0752551020408163 +60816137004,116188,0.0471938775510204 +60816137004,116970,0.038265306122449 +60816137004,117656,0.0943877551020408 +60816137004,117657,0.0344387755102041 +60816137004,117954,0.048469387755102 +60816137004,118150,0.204081632653061 +60816137005,112697,0.0207134637514384 +60816137005,112752,0.180667433831991 +60816137005,113307,0.0172612197928654 +60816137005,113313,0.22439585730725 +60816137005,113318,0.361334867663982 +60816137005,114582,0.0540851553509781 +60816137005,116037,0.048331415420023 +60816137005,116962,0.0310701956271577 +60816137005,118862,0.00805523590333717 +60816137005,118865,0.0540851553509781 +60816138001,0,0 +60816138001,110612,0.127272727272727 +60816138001,110982,0.185454545454545 +60816138001,111552,0.0181818181818182 +60816138001,112108,0 +60816138001,112238,0.0290909090909091 +60816138001,113038,0.0581818181818182 +60816138001,113250,0.0581818181818182 +60816138001,113871,0.0363636363636364 +60816138001,114023,0.0218181818181818 +60816138001,114436,0.00727272727272727 +60816138001,114960,0 +60816138001,114961,0 +60816138001,115301,0.0254545454545455 +60816138001,116241,0 +60816138001,116520,0.170909090909091 +60816138001,117662,0.196363636363636 +60816138001,117812,0.0290909090909091 +60816138001,118692,0 +60816138001,118693,0.0363636363636364 +60816138002,0,0 +60816138002,110840,0.1 +60816138002,110841,0.0222222222222222 +60816138002,111045,0.00740740740740741 +60816138002,112309,0.037037037037037 +60816138002,112656,0.0814814814814815 +60816138002,112756,0.0259259259259259 +60816138002,113198,0.125925925925926 +60816138002,113200,0 +60816138002,113596,0.0703703703703704 +60816138002,114162,0.166666666666667 +60816138002,114165,0.0296296296296296 +60816138002,114781,0.0222222222222222 +60816138002,114863,0.00740740740740741 +60816138002,115099,0 +60816138002,115689,0.062962962962963 +60816138002,116042,0.0222222222222222 +60816138002,117078,0.0111111111111111 +60816138002,117079,0.0444444444444444 +60816138002,117080,0.0185185185185185 +60816138002,117660,0 +60816138002,118688,0.111111111111111 +60816138002,118690,0.0333333333333333 +60816138003,0,0 +60816138003,110986,0.00391389432485323 +60816138003,111055,0.0117416829745597 +60816138003,111402,0.00978473581213307 +60816138003,112510,0.320939334637965 +60816138003,112755,0 +60816138003,112890,0.0724070450097847 +60816138003,112895,0 +60816138003,112898,0.135029354207436 +60816138003,113446,0.0332681017612524 +60816138003,113750,0.025440313111546 +60816138003,113762,0.0391389432485323 +60816138003,114226,0.0410958904109589 +60816138003,115624,0.0821917808219178 +60816138003,115694,0.0273972602739726 +60816138003,116596,0.0782778864970646 +60816138003,116815,0.0430528375733855 +60816138003,117077,0.076320939334638 +60816138004,0,0 +60816138004,110607,0.00549450549450549 +60816138004,110615,0 +60816138004,110617,0.142857142857143 +60816138004,110981,0.0989010989010989 +60816138004,110989,0.0952380952380952 +60816138004,111202,0 +60816138004,111347,0.0238095238095238 +60816138004,111412,0.00549450549450549 +60816138004,111556,0 +60816138004,111559,0.0256410256410256 +60816138004,111833,0.104395604395604 +60816138004,112109,0 +60816138004,112165,0.0128205128205128 +60816138004,112172,0 +60816138004,112233,0.0274725274725275 +60816138004,112316,0.00183150183150183 +60816138004,112380,0 +60816138004,112502,0.00732600732600733 +60816138004,112892,0.0641025641025641 +60816138004,112896,0.010989010989011 +60816138004,113039,0.0146520146520147 +60816138004,114020,0.00366300366300366 +60816138004,114430,0.0183150183150183 +60816138004,114431,0 +60816138004,114567,0.010989010989011 +60816138004,114772,0 +60816138004,114966,0.010989010989011 +60816138004,115302,0.00915750915750916 +60816138004,115475,0 +60816138004,115690,0.0402930402930403 +60816138004,115842,0.0421245421245421 +60816138004,115849,0.021978021978022 +60816138004,116327,0.00183150183150183 +60816138004,116395,0.0201465201465201 +60816138004,116819,0.010989010989011 +60816138004,117082,0.00366300366300366 +60816138004,117387,0.0201465201465201 +60816138004,117392,0.0146520146520147 +60816138004,118152,0.0457875457875458 +60816138004,118343,0.00732600732600733 +60816138004,118344,0.00915750915750916 +60816138004,118871,0.00732600732600733 +60816138004,119155,0.0146520146520147 +60816138004,119216,0.0457875457875458 +60816139001,110308,0.289915966386555 +60816139001,110893,0.260504201680672 +60816139001,111783,0.0252100840336134 +60816139001,113158,0.163865546218487 +60816139001,113419,0.0420168067226891 +60816139001,115749,0.218487394957983 +60816139002,110310,0.123867069486405 +60816139002,110311,0.0694864048338369 +60816139002,111308,0.0694864048338369 +60816139002,111441,0.166163141993958 +60816139002,111442,0.0785498489425982 +60816139002,112086,0.13595166163142 +60816139002,113360,0.0694864048338369 +60816139002,116280,0.129909365558912 +60816139002,116857,0.108761329305136 +60816139002,118305,0.0483383685800604 +60816139003,110103,0.0508905852417303 +60816139003,111309,0.150127226463104 +60816139003,111310,0.0712468193384224 +60816139003,111314,0.0763358778625954 +60816139003,113631,0.114503816793893 +60816139003,114058,0.0687022900763359 +60816139003,115750,0.0712468193384224 +60816139003,116279,0.396946564885496 +60816139004,110187,0.151394422310757 +60816139004,110188,0.139442231075697 +60816139004,111714,0.119521912350598 +60816139004,111718,0.199203187250996 +60816139004,114687,0.111553784860558 +60816139004,114842,0.0358565737051793 +60816139004,115997,0.0239043824701195 +60816139004,117925,0.219123505976096 +60816139005,110102,0.0559741657696448 +60816139005,110166,0.0355220667384284 +60816139005,112281,0.116254036598493 +60816139005,112296,0.0161463939720129 +60816139005,113160,0.0667384284176534 +60816139005,114057,0.376749192680301 +60816139005,115080,0.0355220667384284 +60816139005,115339,0.0193756727664155 +60816139005,115507,0.114101184068891 +60816139005,118517,0.0236813778256189 +60816139005,118962,0.0247578040904198 +60816139005,118963,0.0592034445640474 +60816139005,119128,0.0559741657696448 +60816140001,110706,0.0559440559440559 +60816140001,111698,0.041958041958042 +60816140001,112979,0.0396270396270396 +60816140001,113148,0.0361305361305361 +60816140001,114104,0.034965034965035 +60816140001,114392,0.13986013986014 +60816140001,115987,0.0384615384615385 +60816140001,117051,0.0955710955710956 +60816140001,118574,0 +60816140001,118699,0.226107226107226 +60816140001,118714,0.0407925407925408 +60816140001,118715,0.0652680652680653 +60816140001,118807,0.185314685314685 +60816140002,111570,0.0601202404809619 +60816140002,111846,0.0721442885771543 +60816140002,111847,0.0801603206412826 +60816140002,111990,0.0821643286573146 +60816140002,112975,0.260521042084168 +60816140002,113328,0.0581162324649299 +60816140002,114102,0.0360721442885772 +60816140002,114246,0.0761523046092184 +60816140002,117267,0.0460921843687375 +60816140002,117268,0.0721442885771543 +60816140002,117678,0.0561122244488978 +60816140002,117821,0.0701402805611222 +60816140002,117897,0.030060120240481 +60816140003,111917,0.0124610591900312 +60816140003,112068,0 +60816140003,114105,0 +60816140003,116679,0.987538940809969 +60819843001,0,0 +60819843001,112272,0 +60819843001,112776,0 +60819843001,116973,0 +60819901000,0,0 +60855001001,210285,0 +60855001001,210286,0.037037037037037 +60855001001,212533,0.141414141414141 +60855001001,212535,0 +60855001001,217413,0.111111111111111 +60855001001,217416,0.0673400673400673 +60855001001,219466,0.00673400673400673 +60855001001,219960,0.138047138047138 +60855001001,224864,0.111111111111111 +60855001001,224865,0.0808080808080808 +60855001001,224866,0 +60855001001,225860,0.188552188552189 +60855001001,225861,0.0134680134680135 +60855001001,227554,0.104377104377104 +60855001002,210282,0.0709219858156028 +60855001002,210283,0.25531914893617 +60855001002,225857,0.0212765957446809 +60855001002,225859,0.134751773049645 +60855001002,227553,0.191489361702128 +60855001002,230900,0.0921985815602837 +60855001002,230901,0.205673758865248 +60855001002,231544,0.0283687943262411 +60855001003,210281,0.0594795539033457 +60855001003,212531,0.54089219330855 +60855001003,217832,0.0706319702602231 +60855001003,219957,0.0631970260223048 +60855001003,223676,0.0910780669144981 +60855001003,229894,0.0613382899628253 +60855001003,231543,0.113382899628253 +60855001004,210278,0.0207317073170732 +60855001004,210279,0.0512195121951219 +60855001004,214356,0.0390243902439024 +60855001004,217371,0.0341463414634146 +60855001004,219098,0.0695121951219512 +60855001004,219465,0.0536585365853659 +60855001004,219955,0.0402439024390244 +60855001004,219956,0.0109756097560976 +60855001004,223673,0 +60855001004,223674,0 +60855001004,223675,0 +60855001004,224859,0.0414634146341463 +60855001004,224860,0.0463414634146341 +60855001004,227552,0.0878048780487805 +60855001004,229893,0.0317073170731707 +60855001004,230898,0.0939024390243902 +60855001004,231542,0.357317073170732 +60855001004,232007,0.0219512195121951 +60855002001,213248,0.146639511201629 +60855002001,213249,0.0366598778004073 +60855002001,213250,0 +60855002001,213252,0.0936863543788187 +60855002001,213548,0.0712830957230143 +60855002001,213549,0.120162932790224 +60855002001,213550,0.0773930753564155 +60855002001,214355,0 +60855002001,215404,0.00203665987780041 +60855002001,215405,0.0386965376782077 +60855002001,216925,0.0835030549898167 +60855002001,218646,0.0794297352342159 +60855002001,225488,0 +60855002001,225851,0.0488798370672098 +60855002001,225920,0.0794297352342159 +60855002001,226620,0.105906313645621 +60855002001,227451,0 +60855002001,230068,0.0162932790224033 +60855002001,230069,0 +60855002002,212652,0 +60855002002,213251,0 +60855002003,210041,0.0183333333333333 +60855002003,213245,0.205 +60855002003,213246,0.126666666666667 +60855002003,213247,0.13 +60855002003,215402,0.145 +60855002003,215403,0.04 +60855002003,217369,0.0766666666666667 +60855002003,217370,0.148333333333333 +60855002003,225918,0.105 +60855002003,226619,0.005 +60855002004,213242,0.237045203969129 +60855002004,213546,0.0463065049614112 +60855002004,215104,0.041896361631753 +60855002004,215398,0 +60855002004,215400,0.00220507166482911 +60855002004,217368,0.0297684674751929 +60855002004,225487,0.0562293274531422 +60855002004,225917,0.0705622932745314 +60855002004,227916,0 +60855002004,227961,0.332965821389195 +60855002004,231272,0.0694597574421169 +60855002004,231273,0.0573318632855568 +60855002004,231541,0.0562293274531422 +60855003001,210036,0 +60855003001,211104,0.217105263157895 +60855003001,211105,0.0460526315789474 +60855003001,213013,0.0394736842105263 +60855003001,213014,0.0131578947368421 +60855003001,213238,0 +60855003001,213239,0 +60855003001,213542,0.00657894736842105 +60855003001,213543,0.190789473684211 +60855003001,213544,0.00657894736842105 +60855003001,215393,0.00657894736842105 +60855003001,215395,0.177631578947368 +60855003001,215396,0 +60855003001,215397,0 +60855003001,219938,0 +60855003001,219940,0 +60855003001,224840,0 +60855003001,225483,0 +60855003001,225485,0 +60855003001,225908,0 +60855003001,225909,0 +60855003001,225911,0 +60855003001,225912,0 +60855003001,225914,0 +60855003001,225995,0 +60855003001,225996,0 +60855003001,226135,0 +60855003001,227178,0.0592105263157895 +60855003001,229892,0 +60855003001,230060,0 +60855003001,230061,0.0592105263157895 +60855003001,230062,0.171052631578947 +60855003001,230063,0 +60855003001,231235,0 +60855003001,231540,0.00657894736842105 +60855003001,232232,0 +60855003002,211102,0.0296022201665125 +60855003002,211103,0.351526364477336 +60855003002,213010,0 +60855003002,215660,0.0351526364477336 +60855003002,219504,0.0647548566142461 +60855003002,219505,0.0333024976873266 +60855003002,219935,0.0360777058279371 +60855003002,219936,0.0434782608695652 +60855003002,219937,0 +60855003002,224603,0.0777058279370953 +60855003002,224604,0.0555041628122109 +60855003002,224838,0.0462534690101758 +60855003002,225994,0.0536540240518039 +60855003002,227175,0.0360777058279371 +60855003002,227176,0.0490286771507863 +60855003002,229311,0.0314523589269195 +60855003002,229312,0.0545790934320074 +60855003002,229313,0 +60855003002,229314,0.00185013876040703 +60855003002,229315,0 +60855004001,211100,0.0625 +60855004001,213008,0.0208333333333333 +60855004001,213009,0.0435606060606061 +60855004001,219501,0.0568181818181818 +60855004001,219502,0.422348484848485 +60855004001,219932,0.0227272727272727 +60855004001,219933,0.053030303030303 +60855004001,219934,0.0890151515151515 +60855004001,224600,0.0208333333333333 +60855004001,224601,0.0984848484848485 +60855004001,224602,0.00189393939393939 +60855004001,225992,0.0643939393939394 +60855004001,229309,0.0321969696969697 +60855004001,229310,0.0113636363636364 +60855004002,211099,0.0853080568720379 +60855004002,219926,0.0165876777251185 +60855004002,219929,0.118483412322275 +60855004002,219931,0.0592417061611374 +60855004002,223377,0.220379146919431 +60855004002,224599,0.104265402843602 +60855004002,225990,0.0710900473933649 +60855004002,227172,0.111374407582938 +60855004002,227174,0.0545023696682464 +60855004002,231475,0.158767772511848 +60855005001,211097,0.0625 +60855005001,211098,0.0856481481481482 +60855005001,213006,0.127314814814815 +60855005001,219265,0.219907407407407 +60855005001,224597,0.0856481481481482 +60855005001,224598,0.0902777777777778 +60855005001,225759,0.141203703703704 +60855005001,225989,0.0972222222222222 +60855005001,227171,0.0902777777777778 +60855005002,212667,0.101549053356282 +60855005002,219263,0.0998278829604131 +60855005002,219500,0.0395869191049914 +60855005002,224595,0.072289156626506 +60855005002,224596,0.130808950086059 +60855005002,225986,0 +60855005002,225987,0.0877796901893287 +60855005002,225988,0.080895008605852 +60855005002,226618,0.129087779690189 +60855005002,227081,0.0344234079173838 +60855005002,229306,0.223752151462995 +60855005003,213005,0.104895104895105 +60855005003,213222,0.0594405594405594 +60855005003,215156,0.101398601398601 +60855005003,218159,0.230769230769231 +60855005003,219259,0.122377622377622 +60855005003,219261,0.132867132867133 +60855005003,219262,0.125874125874126 +60855005003,219499,0.0874125874125874 +60855005003,229304,0 +60855005003,229305,0.034965034965035 +60855005004,210622,0.149863760217984 +60855005004,210624,0.0899182561307902 +60855005004,212721,0.106267029972752 +60855005004,213221,0.138964577656676 +60855005004,226162,0.395095367847411 +60855005004,226596,0.119891008174387 +60855005005,212720,0.111821086261981 +60855005005,213220,0.373801916932907 +60855005005,218156,0 +60855005005,226159,0.166134185303514 +60855005005,226160,0.143769968051118 +60855005005,226161,0.0702875399361022 +60855005005,226595,0.0670926517571885 +60855005005,231538,0.0670926517571885 +60855006001,213218,0.0451070336391437 +60855006001,215101,0.0298165137614679 +60855006001,215102,0.0267584097859327 +60855006001,217364,0.0175840978593272 +60855006001,217365,0.0382262996941896 +60855006001,217366,0.0267584097859327 +60855006001,218155,0.00840978593272171 +60855006001,223375,0.0443425076452599 +60855006001,225141,0.081039755351682 +60855006001,225758,0.0214067278287462 +60855006001,226158,0.00764525993883792 +60855006001,228291,0.479357798165138 +60855006001,231536,0.00382262996941896 +60855006001,231537,0.169724770642202 +60855006002,212718,0.0443864229765013 +60855006002,215100,0.109660574412533 +60855006002,217360,0.133159268929504 +60855006002,217361,0.0704960835509138 +60855006002,217362,0.0522193211488251 +60855006002,218152,0.117493472584856 +60855006002,218153,0.0391644908616188 +60855006002,218154,0.0339425587467363 +60855006002,225139,0.143603133159269 +60855006002,226156,0.0913838120104439 +60855006002,228290,0.164490861618799 +60855006003,212615,0.0366492146596859 +60855006003,215289,0.031413612565445 +60855006003,217359,0.204188481675393 +60855006003,219094,0.06282722513089 +60855006003,219462,0.0942408376963351 +60855006003,219463,0.0916230366492147 +60855006003,223374,0.130890052356021 +60855006003,225753,0.049738219895288 +60855006003,225754,0.172774869109948 +60855006003,231535,0.12565445026178 +60855008001,210614,0 +60855008001,210615,0 +60855008001,210616,0 +60855008001,210618,0.00194931773879142 +60855008001,212495,0.319688109161793 +60855008001,212714,0 +60855008001,212715,0 +60855008001,213214,0 +60855008001,213215,0 +60855008001,213216,0.179337231968811 +60855008001,216427,0 +60855008001,218148,0 +60855008001,218149,0 +60855008001,218150,0 +60855008001,222419,0 +60855008001,225133,0.0779727095516569 +60855008001,225135,0 +60855008001,225136,0 +60855008001,225137,0 +60855008001,225138,0.00779727095516569 +60855008001,226151,0.00194931773879142 +60855008001,226152,0 +60855008001,226153,0 +60855008001,226154,0.167641325536062 +60855008001,226155,0.177387914230019 +60855008001,226587,0 +60855008001,226588,0 +60855008001,226589,0.00194931773879142 +60855008001,226590,0 +60855008001,226592,0.064327485380117 +60855008001,226594,0 +60855008001,226962,0 +60855008001,228288,0 +60855008001,228289,0 +60855008001,231264,0 +60855008002,211079,0.029040404040404 +60855008002,211080,0.00378787878787879 +60855008002,212710,0.00252525252525253 +60855008002,212711,0.0669191919191919 +60855008002,212712,0.00631313131313131 +60855008002,216191,0.16540404040404 +60855008002,216584,0.0353535353535354 +60855008002,216585,0.00378787878787879 +60855008002,216907,0.0568181818181818 +60855008002,216908,0 +60855008002,221357,0.00126262626262626 +60855008002,221358,0.077020202020202 +60855008002,221359,0.172979797979798 +60855008002,222418,0.0580808080808081 +60855008002,224833,0.00252525252525253 +60855008002,226150,0.156565656565657 +60855008002,227143,0.0227272727272727 +60855008002,228285,0.138888888888889 +60855008002,228287,0 +60855009011,210266,0.0416666666666667 +60855009011,216581,0.404166666666667 +60855009011,216582,0.15 +60855009011,222417,0.14375 +60855009011,226113,0.260416666666667 +60855009011,226961,0 +60855009012,210262,0.0496156533892383 +60855009012,210263,0.0482180293501048 +60855009012,210264,0.0377358490566038 +60855009012,210265,0.000698812019566737 +60855009012,216578,0.120894479385045 +60855009012,216579,0.211041229909154 +60855009012,216580,0.219426974143955 +60855009012,219461,0 +60855009012,221356,0.112508735150245 +60855009012,222416,0 +60855009012,226110,0.00628930817610063 +60855009012,226111,0.0321453529000699 +60855009012,226112,0 +60855009012,226960,0.0209643605870021 +60855009012,227139,0 +60855009012,227140,0.140461215932914 +60855009012,227141,0 +60855009021,216189,0.275071633237822 +60855009021,222410,0.378223495702006 +60855009021,226583,0.346704871060172 +60855009022,216188,0.157142857142857 +60855009022,222411,0.360714285714286 +60855009022,222412,0.460714285714286 +60855009022,222415,0.0214285714285714 +60855010001,215098,0.160919540229885 +60855010001,215099,0.135632183908046 +60855010001,217358,0.126436781609195 +60855010001,219460,0.140229885057471 +60855010001,225752,0.12183908045977 +60855010001,229669,0.204597701149425 +60855010001,231534,0.110344827586207 +60855010002,215097,0.134770889487871 +60855010002,217356,0.078167115902965 +60855010002,217357,0.250673854447439 +60855010002,219459,0.266846361185984 +60855010002,223372,0.0134770889487871 +60855010002,225751,0.256064690026954 +60855010003,210506,0.120430107526882 +60855010003,215095,0.0172043010752688 +60855010003,215096,0.217204301075269 +60855010003,219456,0 +60855010003,219457,0.458064516129032 +60855010003,219458,0 +60855010003,229668,0.187096774193548 +60855010004,215093,0.0128205128205128 +60855010004,215094,0.146153846153846 +60855010004,219455,0.21025641025641 +60855010004,225748,0.405128205128205 +60855010004,225749,0.0948717948717949 +60855010004,229667,0.130769230769231 +60855010005,216835,0.0584615384615385 +60855010005,216836,0.215384615384615 +60855010005,217975,0.116923076923077 +60855010005,223068,0.147692307692308 +60855010005,223751,0.0646153846153846 +60855010005,223752,0.113846153846154 +60855010005,223753,0.144615384615385 +60855010005,231116,0.138461538461538 +60855011011,212614,0.130695443645084 +60855011011,214120,0.0947242206235012 +60855011011,214269,0.0383693045563549 +60855011011,215561,0.0491606714628297 +60855011011,215562,0.0575539568345324 +60855011011,217968,0.194244604316547 +60855011011,217969,0.0311750599520384 +60855011011,222817,0.0635491606714628 +60855011011,222818,0.065947242206235 +60855011011,229396,0.0515587529976019 +60855011011,229397,0 +60855011011,230635,0.0419664268585132 +60855011011,231114,0.1810551558753 +60855011012,215564,0.0683371298405467 +60855011012,215566,0.0478359908883827 +60855011012,216832,0.0797266514806378 +60855011012,216833,0.17995444191344 +60855011012,222819,0.264236902050114 +60855011012,223066,0.071753986332574 +60855011012,223746,0.152619589977221 +60855011012,223747,0 +60855011012,223749,0.0261958997722096 +60855011012,228763,0.0558086560364465 +60855011012,230636,0.0535307517084282 +60855011021,210261,0.0966981132075472 +60855011021,215386,0.0731132075471698 +60855011021,215387,0.0849056603773585 +60855011021,216577,0.0707547169811321 +60855011021,217974,0.0754716981132075 +60855011021,221354,0.0849056603773585 +60855011021,221355,0.080188679245283 +60855011021,222408,0.0943396226415094 +60855011021,222409,0.0919811320754717 +60855011021,222822,0.169811320754717 +60855011021,226582,0.0778301886792453 +60855011022,215565,0 +60855011022,215567,0.0978473581213307 +60855011022,215568,0.086105675146771 +60855011022,216834,0.0743639921722113 +60855011022,217972,0.146771037181996 +60855011022,217973,0.0841487279843444 +60855011022,222820,0.0782778864970646 +60855011022,222821,0.0958904109589041 +60855011022,223748,0.086105675146771 +60855011022,223750,0.0821917808219178 +60855011022,229398,0.0900195694716243 +60855011022,231115,0.0782778864970646 +60855011023,210257,0.094147582697201 +60855011023,210258,0.101781170483461 +60855011023,210259,0.104325699745547 +60855011023,210260,0.094147582697201 +60855011023,214270,0.119592875318066 +60855011023,215385,0.0966921119592875 +60855011023,217971,0 +60855011023,221353,0.0865139949109415 +60855011023,226109,0.106870229007634 +60855011023,226581,0.101781170483461 +60855011023,232347,0.094147582697201 +60855012001,210256,0.150684931506849 +60855012001,215384,0.219178082191781 +60855012001,216575,0.127853881278539 +60855012001,216576,0.187214611872146 +60855012001,222407,0.118721461187215 +60855012001,232346,0.19634703196347 +60855012002,210254,0.0833333333333333 +60855012002,210255,0.120689655172414 +60855012002,215383,0.126436781609195 +60855012002,220649,0 +60855012002,220650,0.0775862068965517 +60855012002,221351,0.218390804597701 +60855012002,221352,0.129310344827586 +60855012002,222406,0.0632183908045977 +60855012002,232344,0.103448275862069 +60855012002,232345,0.0775862068965517 +60855012003,214268,0.161643835616438 +60855012003,215559,0.112328767123288 +60855012003,215560,0.0904109589041096 +60855012003,216831,0.128767123287671 +60855012003,217967,0.117808219178082 +60855012003,222815,0.0356164383561644 +60855012003,222816,0.115068493150685 +60855012003,223542,0.0493150684931507 +60855012003,223543,0.189041095890411 +60855012004,214267,0.104166666666667 +60855012004,215557,0.0763888888888889 +60855012004,215558,0.113425925925926 +60855012004,222544,0.0856481481481482 +60855012004,222813,0.118055555555556 +60855012004,222814,0.108796296296296 +60855012004,223541,0.136574074074074 +60855012004,229394,0.0833333333333333 +60855012004,229395,0.0763888888888889 +60855012004,231113,0.0972222222222222 +60855013001,210253,0.140077821011673 +60855013001,211870,0.1284046692607 +60855013001,216574,0.198443579766537 +60855013001,219906,0.159533073929961 +60855013001,226558,0.1284046692607 +60855013001,226559,0.0972762645914397 +60855013001,232343,0.147859922178988 +60855013002,213798,0.358585858585859 +60855013002,219905,0.318181818181818 +60855013002,226555,0.106060606060606 +60855013002,226557,0.217171717171717 +60855013003,211867,0.142384105960265 +60855013003,211869,0.197019867549669 +60855013003,213797,0.0364238410596026 +60855013003,215005,0.0844370860927152 +60855013003,216527,0.0943708609271523 +60855013003,216528,0.043046357615894 +60855013003,219904,0.0745033112582781 +60855013003,224803,0.193708609271523 +60855013003,224804,0.043046357615894 +60855013003,226553,0.0910596026490066 +60855013004,214266,0.055363321799308 +60855013004,216830,0.103806228373702 +60855013004,217965,0.145328719723183 +60855013004,217966,0.179930795847751 +60855013004,222543,0.131487889273356 +60855013004,223539,0.0968858131487889 +60855013004,223540,0.13840830449827 +60855013004,229393,0.14878892733564 +60855014011,211865,0.125874125874126 +60855014011,213795,0.0629370629370629 +60855014011,217987,0.0755244755244755 +60855014011,219248,0.137062937062937 +60855014011,219249,0 +60855014011,224802,0.00559440559440559 +60855014011,226549,0.411188811188811 +60855014011,226551,0.181818181818182 +60855014012,211864,0.135658914728682 +60855014012,213791,0.232558139534884 +60855014012,213792,0.0232558139534884 +60855014012,216524,0.131782945736434 +60855014012,219247,0.10077519379845 +60855014012,219250,0 +60855014012,226547,0.135658914728682 +60855014012,226548,0.232558139534884 +60855014012,226550,0.00775193798449612 +60855014021,211863,0.0838509316770186 +60855014021,215003,0.0869565217391304 +60855014021,215823,0.118012422360248 +60855014021,215824,0.0403726708074534 +60855014021,216523,0.102484472049689 +60855014021,224799,0.0652173913043478 +60855014021,224800,0.0372670807453416 +60855014021,226542,0.127329192546584 +60855014021,226544,0.105590062111801 +60855014021,231774,0.0838509316770186 +60855014021,231775,0.149068322981366 +60855014022,211861,0.0611439842209073 +60855014022,213789,0.0907297830374754 +60855014022,214298,0.124260355029586 +60855014022,215002,0.0670611439842209 +60855014022,215821,0.0512820512820513 +60855014022,215822,0.199211045364892 +60855014022,219245,0.0867850098619329 +60855014022,224569,0.126232741617357 +60855014022,226541,0.0788954635108481 +60855014022,231772,0.0493096646942801 +60855014022,231773,0.0650887573964497 +60855015011,211860,0.0934150076569678 +60855015011,215713,0.168453292496171 +60855015011,217964,0.203675344563553 +60855015011,222330,0.356814701378254 +60855015011,224567,0.110260336906585 +60855015011,226538,0.0673813169984686 +60855015012,215001,0.551867219917012 +60855015012,215820,0.29045643153527 +60855015012,219244,0.0020746887966805 +60855015012,226539,0.155601659751037 +60855015021,210225,0.0808823529411765 +60855015021,210226,0.0906862745098039 +60855015021,212194,0.0906862745098039 +60855015021,212195,0.071078431372549 +60855015021,213360,0.0637254901960784 +60855015021,215817,0.0833333333333333 +60855015021,215819,0.0808823529411765 +60855015021,219241,0.071078431372549 +60855015021,219242,0.117647058823529 +60855015021,221081,0.0759803921568627 +60855015021,221082,0.0882352941176471 +60855015021,226537,0.0857843137254902 +60855015022,218098,0.151917404129794 +60855015022,232275,0.848082595870207 +60855016001,218096,0.184873949579832 +60855016001,218097,0.701680672268908 +60855016001,222386,0.11344537815126 +60855016002,218095,0.26448362720403 +60855016002,221078,0.148614609571788 +60855016002,221079,0.0705289672544081 +60855016002,222384,0.246851385390428 +60855016002,230388,0.269521410579345 +60855016003,210224,0.142666666666667 +60855016003,213357,0.113333333333333 +60855016003,213358,0.113333333333333 +60855016003,221077,0.173333333333333 +60855016003,222383,0.104 +60855016003,222385,0.190666666666667 +60855016003,232274,0.162666666666667 +60855016004,212188,0.0524737631184408 +60855016004,212189,0.12143928035982 +60855016004,212190,0.0269865067466267 +60855016004,212191,0.134932533733133 +60855016004,218094,0.11544227886057 +60855016004,221076,0.0539730134932534 +60855016004,222380,0.118440779610195 +60855016004,222381,0.095952023988006 +60855016004,222382,0.145427286356822 +60855016004,230387,0.103448275862069 +60855016004,232273,0.0314842578710645 +60855016005,210223,0.0235849056603774 +60855016005,211412,0.0259433962264151 +60855016005,211854,0.0495283018867925 +60855016005,212186,0.0990566037735849 +60855016005,212187,0.0636792452830189 +60855016005,212406,0.143867924528302 +60855016005,221074,0.00235849056603774 +60855016005,221075,0.0424528301886792 +60855016005,230386,0.280660377358491 +60855016005,231477,0.162735849056604 +60855016005,232271,0.106132075471698 +60855017001,211410,0.280769230769231 +60855017001,213353,0.407692307692308 +60855017001,213354,0.207692307692308 +60855017001,213355,0 +60855017001,221073,0.103846153846154 +60855017001,222376,0 +60855017001,222541,0 +60855017001,225115,0 +60855017002,211852,0 +60855017002,211853,0.614130434782609 +60855017002,213213,0.385869565217391 +60855017002,214821,0 +60855017003,211409,0.208053691275168 +60855017003,211850,0.0134228187919463 +60855017003,216145,0.0604026845637584 +60855017003,222540,0.131991051454139 +60855017003,224947,0.170022371364653 +60855017003,224948,0.0715883668903803 +60855017003,224949,0 +60855017003,225114,0.0693512304250559 +60855017003,230383,0.0961968680089486 +60855017003,232267,0.058165548098434 +60855017003,232268,0.120805369127517 +60855017004,214265,0.160714285714286 +60855017004,216143,0.113095238095238 +60855017004,219541,0.145833333333333 +60855017004,224681,0.211309523809524 +60855017004,224946,0.0773809523809524 +60855017004,228506,0.0833333333333333 +60855017004,228507,0.0654761904761905 +60855017004,228508,0.139880952380952 +60855017004,231111,0.00297619047619048 +60855018001,211173,0.00268096514745308 +60855018001,211174,0 +60855018001,217917,0.00268096514745308 +60855018001,219537,0.257372654155496 +60855018001,219538,0.158176943699732 +60855018001,222279,0.0482573726541555 +60855018001,224941,0.337801608579088 +60855018001,224942,0.193029490616622 +60855018002,211954,0.189309576837416 +60855018002,218405,0.0957683741648107 +60855018002,224677,0.135857461024499 +60855018002,224678,0.0645879732739421 +60855018002,224679,0.0712694877505568 +60855018002,224944,0.106904231625835 +60855018002,224945,0.066815144766147 +60855018002,228505,0.0757238307349666 +60855018002,228721,0.131403118040089 +60855018002,228722,0.0623608017817372 +60855018003,211175,0.14 +60855018003,211176,0.1575 +60855018003,214011,0.085 +60855018003,217919,0.0675 +60855018003,217920,0.1175 +60855018003,224676,0.135 +60855018003,228503,0.155 +60855018003,228504,0.1425 +60855018004,214007,0.0538793103448276 +60855018004,214008,0.0689655172413793 +60855018004,214264,0.0754310344827586 +60855018004,217868,0.118534482758621 +60855018004,217918,0.144396551724138 +60855018004,217961,0.0560344827586207 +60855018004,223065,0.375 +60855018004,224675,0.107758620689655 +60855019001,211168,0.00240384615384615 +60855019001,211169,0.0657051282051282 +60855019001,212613,0 +60855019001,214003,0 +60855019001,214004,0.0697115384615385 +60855019001,216759,0 +60855019001,217450,0.000801282051282051 +60855019001,217916,0 +60855019001,218181,0.0336538461538462 +60855019001,219532,0 +60855019001,219533,0.0016025641025641 +60855019001,219534,0 +60855019001,219535,0.0184294871794872 +60855019001,221448,0.0184294871794872 +60855019001,221450,0.00320512820512821 +60855019001,222120,0 +60855019001,223856,0.0897435897435897 +60855019001,223857,0.0200320512820513 +60855019001,225566,0 +60855019001,227001,0 +60855019001,227002,0.145032051282051 +60855019001,227607,0.104166666666667 +60855019001,227609,0.230769230769231 +60855019001,228500,0 +60855019001,228714,0.190705128205128 +60855019001,228716,0.00560897435897436 +60855019002,211172,0 +60855019002,214119,0.100584795321637 +60855019002,214820,0.245614035087719 +60855019002,214910,0.0690058479532164 +60855019002,215286,0.0994152046783626 +60855019002,216141,0.0760233918128655 +60855019002,223536,0.0830409356725146 +60855019002,224940,0.0900584795321637 +60855019002,230296,0.0982456140350877 +60855019002,231110,0.138011695906433 +60855020011,216755,0.0833333333333333 +60855020011,216757,0.105855855855856 +60855020011,216957,0.0765765765765766 +60855020011,216958,0.0698198198198198 +60855020011,217449,0.119369369369369 +60855020011,217644,0.123873873873874 +60855020011,218180,0.103603603603604 +60855020011,221446,0.112612612612613 +60855020011,226999,0.103603603603604 +60855020011,229537,0.101351351351351 +60855020012,216750,0.0193905817174515 +60855020012,216751,0.0831024930747922 +60855020012,216753,0 +60855020012,221444,0.0138504155124654 +60855020012,221445,0.357340720221607 +60855020012,223895,0 +60855020012,225564,0.307479224376731 +60855020012,226997,0.171745152354571 +60855020012,226998,0.00831024930747922 +60855020012,227605,0.0387811634349031 +60855020013,216058,0.0881670533642691 +60855020013,216061,0.0278422273781903 +60855020013,216952,0.118329466357309 +60855020013,216953,0.0417633410672854 +60855020013,217640,0.0788863109048724 +60855020013,221443,0.11368909512761 +60855020013,223892,0.074245939675174 +60855020013,225561,0.106728538283063 +60855020013,225562,0.0232018561484919 +60855020013,226388,0.0348027842227378 +60855020013,226992,0.0788863109048724 +60855020013,226993,0.0556844547563805 +60855020013,227265,0.0765661252900232 +60855020013,227266,0.0812064965197216 +60855020014,214399,0.053133514986376 +60855020014,214400,0.050408719346049 +60855020014,215285,0.0490463215258856 +60855020014,215444,0.0476839237057221 +60855020014,216055,0.0422343324250681 +60855020014,216239,0.053133514986376 +60855020014,216949,0.136239782016349 +60855020014,217164,0.123978201634877 +60855020014,217165,0.0572207084468665 +60855020014,220735,0.00408719346049046 +60855020014,220736,0.149863760217984 +60855020014,223890,0.0912806539509537 +60855020014,226385,0.0381471389645777 +60855020014,226386,0.0463215258855586 +60855020014,227263,0.0572207084468665 +60855020021,214398,0.154135338345865 +60855020021,214968,0.093984962406015 +60855020021,231828,0.135338345864662 +60855020021,232015,0.112781954887218 +60855020021,232124,0.503759398496241 +60855020022,217160,0.243070362473348 +60855020022,217161,0.1727078891258 +60855020022,219327,0.0831556503198294 +60855020022,223064,0.155650319829424 +60855020022,224925,0.200426439232409 +60855020022,228861,0.14498933901919 +60855020023,214391,0.0125156445556946 +60855020023,214393,0 +60855020023,215438,0 +60855020023,215442,0.204005006257822 +60855020023,215718,0.118898623279099 +60855020023,216614,0.0463078848560701 +60855020023,216615,0.0738423028785982 +60855020023,216616,0.0362953692115144 +60855020023,219320,0.0150187734668335 +60855020023,219323,0.032540675844806 +60855020023,219325,0.0500625782227785 +60855020023,222745,0.0413016270337922 +60855020023,222746,0.065081351689612 +60855020023,224920,0.048811013767209 +60855020023,228759,0.123904881101377 +60855020023,229761,0.0688360450563204 +60855020023,230291,0.0625782227784731 +60855021011,214390,0.0224913494809689 +60855021011,215436,0.126297577854671 +60855021011,217505,0 +60855021011,219317,0.20242214532872 +60855021011,219319,0.102076124567474 +60855021011,222475,0 +60855021011,223284,0.178200692041523 +60855021011,228758,0.245674740484429 +60855021011,228857,0.0986159169550173 +60855021011,228859,0.0242214532871972 +60855021012,212653,0.171253822629969 +60855021012,214387,0.18348623853211 +60855021012,215435,0.155963302752294 +60855021012,216612,0.0795107033639144 +60855021012,222474,0.143730886850153 +60855021012,222701,0.0795107033639144 +60855021012,222702,0.186544342507645 +60855021013,210516,0 +60855021013,212783,0.363908275174477 +60855021013,213490,0 +60855021013,213610,0.0677966101694915 +60855021013,214384,0.0458624127617149 +60855021013,215434,0.0628115653040877 +60855021013,219315,0.0239282153539382 +60855021013,222473,0.213359920239282 +60855021013,222698,0.0648055832502493 +60855021013,222699,0.0309072781655035 +60855021013,227450,0.0578265204386839 +60855021013,228853,0.0687936191425723 +60855021021,213834,0.0490716180371353 +60855021021,213835,0.00397877984084881 +60855021021,213982,0.0649867374005305 +60855021021,213983,0.595490716180371 +60855021021,213984,0.164456233421751 +60855021021,228015,0.0318302387267905 +60855021021,230912,0.0901856763925729 +60855021022,212779,0.0594965675057208 +60855021022,212780,0.0789473684210526 +60855021022,213832,0.034324942791762 +60855021022,213833,0.0331807780320366 +60855021022,213981,0.0469107551487414 +60855021022,214208,0.108695652173913 +60855021022,214209,0.0640732265446224 +60855021022,225543,0.0366132723112128 +60855021022,225886,0.0389016018306636 +60855021022,225888,0.498855835240275 +60855021023,212609,0 +60855021023,213830,0.593803786574871 +60855021023,214207,0.220309810671256 +60855021023,215283,0.185886402753873 +60855021024,212607,0.0897435897435897 +60855021024,212608,0.474358974358974 +60855021024,215281,0.0717948717948718 +60855021024,215282,0.248717948717949 +60855021024,223283,0.0512820512820513 +60855021024,228380,0.0641025641025641 +60855022011,211951,0.104542177361211 +60855022011,213978,0.100216294160058 +60855022011,214202,0.0382119682768565 +60855022011,214205,0.0634462869502523 +60855022011,223061,0.161499639509733 +60855022011,225885,0.0973323720259553 +60855022011,228012,0.28478731074261 +60855022011,230289,0.0663302090843547 +60855022011,230909,0.0439798125450613 +60855022011,230911,0.0396539293439077 +60855022012,211948,0.141075604053001 +60855022012,214201,0.111457521434139 +60855022012,217724,0.74746687451286 +60855022012,230910,0 +60855022021,225824,0.488063660477454 +60855022021,225826,0.0570291777188329 +60855022021,230908,0.205570291777188 +60855022021,231232,0.249336870026525 +60855022022,211944,0.0470588235294118 +60855022022,211945,0.1 +60855022022,211946,0.05 +60855022022,213295,0.0647058823529412 +60855022022,213396,0.102941176470588 +60855022022,223281,0.126470588235294 +60855022022,225229,0 +60855022022,225230,0.0764705882352941 +60855022022,225231,0.0676470588235294 +60855022022,225232,0.0382352941176471 +60855022022,226092,0 +60855022022,227604,0.0647058823529412 +60855022022,230907,0.261764705882353 +60855022023,210319,0.087719298245614 +60855022023,213056,0.449122807017544 +60855022023,221430,0.108771929824561 +60855022023,221431,0.0982456140350877 +60855022023,221433,0.126315789473684 +60855022023,230093,0.129824561403509 +60855023011,210958,0.0451010886469673 +60855023011,210959,0.139968895800933 +60855023011,212862,0.124416796267496 +60855023011,214110,0.127527216174183 +60855023011,214461,0.0684292379471229 +60855023011,214913,0.255054432348367 +60855023011,216311,0.0544323483670296 +60855023011,220843,0.0964230171073095 +60855023011,222808,0.0544323483670296 +60855023011,223275,0.0342146189735614 +60855023012,214112,0.0299572039942939 +60855023012,214113,0.192582025677603 +60855023012,214462,0.0527817403708987 +60855023012,214463,0.0527817403708987 +60855023012,214465,0.0784593437945792 +60855023012,217011,0.0499286733238231 +60855023012,217012,0.0485021398002853 +60855023012,222810,0.20114122681883 +60855023012,222811,0.0584878744650499 +60855023012,223287,0.0299572039942939 +60855023012,228369,0.0584878744650499 +60855023012,228370,0.109843081312411 +60855023012,230286,0.0370898716119829 +60855023021,214467,0.0625 +60855023021,214468,0.0772058823529412 +60855023021,214470,0.128676470588235 +60855023021,215279,0.183823529411765 +60855023021,217014,0.279411764705882 +60855023021,223278,0.0477941176470588 +60855023021,228371,0.0459558823529412 +60855023021,228372,0.0625 +60855023021,228373,0.0551470588235294 +60855023021,230287,0.0569852941176471 +60855023022,212605,0.0387931034482759 +60855023022,214115,0.0359195402298851 +60855023022,214116,0.464080459770115 +60855023022,223279,0.0373563218390805 +60855023022,223288,0.0474137931034483 +60855023022,228375,0.0402298850574713 +60855023022,228761,0.0488505747126437 +60855023022,230288,0.28735632183908 +60855024001,210951,0.158273381294964 +60855024001,211747,0.244604316546763 +60855024001,215502,0.107913669064748 +60855024001,220836,0.079136690647482 +60855024001,223056,0.0683453237410072 +60855024001,223514,0.197841726618705 +60855024001,227638,0.143884892086331 +60855024002,210953,0.106164383561644 +60855024002,212859,0.273972602739726 +60855024002,212860,0.10958904109589 +60855024002,215504,0.229452054794521 +60855024002,223515,0.208904109589041 +60855024002,227639,0.0719178082191781 +60855024003,210957,0.186379928315412 +60855024003,212555,0.197132616487455 +60855024003,224903,0.161290322580645 +60855024003,224904,0.204301075268817 +60855024003,226345,0.186379928315412 +60855024003,230088,0.0645161290322581 +60855024004,210955,0.0508021390374332 +60855024004,210956,0.0668449197860963 +60855024004,215505,0.0561497326203209 +60855024004,220839,0.18716577540107 +60855024004,220840,0.131016042780749 +60855024004,223058,0.213903743315508 +60855024004,223516,0.149732620320856 +60855024004,227424,0.072192513368984 +60855024004,227425,0.072192513368984 +60855024005,210315,0.0594679186228482 +60855024005,212237,0.0688575899843505 +60855024005,212238,0.375586854460094 +60855024005,212239,0.00782472613458529 +60855024005,212556,0.0657276995305164 +60855024005,212861,0.261345852895149 +60855024005,226346,0.0500782472613459 +60855024005,230089,0.0234741784037559 +60855024005,230090,0.0876369327073552 +60855024006,210954,0.152487961476726 +60855024006,213682,0.168539325842697 +60855024006,213683,0.14446227929374 +60855024006,213684,0.0545746388443018 +60855024006,217001,0.0513643659711075 +60855024006,222079,0.086677367576244 +60855024006,223057,0.0465489566613162 +60855024006,225732,0.0353130016051364 +60855024006,227640,0.260032102728732 +60855024007,210316,0.112462006079027 +60855024007,210317,0.130699088145897 +60855024007,210318,0.0911854103343465 +60855024007,212240,0.0911854103343465 +60855024007,212557,0 +60855024007,216176,0.17629179331307 +60855024007,230091,0.398176291793313 +60855025001,212235,0.083756345177665 +60855025001,212554,0.0964467005076142 +60855025001,215501,0.0736040609137056 +60855025001,221427,0.0888324873096447 +60855025001,224671,0.0812182741116751 +60855025001,224672,0.0913705583756345 +60855025001,226343,0.083756345177665 +60855025001,226344,0.142131979695431 +60855025001,230085,0.0812182741116751 +60855025001,230086,0.0888324873096447 +60855025001,230087,0.0888324873096447 +60855025002,211463,0.179948586118252 +60855025002,212234,0.10025706940874 +60855025002,212552,0.195372750642674 +60855025002,212553,0.223650385604113 +60855025002,216038,0.125964010282776 +60855025002,216039,0.0745501285347044 +60855025002,227237,0.10025706940874 +60855025003,210950,0.0883720930232558 +60855025003,211461,0.1 +60855025003,211462,0.0883720930232558 +60855025003,212550,0.134883720930233 +60855025003,212551,0.125581395348837 +60855025003,216036,0.0767441860465116 +60855025003,216037,0.086046511627907 +60855025003,221425,0.0744186046511628 +60855025003,221426,0.0813953488372093 +60855025003,227236,0.0697674418604651 +60855025003,227422,0.0744186046511628 +60855025004,210949,0.122352941176471 +60855025004,212548,0.0776470588235294 +60855025004,212549,0.0752941176470588 +60855025004,216034,0.0894117647058824 +60855025004,216035,0.0988235294117647 +60855025004,220835,0.0752941176470588 +60855025004,223512,0.0541176470588235 +60855025004,223513,0.108235294117647 +60855025004,227234,0.0682352941176471 +60855025004,227235,0.0847058823529412 +60855025004,230083,0.0635294117647059 +60855025004,230084,0.0823529411764706 +60855025005,212546,0.0884146341463415 +60855025005,216033,0.0213414634146341 +60855025005,221424,0.274390243902439 +60855025005,226342,0.326219512195122 +60855025005,230081,0.170731707317073 +60855025005,230082,0.11890243902439 +60855025006,210945,0.0614406779661017 +60855025006,210946,0.0550847457627119 +60855025006,210948,0.0699152542372881 +60855025006,212853,0.0677966101694915 +60855025006,212854,0.0677966101694915 +60855025006,212856,0.0805084745762712 +60855025006,220834,0.141949152542373 +60855025006,223509,0.048728813559322 +60855025006,223511,0.0953389830508475 +60855025006,227420,0.11228813559322 +60855025006,227421,0.11228813559322 +60855025006,227636,0.0233050847457627 +60855025006,231528,0.0635593220338983 +60855026011,211460,0.135416666666667 +60855026011,212852,0.121527777777778 +60855026011,216032,0.0486111111111111 +60855026011,220717,0.0659722222222222 +60855026011,220718,0.0243055555555556 +60855026011,224665,0.118055555555556 +60855026011,224667,0.131944444444444 +60855026011,226339,0.0972222222222222 +60855026011,226685,0.0972222222222222 +60855026011,229847,0.159722222222222 +60855026012,211457,0.144230769230769 +60855026012,212545,0.141025641025641 +60855026012,213589,0.169871794871795 +60855026012,220715,0.0993589743589744 +60855026012,220716,0.092948717948718 +60855026012,225529,0.0801282051282051 +60855026012,226683,0.115384615384615 +60855026012,226684,0.157051282051282 +60855026013,210114,0.0334507042253521 +60855026013,212850,0.457746478873239 +60855026013,212851,0.0862676056338028 +60855026013,220113,0.188380281690141 +60855026013,220831,0.117957746478873 +60855026013,221576,0.0669014084507042 +60855026013,222077,0.0404929577464789 +60855026013,227418,0.00880281690140845 +60855026031,213588,0.0788643533123028 +60855026031,228465,0.55205047318612 +60855026031,228597,0.126182965299685 +60855026031,229339,0.0851735015772871 +60855026031,231525,0.157728706624606 +60855026032,210052,0.195512820512821 +60855026032,210053,0.141025641025641 +60855026032,217895,0.125 +60855026032,217896,0.0737179487179487 +60855026032,217897,0.105769230769231 +60855026032,217898,0.112179487179487 +60855026032,217899,0.0641025641025641 +60855026032,219297,0.0705128205128205 +60855026032,229338,0.112179487179487 +60855026033,210050,0.0779220779220779 +60855026033,210051,0.116883116883117 +60855026033,213582,0.158441558441558 +60855026033,213583,0.166233766233766 +60855026033,213585,0.012987012987013 +60855026033,217892,0.212987012987013 +60855026033,217893,0.0597402597402597 +60855026033,227415,0.0493506493506494 +60855026033,229336,0.145454545454545 +60855026041,213579,0.362105263157895 +60855026041,213945,0 +60855026041,219300,0 +60855026041,221658,0 +60855026041,223125,0 +60855026041,223508,0.0831578947368421 +60855026041,225976,0.167368421052632 +60855026041,228151,0.101052631578947 +60855026041,228464,0 +60855026041,228586,0.0863157894736842 +60855026041,228587,0.174736842105263 +60855026041,228631,0 +60855026041,228633,0.0252631578947368 +60855026041,230785,0 +60855026042,213586,0 +60855026042,219640,0 +60855026042,225979,1 +60855026043,219298,0.086283185840708 +60855026043,220112,0.0663716814159292 +60855026043,230526,0.847345132743363 +60855027011,212776,0 +60855027011,212777,0.0775075987841945 +60855027011,218700,0.0364741641337386 +60855027011,221146,0.0866261398176292 +60855027011,221150,0.272036474164134 +60855027011,221152,0.0592705167173252 +60855027011,225216,0.047112462006079 +60855027011,225975,0.0805471124620061 +60855027011,228007,0.0577507598784195 +60855027011,228008,0.130699088145897 +60855027011,229332,0.0775075987841945 +60855027011,229333,0.0364741641337386 +60855027011,229334,0.0379939209726444 +60855027012,212772,0.279935275080906 +60855027012,212773,0.0453074433656958 +60855027012,212774,0.13915857605178 +60855027012,217889,0.0792880258899676 +60855027012,218669,0.252427184466019 +60855027012,221144,0.0453074433656958 +60855027012,225214,0.103559870550162 +60855027012,225973,0.0550161812297735 +60855027013,0,0 +60855027013,211304,0.0774962742175857 +60855027013,212771,0.144560357675112 +60855027013,217886,0.0447093889716841 +60855027013,217887,0.0655737704918033 +60855027013,218697,0.0819672131147541 +60855027013,221143,0.482861400894188 +60855027013,221710,0.0163934426229508 +60855027013,225213,0.0864381520119225 +60855027021,210309,0.338551859099804 +60855027021,210484,0.0831702544031311 +60855027021,213895,0.157534246575342 +60855027021,218178,0.0205479452054795 +60855027021,218179,0.000978473581213307 +60855027021,226243,0.000978473581213307 +60855027021,228309,0.398238747553816 +60855027022,210312,0.329041487839771 +60855027022,210313,0.48068669527897 +60855027022,211130,0.165951359084406 +60855027022,216234,0.0214592274678112 +60855027022,218797,0.00286123032904149 +60855027023,213267,0.250632911392405 +60855027023,218696,0 +60855027023,218800,0.220253164556962 +60855027023,222670,0.293670886075949 +60855027023,227227,0.235443037974684 +60855027024,216228,0.408163265306122 +60855027024,222851,0.0693877551020408 +60855027024,225725,0.0551020408163265 +60855027024,226241,0.348979591836735 +60855027024,227223,0.0612244897959184 +60855027024,227734,0.0571428571428571 +60855027025,218174,0.272380952380952 +60855027025,220242,0 +60855027025,221419,0.337142857142857 +60855027025,226239,0 +60855027025,226466,0.371428571428571 +60855027025,227222,0.019047619047619 +60855028001,210308,0.179775280898876 +60855028001,213893,0.119101123595506 +60855028001,215423,0.348314606741573 +60855028001,216103,0 +60855028001,221416,0.103370786516854 +60855028001,222268,0.0292134831460674 +60855028001,222664,0.125842696629213 +60855028001,226667,0.0943820224719101 +60855028002,210304,0.0560420315236427 +60855028002,210306,0 +60855028002,215422,0.166374781085814 +60855028002,218168,0.0577933450087566 +60855028002,218169,0.0472854640980736 +60855028002,218170,0.0385288966725044 +60855028002,221409,0.0402802101576182 +60855028002,221413,0.0560420315236427 +60855028002,221415,0.141856392294221 +60855028002,222662,0.0402802101576182 +60855028002,225066,0.0665499124343257 +60855028002,226662,0.0700525394045534 +60855028002,226663,0.0472854640980736 +60855028002,226668,0.0823117338003503 +60855028002,227221,0.0893169877408056 +60855028003,210305,0.304812834224599 +60855028003,215424,0.336898395721925 +60855028003,218171,0.245989304812834 +60855028003,222660,0.112299465240642 +60855029011,213891,0.0925553319919517 +60855029011,213892,0.311871227364185 +60855029011,215553,0.0704225352112676 +60855029011,215554,0.175050301810865 +60855029011,221199,0.062374245472837 +60855029011,222266,0.0865191146881288 +60855029011,225719,0.0462776659959759 +60855029011,231092,0.06841046277666 +60855029011,231094,0.0865191146881288 +60855029012,211232,0.0767857142857143 +60855029012,211233,0.0821428571428571 +60855029012,211234,0.0982142857142857 +60855029012,211235,0.15 +60855029012,211236,0.123214285714286 +60855029012,215551,0.0428571428571429 +60855029012,222264,0.0660714285714286 +60855029012,222265,0.103571428571429 +60855029012,225716,0.075 +60855029012,226421,0.0464285714285714 +60855029012,231090,0.0892857142857143 +60855029012,231091,0.0464285714285714 +60855029013,211231,0.274932614555256 +60855029013,215549,0.194070080862534 +60855029013,221198,0.0943396226415094 +60855029013,222263,0.0754716981132075 +60855029013,225715,0.226415094339623 +60855029013,226419,0.0646900269541779 +60855029013,231089,0.0700808625336927 +60855029014,211230,0.0418300653594771 +60855029014,212109,0.211764705882353 +60855029014,213886,0.0352941176470588 +60855029014,215548,0.0392156862745098 +60855029014,216998,0.0457516339869281 +60855029014,222262,0.124183006535948 +60855029014,226418,0.0549019607843137 +60855029014,227867,0.0418300653594771 +60855029014,227868,0.0326797385620915 +60855029014,230278,0.0300653594771242 +60855029014,230279,0.0431372549019608 +60855029014,230350,0.196078431372549 +60855029014,231088,0.103267973856209 +60855029021,211228,0.0357142857142857 +60855029021,211229,0.0775862068965517 +60855029021,213108,0.0689655172413793 +60855029021,215544,0.0381773399014778 +60855029021,215545,0.0566502463054187 +60855029021,220379,0.0652709359605911 +60855029021,220380,0.0812807881773399 +60855029021,220381,0.0258620689655172 +60855029021,220386,0.0295566502463054 +60855029021,221575,0.0603448275862069 +60855029021,222075,0.0566502463054187 +60855029021,225415,0.0788177339901478 +60855029021,225416,0.0467980295566502 +60855029021,225417,0.0899014778325123 +60855029021,226415,0.0541871921182266 +60855029021,226416,0.0320197044334975 +60855029021,226417,0.0529556650246305 +60855029021,231086,0.0492610837438424 +60855029022,212299,0.0320733104238259 +60855029022,213106,0.0423825887743414 +60855029022,214094,0.0595647193585338 +60855029022,214096,0.0309278350515464 +60855029022,214097,0.0538373424971363 +60855029022,215543,0.0206185567010309 +60855029022,218864,0.0538373424971363 +60855029022,218865,0.0355097365406644 +60855029022,218973,0.0458190148911798 +60855029022,220377,0.0687285223367698 +60855029022,220378,0.0584192439862543 +60855029022,222795,0.0423825887743414 +60855029022,223489,0.0332187857961054 +60855029022,225413,0.0733104238258877 +60855029022,230264,0.101947308132875 +60855029022,231876,0.0481099656357388 +60855029022,231877,0.0962199312714777 +60855029022,231878,0.0549828178694158 +60855029022,231879,0.0240549828178694 +60855029022,232172,0.0240549828178694 +60855029023,212297,0.048314606741573 +60855029023,214092,0.0943820224719101 +60855029023,214093,0.0415730337078652 +60855029023,217565,0.108988764044944 +60855029023,218860,0.0303370786516854 +60855029023,218861,0.0685393258426966 +60855029023,218862,0.0247191011235955 +60855029023,218970,0.102247191011236 +60855029023,218971,0.0314606741573034 +60855029023,218972,0.0528089887640449 +60855029023,221558,0.187640449438202 +60855029023,221561,0 +60855029023,222793,0.0337078651685393 +60855029023,223254,0.0471910112359551 +60855029023,223255,0.0460674157303371 +60855029023,223256,0.051685393258427 +60855029023,231874,0.0303370786516854 +60855029031,212295,0.064070351758794 +60855029031,218349,0.0402010050251256 +60855029031,218350,0.0942211055276382 +60855029031,218351,0.0326633165829146 +60855029031,218855,0.042713567839196 +60855029031,218856,0.0351758793969849 +60855029031,218857,0.0477386934673367 +60855029031,218966,0.0364321608040201 +60855029031,218967,0.103015075376884 +60855029031,218968,0.0552763819095477 +60855029031,221555,0.0590452261306533 +60855029031,221556,0.0540201005025126 +60855029031,221557,0.0364321608040201 +60855029031,223252,0.0515075376884422 +60855029031,223253,0.0791457286432161 +60855029031,227635,0.0665829145728643 +60855029031,231714,0.0464824120603015 +60855029031,231873,0.0552763819095477 +60855029032,211524,0.0547169811320755 +60855029032,211525,0.0452830188679245 +60855029032,212416,0.069811320754717 +60855029032,218236,0.0283018867924528 +60855029032,218348,0.0641509433962264 +60855029032,218852,0.0773584905660377 +60855029032,218853,0.0490566037735849 +60855029032,218854,0.0490566037735849 +60855029032,221554,0.0641509433962264 +60855029032,222790,0.0792452830188679 +60855029032,223251,0.0528301886792453 +60855029032,227631,0.0943396226415094 +60855029032,227633,0.0716981132075472 +60855029032,231871,0.0754716981132075 +60855029032,231872,0.124528301886792 +60855029033,211520,0.0744500846023689 +60855029033,211522,0.0829103214890017 +60855029033,211523,0.140439932318105 +60855029033,212107,0.0439932318104907 +60855029033,218233,0.0524534686971235 +60855029033,218234,0.104906937394247 +60855029033,221550,0.0744500846023689 +60855029033,221551,0.0609137055837563 +60855029033,221552,0.065989847715736 +60855029033,227628,0.0947546531302876 +60855029033,227630,0.0490693739424704 +60855029033,227651,0.089678510998308 +60855029033,232014,0.065989847715736 +60855029061,218232,1 +60855029062,211518,0.0675453047775947 +60855029062,214359,0.187808896210873 +60855029062,216354,0.0939044481054366 +60855029062,216355,0.0774299835255354 +60855029062,218230,0.0560131795716639 +60855029062,218231,0.0527182866556837 +60855029062,219708,0.0790774299835255 +60855029062,219709,0.0494233937397035 +60855029062,226987,0.0939044481054366 +60855029062,227625,0.0889621087314662 +60855029062,227626,0.070840197693575 +60855029062,231712,0.0823723228995058 +60855029063,211519,0.0504854368932039 +60855029063,212422,0.0427184466019417 +60855029063,213814,0.0427184466019417 +60855029063,213815,0.0776699029126214 +60855029063,214360,0.0718446601941748 +60855029063,218167,0.0252427184466019 +60855029063,223248,0.0504854368932039 +60855029063,224876,0.054368932038835 +60855029063,226320,0.083495145631068 +60855029063,226322,0.242718446601942 +60855029063,226323,0.0737864077669903 +60855029063,227627,0.0446601941747573 +60855029063,227983,0.0776699029126214 +60855029063,231711,0.0621359223300971 +60855029071,212365,0.0558912386706949 +60855029071,212366,0.0438066465256798 +60855029071,213680,0.0377643504531722 +60855029071,216351,0.0574018126888218 +60855029071,216352,0.06797583081571 +60855029071,216353,0.0740181268882175 +60855029071,217248,0.11631419939577 +60855029071,217249,0.0468277945619335 +60855029071,219705,0.040785498489426 +60855029071,219707,0.0483383685800604 +60855029071,221918,0.0785498489425982 +60855029071,221919,0.054380664652568 +60855029071,227650,0.0422960725075529 +60855029071,229676,0.0483383685800604 +60855029071,229677,0.0422960725075529 +60855029071,229678,0.0362537764350453 +60855029071,230708,0.0574018126888218 +60855029071,230710,0.0513595166163142 +60855029072,212363,0.301829268292683 +60855029072,212364,0.0884146341463415 +60855029072,213679,0.126524390243902 +60855029072,216349,0.163109756097561 +60855029072,217245,0.0289634146341463 +60855029072,217246,0.161585365853659 +60855029072,219013,0.0625 +60855029072,221916,0.0320121951219512 +60855029072,224224,0.0350609756097561 +60855029081,212359,0.113161131611316 +60855029081,212360,0.204182041820418 +60855029081,212361,0.0861008610086101 +60855029081,216344,0.034440344403444 +60855029081,216345,0.0922509225092251 +60855029081,216346,0.0885608856088561 +60855029081,216348,0.034440344403444 +60855029081,217242,0 +60855029081,217243,0.0824108241082411 +60855029081,219012,0.030750307503075 +60855029081,223633,0.186961869618696 +60855029081,224223,0.046740467404674 +60855029082,212353,0.215498938428875 +60855029082,212355,0.029723991507431 +60855029082,212357,0.12208067940552 +60855029082,212358,0.0912951167728238 +60855029082,215630,0.0414012738853503 +60855029082,217240,0.035031847133758 +60855029082,217241,0.054140127388535 +60855029082,219011,0.16348195329087 +60855029082,221571,0.0690021231422505 +60855029082,221572,0.059447983014862 +60855029082,223631,0.0265392781316348 +60855029082,224221,0.0552016985138004 +60855029082,228109,0.0371549893842887 +60855029082,229672,0 +60855029083,211598,0.104304635761589 +60855029083,211599,0.172185430463576 +60855029083,215628,0.0463576158940397 +60855029083,217239,0.0877483443708609 +60855029083,219008,0.0943708609271523 +60855029083,219010,0.0529801324503311 +60855029083,223629,0.043046357615894 +60855029083,224216,0.0397350993377483 +60855029083,224217,0.140728476821192 +60855029083,224218,0.0579470198675497 +60855029083,224220,0.0513245033112583 +60855029083,227865,0.0529801324503311 +60855029083,229424,0.0562913907284768 +60855029091,211597,0.104166666666667 +60855029091,215626,0.12962962962963 +60855029091,215627,0.444444444444444 +60855029091,229419,0.321759259259259 +60855029092,213677,0.341614906832298 +60855029092,221570,0.562111801242236 +60855029092,221633,0.0962732919254658 +60855029093,211745,0.279141104294479 +60855029093,221569,0.0521472392638037 +60855029093,221632,0.0828220858895705 +60855029093,223615,0.237730061349693 +60855029093,223616,0.188650306748466 +60855029093,229097,0.0337423312883436 +60855029093,231168,0.125766871165644 +60855029094,210791,0.380869565217391 +60855029094,227646,0.365217391304348 +60855029094,227647,0.253913043478261 +60855029101,213125,0.181268882175227 +60855029101,213126,0.117824773413897 +60855029101,213127,0.0966767371601208 +60855029101,215121,0.120845921450151 +60855029101,217857,0.117824773413897 +60855029101,217858,0.11178247734139 +60855029101,228791,0 +60855029101,229093,0.148036253776435 +60855029101,231167,0.105740181268882 +60855029102,215122,0.114093959731544 +60855029102,215123,0.12751677852349 +60855029102,215124,0.191275167785235 +60855029102,223405,0.120805369127517 +60855029102,227863,0.0704697986577181 +60855029102,229094,0.221476510067114 +60855029102,229095,0.154362416107383 +60855029103,210788,0.43801652892562 +60855029103,210789,0.107438016528926 +60855029103,215958,0.264462809917355 +60855029103,224011,0.111570247933884 +60855029103,224012,0.0785123966942149 +60855029104,221568,0.507640067911715 +60855029104,221880,0.113752122241087 +60855029104,229096,0.378607809847199 +60855030011,213036,0.047244094488189 +60855030011,213037,0.0570866141732283 +60855030011,214357,0.0905511811023622 +60855030011,214358,0.0511811023622047 +60855030011,215883,0.0688976377952756 +60855030011,216588,0.0551181102362205 +60855030011,219288,0.0748031496062992 +60855030011,224639,0.0669291338582677 +60855030011,224640,0.0826771653543307 +60855030011,224874,0.161417322834646 +60855030011,226316,0.0334645669291339 +60855030011,226983,0.062992125984252 +60855030011,226984,0.0669291338582677 +60855030011,226985,0.0807086614173228 +60855030012,213033,0.0798898071625344 +60855030012,213577,0.0743801652892562 +60855030012,215882,0.110192837465565 +60855030012,219287,0.0523415977961433 +60855030012,221631,0.168044077134986 +60855030012,223404,0.132231404958678 +60855030012,224638,0.0826446280991736 +60855030012,226980,0.0771349862258953 +60855030012,226981,0.0771349862258953 +60855030012,226982,0.0798898071625344 +60855030012,228790,0.0661157024793388 +60855030013,211743,0.0406732117812062 +60855030013,211744,0.0448807854137447 +60855030013,213123,0.0448807854137447 +60855030013,216323,0.0504908835904628 +60855030013,217856,0.0743338008415147 +60855030013,221567,0.0729312762973352 +60855030013,221627,0.0420757363253857 +60855030013,221629,0.0785413744740533 +60855030013,221630,0.0701262272089762 +60855030013,223402,0.0406732117812062 +60855030013,223403,0.0448807854137447 +60855030013,224005,0.102384291725105 +60855030013,224006,0.0462833099579243 +60855030013,224007,0.0280504908835905 +60855030013,228788,0.109396914446003 +60855030013,228789,0.0350631136044881 +60855030013,231165,0.0743338008415147 +60855030021,213032,0.0822429906542056 +60855030021,215117,0.104672897196262 +60855030021,215118,0.285981308411215 +60855030021,215881,0 +60855030021,219284,0.121495327102804 +60855030021,223100,0.0411214953271028 +60855030021,224003,0 +60855030021,224004,0 +60855030021,224637,0.0728971962616822 +60855030021,226312,0.0168224299065421 +60855030021,226978,0.128971962616822 +60855030021,227980,0.0355140186915888 +60855030021,231163,0.110280373831776 +60855030022,211742,0.0728744939271255 +60855030022,213120,0.0593792172739541 +60855030022,215114,0.0364372469635627 +60855030022,215116,0.0188933873144399 +60855030022,216322,0.0418353576248313 +60855030022,217855,0.102564102564103 +60855030022,221624,0.112010796221323 +60855030022,223097,0 +60855030022,223098,0.0323886639676113 +60855030022,223520,0.0553306342780027 +60855030022,223840,0.0526315789473684 +60855030022,223841,0.0310391363022942 +60855030022,227645,0.225371120107962 +60855030022,227859,0.0404858299595142 +60855030022,227862,0.118758434547908 +60855030031,213117,0.15 +60855030031,213118,0 +60855030031,215112,0.158333333333333 +60855030031,215113,0.1 +60855030031,217853,0.0916666666666667 +60855030031,220880,0.119444444444444 +60855030031,221623,0.113888888888889 +60855030031,223835,0.0972222222222222 +60855030031,223836,0 +60855030031,231160,0.163888888888889 +60855030031,231162,0 +60855030031,232167,0.00555555555555556 +60855030032,210960,0.361516034985423 +60855030032,212343,0.0481049562682216 +60855030032,213467,0.10932944606414 +60855030032,213674,0.100583090379009 +60855030032,216319,0.115160349854227 +60855030032,216320,0.0699708454810496 +60855030032,216321,0.0568513119533528 +60855030032,221879,0.0685131195335277 +60855030032,222307,0.0262390670553936 +60855030032,223826,0.043731778425656 +60855030033,212863,0.164658634538153 +60855030033,216313,0.315261044176707 +60855030033,216314,0.0903614457831325 +60855030033,220846,0.0421686746987952 +60855030033,223519,0.0481927710843374 +60855030033,223756,0.232931726907631 +60855030033,227855,0.106425702811245 +60855030034,216312,0.189189189189189 +60855030034,222527,0.117117117117117 +60855030034,223265,0.18018018018018 +60855030034,227040,0.225225225225225 +60855030034,227427,0.153153153153153 +60855030034,227428,0.135135135135135 +60855031051,210350,0.0912698412698413 +60855031051,211439,0.0462962962962963 +60855031051,213260,0.0701058201058201 +60855031051,213261,0.00264550264550265 +60855031051,214185,0.0687830687830688 +60855031051,220165,0.0291005291005291 +60855031051,225289,0.0952380952380952 +60855031051,225498,0.0555555555555556 +60855031051,225499,0.268518518518519 +60855031051,226300,0.272486772486772 +60855031081,213256,0.968099861303745 +60855031081,213378,0.0319001386962552 +60855031081,225495,0 +60855031082,211128,0.225320271288621 +60855031082,211129,0.286360211002261 +60855031082,213253,0.0565184626978146 +60855031082,213375,0.178598342125094 +60855031082,213376,0.0354182366239638 +60855031082,225494,0.0188394875659382 +60855031082,226207,0.0512434061793519 +60855031082,226209,0.100979653353429 +60855031082,226642,0.0467219291635268 +60855031083,211438,0.506802721088435 +60855031083,213255,0.197278911564626 +60855031083,220164,0.295918367346939 +60855031084,215701,0.448362720403023 +60855031084,221404,0.0806045340050378 +60855031084,224726,0.345088161209068 +60855031084,227917,0.125944584382872 +60855031101,211437,0.00612244897959184 +60855031101,224067,0.993877551020408 +60855031102,211435,0.621527777777778 +60855031102,225493,0.111111111111111 +60855031102,226204,0.09375 +60855031102,226640,0.0902777777777778 +60855031102,232108,0.0833333333333333 +60855031103,211436,0.348591549295775 +60855031103,226205,0.302816901408451 +60855031103,226641,0.348591549295775 +60855031111,217929,0.539823008849557 +60855031111,228086,0.460176991150443 +60855031112,214047,0.077720207253886 +60855031112,215912,0.310880829015544 +60855031112,216268,0.0880829015544041 +60855031112,217185,0.0595854922279793 +60855031112,225301,0.27979274611399 +60855031112,225321,0.0984455958549223 +60855031112,229627,0.0854922279792746 +60855031113,210352,0.0997782705099778 +60855031113,215910,0.0776053215077605 +60855031113,221154,0.130820399113082 +60855031113,221478,0.0842572062084257 +60855031113,224068,0.0886917960088692 +60855031113,225288,0.0931263858093126 +60855031113,225571,0.425720620842572 +60855031121,212526,0.0209090909090909 +60855031121,212527,0.0236363636363636 +60855031121,212528,0.0118181818181818 +60855031121,212530,0.0554545454545455 +60855031121,214353,0.0254545454545455 +60855031121,214354,0.1 +60855031121,216864,0.0372727272727273 +60855031121,223822,0.00272727272727273 +60855031121,224855,0.157272727272727 +60855031121,224856,0.343636363636364 +60855031121,224857,0.0318181818181818 +60855031121,224858,0.123636363636364 +60855031121,227550,0.0663636363636364 +60855031122,212525,0.123943661971831 +60855031122,214351,0.0816901408450704 +60855031122,216863,0.0112676056338028 +60855031122,224618,0.126760563380282 +60855031122,224619,0.104225352112676 +60855031122,227548,0.0788732394366197 +60855031122,227698,0.0957746478873239 +60855031122,230897,0.377464788732394 +60855031131,212335,0.0490883590462833 +60855031131,212336,0.0785413744740533 +60855031131,212633,0.0659186535764376 +60855031131,212634,0.0855539971949509 +60855031131,216861,0.0757363253856942 +60855031131,220158,0.0448807854137447 +60855031131,220159,0.0448807854137447 +60855031131,222100,0.200561009817672 +60855031131,222101,0.0392706872370266 +60855031131,222102,0.0448807854137447 +60855031131,222103,0.0280504908835905 +60855031131,223602,0.0546984572230014 +60855031131,223603,0.05890603085554 +60855031131,227694,0.129032258064516 +60855031132,212337,0.0532859680284192 +60855031132,212338,0.0550621669626998 +60855031132,212635,0.0568383658969805 +60855031132,212636,0.0408525754884547 +60855031132,216862,0.0515097690941385 +60855031132,220161,0.024866785079929 +60855031132,220162,0.225577264653641 +60855031132,222104,0.0834813499111901 +60855031132,223604,0.044404973357016 +60855031132,223605,0.0497335701598579 +60855031132,227885,0.0763765541740675 +60855031132,227886,0.238010657193606 +60855031151,210160,0.114654824384336 +60855031151,210165,0.15865966895438 +60855031151,210501,0 +60855031151,210508,0.180056519983851 +60855031151,211298,0.023415421881308 +60855031151,211686,0 +60855031151,212524,0 +60855031151,212632,0.188130803391199 +60855031151,214350,0.031893419459023 +60855031151,216397,0 +60855031151,216426,0.0270488494146145 +60855031151,218017,0.0536939846588615 +60855031151,219951,0.161485668146952 +60855031151,221944,0.0109002825999193 +60855031151,223601,0.00322971336293904 +60855031151,224487,0.0468308437626161 +60855031151,230407,0 +60855031151,231593,0 +60855031161,210492,0.219939117199391 +60855031161,210515,0.125570776255708 +60855031161,211683,0.119482496194825 +60855031161,214346,0.115677321156773 +60855031161,214347,0.131659056316591 +60855031161,215721,0.114155251141553 +60855031161,219946,0.0015220700152207 +60855031161,220154,0.0943683409436834 +60855031161,226190,0.060882800608828 +60855031161,227204,0.0167427701674277 +60855031162,211578,0.462576687116564 +60855031162,224612,0.119018404907975 +60855031162,226188,0.41840490797546 +60855031162,231009,0 +60855031171,211909,0.264957264957265 +60855031171,211910,0.0683760683760684 +60855031171,214184,0.384615384615385 +60855031171,232112,0.105413105413105 +60855031171,232113,0.176638176638177 +60855031172,214183,0.0621621621621622 +60855031172,225496,0.245945945945946 +60855031172,225497,0.0648648648648649 +60855031172,226213,0.0594594594594595 +60855031172,226298,0.124324324324324 +60855031172,226645,0.443243243243243 +60855031181,211907,0.169398907103825 +60855031181,219081,0.360655737704918 +60855031181,221477,0.158469945355191 +60855031181,222220,0.174863387978142 +60855031181,225290,0.136612021857924 +60855031182,215276,0.0384 +60855031182,219082,0.0416 +60855031182,223475,0.92 +60855031183,215275,0.906288532675709 +60855031183,228880,0.093711467324291 +60855031211,210103,0.00556438791732909 +60855031211,211002,0.472972972972973 +60855031211,211911,0.0620031796502385 +60855031211,211912,0.0294117647058824 +60855031211,211913,0.0158982511923688 +60855031211,213464,0.0468998410174881 +60855031211,214186,0.034181240063593 +60855031211,214187,0 +60855031211,220166,0.0246422893481717 +60855031211,223825,0 +60855031211,225500,0.00158982511923688 +60855031211,225503,0.0389507154213037 +60855031211,226305,0.257551669316375 +60855031211,227889,0.00397456279809221 +60855031211,232115,0.00635930047694754 +60855031212,210158,0.666666666666667 +60855031212,220555,0.0045045045045045 +60855031212,226233,0.265765765765766 +60855031212,226302,0 +60855031212,227702,0.00900900900900901 +60855031212,232118,0.0540540540540541 +60855031221,210151,0.22488038277512 +60855031221,210349,0 +60855031221,213030,0.455741626794258 +60855031221,213031,0 +60855031221,213573,0 +60855031221,215879,0 +60855031221,215880,0 +60855031221,215911,0 +60855031221,218681,0.062200956937799 +60855031221,222219,0.118421052631579 +60855031221,226310,0 +60855031221,226311,0 +60855031221,227573,0 +60855031221,227574,0 +60855031221,227731,0.136363636363636 +60855031221,230138,0.00239234449760766 +60855031221,231837,0 +60855031222,220368,0.618296529968454 +60855031222,222218,0.0473186119873817 +60855031222,225686,0.334384858044164 +60855031231,216865,0.78875 +60855031231,223823,0.21125 +60855031232,218680,0.238985313751669 +60855031232,224635,0.459279038718291 +60855031232,225504,0.30173564753004 +60855032041,211590,0.198003327787022 +60855032041,212810,0.18801996672213 +60855032041,214036,0.0349417637271215 +60855032041,214037,0.086522462562396 +60855032041,214716,0.064891846921797 +60855032041,218726,0.0948419301164725 +60855032041,222500,0.0765391014975042 +60855032041,223910,0.0682196339434276 +60855032041,224990,0.0382695507487521 +60855032041,227380,0.0532445923460899 +60855032041,228875,0.0965058236272879 +60855032042,211681,1 +60855032043,216158,0.073394495412844 +60855032043,219281,0.568807339449541 +60855032043,224609,0.357798165137615 +60855032044,210781,0.176829268292683 +60855032044,211680,0.182926829268293 +60855032044,219280,0.176829268292683 +60855032044,227381,0.463414634146341 +60855032045,211678,0.0508474576271186 +60855032045,212812,0.122881355932203 +60855032045,214295,0.180084745762712 +60855032045,224986,0.646186440677966 +60855032071,217341,0.0615640599001664 +60855032071,220513,0.0366056572379368 +60855032071,222064,0.0415973377703827 +60855032071,222942,0.371048252911814 +60855032071,225046,0.24126455906822 +60855032071,225402,0.111480865224626 +60855032071,225403,0.0549084858569052 +60855032071,230262,0.0815307820299501 +60855032072,215899,0.458762886597938 +60855032072,217469,0.365979381443299 +60855032072,223034,0.118556701030928 +60855032072,230955,0.0567010309278351 +60855032081,212283,0.380462724935733 +60855032081,218421,0.208226221079692 +60855032081,218728,0.10025706940874 +60855032081,225266,0.0591259640102828 +60855032081,228731,0.0796915167095116 +60855032081,228879,0.0796915167095116 +60855032081,229506,0.0925449871465296 +60855032082,210367,0.0571428571428571 +60855032082,211967,0.16043956043956 +60855032082,213336,0 +60855032082,214721,0.0725274725274725 +60855032082,214774,0.0549450549450549 +60855032082,218727,0.0769230769230769 +60855032082,221185,0.0725274725274725 +60855032082,222972,0.0725274725274725 +60855032082,223005,0.208791208791209 +60855032082,225425,0.101098901098901 +60855032082,230114,0.123076923076923 +60855032101,211715,0.219281663516068 +60855032101,214947,0.0793950850661626 +60855032101,219382,0.0604914933837429 +60855032101,219383,0.226843100189036 +60855032101,221182,0.132325141776938 +60855032101,221183,0.0699432892249527 +60855032101,222970,0.0907372400756144 +60855032101,224304,0.120982986767486 +60855032102,211716,0.0579345088161209 +60855032102,214773,0.219143576826196 +60855032102,219384,0.133501259445844 +60855032102,220337,0.224181360201511 +60855032102,221184,0.0654911838790932 +60855032102,222971,0.0579345088161209 +60855032102,226764,0.128463476070529 +60855032102,229505,0.0629722921914358 +60855032102,230113,0.0503778337531486 +60855032111,211209,0.336397058823529 +60855032111,218422,0.0698529411764706 +60855032111,218730,0.123161764705882 +60855032111,222497,0.0827205882352941 +60855032111,223209,0.0625 +60855032111,225572,0.325367647058824 +60855032112,212282,0.113309352517986 +60855032112,214771,0.154676258992806 +60855032112,214772,0.091726618705036 +60855032112,215273,0.0665467625899281 +60855032112,215274,0.107913669064748 +60855032112,215528,0.0539568345323741 +60855032112,217815,0.0449640287769784 +60855032112,225685,0.113309352517986 +60855032112,227409,0.0629496402877698 +60855032112,230136,0.079136690647482 +60855032112,230137,0.111510791366906 +60855032121,211507,0.116279069767442 +60855032121,211508,0.232558139534884 +60855032121,224701,0.306976744186047 +60855032121,224702,0.237209302325581 +60855032121,227407,0.106976744186047 +60855032121,229182,0 +60855032122,211210,0.0920502092050209 +60855032122,216291,0.133891213389121 +60855032122,217813,0.0669456066945607 +60855032122,223210,0.133891213389121 +60855032122,225453,0.0669456066945607 +60855032122,225644,0.0606694560669456 +60855032122,226395,0.125523012552301 +60855032122,227851,0.104602510460251 +60855032122,229243,0.215481171548117 +60855032123,218326,0.227467811158798 +60855032123,222941,0.330472103004292 +60855032123,223006,0.0858369098712446 +60855032123,224461,0.201716738197425 +60855032123,229507,0.15450643776824 +60855032131,215278,1 +60855032132,210497,1 +60855032141,214039,0.782978723404255 +60855032141,217926,0.0340425531914894 +60855032141,223908,0.182978723404255 +60855032142,211687,0.00109051254089422 +60855032142,216913,0.00109051254089422 +60855032142,218682,0.00109051254089422 +60855032142,221479,0.989094874591058 +60855032142,222988,0.00763358778625954 +60855032171,216107,0.588541666666667 +60855032171,224703,0.411458333333333 +60855032172,214719,0.0861111111111111 +60855032172,215530,0.25 +60855032172,228081,0.466666666666667 +60855032172,228877,0.158333333333333 +60855032172,230141,0.0388888888888889 +60855032173,212813,0.0925925925925926 +60855032173,214718,0.177777777777778 +60855032173,214720,0.0925925925925926 +60855032173,217928,0.140740740740741 +60855032173,227385,0.0666666666666667 +60855032173,228083,0.162962962962963 +60855032173,228084,0.1 +60855032173,228878,0.166666666666667 +60855032181,210030,0.0340632603406326 +60855032181,211294,0.341849148418492 +60855032181,213541,0.0340632603406326 +60855032181,214717,0.0304136253041363 +60855032181,215390,0.0498783454987835 +60855032181,217931,0.0717761557177616 +60855032181,225904,0.0340632603406326 +60855032181,225905,0.0681265206812652 +60855032181,227382,0.335766423357664 +60855032182,210031,1 +60855033041,210096,0.458745874587459 +60855033041,210097,0.00165016501650165 +60855033041,215467,0 +60855033041,215507,0.235973597359736 +60855033041,223208,0 +60855033041,224458,0.202970297029703 +60855033041,224706,0.0346534653465347 +60855033041,225683,0.066006600660066 +60855033042,210365,0.0862470862470862 +60855033042,211285,0.508158508158508 +60855033042,222965,0.0792540792540792 +60855033042,224459,0.0885780885780886 +60855033042,224460,0.0629370629370629 +60855033042,229180,0.0885780885780886 +60855033042,230112,0.0862470862470862 +60855033043,215465,0.41304347826087 +60855033043,222966,0.141304347826087 +60855033043,224468,0.125 +60855033043,229187,0.130434782608696 +60855033043,230116,0.190217391304348 +60855033044,210368,1 +60855033044,214652,0 +60855033051,210366,0.138709677419355 +60855033051,214650,0 +60855033051,218328,0.161290322580645 +60855033051,220365,0.0903225806451613 +60855033051,224456,0.125806451612903 +60855033051,224457,0.129032258064516 +60855033051,227403,0.174193548387097 +60855033051,227404,0.180645161290323 +60855033051,229186,0 +60855033052,210364,0.0742971887550201 +60855033052,210931,0.0823293172690763 +60855033052,211505,0.072289156626506 +60855033052,214648,0.0843373493975904 +60855033052,217799,0.0803212851405622 +60855033052,219379,0.283132530120482 +60855033052,224975,0.240963855421687 +60855033052,227406,0.0823293172690763 +60855033053,211295,0 +60855033053,229242,0.234505862646566 +60855033053,230132,0.765494137353434 +60855033061,212273,0.652920962199313 +60855033061,215266,0.347079037800687 +60855033062,212270,0.104225352112676 +60855033062,214041,0.216901408450704 +60855033062,215087,0.0957746478873239 +60855033062,216263,0.11830985915493 +60855033062,217807,0.0704225352112676 +60855033062,220362,0.0957746478873239 +60855033062,225679,0.152112676056338 +60855033062,230595,0.146478873239437 +60855033063,212272,0.188073394495413 +60855033063,215929,0.243119266055046 +60855033063,222246,0.151376146788991 +60855033063,225680,0.229357798165138 +60855033063,227398,0 +60855033063,229368,0.188073394495413 +60855033121,210070,1 +60855033122,210068,0.043956043956044 +60855033122,212009,0.152014652014652 +60855033122,212097,0.0457875457875458 +60855033122,212837,0.0164835164835165 +60855033122,214255,0.113553113553114 +60855033122,214449,0.0586080586080586 +60855033122,216689,0.00366300366300366 +60855033122,217250,0.010989010989011 +60855033122,217958,0 +60855033122,222106,0.0787545787545788 +60855033122,223119,0.0677655677655678 +60855033122,228051,0.0659340659340659 +60855033122,229653,0.342490842490842 +60855033123,210671,0.14468085106383 +60855033123,221487,0.148936170212766 +60855033123,222937,0.131914893617021 +60855033123,225430,0.195744680851064 +60855033123,227477,0.0893617021276596 +60855033123,228052,0.187234042553191 +60855033123,231391,0.102127659574468 +60855033131,211476,0.2 +60855033131,213330,0.15421686746988 +60855033131,216974,0.228915662650602 +60855033131,217305,0.185542168674699 +60855033131,222721,0.0963855421686747 +60855033131,229859,0.134939759036145 +60855033132,210163,0.0907127429805616 +60855033132,214244,0.0647948164146868 +60855033132,214633,0.0518358531317495 +60855033132,214635,0.08207343412527 +60855033132,214636,0.0647948164146868 +60855033132,216079,0.0583153347732181 +60855033132,220009,0.0777537796976242 +60855033132,220010,0.0626349892008639 +60855033132,220019,0.11231101511879 +60855033132,220338,0.0799136069114471 +60855033132,222723,0.0842332613390929 +60855033132,223922,0.0626349892008639 +60855033132,225432,0.060475161987041 +60855033132,229042,0 +60855033132,230464,0.0475161987041037 +60855033133,214634,0.124338624338624 +60855033133,220008,0.0582010582010582 +60855033133,222722,0.119047619047619 +60855033133,222938,0.124338624338624 +60855033133,225431,0.158730158730159 +60855033133,226750,0.108465608465608 +60855033133,226751,0.0873015873015873 +60855033133,229053,0.21957671957672 +60855033151,210394,0.0895833333333333 +60855033151,217209,0.0583333333333333 +60855033151,217318,0.329166666666667 +60855033151,222021,0.522916666666667 +60855033152,211206,0.249249249249249 +60855033152,214750,0.285285285285285 +60855033152,215520,0.123123123123123 +60855033152,223351,0.0630630630630631 +60855033152,226866,0.162162162162162 +60855033152,227849,0.117117117117117 +60855033153,210930,0.0732368896925859 +60855033153,212293,0.11754068716094 +60855033153,214646,0.197106690777577 +60855033153,214867,0.44122965641953 +60855033153,215270,0.0985533453887884 +60855033153,224463,0.038878842676311 +60855033153,231829,0.0334538878842676 +60855033211,0,0 +60855033211,214781,0 +60855033211,221807,0.531034482758621 +60855033211,222054,0.468965517241379 +60855033212,212265,0.203174603174603 +60855033212,213501,0.523809523809524 +60855033212,218464,0 +60855033212,223434,0.273015873015873 +60855033221,211480,0.0968858131487889 +60855033221,214246,0.176470588235294 +60855033221,222033,0.15916955017301 +60855033221,223159,0.0934256055363322 +60855033221,225643,0.141868512110727 +60855033221,228903,0.0899653979238754 +60855033221,230935,0.103806228373702 +60855033221,230936,0.13840830449827 +60855033222,211992,0.134328358208955 +60855033222,213646,0.380597014925373 +60855033222,214745,0.432835820895522 +60855033222,216080,0.0522388059701493 +60855033223,215047,0.108910891089109 +60855033223,217306,0.171617161716172 +60855033223,220778,0.112211221122112 +60855033223,226749,0.0594059405940594 +60855033223,229052,0.0924092409240924 +60855033223,229056,0.0792079207920792 +60855033223,231390,0.240924092409241 +60855033223,232151,0.135313531353135 +60855033231,210689,0.0893536121673004 +60855033231,211287,0.0475285171102662 +60855033231,214242,0.159695817490494 +60855033231,215245,0.186311787072243 +60855033231,216289,0.0741444866920152 +60855033231,216290,0.0855513307984791 +60855033231,220777,0.0950570342205323 +60855033231,221190,0.032319391634981 +60855033231,221509,0.119771863117871 +60855033231,229195,0.0513307984790875 +60855033231,230463,0.05893536121673 +60855033232,212288,0.217527386541471 +60855033232,214779,0.0469483568075117 +60855033232,215050,0.0250391236306729 +60855033232,215051,0.206572769953052 +60855033232,215513,0.0594679186228482 +60855033232,215928,0.115805946791862 +60855033232,221189,0.0766823161189358 +60855033232,221191,0.0579029733959311 +60855033232,221192,0.118935837245696 +60855033232,222780,0.0375586854460094 +60855033232,229512,0.0375586854460094 +60855033241,210092,0.0796812749003984 +60855033241,211207,0.199203187250996 +60855033241,211208,0.129482071713147 +60855033241,213086,0.109561752988048 +60855033241,214755,0.143426294820717 +60855033241,218462,0.109561752988048 +60855033241,220088,0.169322709163347 +60855033241,220509,0.0597609561752988 +60855033242,210383,0.0789473684210526 +60855033242,211973,0.226315789473684 +60855033242,211993,0.226315789473684 +60855033242,212289,0.0736842105263158 +60855033242,214243,0.126315789473684 +60855033242,227841,0.118421052631579 +60855033242,229513,0.0763157894736842 +60855033242,229514,0.0736842105263158 +60855033251,210093,0.0685920577617329 +60855033251,211477,0.0992779783393502 +60855033251,213655,0.11913357400722 +60855033251,217467,0.0433212996389892 +60855033251,222752,0.146209386281588 +60855033251,222767,0.075812274368231 +60855033251,223192,0.0740072202166065 +60855033251,223352,0.189530685920578 +60855033251,224069,0.184115523465704 +60855033252,210085,0.64568345323741 +60855033252,213653,0.284172661870504 +60855033252,216973,0.0701438848920863 +60855033261,211289,0.0601374570446735 +60855033261,211292,0.084192439862543 +60855033261,213506,0.115120274914089 +60855033261,213507,0.0919243986254296 +60855033261,214444,0.00601374570446735 +60855033261,214447,0.0369415807560137 +60855033261,214908,0.196735395189003 +60855033261,215136,0.0266323024054983 +60855033261,217953,0.0558419243986254 +60855033261,221719,0 +60855033261,221720,0.04553264604811 +60855033261,221864,0.0498281786941581 +60855033261,224724,0.0378006872852234 +60855033261,227083,0.0567010309278351 +60855033261,228414,0.0343642611683849 +60855033261,228415,0.102233676975945 +60855033262,210908,0.223938223938224 +60855033262,213612,0.137065637065637 +60855033262,222768,0.185328185328185 +60855033262,223921,0.0926640926640927 +60855033262,225613,0.0675675675675676 +60855033262,228914,0.104247104247104 +60855033262,229479,0.189189189189189 +60855033271,210391,0.104018912529551 +60855033271,216827,0.108747044917258 +60855033271,217939,0.236406619385343 +60855033271,219427,0.066193853427896 +60855033271,220508,0.106382978723404 +60855033271,222063,0.198581560283688 +60855033271,225399,0.108747044917258 +60855033271,226870,0.0709219858156028 +60855033272,213084,0.163218390804598 +60855033272,216639,0.0781609195402299 +60855033272,219405,0.0873563218390805 +60855033272,222062,0.110344827586207 +60855033272,223190,0.209195402298851 +60855033272,225045,0.064367816091954 +60855033272,226868,0.064367816091954 +60855033272,229219,0 +60855033272,230256,0.222988505747126 +60855033273,210083,0.111553784860558 +60855033273,211972,0.527888446215139 +60855033273,214735,0.0617529880478088 +60855033273,214751,0.049800796812749 +60855033273,223188,0.0298804780876494 +60855033273,223920,0.0717131474103586 +60855033273,225000,0.0557768924302789 +60855033273,229477,0.0916334661354582 +60855033291,216008,0.243353783231084 +60855033291,216971,0.155419222903885 +60855033291,226389,0.114519427402863 +60855033291,226390,0.081799591002045 +60855033291,226775,0.216768916155419 +60855033291,227735,0.0838445807770961 +60855033291,228913,0.104294478527607 +60855033292,211191,0.178111587982833 +60855033292,211474,0.118025751072961 +60855033292,213328,0.206008583690987 +60855033292,217786,0.120171673819742 +60855033292,217938,0.130901287553648 +60855033292,224999,0.158798283261803 +60855033292,229361,0.0879828326180258 +60855033301,211471,0.133802816901408 +60855033301,212807,0.107394366197183 +60855033301,216627,0.112676056338028 +60855033301,216628,0.0809859154929577 +60855033301,216969,0.0880281690140845 +60855033301,220343,0.0422535211267606 +60855033301,222748,0.279929577464789 +60855033301,226773,0.154929577464789 +60855033302,211473,0.433260393873085 +60855033302,222728,0.105032822757112 +60855033302,222749,0.153172866520788 +60855033302,225392,0.137855579868709 +60855033302,228056,0.170678336980306 +60855033303,210907,0.101101101101101 +60855033303,211317,0.0710710710710711 +60855033303,212093,0.0800800800800801 +60855033303,212806,0.02002002002002 +60855033303,213611,0.026026026026026 +60855033303,214086,0.0650650650650651 +60855033303,214956,0.029029029029029 +60855033303,217502,0.00600600600600601 +60855033303,220017,0.0650650650650651 +60855033303,222244,0 +60855033303,222726,0.048048048048048 +60855033303,222865,0.0810810810810811 +60855033303,223355,0.001001001001001 +60855033303,225393,0.0510510510510511 +60855033303,227737,0.0720720720720721 +60855033303,229352,0.11011011011011 +60855033303,230481,0.0900900900900901 +60855033303,230576,0.027027027027027 +60855033303,231284,0.0550550550550551 +60855033303,231918,0.001001001001001 +60855033311,211978,0 +60855033311,213065,0.349301397205589 +60855033311,216658,0.183632734530938 +60855033311,224963,0.12375249500998 +60855033311,224964,0.0668662674650699 +60855033311,231697,0.276447105788423 +60855033312,211974,0.540059347181009 +60855033312,213325,0.234421364985163 +60855033312,215223,0.15727002967359 +60855033312,229863,0.0682492581602374 +60855033321,212399,0 +60855033321,212571,0.0492196878751501 +60855033321,212572,0.146458583433373 +60855033321,214017,0.481392557022809 +60855033321,219420,0.0828331332533013 +60855033321,229166,0.0540216086434574 +60855033321,229173,0.138055222088836 +60855033321,230948,0.0480192076830732 +60855033322,219419,0.551724137931034 +60855033322,225396,0.381609195402299 +60855033322,231064,0.0666666666666667 +60855033323,213066,0.125954198473282 +60855033323,213068,0.179389312977099 +60855033323,224060,0.106870229007634 +60855033323,225271,0.0916030534351145 +60855033323,225272,0.0916030534351145 +60855033323,229174,0.129770992366412 +60855033323,230096,0.274809160305344 +60855033324,212569,0.0596379126730564 +60855033324,212570,0.154419595314164 +60855033324,215225,0.0308839190628328 +60855033324,216820,0.0394036208732694 +60855033324,219422,0.0575079872204473 +60855033324,224059,0.589989350372737 +60855033324,229880,0.0681576144834931 +60855033331,219406,0.826612903225806 +60855033331,223016,0.102822580645161 +60855033331,226873,0.0705645161290323 +60855033332,216630,0.509114583333333 +60855033332,216638,0.08203125 +60855033332,222491,0.341145833333333 +60855033332,223048,0.0677083333333333 +60855033341,210094,0 +60855033341,211320,0.161191749427044 +60855033341,214967,0.108479755538579 +60855033341,215261,0.0672268907563025 +60855033341,217174,0.0603514132925898 +60855033341,219764,0.00229182582123759 +60855033341,221726,0.0244461420932009 +60855033341,223194,0.0252100840336134 +60855033341,223353,0.0221543162719633 +60855033341,224070,0.0473644003055768 +60855033341,226391,0.106187929717341 +60855033341,226401,0.0198624904507257 +60855033341,228351,0.0695187165775401 +60855033341,229409,0.000763941940412529 +60855033341,229639,0.284950343773873 +60855033342,210086,0.0873015873015873 +60855033342,210919,0.0793650793650794 +60855033342,212568,0.0773809523809524 +60855033342,214757,0.0535714285714286 +60855033342,217787,0.132936507936508 +60855033342,224962,0.299603174603175 +60855033342,225614,0.0476190476190476 +60855033342,226392,0.222222222222222 +60855033343,211975,0.114911080711354 +60855033343,214021,0.0383036935704514 +60855033343,215144,0.337893296853625 +60855033343,222940,0.309165526675787 +60855033343,226778,0.0547195622435021 +60855033343,227736,0.0711354309165527 +60855033343,229168,0.0738714090287278 +60855033361,210091,0.116959064327485 +60855033361,217208,0.54093567251462 +60855033361,220029,0.0818713450292398 +60855033361,221814,0.0964912280701754 +60855033361,222967,0.16374269005848 +60855033362,211976,0.191532258064516 +60855033362,214653,0.0665322580645161 +60855033362,215458,0.102822580645161 +60855033362,216826,0.0665322580645161 +60855033362,219381,0.0745967741935484 +60855033362,222969,0.129032258064516 +60855033362,223161,0.0725806451612903 +60855033362,224977,0.0806451612903226 +60855033362,228349,0.0544354838709677 +60855033362,228350,0.0705645161290323 +60855033362,229181,0.0504032258064516 +60855033362,230953,0.0403225806451613 +60855033371,210938,0.653379549393414 +60855033371,217342,0.346620450606586 +60855033372,211220,0.132183908045977 +60855033372,213878,0.103448275862069 +60855033372,218208,0.218390804597701 +60855033372,220511,0.0890804597701149 +60855033372,222065,0.135057471264368 +60855033372,230231,0.103448275862069 +60855033372,230232,0.0919540229885057 +60855033372,230261,0.0402298850574713 +60855033372,231831,0.0862068965517241 +60855034011,214725,0.123893805309735 +60855034011,225479,0.150442477876106 +60855034011,225480,0.190265486725664 +60855034011,227387,0.221238938053097 +60855034011,228085,0.18141592920354 +60855034011,229829,0.132743362831858 +60855034012,213236,0.260736196319018 +60855034012,214724,0.168711656441718 +60855034012,225478,0.107361963190184 +60855034012,225849,0.279141104294479 +60855034012,229828,0.184049079754601 +60855034013,211768,0 +60855034013,213234,0.0909090909090909 +60855034013,213235,0.151515151515152 +60855034013,213539,0.0798898071625344 +60855034013,223916,0.134986225895317 +60855034013,225476,0.140495867768595 +60855034013,225477,0.121212121212121 +60855034013,227956,0.137741046831956 +60855034013,229826,0.143250688705234 +60855034021,225269,1 +60855034022,214723,0.676211453744493 +60855034022,215388,0.193832599118943 +60855034022,227386,0.129955947136564 +60855034023,211968,0.0460122699386503 +60855034023,215907,0.0828220858895705 +60855034023,218729,0.0567484662576687 +60855034023,221153,0.0751533742331288 +60855034023,221797,0.565950920245399 +60855034023,225267,0.0690184049079755 +60855034023,225268,0.0475460122699387 +60855034023,225427,0 +60855034023,225428,0.0138036809815951 +60855034023,226770,0.0429447852760736 +60855035041,210029,0.196911196911197 +60855035041,216157,0.123552123552124 +60855035041,225846,0.223938223938224 +60855035041,225847,0.11969111969112 +60855035041,225848,0.138996138996139 +60855035041,227953,0.196911196911197 +60855035042,210345,0.11864406779661 +60855035042,214591,0.440677966101695 +60855035042,215613,0.0949152542372881 +60855035042,216262,0.159322033898305 +60855035042,225475,0.0915254237288136 +60855035042,225845,0.0949152542372881 +60855035043,215906,0.201612903225806 +60855035043,219074,0.229838709677419 +60855035043,221136,0.201612903225806 +60855035043,222026,0.19758064516129 +60855035043,231835,0.169354838709677 +60855035044,215271,0.23125 +60855035044,215272,0.35625 +60855035044,219073,0.24375 +60855035044,227397,0.16875 +60855035045,212271,0.21025641025641 +60855035045,216091,0.205128205128205 +60855035045,217806,0.123076923076923 +60855035045,221474,0.21025641025641 +60855035045,223240,0.251282051282051 +60855035061,215085,0.0286806883365201 +60855035061,215086,0.0535372848948375 +60855035061,215522,0.661567877629063 +60855035061,218471,0.0956022944550669 +60855035061,221471,0.0439770554493308 +60855035061,222024,0.0535372848948375 +60855035061,222060,0.0630975143403442 +60855035062,214763,0.386091127098321 +60855035062,216260,0.489208633093525 +60855035062,223237,0.0767386091127098 +60855035062,230594,0.0479616306954436 +60855035063,215521,0.170731707317073 +60855035063,217805,0.226480836236934 +60855035063,222245,0.149825783972125 +60855035063,222774,0.0871080139372822 +60855035063,226808,0.282229965156794 +60855035063,227395,0.0836236933797909 +60855035071,221473,0.488549618320611 +60855035071,225843,0.511450381679389 +60855035072,216092,0.290909090909091 +60855035072,223239,0.363636363636364 +60855035072,225678,0.345454545454545 +60855035081,211489,0.0840108401084011 +60855035081,211490,0.0487804878048781 +60855035081,211498,0.146341463414634 +60855035081,213326,0.0528455284552845 +60855035081,219558,0.227642276422764 +60855035081,220342,0.0691056910569106 +60855035081,223187,0.146341463414634 +60855035081,230462,0.037940379403794 +60855035081,231856,0.037940379403794 +60855035081,231922,0.100271002710027 +60855035081,232154,0.0487804878048781 +60855035082,214762,0.127310061601643 +60855035082,216288,0.0862422997946612 +60855035082,220360,0.0862422997946612 +60855035082,220361,0.0924024640657084 +60855035082,220791,0.0903490759753593 +60855035082,221507,0.0739219712525667 +60855035082,221508,0.0759753593429158 +60855035082,224452,0.0780287474332649 +60855035082,225344,0.0944558521560575 +60855035082,229194,0.11088295687885 +60855035082,230461,0.0841889117043121 +60855035091,211479,0.135770234986945 +60855035091,214245,0.12532637075718 +60855035091,216632,0.130548302872063 +60855035091,220340,0.0939947780678851 +60855035091,222034,0.0939947780678851 +60855035091,223158,0.0887728459530026 +60855035091,229199,0.0887728459530026 +60855035091,229214,0.0966057441253264 +60855035091,229511,0.0757180156657963 +60855035091,232150,0.0704960835509138 +60855035092,211481,0.449275362318841 +60855035092,221491,0.410628019323672 +60855035092,224465,0.140096618357488 +60855035093,210069,0.0856031128404669 +60855035093,216964,0.194552529182879 +60855035093,217307,0.0778210116731518 +60855035093,220339,0.276264591439689 +60855035093,225433,0.217898832684825 +60855035093,228050,0.147859922178988 +60855035101,212292,0.178875638841567 +60855035101,215075,0.0800681431005111 +60855035101,215453,0.34412265758092 +60855035101,226761,0.229982964224872 +60855035101,227848,0.166950596252129 +60855035102,211499,0.607476635514019 +60855035102,218461,0.124610591900312 +60855035102,225676,0.0747663551401869 +60855035102,226753,0.193146417445483 +60855035103,212267,0.521518987341772 +60855035103,220351,0.30379746835443 +60855035103,221812,0.0886075949367089 +60855035103,221813,0.0860759493670886 +60855035111,210384,0.413157894736842 +60855035111,215265,0.139473684210526 +60855035111,217308,0.447368421052632 +60855035112,212111,0.463529411764706 +60855035112,212290,0.0917647058823529 +60855035112,215076,0.12 +60855035112,220021,0.155294117647059 +60855035112,223226,0.08 +60855035112,230465,0.0894117647058824 +60855036011,211767,0.00746268656716418 +60855036011,213538,0.0335820895522388 +60855036011,214305,0 +60855036011,215903,0 +60855036011,221132,0.649253731343284 +60855036011,221383,0.0261194029850746 +60855036011,221384,0.0970149253731343 +60855036011,221385,0.0970149253731343 +60855036011,225164,0.0895522388059701 +60855036011,225474,0 +60855036012,210779,0.072289156626506 +60855036012,210780,0.0619621342512909 +60855036012,215610,0.304647160068847 +60855036012,215611,0.0757314974182444 +60855036012,215612,0.0602409638554217 +60855036012,216156,0.0413080895008606 +60855036012,223942,0.0602409638554217 +60855036012,225163,0.154905335628227 +60855036012,228411,0.044750430292599 +60855036012,231569,0.123924268502582 +60855036021,211766,0.0664961636828645 +60855036021,212025,0.0792838874680307 +60855036021,215609,0.0690537084398977 +60855036021,216155,0.0767263427109974 +60855036021,223818,0.0690537084398977 +60855036021,223819,0.0792838874680307 +60855036021,225162,0.156010230179028 +60855036021,225841,0.0997442455242967 +60855036021,225842,0.0971867007672634 +60855036021,227440,0.0741687979539642 +60855036021,229822,0.0664961636828645 +60855036021,231568,0.0664961636828645 +60855036022,211765,0.0439367311072056 +60855036022,216154,0.123022847100176 +60855036022,227439,0.0667838312829525 +60855036022,229821,0.766256590509666 +60855036023,217405,0.692307692307692 +60855036023,224066,0.0034965034965035 +60855036023,229818,0.174825174825175 +60855036023,229819,0.129370629370629 +60855037031,216267,0.217105263157895 +60855037031,221374,0.269736842105263 +60855037031,224591,0.230263157894737 +60855037031,225837,0.282894736842105 +60855037032,210346,0.914089347079038 +60855037032,221475,0.0859106529209622 +60855037033,212744,0.0743243243243243 +60855037033,215909,0.0675675675675676 +60855037033,221373,0.0923423423423423 +60855037033,222027,0.481981981981982 +60855037033,224592,0.283783783783784 +60855037071,216989,1 +60855037072,211094,0.714285714285714 +60855037072,211095,0.0705467372134039 +60855037072,211096,0.0423280423280423 +60855037072,220753,0.109347442680776 +60855037072,226616,0.0634920634920635 +60855037073,210777,0.130177514792899 +60855037073,215723,0.0443786982248521 +60855037073,216150,0.20414201183432 +60855037073,216152,0.156804733727811 +60855037073,223708,0.0621301775147929 +60855037073,226615,0.402366863905325 +60855037081,213658,0.0499075785582255 +60855037081,216804,0.0536044362292052 +60855037081,221521,0.0462107208872458 +60855037081,221727,0.120147874306839 +60855037081,223199,0.0462107208872458 +60855037081,223200,0.617375231053604 +60855037081,225377,0.066543438077634 +60855037082,216090,1 +60855037091,212849,0.32 +60855037091,220751,0.68 +60855037092,213233,0.1075 +60855037092,226766,0.8925 +60855037093,216988,1 +60855037101,221377,0.117936117936118 +60855037101,221378,0.100737100737101 +60855037101,221379,0.319410319410319 +60855037101,229815,0.461916461916462 +60855037102,214587,0.0419047619047619 +60855037102,214590,0.483809523809524 +60855037102,225840,0.152380952380952 +60855037102,227948,0.0685714285714286 +60855037102,227949,0.0590476190476191 +60855037102,229817,0.194285714285714 +60855037111,212746,0.1953125 +60855037111,225839,0.1875 +60855037111,227438,0.171875 +60855037111,229814,0.19921875 +60855037111,231566,0.24609375 +60855037112,214588,0.208955223880597 +60855037112,214589,0.0796019900497512 +60855037112,216266,0.0422885572139304 +60855037112,221131,0.340796019900498 +60855037112,221380,0.141791044776119 +60855037112,225160,0.186567164179104 +60855037113,212745,0.0996784565916399 +60855037113,216153,0.0868167202572347 +60855037113,221375,0.270096463022508 +60855037113,221376,0.15112540192926 +60855037113,225159,0.163987138263666 +60855037113,227947,0.109324758842444 +60855037113,229813,0.118971061093248 +60855037121,216259,0.201954397394137 +60855037121,225060,0.110749185667752 +60855037121,226767,0.247557003257329 +60855037121,226768,0.439739413680782 +60855037121,231050,0 +60855037122,216258,0.507119386637459 +60855037122,226769,0.492880613362541 +60855037131,212418,0.447368421052632 +60855037131,213436,0.552631578947368 +60855037132,226411,0.846715328467153 +60855037132,231051,0.153284671532847 +60855038021,213647,0.17816091954023 +60855038021,214746,0.032183908045977 +60855038021,215074,0.0310344827586207 +60855038021,216285,0.0482758620689655 +60855038021,216286,0.0505747126436782 +60855038021,218734,0.0298850574712644 +60855038021,220357,0 +60855038021,221493,0.0298850574712644 +60855038021,221809,0.0298850574712644 +60855038021,222055,0.0597701149425287 +60855038021,224188,0.0333333333333333 +60855038021,225448,0.0563218390804598 +60855038021,225589,0.0367816091954023 +60855038021,225675,0.096551724137931 +60855038021,226752,0.0310344827586207 +60855038021,227030,0.0471264367816092 +60855038021,228901,0.0977011494252873 +60855038021,229057,0.0275862068965517 +60855038021,229234,0.0344827586206897 +60855038021,231851,0.0494252873563218 +60855038022,210385,0.852173913043478 +60855038022,214784,0.147826086956522 +60855038023,210386,0.166666666666667 +60855038023,215081,0.248427672955975 +60855038023,221194,0.584905660377358 +60855038024,211182,0.0754716981132075 +60855038024,213648,0.148427672955975 +60855038024,216623,0.450314465408805 +60855038024,221494,0.0742138364779874 +60855038024,222226,0.060377358490566 +60855038024,222781,0.0628930817610063 +60855038024,228904,0.0842767295597484 +60855038024,229215,0.0440251572327044 +60855038031,213404,0.228824273072061 +60855038031,213847,0.369152970922882 +60855038031,215072,0.0518331226295828 +60855038031,217804,0.0493046776232617 +60855038031,218733,0.0581542351453856 +60855038031,220356,0.171934260429836 +60855038031,225587,0.0707964601769911 +60855038032,211496,0.652416356877323 +60855038032,216065,0.187732342007435 +60855038032,229231,0.159851301115242 +60855038041,214765,0.205882352941176 +60855038041,215080,0.297385620915033 +60855038041,215445,0.204248366013072 +60855038041,221503,0.15359477124183 +60855038041,224186,0.138888888888889 +60855038042,211226,0.244372990353698 +60855038042,214785,0.276527331189711 +60855038042,220363,0.479099678456592 +60855038043,214715,0.560143626570916 +60855038043,216805,0.208258527827648 +60855038043,229503,0.231597845601436 +60855039021,214069,0.0599078341013825 +60855039021,215053,0.110599078341014 +60855039021,215267,0.17741935483871 +60855039021,215517,0.112903225806452 +60855039021,215518,0.0783410138248848 +60855039021,217312,0.460829493087558 +60855039022,211502,0.235059760956175 +60855039022,213644,0.215139442231076 +60855039022,215449,0.107569721115538 +60855039022,215450,0.127490039840637 +60855039022,217795,0.155378486055777 +60855039022,217811,0.00398406374501992 +60855039022,228923,0.155378486055777 +60855039023,210387,0.147766323024055 +60855039023,213645,0.0309278350515464 +60855039023,215519,0.0893470790378007 +60855039023,218468,0.0756013745704467 +60855039023,222231,0.161512027491409 +60855039023,223184,0.164948453608247 +60855039023,229870,0.154639175257732 +60855039023,230592,0.175257731958763 +60855039024,213649,0.135135135135135 +60855039024,213650,0.121621621621622 +60855039024,217937,0.261261261261261 +60855039024,221496,0.0540540540540541 +60855039024,222227,0.362612612612613 +60855039024,223182,0.0653153153153153 +60855039031,214639,0.277296360485269 +60855039031,214739,0.424610051993068 +60855039031,214740,0.150779896013865 +60855039031,227399,0.116117850953206 +60855039031,227400,0.0311958405545927 +60855039032,210344,0.462295081967213 +60855039032,214767,0.445901639344262 +60855039032,224202,0.0918032786885246 +60855040011,214642,0.128953771289538 +60855040011,215269,0.279805352798054 +60855040011,216784,0.182481751824818 +60855040011,217316,0.0924574209245742 +60855040011,219375,0.160583941605839 +60855040011,222962,0.0778588807785888 +60855040011,229871,0.0778588807785888 +60855040012,214645,0.0382978723404255 +60855040012,214788,0.214893617021277 +60855040012,218470,0.24468085106383 +60855040012,220027,0.0638297872340425 +60855040012,221920,0.0106382978723404 +60855040012,229873,0.280851063829787 +60855040012,231402,0.146808510638298 +60855040013,213498,0.241796200345423 +60855040013,217410,0.0552677029360967 +60855040013,222247,0.24006908462867 +60855040013,222248,0.402417962003454 +60855040013,228416,0.0604490500863558 +60855040021,215524,0.0431432973805855 +60855040021,215905,0.0708782742681048 +60855040021,218495,0.0154083204930663 +60855040021,219076,0.0308166409861325 +60855040021,220758,0.713405238828968 +60855040021,220759,0.0554699537750385 +60855040021,222059,0.012326656394453 +60855040021,231834,0.0585516178736518 +60855040022,211504,0.517189835575486 +60855040022,214769,0.482810164424514 +60855041011,211184,0.0699088145896656 +60855041011,216083,0.328267477203647 +60855041011,216635,0.0668693009118541 +60855041011,221197,0.221884498480243 +60855041011,223186,0.0577507598784195 +60855041011,224994,0.0486322188449848 +60855041011,225039,0.088145896656535 +60855041011,229059,0.11854103343465 +60855041012,214744,0.128593040847201 +60855041012,215054,0.139183055975794 +60855041012,215084,0.110438729198185 +60855041012,215268,0.0605143721633888 +60855041012,215451,0.0499243570347958 +60855041012,217314,0.0968229954614221 +60855041012,217812,0.00151285930408472 +60855041012,222057,0.0771558245083207 +60855041012,224203,0.166414523449319 +60855041012,224973,0.0711043872919818 +60855041012,231397,0.0983358547655068 +60855041021,211486,0.0396551724137931 +60855041021,212291,0.0879310344827586 +60855041021,215923,0.0603448275862069 +60855041021,220341,0.0482758620689655 +60855041021,222480,0.337931034482759 +60855041021,222488,0.0568965517241379 +60855041021,224995,0.046551724137931 +60855041021,224997,0.0931034482758621 +60855041021,225040,0.1 +60855041021,225609,0.0879310344827586 +60855041021,229216,0.0413793103448276 +60855041022,210089,0.414414414414414 +60855041022,210390,0.228228228228228 +60855041022,222490,0.357357357357357 +60855041023,210090,0.0983606557377049 +60855041023,218469,0.0956284153005464 +60855041023,223014,0.202185792349727 +60855041023,223234,0.153005464480874 +60855041023,225041,0.133879781420765 +60855041023,230593,0.199453551912568 +60855041023,231660,0.117486338797814 +60855042011,210073,0.378823529411765 +60855042011,210074,0.0611764705882353 +60855042011,210075,0.02 +60855042011,211181,0.0552941176470588 +60855042011,214239,0.0788235294117647 +60855042011,214952,0.0623529411764706 +60855042011,215046,0.102352941176471 +60855042011,216081,0.0870588235294118 +60855042011,216287,0.0494117647058823 +60855042011,231268,0.104705882352941 +60855042012,212368,0.0794520547945205 +60855042012,216624,0.232876712328767 +60855042012,222216,0.397260273972603 +60855042012,224993,0.0410958904109589 +60855042012,232152,0.249315068493151 +60855042013,211183,0.309352517985612 +60855042013,211185,0.0431654676258993 +60855042013,211468,0.0551558752997602 +60855042013,216395,0.052757793764988 +60855042013,216396,0.0671462829736211 +60855042013,222479,0.124700239808153 +60855042013,222724,0.167865707434053 +60855042013,225610,0.0959232613908873 +60855042013,231969,0.0839328537170264 +60855042021,214084,0.564039408866995 +60855042021,214256,0.206896551724138 +60855042021,214296,0.108374384236453 +60855042021,230845,0.120689655172414 +60855042022,211469,0.0893760539629005 +60855042022,214254,0.0775716694772344 +60855042022,214452,0.131534569983137 +60855042022,220007,0.111298482293423 +60855042022,220804,0.0573355817875211 +60855042022,221834,0.0876897133220911 +60855042022,225693,0.305227655986509 +60855042022,228055,0.0674536256323777 +60855042022,232002,0.0725126475548061 +60855042023,210905,0.100217864923747 +60855042023,210906,0.0217864923747277 +60855042023,211188,0.0631808278867102 +60855042023,213327,0.67755991285403 +60855042023,215125,0.137254901960784 +60855043071,214233,0.0903225806451613 +60855043071,214234,0.0335483870967742 +60855043071,215044,0.143225806451613 +60855043071,217802,0.0645161290322581 +60855043071,218201,0.0516129032258065 +60855043071,220035,0.12258064516129 +60855043071,220355,0.0941935483870968 +60855043071,225061,0.144516129032258 +60855043071,225341,0.0593548387096774 +60855043071,225342,0.0258064516129032 +60855043071,225343,0.0374193548387097 +60855043071,226788,0.04 +60855043071,228161,0.0425806451612903 +60855043071,230929,0.0503225806451613 +60855043072,211497,0.100642398286938 +60855043072,214760,0.0481798715203426 +60855043072,214776,0.120985010706638 +60855043072,216066,0.417558886509636 +60855043072,218459,0.0481798715203426 +60855043072,220790,0.0910064239828694 +60855043072,228335,0.0588865096359743 +60855043072,229232,0.0706638115631692 +60855043072,229885,0.0438972162740899 +60855043081,211738,0.00181488203266788 +60855043081,212010,0 +60855043081,212566,0.725952813067151 +60855043081,215485,0.00181488203266788 +60855043081,219424,0.199637023593466 +60855043081,230574,0.0707803992740472 +60855043082,210071,0.557651991614256 +60855043082,214232,0.442348008385744 +60855043083,211991,0.173611111111111 +60855043083,214297,0.18287037037037 +60855043083,216782,0.231481481481481 +60855043083,222933,0.0625 +60855043083,224690,0.115740740740741 +60855043083,225446,0.0833333333333333 +60855043083,225625,0.0486111111111111 +60855043083,228334,0.101851851851852 +60855043111,210272,0.339912280701754 +60855043111,210273,0.350877192982456 +60855043111,210772,0.0109649122807018 +60855043111,212214,0.298245614035088 +60855043112,212209,0.201764057331863 +60855043112,212210,0.332965821389195 +60855043112,212211,0.256890848952591 +60855043112,227437,0.208379272326351 +60855043113,210274,0.19496855345912 +60855043113,210773,0.373165618448637 +60855043113,210774,0.289308176100629 +60855043113,223817,0.142557651991614 +60855043141,211990,0.237837837837838 +60855043141,213631,0.475675675675676 +60855043141,224689,0.286486486486487 +60855043142,216780,0.121710526315789 +60855043142,218199,0.476973684210526 +60855043142,218439,0.0921052631578947 +60855043142,219425,0.0657894736842105 +60855043142,222930,0.125 +60855043142,230930,0.118421052631579 +60855043143,216284,0.296875 +60855043143,218200,0.4140625 +60855043143,222931,0.2890625 +60855043144,214235,0.211699164345404 +60855043144,219361,0.387186629526462 +60855043144,219362,0.401114206128134 +60855043151,210701,0.437858508604206 +60855043151,213401,0.562141491395794 +60855043152,214076,0.822393822393822 +60855043152,217337,0.177606177606178 +60855043153,212595,0.415525114155251 +60855043153,214237,0.287671232876712 +60855043153,220354,0.296803652968037 +60855043154,216283,0.408945686900958 +60855043154,220034,0.591054313099042 +60855043155,214231,0.0984455958549223 +60855043155,216779,0.683937823834197 +60855043155,222929,0.217616580310881 +60855043161,212655,0.317796610169492 +60855043161,219743,0.449152542372881 +60855043161,223196,0.0607344632768362 +60855043161,224206,0.115819209039548 +60855043161,231045,0.0564971751412429 +60855043162,216106,0.23448275862069 +60855043162,216802,0.285057471264368 +60855043162,223197,0.480459770114943 +60855043163,212647,0.429864253393665 +60855043163,220842,0.570135746606335 +60855043171,212216,0 +60855043171,212846,0.189189189189189 +60855043171,212847,0.166666666666667 +60855043171,218645,0.442942942942943 +60855043171,219251,0.201201201201201 +60855043172,213434,0.1434034416826 +60855043172,215461,0.495219885277247 +60855043172,215901,0.361376673040153 +60855043181,210769,0.772727272727273 +60855043181,211319,0.133037694013304 +60855043181,211889,0.0443458980044346 +60855043181,211890,0 +60855043181,212315,0.00110864745011086 +60855043181,216146,0 +60855043181,217607,0 +60855043181,217609,0.0221729490022173 +60855043181,223707,0.00110864745011086 +60855043181,224831,0.00221729490022173 +60855043181,226133,0.0232815964523282 +60855043181,227789,0 +60855043182,210118,0.00662251655629139 +60855043182,210119,0 +60855043182,210120,0.0132450331125828 +60855043182,219443,0.980132450331126 +60855043183,210102,0.646365422396857 +60855043183,212022,0.271119842829077 +60855043183,216005,0.0825147347740668 +60855043191,212848,0.154852780806979 +60855043191,215131,0.343511450381679 +60855043191,216307,0.256270447110142 +60855043191,221851,0.0905125408942203 +60855043191,226765,0 +60855043191,229377,0.154852780806979 +60855043192,212648,0.145873320537428 +60855043192,216306,0.416506717850288 +60855043192,219746,0.437619961612284 +60855043193,212264,0.674632352941177 +60855043193,213403,0.325367647058824 +60855043201,213402,0.528301886792453 +60855043201,229070,0.471698113207547 +60855043202,231038,1 +60855043211,212598,0.231098430813124 +60855043211,214079,0.158345221112696 +60855043211,217800,0.386590584878745 +60855043211,224484,0.223965763195435 +60855043212,212844,0 +60855043212,213846,0.547916666666667 +60855043212,225586,0.452083333333333 +60855043213,212600,0.379939209726444 +60855043213,214080,0.303951367781155 +60855043213,214775,0.282674772036474 +60855043213,218458,0.033434650455927 +60855043221,211763,0.797826086956522 +60855043221,219258,0.202173913043478 +60855043222,210776,0.607977991746905 +60855043222,212656,0.291609353507565 +60855043222,213412,0 +60855043222,213856,0 +60855043222,215659,0.10041265474553 +60855043222,216305,0 +60855043222,218741,0 +60855043222,218742,0 +60855043222,218743,0 +60855043222,221849,0 +60855043222,222730,0 +60855043222,223468,0 +60855043222,226406,0 +60855043222,228407,0 +60855043223,210275,0.552884615384615 +60855043223,210276,0.447115384615385 +60855043231,211288,0.248306997742664 +60855043231,213845,0.146726862302483 +60855043231,216089,0.516930022573364 +60855043231,229499,0.0880361173814898 +60855043232,213432,0 +60855043232,214215,0.117241379310345 +60855043232,216088,0.471551724137931 +60855043232,216104,0.275862068965517 +60855043232,220797,0.135344827586207 +60855043233,218837,0.67032967032967 +60855043233,221536,0.32967032967033 +60855044101,213400,0.304761904761905 +60855044101,214702,0.521904761904762 +60855044101,214703,0.173333333333333 +60855044102,214435,0.53003003003003 +60855044102,214704,0.46996996996997 +60855044111,213427,0.220680958385876 +60855044111,213630,0.158890290037831 +60855044111,214230,0.252206809583859 +60855044111,216825,0.139974779319042 +60855044111,221866,0.0744010088272383 +60855044111,224439,0.153846153846154 +60855044112,210490,0.253561253561254 +60855044112,212594,0.172364672364672 +60855044112,213424,0.188034188034188 +60855044112,213426,0.243589743589744 +60855044112,217334,0.142450142450142 +60855044121,219569,1 +60855044122,210698,0.582278481012658 +60855044122,211989,0.218354430379747 +60855044122,213629,0.199367088607595 +60855044123,213628,1 +60855044124,224438,0.602076124567474 +60855044124,226786,0.397923875432526 +60855044131,211729,0.709821428571429 +60855044131,214436,0.290178571428571 +60855044131,216303,0 +60855044131,231862,0 +60855044141,0,0 +60855044141,213633,0.233093525179856 +60855044141,214432,0.189928057553957 +60855044141,218203,0.427338129496403 +60855044141,218205,0.149640287769784 +60855044142,211494,0.364764267990074 +60855044142,216644,0.635235732009926 +60855044143,0,0 +60855044143,214706,0.71671388101983 +60855044143,216434,0.0198300283286119 +60855044143,220810,0.0339943342776204 +60855044143,225280,0.229461756373938 +60855044151,217206,0.0936995153473344 +60855044151,218437,0.576736672051696 +60855044151,222927,0.329563812600969 +60855044152,220783,1 +60855044153,217204,0.821826280623608 +60855044153,226743,0.178173719376392 +60855044161,212838,0.178333333333333 +60855044161,219567,0.508333333333333 +60855044161,219568,0.313333333333333 +60855044162,211988,0.195175438596491 +60855044162,213421,0.804824561403509 +60855044171,210560,0.00943396226415094 +60855044171,217053,0.613207547169811 +60855044171,218560,0.377358490566038 +60855044181,213398,0.794830371567044 +60855044181,220814,0 +60855044181,230581,0.205169628432956 +60855044182,210700,0.114583333333333 +60855044182,213419,0.30625 +60855044182,215127,0.05 +60855044182,219358,0.285416666666667 +60855044182,219566,0.127083333333333 +60855044182,225337,0.116666666666667 +60855044183,210699,0.660919540229885 +60855044183,217333,0.218390804597701 +60855044183,219565,0.120689655172414 +60855044201,210926,0.10939907550077 +60855044201,212592,0.218798151001541 +60855044201,222997,0.218798151001541 +60855044201,224081,0.174114021571649 +60855044201,227024,0.221879815100154 +60855044201,229496,0.0570107858243451 +60855044202,210928,0.259109311740891 +60855044202,217794,0.143724696356275 +60855044202,219564,0.119433198380567 +60855044202,224199,0.172064777327935 +60855044202,229867,0.305668016194332 +60855044203,213070,0.0206185567010309 +60855044203,214631,0.0412371134020619 +60855044203,214738,0.128865979381443 +60855044203,218430,0.391752577319588 +60855044203,218567,0.077319587628866 +60855044203,219372,0.34020618556701 +60855044203,221978,0 +60855044211,212251,0.27247191011236 +60855044211,212587,0.0814606741573034 +60855044211,228959,0.646067415730337 +60855044212,212575,0.336798336798337 +60855044212,229497,0.663201663201663 +60855044213,212252,0.607515657620042 +60855044213,225626,0.392484342379958 +60855044221,210914,0.5969868173258 +60855044221,212586,0.282485875706215 +60855044221,222916,0.120527306967985 +60855044222,212588,0.055793991416309 +60855044222,215488,0.562231759656652 +60855044222,220806,0.0579399141630901 +60855044222,220807,0.324034334763948 +60855044231,214227,0.288188976377953 +60855044231,214629,0.173228346456693 +60855044231,214630,0.217322834645669 +60855044231,219354,0.321259842519685 +60855045041,211886,0 +60855045041,213410,1 +60855045042,217603,0 +60855045043,212370,1 +60855045043,219711,0 +60855045044,211888,0.170490093847758 +60855045044,213634,0 +60855045044,213635,0 +60855045044,213855,0.00208550573514077 +60855045044,215229,0 +60855045044,216085,0.0510948905109489 +60855045044,217945,0.208550573514077 +60855045044,218206,0 +60855045044,220039,0 +60855045044,220214,0.238269030239833 +60855045044,220811,0 +60855045044,221533,0.174139728884254 +60855045044,224291,0.000521376433785193 +60855045044,224830,0.154848800834202 +60855045044,225275,0 +60855045044,225278,0 +60855045044,226720,0 +60855045044,226721,0 +60855045044,232159,0 +60855045051,213128,0.0460829493087558 +60855045051,224828,0.953917050691244 +60855045052,210117,0.300664451827243 +60855045052,221613,0.699335548172757 +60855045053,211884,0.305239179954442 +60855045053,214471,0.0660592255125285 +60855045053,216904,0.369020501138952 +60855045053,221534,0 +60855045053,221848,0 +60855045053,227785,0.259681093394077 +60855045061,212004,1 +60855045062,212003,0.288065843621399 +60855045062,213632,0 +60855045062,216642,0 +60855045062,223358,0.10082304526749 +60855045062,228748,0.611111111111111 +60855045063,211322,0.411471321695761 +60855045063,213621,0.588528678304239 +60855045071,211731,1 +60855045072,213428,0.376344086021505 +60855045072,213850,0.331182795698925 +60855045072,216070,0.29247311827957 +60855045072,218204,0 +60855045073,212915,0.776086956521739 +60855045073,216071,0.223913043478261 +60855045074,213408,0.0550847457627119 +60855045074,213409,0.264830508474576 +60855045074,216900,0.241525423728814 +60855045074,216901,0.247881355932203 +60855045074,216902,0.190677966101695 +60855046011,0,0 +60855046011,210246,0.580924855491329 +60855046011,210250,0 +60855046011,210252,0 +60855046011,210424,0.401734104046243 +60855046011,210427,0.00289017341040462 +60855046011,212707,0.00289017341040462 +60855046011,213140,0 +60855046011,213706,0.00289017341040462 +60855046011,213903,0 +60855046011,213905,0 +60855046011,216899,0 +60855046011,217729,0 +60855046011,218257,0 +60855046011,218268,0 +60855046011,220648,0 +60855046011,222401,0 +60855046011,223107,0 +60855046011,224040,0 +60855046011,226106,0 +60855046011,227894,0 +60855046011,228799,0 +60855046011,232338,0.00867052023121387 +60855046021,0,0 +60855046021,210804,0 +60855046021,211007,0.193011647254576 +60855046021,211070,0 +60855046021,211071,0 +60855046021,211072,0 +60855046021,211073,0.0249584026622296 +60855046021,211077,0.0116472545757072 +60855046021,211078,0.0465890183028286 +60855046021,211167,0 +60855046021,211259,0 +60855046021,211290,0.0965058236272879 +60855046021,211308,0 +60855046021,211856,0.0116472545757072 +60855046021,213151,0 +60855046021,213407,0.0199667221297837 +60855046021,213780,0 +60855046021,213781,0 +60855046021,213786,0.0931780366056572 +60855046021,214993,0 +60855046021,214997,0.0415973377703827 +60855046021,214998,0.0965058236272879 +60855046021,214999,0.064891846921797 +60855046021,215000,0 +60855046021,215809,0 +60855046021,215813,0.0549084858569052 +60855046021,215816,0 +60855046021,218623,0 +60855046021,218626,0.0183028286189684 +60855046021,218738,0.00499168053244592 +60855046021,218893,0 +60855046021,218896,0 +60855046021,219121,0 +60855046021,219237,0.00332778702163062 +60855046021,219239,0 +60855046021,219240,0 +60855046021,219789,0 +60855046021,222583,0 +60855046021,224554,0 +60855046021,224555,0 +60855046021,224558,0 +60855046021,224560,0 +60855046021,224564,0.0698835274542429 +60855046021,224565,0.0732113144758735 +60855046021,226529,0 +60855046021,226535,0.0615640599001664 +60855046021,226536,0 +60855046021,227050,0.0133111480865225 +60855046021,228971,0 +60855046021,231355,0 +60855046021,231356,0 +60855046021,231360,0 +60855046021,231361,0 +60855046021,231604,0 +60855047001,210430,1 +60855047001,210433,0 +60855047001,210806,0 +60855047001,217913,0 +60855047001,217914,0 +60855047001,217915,0 +60855047001,219526,0 +60855047001,219529,0 +60855047001,221225,0 +60855047001,222905,0 +60855047001,224284,0 +60855048021,210447,1 +60855048021,213700,0 +60855048021,213701,0 +60855048021,215667,0 +60855048021,218907,0 +60855048021,219155,0 +60855048021,223086,0 +60855048021,223804,0 +60855048021,224108,0 +60855048021,224111,0 +60855048022,211556,1 +60855048023,212049,1 +60855048031,211161,0.00163934426229508 +60855048031,211162,0.659016393442623 +60855048031,213312,0.339344262295082 +60855048032,210752,0.474959612277868 +60855048032,211260,0.268712977921379 +60855048032,211264,0.0775444264943457 +60855048032,218395,0.0726978998384491 +60855048032,219791,0.0376952073236403 +60855048032,220136,0.0683898761443188 +60855048051,210441,0.19774011299435 +60855048051,210711,0.507062146892655 +60855048051,210816,0.295197740112994 +60855048051,212043,0 +60855048052,213132,0.797921478060046 +60855048052,219713,0.202078521939954 +60855048061,210750,1 +60855048062,212036,0.886104783599089 +60855048062,219589,0.113895216400911 +60855049011,210342,0.273599192327107 +60855049011,210343,0.235234729934377 +60855049011,211588,0.0252397778899546 +60855049011,211589,0.0239777889954568 +60855049011,212060,0 +60855049011,214869,0.0244825845532559 +60855049011,214870,0.0254921756688541 +60855049011,214871,0.0156486622917718 +60855049011,214872,0.0146390711761736 +60855049011,218372,0.0507319535588087 +60855049011,218539,0.101716304896517 +60855049011,219164,0.0641090358404846 +60855049011,229126,0.0845532559313478 +60855049011,229407,0.060575466935891 +60855050011,210436,0 +60855050011,210729,0 +60855050011,210815,0 +60855050011,210821,0 +60855050011,213492,0.000938086303939962 +60855050011,215588,0.271106941838649 +60855050011,215674,0 +60855050011,217632,0.0112570356472795 +60855050011,217634,0.123827392120075 +60855050011,219611,0 +60855050011,220726,0.0778611632270169 +60855050011,220728,0 +60855050011,222114,0 +60855050011,223576,0.0844277673545966 +60855050011,223879,0.0281425891181989 +60855050011,223884,0.0515947467166979 +60855050011,223886,0 +60855050011,224339,0 +60855050011,225246,0.0947467166979362 +60855050011,226383,0 +60855050011,227256,0.130393996247655 +60855050011,227281,0.0384615384615385 +60855050011,229755,0.0872420262664165 +60855050011,230808,0 +60855050011,230991,0 +60855050011,230992,0 +60855050012,216050,0.741758241758242 +60855050012,217025,0.136263736263736 +60855050012,225559,0.121978021978022 +60855050013,211543,0.684149184149184 +60855050013,214672,0.315850815850816 +60855050014,210416,0 +60855050014,211611,0 +60855050014,211619,0 +60855050014,212078,0 +60855050014,214145,0 +60855050014,217630,0.13588850174216 +60855050014,218870,0 +60855050014,220414,0.174216027874564 +60855050014,223379,0.149825783972125 +60855050014,225244,0.463414634146341 +60855050014,226377,0 +60855050014,226379,0.0766550522648084 +60855050014,230990,0 +60855050014,231967,0 +60855050015,221903,1 +60855050061,210411,0 +60855050061,210412,0 +60855050061,213602,0 +60855050061,213605,0.370629370629371 +60855050061,213608,0 +60855050061,213854,0 +60855050061,215432,0 +60855050061,215433,0 +60855050061,216609,0 +60855050061,216610,0 +60855050061,217991,0.585081585081585 +60855050061,219312,0 +60855050061,222471,0 +60855050061,224290,0.0442890442890443 +60855050062,210410,0 +60855050062,211914,0 +60855050062,211942,0.00131492439184747 +60855050062,211943,0.0631163708086785 +60855050062,212654,0.000657462195923734 +60855050062,213393,0 +60855050062,213394,0 +60855050062,213600,0 +60855050062,213603,0 +60855050062,213604,0 +60855050062,214141,0 +60855050062,214618,0.000657462195923734 +60855050062,214619,0 +60855050062,214620,0 +60855050062,215429,0 +60855050062,215431,0.934253780407627 +60855050062,216603,0 +60855050062,216604,0 +60855050062,216605,0 +60855050062,216606,0 +60855050062,218707,0 +60855050062,218708,0 +60855050062,218712,0 +60855050062,222116,0 +60855050062,222694,0 +60855050062,225827,0 +60855050062,225828,0 +60855050062,225830,0 +60855050062,225831,0 +60855050062,226098,0 +60855050062,228483,0 +60855050062,228485,0 +60855050062,228487,0 +60855050062,228488,0 +60855050062,228489,0 +60855050062,228490,0 +60855050062,228847,0 +60855050062,231131,0 +60855050062,231388,0 +60855050062,231389,0 +60855050062,231815,0 +60855050062,231816,0 +60855050062,231817,0 +60855050062,231818,0 +60855050071,210409,0.677966101694915 +60855050071,211159,0 +60855050071,211620,0.0338983050847458 +60855050071,211626,0 +60855050071,211939,0 +60855050071,212661,0.00282485875706215 +60855050071,213293,0.285310734463277 +60855050071,219026,0 +60855050071,231252,0 +60855050072,211610,0.711221122112211 +60855050072,214930,0.249174917491749 +60855050072,230904,0.0396039603960396 +60855050081,210842,0.218293620292083 +60855050081,213609,0 +60855050081,214953,0.247117601844735 +60855050081,227412,0.0830130668716372 +60855050081,227449,0.451575710991545 +60855050082,226376,0 +60855050082,227251,0 +60855050091,210413,1 +60855050091,210724,0 +60855050091,220720,0 +60855050091,226702,0 +60855050091,229254,0 +60855050091,231443,0 +60855050092,210844,1 +60855050093,215998,0.963651050080775 +60855050093,225243,0 +60855050093,232013,0.0363489499192246 +60855051001,211154,0.114264919941776 +60855051001,211155,0.10844250363901 +60855051001,211156,0 +60855051001,213046,0.0676855895196506 +60855051001,213050,0.0254730713245997 +60855051001,213051,0.167394468704512 +60855051001,213289,0.210334788937409 +60855051001,213290,0 +60855051001,213386,0.0676855895196507 +60855051001,213387,0 +60855051001,213388,0 +60855051001,214138,0 +60855051001,218243,0 +60855051001,226077,0.0997088791848617 +60855051001,226086,0.024745269286754 +60855051001,226088,0 +60855051001,227596,0.114264919941776 +60855051001,230426,0 +60855051001,230427,0 +60855051002,212092,0 +60855051002,224917,0 +60855051002,226262,1 +60855051002,226336,0 +60855051002,229259,0 +60855052021,216025,0.120689655172414 +60855052021,224662,0.0344827586206897 +60855052021,226260,0.0844827586206897 +60855052021,226261,0.227586206896552 +60855052021,226678,0.105172413793103 +60855052021,229844,0.236206896551724 +60855052021,229845,0.191379310344828 +60855052022,210142,0.0867158671586716 +60855052022,211699,0.044280442804428 +60855052022,211700,0.158671586715867 +60855052022,214136,0.173431734317343 +60855052022,220185,0.0830258302583026 +60855052022,220572,0.0239852398523985 +60855052022,228225,0.223247232472325 +60855052022,229841,0.0359778597785978 +60855052022,229945,0.170664206642066 +60855052023,210131,0.00961538461538462 +60855052023,210717,0 +60855052023,211450,0 +60855052023,211691,0 +60855052023,211692,0 +60855052023,211693,0 +60855052023,211695,0 +60855052023,211696,0 +60855052023,212386,0 +60855052023,212388,0 +60855052023,212676,0 +60855052023,212894,0.00240384615384615 +60855052023,212903,0.00240384615384615 +60855052023,212916,0 +60855052023,213154,0 +60855052023,214134,0 +60855052023,214670,0.00721153846153846 +60855052023,215199,0 +60855052023,215695,0 +60855052023,216026,0.0985576923076923 +60855052023,216363,0 +60855052023,216365,0 +60855052023,216387,0 +60855052023,216401,0 +60855052023,217259,0 +60855052023,217403,0 +60855052023,217751,0.0673076923076923 +60855052023,218007,0.59375 +60855052023,218239,0 +60855052023,218240,0.0120192307692308 +60855052023,218241,0 +60855052023,218242,0 +60855052023,218511,0 +60855052023,219440,0 +60855052023,219702,0 +60855052023,220706,0 +60855052023,220710,0 +60855052023,220711,0 +60855052023,220945,0.0913461538461538 +60855052023,221141,0 +60855052023,223126,0.110576923076923 +60855052023,223428,0 +60855052023,224653,0 +60855052023,224658,0 +60855052023,224719,0 +60855052023,225780,0 +60855052023,226254,0 +60855052023,226674,0 +60855052023,227903,0 +60855052023,228164,0 +60855052023,228217,0 +60855052023,229534,0.00240384615384615 +60855052023,230671,0.00240384615384615 +60855052023,231125,0 +60855052023,231127,0 +60855052023,231199,0 +60855052023,231208,0 +60855052023,231464,0 +60855052031,211300,0.179310344827586 +60855052031,212672,0.0226600985221675 +60855052031,217444,0.0541871921182266 +60855052031,217446,0.0285714285714286 +60855052031,218512,0 +60855052031,218521,0.287684729064039 +60855052031,218689,0.0216748768472906 +60855052031,218690,0.0748768472906404 +60855052031,218693,0.012807881773399 +60855052031,220562,0.0197044334975369 +60855052031,223128,0.0157635467980296 +60855052031,223130,0 +60855052031,223435,0.0157635467980296 +60855052031,228002,0.0413793103448276 +60855052031,229321,0.0187192118226601 +60855052031,229322,0.0522167487684729 +60855052031,229323,0.0206896551724138 +60855052031,231921,0.133990147783251 +60855052032,217440,0.208237986270023 +60855052032,217441,0.112128146453089 +60855052032,218688,0.0480549199084668 +60855052032,220316,0.0892448512585812 +60855052032,220317,0.045766590389016 +60855052032,221137,0.135011441647597 +60855052032,221138,0.0892448512585812 +60855052032,221139,0.0366132723112128 +60855052032,230670,0.0961098398169336 +60855052032,232006,0.139588100686499 +60855053011,218686,0.293939393939394 +60855053011,220315,0.139393939393939 +60855053011,225204,0.184848484848485 +60855053011,225968,0.209090909090909 +60855053011,228400,0.172727272727273 +60855053012,212767,0.20253164556962 +60855053012,217439,0.367088607594937 +60855053012,225203,0.185654008438819 +60855053012,225883,0.105485232067511 +60855053012,228000,0.139240506329114 +60855053013,212766,0.136125654450262 +60855053013,217438,0.193717277486911 +60855053013,225202,0.162303664921466 +60855053013,225881,0.136125654450262 +60855053013,225882,0.198952879581152 +60855053013,230975,0.172774869109948 +60855053014,218036,0.297345132743363 +60855053014,220314,0.153982300884956 +60855053014,225201,0.11858407079646 +60855053014,227997,0.0513274336283186 +60855053014,227998,0.345132743362832 +60855053014,227999,0.0336283185840708 +60855053021,212765,0.0989583333333333 +60855053021,212908,0.0833333333333333 +60855053021,216411,0.125 +60855053021,217989,0.176041666666667 +60855053021,218685,0.0916666666666667 +60855053021,224901,0.090625 +60855053021,225200,0.0322916666666667 +60855053021,227995,0.209375 +60855053021,227996,0.04375 +60855053021,231739,0.0489583333333333 +60855053022,213716,0.0739130434782609 +60855053022,213977,0.091304347826087 +60855053022,217698,0.0978260869565217 +60855053022,218288,0.119565217391304 +60855053022,218683,0 +60855053022,220192,0.0782608695652174 +60855053022,220305,0.0478260869565217 +60855053022,220306,0.0782608695652174 +60855053022,220307,0.0456521739130435 +60855053022,220308,0.058695652173913 +60855053022,220310,0.0456521739130435 +60855053022,220550,0.0608695652173913 +60855053022,223981,0.0456521739130435 +60855053022,227462,0.0217391304347826 +60855053022,227589,0.0891304347826087 +60855053022,229019,0.0456521739130435 +60855053031,213153,0.480349344978166 +60855053031,213712,0.34061135371179 +60855053031,215665,0.128093158660844 +60855053031,221324,0.0509461426491994 +60855053032,213719,0.221498371335505 +60855053032,214667,0.0390879478827362 +60855053032,214668,0.0374592833876222 +60855053032,217696,0 +60855053032,219439,0.0390879478827362 +60855053032,219691,0.0358306188925081 +60855053032,219692,0.46742671009772 +60855053032,220189,0.0130293159609121 +60855053032,221320,0.0407166123778502 +60855053032,221322,0.0667752442996743 +60855053032,230660,0.0390879478827362 +60855053033,214665,0.0941176470588235 +60855053033,214666,0.0941176470588235 +60855053033,217398,0.0901960784313725 +60855053033,217695,0.0941176470588235 +60855053033,221318,0.0941176470588235 +60855053033,221319,0.0941176470588235 +60855053033,221588,0.156862745098039 +60855053033,223259,0.0941176470588235 +60855053033,230658,0.0941176470588235 +60855053033,230659,0.0941176470588235 +60855053034,221211,0.393053016453382 +60855053034,225765,0.606946983546618 +60855053041,218165,0.0912162162162162 +60855053041,218166,0.125 +60855053041,220246,0.155405405405405 +60855053041,222594,0.125 +60855053041,225518,0.125 +60855053041,226659,0.236486486486486 +60855053041,226660,0.141891891891892 +60855053042,210302,0.1875 +60855053042,218164,0.201388888888889 +60855053042,221297,0.423611111111111 +60855053042,226658,0.1875 +60855053043,218163,0.212962962962963 +60855053043,219689,0.444444444444444 +60855053043,222548,0.342592592592593 +60855053044,215420,0.486988847583643 +60855053044,226654,0.16728624535316 +60855053044,226656,0.174721189591078 +60855053044,228300,0.171003717472119 +60855053051,217233,0.104247104247104 +60855053051,217739,0.0463320463320463 +60855053051,218013,0.0424710424710425 +60855053051,221583,0.0656370656370656 +60855053051,221584,0.376447876447876 +60855053051,221585,0.0444015444015444 +60855053051,223779,0.113899613899614 +60855053051,223780,0.0501930501930502 +60855053051,223781,0.115830115830116 +60855053051,230970,0.0405405405405405 +60855053052,210300,0.0654205607476635 +60855053052,215418,0.355140186915888 +60855053052,215419,0.38006230529595 +60855053052,220700,0.130841121495327 +60855053052,226235,0.0685358255451713 +60855053053,212083,0.10752688172043 +60855053053,217234,0 +60855053053,219685,0.043010752688172 +60855053053,219686,0.0491551459293395 +60855053053,219687,0.0583717357910906 +60855053053,220225,0.010752688172043 +60855053053,220542,0.0506912442396313 +60855053053,220693,0.118279569892473 +60855053053,222546,0.0368663594470046 +60855053053,222547,0.0353302611367127 +60855053053,223783,0.0691244239631336 +60855053053,226068,0.21505376344086 +60855053053,231748,0.205837173579109 +60855053054,210299,0.111721611721612 +60855053054,215416,0.1996336996337 +60855053054,215417,0.122710622710623 +60855053054,217624,0.0512820512820513 +60855053054,220695,0.0494505494505494 +60855053054,220698,0.26007326007326 +60855053054,225516,0.043956043956044 +60855053054,226653,0.124542124542125 +60855053054,227806,0.0366300366300366 +60855054011,215415,0.0970149253731343 +60855054011,220228,0 +60855054011,225515,0.111940298507463 +60855054011,226066,0.100746268656716 +60855054011,226652,0.302238805970149 +60855054011,227803,0.100746268656716 +60855054011,227804,0.171641791044776 +60855054011,228182,0.115671641791045 +60855054012,217622,0.830459770114943 +60855054012,226065,0.104885057471264 +60855054012,232042,0.0646551724137931 +60855054013,228184,0.451539338654504 +60855054013,228185,0.548460661345496 +60855054014,210297,0.298816568047337 +60855054014,225513,0.701183431952663 +60855054015,215188,0.168367346938776 +60855054015,215189,0.193877551020408 +60855054015,215414,0.260204081632653 +60855054015,225512,0.229591836734694 +60855054015,226064,0.147959183673469 +60855054021,215187,0.0894736842105263 +60855054021,215411,0.0868421052631579 +60855054021,215412,0.173684210526316 +60855054021,215413,0.115789473684211 +60855054021,220691,0.144736842105263 +60855054021,225511,0.0157894736842105 +60855054021,226063,0.147368421052632 +60855054021,228463,0.226315789473684 +60855054022,214306,0.150335570469799 +60855054022,215186,0.0604026845637584 +60855054022,217617,0.16510067114094 +60855054022,217618,0.0483221476510067 +60855054022,220504,0.0335570469798658 +60855054022,221298,0.0523489932885906 +60855054022,222294,0.0281879194630872 +60855054022,226061,0.0322147651006711 +60855054022,227802,0.061744966442953 +60855054022,229953,0.0697986577181208 +60855054022,230968,0.0483221476510067 +60855054022,232041,0.249664429530201 +60855054031,218516,0.794801641586867 +60855054031,220230,0 +60855054031,220237,0 +60855054031,220689,0.119015047879617 +60855054031,226060,0.0861833105335157 +60855054031,232049,0 +60855054032,217409,0.0436170212765957 +60855054032,218914,0.123404255319149 +60855054032,220541,0.0351063829787234 +60855054032,225507,0.540425531914894 +60855054032,225508,0.19468085106383 +60855054032,230184,0 +60855054032,232280,0.0627659574468085 +60855054033,218994,0.114906832298137 +60855054033,220537,0.278467908902692 +60855054033,220538,0.0279503105590062 +60855054033,220539,0.0403726708074534 +60855054033,221312,0.067287784679089 +60855054033,223443,0.124223602484472 +60855054033,223777,0.109730848861284 +60855054033,228562,0.0683229813664596 +60855054033,229248,0.157349896480331 +60855054033,232053,0.0113871635610766 +60855055001,213170,0.0978593272171254 +60855055001,215877,0.0519877675840979 +60855055001,221301,0.00917431192660551 +60855055001,224632,0.0795107033639144 +60855055001,224633,0.110091743119266 +60855055001,224634,0.186544342507645 +60855055001,226374,0.0917431192660551 +60855055001,226976,0.128440366972477 +60855055001,227568,0.128440366972477 +60855055001,227569,0.0428134556574924 +60855055001,228459,0.073394495412844 +60855055002,213026,0.078167115902965 +60855055002,213027,0.0350404312668464 +60855055002,213028,0.055256064690027 +60855055002,213029,0.0471698113207547 +60855055002,220196,0.169811320754717 +60855055002,220197,0 +60855055002,223968,0.0700808625336927 +60855055002,226231,0.0444743935309973 +60855055002,226371,0.402964959568733 +60855055002,226372,0.0498652291105121 +60855055002,227567,0.0471698113207547 +60855055003,217221,0.0666666666666667 +60855055003,217229,0.0552380952380952 +60855055003,217393,0.23047619047619 +60855055003,218992,0.0457142857142857 +60855055003,220531,0.0914285714285714 +60855055003,220532,0.0380952380952381 +60855055003,220533,0.0514285714285714 +60855055003,221582,0.04 +60855055003,223771,0.060952380952381 +60855055003,223772,0.060952380952381 +60855055003,228231,0 +60855055003,230654,0.0971428571428571 +60855055003,230964,0.0838095238095238 +60855055003,230965,0.0780952380952381 +60855056001,210140,0.064367816091954 +60855056001,210141,0.096551724137931 +60855056001,213025,0 +60855056001,213568,0.0206896551724138 +60855056001,215875,0.232183908045977 +60855056001,220187,0.131034482758621 +60855056001,224625,0.101149425287356 +60855056001,224626,0.0436781609195402 +60855056001,224628,0.0574712643678161 +60855056001,224631,0.0252873563218391 +60855056001,226228,0.0804597701149425 +60855056001,226365,0.032183908045977 +60855056001,226366,0.0114942528735632 +60855056001,226367,0.071264367816092 +60855056001,231627,0.032183908045977 +60855056002,213022,0.141891891891892 +60855056002,213566,0.121621621621622 +60855056002,218675,0.138513513513514 +60855056002,218676,0.165540540540541 +60855056002,222657,0.128378378378378 +60855056002,226360,0.125 +60855056002,226361,0.179054054054054 +60855056003,210143,0 +60855056003,213023,0.135755258126195 +60855056003,213024,0.0325047801147228 +60855056003,213168,0.0344168260038241 +60855056003,213171,0.0497131931166348 +60855056003,213567,0.0191204588910134 +60855056003,215871,0.344168260038241 +60855056003,218677,0.139579349904398 +60855056003,224621,0.208413001912046 +60855056003,226364,0.00573613766730401 +60855056003,228226,0.017208413001912 +60855056003,228229,0.0133843212237094 +60855057001,210146,0.152866242038217 +60855057001,213021,0.0955414012738854 +60855057001,213167,0.0859872611464968 +60855057001,213564,0.0732484076433121 +60855057001,215865,0.162420382165605 +60855057001,215867,0.130573248407643 +60855057001,218983,0.165605095541401 +60855057001,222654,0.114649681528662 +60855057001,227558,0.0191082802547771 +60855057002,213561,0.0885311871227364 +60855057002,213562,0.0462776659959759 +60855057002,215861,0.116700201207243 +60855057002,215862,0.0663983903420523 +60855057002,215864,0.138832997987928 +60855057002,220198,0.0382293762575453 +60855057002,220955,0.0804828973843058 +60855057002,222650,0.319919517102616 +60855057002,222653,0.0442655935613682 +60855057002,223726,0.0603621730382294 +60855057003,211283,0.1609375 +60855057003,211428,0.0109375 +60855057003,211432,0.1234375 +60855057003,211434,0.1625 +60855057003,218982,0.0390625 +60855057003,221313,0.0515625 +60855057003,221402,0.0375 +60855057003,221403,0.0609375 +60855057003,223973,0.0515625 +60855057003,226199,0.0171875 +60855057003,226200,0.0359375 +60855057003,226201,0.1125 +60855057003,226202,0.0703125 +60855057003,231812,0.065625 +60855057004,210145,0.0414691943127962 +60855057004,210978,0.104265402843602 +60855057004,210980,0.0367298578199052 +60855057004,211427,0.0509478672985782 +60855057004,214491,0.0971563981042654 +60855057004,223971,0.347156398104265 +60855057004,226196,0.0568720379146919 +60855057004,226198,0.0225118483412322 +60855057004,226638,0.144549763033175 +60855057004,228233,0.0983412322274882 +60855058001,210648,0.364611260053619 +60855058001,211121,0.0697050938337802 +60855058001,211122,0.0214477211796247 +60855058001,221398,0.0884718498659517 +60855058001,221399,0.032171581769437 +60855058001,225180,0.168900804289544 +60855058001,226036,0.0938337801608579 +60855058001,226635,0.0723860589812333 +60855058001,226637,0.0268096514745308 +60855058001,231808,0.0616621983914209 +60855058002,210647,0.0756302521008403 +60855058002,213370,0.302521008403361 +60855058002,216724,0 +60855058002,222092,0.0392156862745098 +60855058002,226033,0.0896358543417367 +60855058002,226034,0.0784313725490196 +60855058002,227977,0 +60855058002,227978,0.0756302521008403 +60855058002,228418,0.240896358543417 +60855058002,230851,0.0980392156862745 +60855058002,231927,0 +60855058003,211117,0.0821114369501466 +60855058003,211118,0.0791788856304985 +60855058003,211119,0.0879765395894428 +60855058003,221394,0.0674486803519062 +60855058003,221395,0 +60855058003,225178,0.0733137829912024 +60855058003,225179,0.093841642228739 +60855058003,226031,0.0791788856304985 +60855058003,226032,0.0821114369501466 +60855058003,227975,0.0909090909090909 +60855058003,227976,0.0879765395894428 +60855058003,231804,0.0850439882697947 +60855058003,231805,0.0909090909090909 +60855058004,210644,0.0769230769230769 +60855058004,211005,0.115384615384615 +60855058004,211115,0.187782805429864 +60855058004,211116,0.0995475113122172 +60855058004,217218,0.0746606334841629 +60855058004,217219,0.0701357466063348 +60855058004,217220,0.0656108597285068 +60855058004,221389,0.122171945701357 +60855058004,221393,0.106334841628959 +60855058004,226030,0.081447963800905 +60855059001,210643,0.0444225074037512 +60855059001,211113,0.0177690029615005 +60855059001,213172,0.16781836130306 +60855059001,213925,0.148075024679171 +60855059001,220921,0 +60855059001,220922,0.0681145113524186 +60855059001,228132,0.334649555774926 +60855059001,231803,0.0276406712734452 +60855059001,231913,0.00592300098716683 +60855059001,232208,0.185587364264561 +60855059002,211111,0.05859375 +60855059002,213367,0.064453125 +60855059002,221386,0.08203125 +60855059002,226904,0.693359375 +60855059002,231802,0.1015625 +60855059003,216912,0.00291545189504373 +60855059003,219279,0.0670553935860058 +60855059003,226183,0.0845481049562682 +60855059003,228642,0.376093294460641 +60855059003,230405,0.285714285714286 +60855059003,231800,0.183673469387755 +60855059004,216911,0.040983606557377 +60855059004,220971,0.0997267759562842 +60855059004,224260,0 +60855059004,228573,0.433060109289617 +60855059004,228636,0.0382513661202186 +60855059004,228963,0.301912568306011 +60855059004,230402,0.0860655737704918 +60855059004,231924,0 +60855059005,211675,0.0514541387024608 +60855059005,214345,0.0760626398210291 +60855059005,220962,0.0693512304250559 +60855059005,222453,0.299776286353468 +60855059005,224605,0.087248322147651 +60855059005,224606,0.0514541387024608 +60855059005,224607,0.0626398210290828 +60855059005,227199,0.145413870246085 +60855059005,230400,0.0805369127516778 +60855059005,231914,0.0760626398210291 +60855060001,214344,0.131782945736434 +60855060001,216225,0.136950904392765 +60855060001,220525,0.291989664082687 +60855060001,222451,0.0490956072351421 +60855060001,222452,0.124031007751938 +60855060001,227196,0.113695090439276 +60855060001,228615,0.152454780361757 +60855060002,211671,0.120805369127517 +60855060002,214342,0.124161073825503 +60855060002,214343,0.124161073825503 +60855060002,214492,0.140939597315436 +60855060002,214496,0 +60855060002,227191,0.177852348993289 +60855060002,227193,0.10738255033557 +60855060002,227194,0.0805369127516778 +60855060002,230397,0.124161073825503 +60855060003,210892,0 +60855060003,210893,0.245495495495495 +60855060003,210984,0.505630630630631 +60855060003,222449,0.0720720720720721 +60855060003,223739,0.176801801801802 +60855060004,218981,0.503703703703704 +60855060004,220854,0.140740740740741 +60855060004,223555,0.203703703703704 +60855060004,230303,0.151851851851852 +60855061011,214339,0.0689655172413793 +60855061011,216222,0.103448275862069 +60855061011,216223,0.114942528735632 +60855061011,219273,0.0988505747126437 +60855061011,219274,0.0873563218390805 +60855061011,219275,0.114942528735632 +60855061011,222447,0.0873563218390805 +60855061011,222448,0.0942528735632184 +60855061011,226018,0.096551724137931 +60855061011,227189,0.0528735632183908 +60855061011,230396,0.0804597701149425 +60855061012,210891,0.0352760736196319 +60855061012,213940,0.151840490797546 +60855061012,216221,0.105828220858896 +60855061012,219266,0.0276073619631902 +60855061012,219267,0.0214723926380368 +60855061012,219268,0.133435582822086 +60855061012,219269,0.0506134969325153 +60855061012,224115,0.053680981595092 +60855061012,227188,0.233128834355828 +60855061012,230302,0.144171779141104 +60855061012,230394,0.0429447852760736 +60855061013,218925,0.146579804560261 +60855061013,220853,0.0635179153094463 +60855061013,222088,0.130293159609121 +60855061013,223438,0.117263843648208 +60855061013,223554,0.107491856677524 +60855061013,227032,0.198697068403909 +60855061013,230298,0.0960912052117264 +60855061013,232287,0.140065146579805 +60855061021,210887,0.0701754385964912 +60855061021,210888,0.0662768031189084 +60855061021,210889,0.237816764132554 +60855061021,213557,0.0682261208576998 +60855061021,216220,0.0662768031189084 +60855061021,216678,0.105263157894737 +60855061021,218523,0.050682261208577 +60855061021,218663,0.0682261208576998 +60855061021,222446,0.0682261208576998 +60855061021,226632,0.120857699805068 +60855061021,228617,0.0779727095516569 +60855061022,223553,0.220058422590068 +60855061022,224120,0.0370009737098345 +60855061022,225835,0.166504381694255 +60855061022,227946,0.123661148977605 +60855061022,230202,0.392405063291139 +60855061022,231929,0.0603700097370983 +60855061031,212742,0.154237288135593 +60855061031,218921,0.0559322033898305 +60855061031,221127,0.0813559322033898 +60855061031,221128,0.284745762711864 +60855061031,221372,0.0644067796610169 +60855061031,227944,0.359322033898305 +60855061032,214579,0.0714285714285714 +60855061032,214580,0.116883116883117 +60855061032,214581,0.272727272727273 +60855061032,221125,0.107142857142857 +60855061032,221126,0.100649350649351 +60855061032,225158,0.233766233766234 +60855061032,227543,0.0974025974025974 +60855061033,210466,0.183006535947712 +60855061033,210467,0.0261437908496732 +60855061033,212740,0.120915032679739 +60855061033,225832,0.107843137254902 +60855061033,226178,0.11437908496732 +60855061033,227542,0.11437908496732 +60855061033,229590,0.209150326797386 +60855061033,229591,0.124183006535948 +60855061034,214577,0 +60855061034,216675,0.205949656750572 +60855061034,218369,0 +60855061034,220850,0.0961098398169336 +60855061034,220851,0.194508009153318 +60855061034,220852,0.0594965675057208 +60855061034,230489,0.219679633867277 +60855061034,230490,0.0869565217391304 +60855061034,232230,0.137299771167048 +60855062021,212734,0.0318181818181818 +60855062021,212735,0.0348484848484849 +60855062021,212736,0.0787878787878788 +60855062021,212737,0.0803030303030303 +60855062021,214576,0 +60855062021,221124,0.172727272727273 +60855062021,221369,0.0409090909090909 +60855062021,221370,0.11969696969697 +60855062021,223550,0.0575757575757576 +60855062021,223551,0.046969696969697 +60855062021,226175,0.0439393939393939 +60855062021,226176,0.0666666666666667 +60855062021,226177,0.0484848484848485 +60855062021,227541,0.0166666666666667 +60855062021,229588,0.0742424242424242 +60855062021,229589,0.0863636363636364 +60855062022,212731,0 +60855062022,212732,0.028169014084507 +60855062022,212733,0.151408450704225 +60855062022,220299,0.028169014084507 +60855062022,220665,0.0516431924882629 +60855062022,220666,0.0328638497652582 +60855062022,221123,0.0563380281690141 +60855062022,222087,0.104460093896714 +60855062022,223549,0.0269953051643192 +60855062022,225155,0.028169014084507 +60855062022,226172,0.158450704225352 +60855062022,227540,0.230046948356808 +60855062022,227666,0.0492957746478873 +60855062022,229586,0.0258215962441315 +60855062022,230488,0.028169014084507 +60855062023,212730,0.0241691842900302 +60855062023,214575,0.0614300100704935 +60855062023,216421,0.0594159113796576 +60855062023,218366,0.0251762336354481 +60855062023,218367,0.0261832829808661 +60855062023,220661,0.119838872104733 +60855062023,220662,0.0302114803625378 +60855062023,225150,0.0422960725075529 +60855062023,225151,0.0443101711983887 +60855062023,225152,0.0292044310171198 +60855062023,227537,0.406847935548842 +60855062023,227538,0.1067472306143 +60855062023,227539,0.0241691842900302 +60855062031,211906,0 +60855062031,212728,0 +60855062031,216362,0.106571936056838 +60855062031,222320,0.470692717584369 +60855062031,222433,0.216696269982238 +60855062031,226170,0 +60855062031,227536,0.206039076376554 +60855062031,229584,0 +60855062031,229585,0 +60855062032,210268,0.0322927879440258 +60855062032,210269,0.0236813778256189 +60855062032,212208,0.0452099031216362 +60855062032,215712,0.263724434876211 +60855062032,216673,0.107642626480086 +60855062032,218365,0.368137782561894 +60855062032,219780,0.0269106566200215 +60855062032,222432,0 +60855062032,223258,0.0279870828848224 +60855062032,223547,0.0269106566200215 +60855062032,225897,0.0118406889128095 +60855062032,227527,0.0129171151776103 +60855062032,228995,0.0527448869752422 +60855062033,210270,0 +60855062033,217714,1 +60855062041,210267,0.28927680798005 +60855062041,216672,0.0498753117206982 +60855062041,218643,0.143391521197007 +60855062041,219778,0.122194513715711 +60855062041,223257,0.0610972568578554 +60855062041,227525,0.334164588528678 +60855062042,212207,0.404358353510896 +60855062042,216670,0.0508474576271186 +60855062042,218364,0.0460048426150121 +60855062042,218641,0.0750605326876513 +60855062042,220131,0.0871670702179177 +60855062042,220847,0.0774818401937046 +60855062042,227522,0.14043583535109 +60855062042,227664,0.0508474576271186 +60855062042,230487,0.0677966101694915 +60855062043,215950,0.0602094240837696 +60855062043,215951,0.0575916230366492 +60855062043,217850,0.0602094240837696 +60855062043,218352,0.151832460732984 +60855062043,218353,0.081151832460733 +60855062043,219109,0.0785340314136126 +60855062043,220124,0.0680628272251309 +60855062043,227654,0.0654450261780105 +60855062043,230484,0.0785340314136126 +60855062043,230485,0.219895287958115 +60855062043,230486,0.0785340314136126 +60855062044,212016,0.119140625 +60855062044,212017,0.05078125 +60855062044,215949,0.044921875 +60855062044,217848,0.05078125 +60855062044,217849,0.091796875 +60855062044,219107,0.216796875 +60855062044,221256,0.048828125 +60855062044,221892,0.048828125 +60855062044,227653,0.076171875 +60855062044,229910,0.076171875 +60855062044,230144,0.09765625 +60855062044,230145,0.078125 +60855063011,212206,0.672043010752688 +60855063011,217847,0.327956989247312 +60855063011,231548,0 +60855063012,219106,0.0982587064676617 +60855063012,220121,0.0696517412935323 +60855063012,223860,0.609452736318408 +60855063012,227652,0.222636815920398 +60855063013,222430,0.258007117437722 +60855063013,222431,0.546263345195729 +60855063013,227521,0.195729537366548 +60855063014,211425,0.0818858560794045 +60855063014,213535,0.253101736972705 +60855063014,214303,0.0347394540942928 +60855063014,215948,0.0471464019851117 +60855063014,218637,0.00496277915632754 +60855063014,218792,0.0769230769230769 +60855063014,218793,0.119106699751861 +60855063014,225893,0.218362282878412 +60855063014,225895,0.0148883374689826 +60855063014,227514,0.0620347394540943 +60855063014,228697,0.086848635235732 +60855063021,211424,0.295412844036697 +60855063021,218634,0.254128440366972 +60855063021,222428,0.0587155963302752 +60855063021,226296,0.121100917431193 +60855063021,227166,0.197247706422018 +60855063021,227167,0.073394495412844 +60855063022,211418,0.128654970760234 +60855063022,211419,0.0672514619883041 +60855063022,211420,0.203216374269006 +60855063022,211421,0.0511695906432749 +60855063022,211422,0.14766081871345 +60855063022,213532,0.103801169590643 +60855063022,217844,0.0497076023391813 +60855063022,217846,0.0409356725146199 +60855063022,222427,0.0482456140350877 +60855063022,223296,0.0350877192982456 +60855063022,226294,0.0380116959064327 +60855063022,227163,0.0380116959064327 +60855063022,227165,0.0482456140350877 +60855063023,215946,0.230014025245442 +60855063023,215947,0.0631136044880785 +60855063023,217845,0.0378681626928471 +60855063023,218630,0.208976157082749 +60855063023,218790,0.150070126227209 +60855063023,218791,0.11781206171108 +60855063023,220120,0.061711079943899 +60855063023,229907,0.130434782608696 +60855063041,211417,0.164512338425382 +60855063041,213529,0.0446533490011751 +60855063041,213530,0.352526439482961 +60855063041,226293,0.243243243243243 +60855063041,228692,0.195064629847239 +60855063042,211905,0.322869955156951 +60855063042,217843,0.112107623318386 +60855063042,220660,0.116591928251121 +60855063042,223293,0.0941704035874439 +60855063042,223294,0.233183856502242 +60855063042,227534,0.121076233183857 +60855063043,226292,0 +60855063043,227535,0.218655967903711 +60855063043,229583,0.781344032096289 +60855063051,219105,0.441780821917808 +60855063051,220659,0.558219178082192 +60855063052,217842,0.0447941888619855 +60855063052,223684,0.0375302663438257 +60855063052,224854,0.146489104116223 +60855063052,226168,0.209443099273608 +60855063052,226169,0.124697336561743 +60855063052,229580,0.203389830508475 +60855063052,229581,0.110169491525424 +60855063052,229582,0.0690072639225182 +60855063052,231545,0.0544794188861985 +60855063053,216898,0.0891238670694864 +60855063053,224824,0.151057401812689 +60855063053,224825,0.054380664652568 +60855063053,226120,0.241691842900302 +60855063053,226121,0.222054380664653 +60855063053,229904,0.0740181268882175 +60855063053,231474,0.167673716012085 +60855063054,215945,0.0267605633802817 +60855063054,223683,0.266197183098592 +60855063054,225763,0.0225352112676056 +60855063054,225764,0.0633802816901408 +60855063054,226122,0.591549295774648 +60855063054,229905,0.0295774647887324 +60855064011,211880,0.0422163588390501 +60855064011,212489,0.333333333333333 +60855064011,212490,0 +60855064011,216891,0.0395778364116095 +60855064011,216892,0.0211081794195251 +60855064011,216893,0.0255057167985928 +60855064011,216894,0.232189973614776 +60855064011,217597,0.0351802990325418 +60855064011,217598,0.0167106420404573 +60855064011,226119,0.0246262093227792 +60855064011,227778,0.0580474934036939 +60855064011,227779,0.0211081794195251 +60855064011,227780,0.0263852242744063 +60855064011,229903,0.12401055408971 +60855064012,211306,0.197943444730077 +60855064012,212650,0 +60855064012,216875,0.313624678663239 +60855064012,216897,0.0115681233933162 +60855064012,224822,0.0141388174807198 +60855064012,224823,0.0334190231362468 +60855064012,227781,0.0167095115681234 +60855064012,227782,0.0269922879177378 +60855064012,228253,0 +60855064012,231478,0.38560411311054 +60855064021,211879,0.0393162393162393 +60855064021,216872,0.276923076923077 +60855064021,216890,0.0717948717948718 +60855064021,217596,0.153846153846154 +60855064021,226117,0.136752136752137 +60855064021,226118,0.0786324786324786 +60855064021,227775,0.242735042735043 +60855064022,212487,0.165289256198347 +60855064022,226279,0.289256198347107 +60855064022,227351,0.235537190082645 +60855064022,227353,0.309917355371901 +60855064023,211876,0.140913508260447 +60855064023,211877,0.0408163265306122 +60855064023,212485,0.0495626822157434 +60855064023,212486,0.0408163265306122 +60855064023,216206,0.0301263362487852 +60855064023,217141,0.0379008746355685 +60855064023,217142,0.0524781341107872 +60855064023,217841,0.075801749271137 +60855064023,224585,0.032069970845481 +60855064023,226278,0.215743440233236 +60855064023,229900,0.0583090379008746 +60855064023,229901,0.0262390670553936 +60855064023,229902,0.0194363459669582 +60855064023,231233,0.179786200194363 +60855064024,212483,0.074792243767313 +60855064024,213943,0.454293628808864 +60855064024,217140,0.0941828254847645 +60855064024,226277,0.0470914127423823 +60855064024,227348,0.204986149584488 +60855064024,227349,0.124653739612188 +60855065011,212482,0.273381294964029 +60855065011,226275,0.0629496402877698 +60855065011,226276,0.127697841726619 +60855065011,227346,0.0737410071942446 +60855065011,227347,0.462230215827338 +60855065012,210999,0 +60855065012,211093,0.241516966067864 +60855065012,216437,0.107784431137725 +60855065012,217139,0.0489021956087824 +60855065012,224583,0.0279441117764471 +60855065012,226274,0.228542914171657 +60855065012,227343,0.0748502994011976 +60855065012,227505,0.215568862275449 +60855065012,232219,0.0548902195608782 +60855065013,217840,0.282377919320594 +60855065013,220118,0.229299363057325 +60855065013,229898,0.488322717622081 +60855065021,211092,0.0576368876080692 +60855065021,215375,0.0489913544668588 +60855065021,216552,0.0331412103746398 +60855065021,216567,0.109510086455331 +60855065021,216568,0.0475504322766571 +60855065021,220640,0.0893371757925072 +60855065021,225126,0.256484149855908 +60855065021,225127,0.175792507204611 +60855065021,226568,0.115273775216138 +60855065021,227138,0.0662824207492795 +60855065022,215372,0.0867469879518072 +60855065022,215374,0.35421686746988 +60855065022,215859,0.308433734939759 +60855065022,216547,0 +60855065022,225125,0 +60855065022,232099,0.00240963855421687 +60855065022,232101,0.187951807228916 +60855065022,232103,0.0337349397590361 +60855065022,232222,0.0265060240963855 +60855065023,0,0 +60855065023,210477,0 +60855065023,210478,0 +60855065023,211810,0 +60855065023,212704,0 +60855065023,212705,0 +60855065023,215369,0.0678175092478422 +60855065023,215371,0.00369913686806412 +60855065023,215943,0.0246609124537608 +60855065023,216549,0.602959309494451 +60855065023,217353,0 +60855065023,218488,0.00246609124537608 +60855065023,218537,0 +60855065023,219101,0.0974106041923551 +60855065023,219102,0.0357583230579531 +60855065023,219104,0.0517879161528977 +60855065023,220637,0.0123304562268804 +60855065023,220639,0 +60855065023,224236,0.00246609124537608 +60855065023,225124,0.0431565967940814 +60855065023,225747,0.00123304562268804 +60855065023,227135,0.0061652281134402 +60855065023,228193,0 +60855065023,230745,0.00493218249075216 +60855065023,231531,0 +60855065023,232097,0 +60855065023,232098,0.0135635018495684 +60855065023,232102,0.0295930949445129 +60855065031,211781,0.0423031727379553 +60855065031,212702,0.0564042303172738 +60855065031,214572,0.0340775558166862 +60855065031,216545,0.0716803760282021 +60855065031,218486,0.0869565217391304 +60855065031,224358,0.082256169212691 +60855065031,225122,0.0611045828437133 +60855065031,226919,0.0763807285546416 +60855065031,226920,0.102232667450059 +60855065031,227134,0.122209165687427 +60855065031,228940,0.264394829612221 +60855065032,210471,0.0684769775678866 +60855065032,215318,0.0295159386068477 +60855065032,219454,0.455726092089728 +60855065032,222600,0.0909090909090909 +60855065032,224232,0.0330578512396694 +60855065032,227132,0.115702479338843 +60855065032,230748,0.0436835891381346 +60855065032,232093,0.162927981109799 +60855065033,225728,0.844587352625938 +60855065033,231529,0.155412647374062 +60855066011,212110,0.0793650793650794 +60855066011,212699,0.101587301587302 +60855066011,212700,0.0317460317460317 +60855066011,214571,0.0333333333333333 +60855066011,215854,0.0904761904761905 +60855066011,215855,0.0968253968253968 +60855066011,215856,0.0365079365079365 +60855066011,215857,0.0619047619047619 +60855066011,215858,0.0841269841269841 +60855066011,216543,0.149206349206349 +60855066011,216544,0.0412698412698413 +60855066011,220634,0.0873015873015873 +60855066011,227130,0.0555555555555556 +60855066011,232090,0.0507936507936508 +60855066012,212697,0.234234234234234 +60855066012,214566,0.0810810810810811 +60855066012,214569,0.0990990990990991 +60855066012,215853,0.0690690690690691 +60855066012,216542,0 +60855066012,219923,0.0630630630630631 +60855066012,219924,0.144144144144144 +60855066012,232087,0.018018018018018 +60855066012,232088,0.291291291291291 +60855066013,211067,0.189041095890411 +60855066013,213000,0.141095890410959 +60855066013,215807,0 +60855066013,218621,0.0342465753424658 +60855066013,219922,0.0136986301369863 +60855066013,224424,0.0438356164383562 +60855066013,224425,0 +60855066013,224740,0.0506849315068493 +60855066013,227129,0.157534246575342 +60855066013,229665,0.0657534246575342 +60855066013,229666,0.272602739726027 +60855066013,231353,0.0315068493150685 +60855066031,211065,0.0689655172413793 +60855066031,212999,0.272727272727273 +60855066031,214992,0.103448275862069 +60855066031,218618,0.153605015673981 +60855066031,224422,0.213166144200627 +60855066031,226525,0.112852664576803 +60855066031,231351,0.0752351097178683 +60855066032,211064,0.0569230769230769 +60855066032,215091,0.0323076923076923 +60855066032,215802,0.0538461538461538 +60855066032,218482,0.0446153846153846 +60855066032,218483,0.0723076923076923 +60855066032,218617,0.0661538461538461 +60855066032,219451,0.0569230769230769 +60855066032,219452,0.0492307692307692 +60855066032,219453,0.06 +60855066032,220944,0.0307692307692308 +60855066032,223371,0.0784615384615385 +60855066032,223765,0.0584615384615385 +60855066032,225746,0.0415384615384615 +60855066032,229662,0.0615384615384615 +60855066032,229663,0.115384615384615 +60855066032,229664,0.0369230769230769 +60855066032,231350,0.0846153846153846 +60855066033,212998,0.17906976744186 +60855066033,214180,0.181395348837209 +60855066033,215089,0.0976744186046512 +60855066033,215090,0.0488372093023256 +60855066033,215801,0.0767441860465116 +60855066033,218480,0.0744186046511628 +60855066033,223370,0.113953488372093 +60855066033,226522,0.144186046511628 +60855066033,229661,0.0837209302325581 +60855066041,211063,0.403908794788274 +60855066041,214179,0.104234527687296 +60855066041,215798,0.140065146579805 +60855066041,215799,0.263843648208469 +60855066041,231349,0.0879478827361563 +60855066042,212996,0.0745033112582781 +60855066042,214178,0.0811258278145695 +60855066042,215797,0.0529801324503311 +60855066042,218479,0.105960264900662 +60855066042,218616,0.0447019867549669 +60855066042,226517,0.0596026490066225 +60855066042,226518,0.109271523178808 +60855066042,229660,0.114238410596026 +60855066042,230888,0.0579470198675497 +60855066042,230889,0.120860927152318 +60855066042,231123,0.0397350993377483 +60855066042,231347,0.0447019867549669 +60855066042,231348,0.0943708609271523 +60855066043,212995,0.146643109540636 +60855066043,214175,0.0865724381625442 +60855066043,214177,0.0459363957597173 +60855066043,215796,0.0636042402826855 +60855066043,218615,0.132508833922261 +60855066043,224415,0.113074204946996 +60855066043,224417,0.0795053003533569 +60855066043,224418,0.134275618374558 +60855066043,226515,0.0583038869257951 +60855066043,230887,0.139575971731449 +60855066044,212108,0.0675422138836773 +60855066044,212395,0.163227016885553 +60855066044,212992,0.0769230769230769 +60855066044,212993,0.0675422138836773 +60855066044,212994,0.0787992495309568 +60855066044,214171,0.0844277673545966 +60855066044,215794,0.0675422138836773 +60855066044,215795,0.110694183864916 +60855066044,223369,0.142589118198874 +60855066044,226512,0.106941838649156 +60855066044,226513,0.0337711069418387 +60855066045,216846,0.115107913669065 +60855066045,218476,0.0719424460431655 +60855066045,219167,0.00359712230215827 +60855066045,219449,0.336330935251799 +60855066045,223367,0.0827338129496403 +60855066045,223368,0.0611510791366906 +60855066045,228591,0.0701438848920863 +60855066045,229656,0.154676258992806 +60855066045,230351,0.10431654676259 +60855066051,214276,0 +60855066051,214277,0.0889679715302491 +60855066051,214278,0.0391459074733096 +60855066051,215575,0.0533807829181495 +60855066051,216845,0.149466192170818 +60855066051,217980,0 +60855066051,218474,0.0735468564650059 +60855066051,218475,0.0640569395017794 +60855066051,219437,0.0782918149466192 +60855066051,219806,0.00118623962040332 +60855066051,223366,0.0391459074733096 +60855066051,228187,0.322657176749703 +60855066051,229654,0.0379596678529063 +60855066051,229655,0 +60855066051,231121,0.0521945432977461 +60855066052,214274,0.037956204379562 +60855066052,214275,0.106569343065693 +60855066052,215573,0.262773722627737 +60855066052,215574,0.0788321167883212 +60855066052,216843,0.0759124087591241 +60855066052,216844,0.054014598540146 +60855066052,223071,0.256934306569343 +60855066052,223760,0.0364963503649635 +60855066052,229405,0.0905109489051095 +60855066061,214262,0.153543307086614 +60855066061,214273,0.165354330708661 +60855066061,217978,0.192913385826772 +60855066061,231119,0.21259842519685 +60855066061,231120,0.275590551181102 +60855066062,210472,0.162310866574966 +60855066062,214817,0.121045392022008 +60855066062,214819,0.0495185694635488 +60855066062,216139,0.112792297111417 +60855066062,216140,0.0426409903713893 +60855066062,216884,0.104539202200825 +60855066062,217959,0.0357634112792297 +60855066062,217960,0.0426409903713893 +60855066062,219639,0.0729023383768913 +60855066062,222278,0.0453920220082531 +60855066062,225727,0.0536451169188446 +60855066062,229092,0.156808803301238 +60855066063,213897,0.0363086232980333 +60855066063,214261,0.184568835098336 +60855066063,216136,0.183055975794251 +60855066063,216137,0.1089258698941 +60855066063,217523,0.0892586989409985 +60855066063,223535,0.166414523449319 +60855066063,226425,0.0363086232980333 +60855066063,229089,0.0665658093797277 +60855066063,229091,0.128593040847201 +60855067011,213462,0.883064516129032 +60855067011,222277,0.116935483870968 +60855067012,213456,0.0729166666666667 +60855067012,213457,0.0815972222222222 +60855067012,213458,0.0590277777777778 +60855067012,213460,0.241319444444444 +60855067012,214812,0.0989583333333333 +60855067012,214813,0.0642361111111111 +60855067012,217522,0.0885416666666667 +60855067012,229084,0.0503472222222222 +60855067012,229085,0.0850694444444444 +60855067012,229086,0.03125 +60855067012,231105,0.0642361111111111 +60855067012,231106,0.0625 +60855067013,213452,0.180952380952381 +60855067013,216135,0.165714285714286 +60855067013,217519,0.0514285714285714 +60855067013,217520,0.0876190476190476 +60855067013,221733,0.16 +60855067013,222273,0.100952380952381 +60855067013,222275,0.2 +60855067013,230794,0.0533333333333333 +60855067021,213451,0.0314861460957179 +60855067021,214809,0.0491183879093199 +60855067021,214810,0.0428211586901763 +60855067021,216133,0.109571788413098 +60855067021,217518,0.0894206549118388 +60855067021,222084,0.0755667506297229 +60855067021,222085,0.0717884130982368 +60855067021,224237,0.0591939546599496 +60855067021,229080,0.117128463476071 +60855067021,229081,0.035264483627204 +60855067021,229082,0.0365239294710327 +60855067021,230648,0.0793450881612091 +60855067021,230649,0.0465994962216625 +60855067021,230650,0.0503778337531486 +60855067021,230651,0.0705289672544081 +60855067021,231099,0.035264483627204 +60855067022,213896,0.0376506024096386 +60855067022,216130,0.0858433734939759 +60855067022,216131,0.0587349397590361 +60855067022,216132,0.0828313253012048 +60855067022,219433,0.0421686746987952 +60855067022,219434,0.0843373493975904 +60855067022,221205,0.147590361445783 +60855067022,221206,0.132530120481928 +60855067022,222083,0.102409638554217 +60855067022,222521,0.0451807228915663 +60855067022,223533,0.0783132530120482 +60855067022,230647,0.102409638554217 +60855067023,210481,0.625435540069686 +60855067023,217517,0.374564459930314 +60855067031,212603,0.0860719874804382 +60855067031,215572,0.0845070422535211 +60855067031,217010,0.0954616588419405 +60855067031,219432,0.0453834115805947 +60855067031,221708,0.0344287949921753 +60855067031,222082,0.0985915492957747 +60855067031,223070,0.054773082942097 +60855067031,223757,0.0359937402190923 +60855067031,223758,0.0782472613458529 +60855067031,229079,0.0563380281690141 +60855067031,229404,0.117370892018779 +60855067031,230529,0.109546165884194 +60855067031,231118,0.103286384976526 +60855067032,211018,0.491400491400491 +60855067032,214460,0.378378378378378 +60855067032,222805,0.13022113022113 +60855067033,210487,0 +60855067033,212601,0.373655913978495 +60855067033,212602,0.0537634408602151 +60855067033,225745,0.57258064516129 +60855068011,210239,0.0260756192959583 +60855068011,211277,0 +60855068011,211278,0.00651890482398957 +60855068011,212990,0.0273794002607562 +60855068011,212991,0.0990873533246415 +60855068011,214695,0.0664928292046936 +60855068011,214696,0.0638852672750978 +60855068011,215792,0.375488917861799 +60855068011,218613,0.0365058670143416 +60855068011,219823,0.0508474576271186 +60855068011,221711,0.0182529335071708 +60855068011,226506,0.0182529335071708 +60855068011,226507,0.0312907431551499 +60855068011,226509,0.0469361147327249 +60855068011,226510,0.0325945241199478 +60855068011,228949,0.0104302477183833 +60855068011,230881,0 +60855068011,230882,0.0534550195567145 +60855068011,230883,0.0365058670143416 +60855068012,213309,0.111278195488722 +60855068012,215789,0.0330827067669173 +60855068012,216389,0.0781954887218045 +60855068012,219816,0 +60855068012,219920,0.043609022556391 +60855068012,221713,0 +60855068012,224274,0.0571428571428571 +60855068012,224477,0.0481203007518797 +60855068012,227127,0.0917293233082707 +60855068012,228036,0.103759398496241 +60855068012,228316,0.26015037593985 +60855068012,230757,0.0902255639097744 +60855068012,231792,0.0827067669172932 +60855068013,210489,0.0532110091743119 +60855068013,217905,0.0862385321100917 +60855068013,218820,0.0403669724770642 +60855068013,222894,0.0311926605504587 +60855068013,222895,0.0697247706422018 +60855068013,222897,0.0862385321100917 +60855068013,224179,0.119266055045872 +60855068013,224180,0.0385321100917431 +60855068013,224235,0.130275229357798 +60855068013,227825,0.0403669724770642 +60855068013,228034,0.0660550458715596 +60855068013,228315,0.165137614678899 +60855068013,230540,0.073394495412844 +60855068014,214002,0.0037037037037037 +60855068014,214459,0.125925925925926 +60855068014,214607,0.0777777777777778 +60855068014,227819,0.303703703703704 +60855068014,227821,0.351851851851852 +60855068014,227823,0.137037037037037 +60855068021,210333,0.0650557620817844 +60855068021,210334,0.0408921933085502 +60855068021,217008,0.0408921933085502 +60855068021,217466,0.0743494423791822 +60855068021,218812,0.0817843866171004 +60855068021,218813,0.0464684014869888 +60855068021,218814,0.118959107806691 +60855068021,218815,0.087360594795539 +60855068021,222892,0.0278810408921933 +60855068021,224173,0.0464684014869888 +60855068021,227816,0.0260223048327138 +60855068021,227817,0.0836431226765799 +60855068021,228030,0.0724907063197026 +60855068021,228031,0.0520446096654275 +60855068021,228366,0.133828996282528 +60855068021,228367,0 +60855068021,230756,0.00185873605947955 +60855068021,230804,0 +60855068022,210331,0.0558252427184466 +60855068022,210332,0.0946601941747573 +60855068022,218810,0.240291262135922 +60855068022,224170,0.254854368932039 +60855068022,228028,0.199029126213592 +60855068022,230283,0.155339805825243 +60855068023,216043,0.0863787375415282 +60855068023,216257,0.0996677740863787 +60855068023,220719,0.102990033222591 +60855068023,222538,0.0963455149501661 +60855068023,223642,0.192691029900332 +60855068023,223643,0.0963455149501661 +60855068023,226700,0.196013289036545 +60855068023,232136,0.129568106312292 +60855068024,213303,0.799270072992701 +60855068024,218192,0.200729927007299 +60855068025,216939,0.19047619047619 +60855068025,217463,0.206349206349206 +60855068025,222717,0.388888888888889 +60855068025,224055,0.214285714285714 +60855068031,214457,0.169407894736842 +60855068031,216246,0.0509868421052632 +60855068031,219996,0.101973684210526 +60855068031,219997,0.0986842105263158 +60855068031,219998,0.113486842105263 +60855068031,223331,0.171052631578947 +60855068031,224737,0.0509868421052632 +60855068031,226695,0.0509868421052632 +60855068031,230359,0.0773026315789474 +60855068031,232135,0.115131578947368 +60855068032,215215,0.0671140939597315 +60855068032,216245,0.147651006711409 +60855068032,217169,0.149888143176734 +60855068032,219994,0.154362416107383 +60855068032,219995,0.125279642058166 +60855068032,221579,0.102908277404922 +60855068032,225233,0.0671140939597315 +60855068032,225234,0.0850111856823266 +60855068032,226694,0.100671140939597 +60855068033,215218,0.0263991552270327 +60855068033,216252,0.180570221752904 +60855068033,216253,0.0327349524815206 +60855068033,216254,0.0591341077085533 +60855068033,216255,0.0337909186906019 +60855068033,216889,0.0105596620908131 +60855068033,217172,0.361140443505808 +60855068033,223640,0.105596620908131 +60855068033,223641,0.0422386483632524 +60855068033,225237,0.0475184794086589 +60855068033,225238,0.0517423442449842 +60855068033,225239,0.0211193241816262 +60855068033,225240,0.027455121436114 +60855068034,215217,0.0880829015544041 +60855068034,216248,0.269430051813472 +60855068034,217170,0.139896373056995 +60855068034,220000,0.22020725388601 +60855068034,220001,0.139896373056995 +60855068034,226697,0.142487046632124 +60855068041,211757,0.114695340501792 +60855068041,222852,0.415770609318996 +60855068041,223329,0.268817204301075 +60855068041,224934,0.0716845878136201 +60855068041,232133,0.129032258064516 +60855068042,215213,0.123737373737374 +60855068042,219992,0.234848484848485 +60855068042,223024,0.123737373737374 +60855068042,224933,0.111111111111111 +60855068042,226689,0.111111111111111 +60855068042,226690,0.207070707070707 +60855068042,232132,0.0883838383838384 +60855068043,215209,0.230414746543779 +60855068043,215210,0.0783410138248848 +60855068043,219990,0.195852534562212 +60855068043,224930,0.0898617511520737 +60855068043,225740,0.0368663594470046 +60855068043,226687,0.0783410138248848 +60855068043,226688,0.0391705069124424 +60855068043,227873,0.0576036866359447 +60855068043,232129,0.193548387096774 +60855068044,215206,0.10126582278481 +60855068044,215207,0.185654008438819 +60855068044,215208,0.143459915611814 +60855068044,215898,0.181434599156118 +60855068044,217168,0.10126582278481 +60855068044,219988,0.286919831223629 +60855069001,213598,0.0494623655913978 +60855069001,213599,0.195698924731183 +60855069001,215894,0.23010752688172 +60855069001,215895,0.0924731182795699 +60855069001,215896,0.0967741935483871 +60855069001,215897,0.133333333333333 +60855069001,227094,0.167741935483871 +60855069001,227872,0.0344086021505376 +60855069002,214615,0.0508221225710015 +60855069002,215886,0.038863976083707 +60855069002,215887,0.0254110612855007 +60855069002,215888,0.0433482810164425 +60855069002,215890,0.0941704035874439 +60855069002,215891,0.0284005979073244 +60855069002,215892,0.0493273542600897 +60855069002,215893,0.0119581464872945 +60855069002,218705,0.0926756352765321 +60855069002,218706,0.0612855007473842 +60855069002,222533,0.031390134529148 +60855069002,222690,0.0553064275037369 +60855069002,222691,0.147982062780269 +60855069002,226094,0.0343796711509716 +60855069002,226095,0.0717488789237668 +60855069002,226096,0.0896860986547085 +60855069002,228481,0.0418535127055306 +60855069002,231386,0.031390134529148 +60855069003,211756,0.00142450142450142 +60855069003,212793,0.160968660968661 +60855069003,213995,0 +60855069003,214613,0.056980056980057 +60855069003,215326,0.0811965811965812 +60855069003,215884,0.309116809116809 +60855069003,222686,0.0299145299145299 +60855069003,227078,0.0484330484330484 +60855069003,227871,0.00712250712250712 +60855069003,228479,0.0299145299145299 +60855069003,231380,0.101139601139601 +60855069003,231383,0.0698005698005698 +60855069003,231384,0.103988603988604 +60855069004,213285,0.071863580998782 +60855069004,214610,0.0657734470158343 +60855069004,215040,0.0694275274056029 +60855069004,216164,0.274056029232643 +60855069004,220991,0.0328867235079172 +60855069004,224498,0.0950060901339829 +60855069004,225554,0.123020706455542 +60855069004,226074,0.0292326431181486 +60855069004,227592,0.197320341047503 +60855069004,229209,0.0414129110840438 +60855069004,230755,0 +60855070011,210327,0.0248868778280543 +60855070011,210328,0.00791855203619909 +60855070011,211144,0 +60855070011,211149,0.0339366515837104 +60855070011,211150,0.0984162895927602 +60855070011,212561,0 +60855070011,212673,0 +60855070011,213041,0.0271493212669683 +60855070011,213042,0.0486425339366516 +60855070011,213380,0 +60855070011,213382,0.0101809954751131 +60855070011,214939,0.00791855203619909 +60855070011,215670,0.00791855203619909 +60855070011,219826,0.00113122171945701 +60855070011,221437,0.0746606334841629 +60855070011,223998,0.0497737556561086 +60855070011,224244,0.00113122171945701 +60855070011,224912,0.166289592760181 +60855070011,224913,0.0893665158371041 +60855070011,224914,0.0282805429864253 +60855070011,226349,0.0305429864253394 +60855070011,226350,0.0203619909502262 +60855070011,226351,0.108597285067873 +60855070011,227250,0.00904977375565611 +60855070011,227310,0 +60855070011,230416,0.0429864253393665 +60855070011,230417,0 +60855070011,230418,0.0486425339366516 +60855070011,230419,0.0622171945701357 +60855070012,210112,0.0588730025231287 +60855070012,210113,0.0344827586206897 +60855070012,210321,0.000841042893187553 +60855070012,210323,0.0420521446593776 +60855070012,210406,0.0403700588730025 +60855070012,212242,0.00336417157275021 +60855070012,212245,0.0168208578637511 +60855070012,213991,0.00168208578637511 +60855070012,214319,0.0454163162321278 +60855070012,215039,0.205214465937763 +60855070012,220110,0.0420521446593776 +60855070012,221436,0.121951219512195 +60855070012,222081,0.0773759461732548 +60855070012,224908,0.00336417157275021 +60855070012,225733,0.00672834314550042 +60855070012,226078,0.0731707317073171 +60855070012,227243,0.0218671152228764 +60855070012,227244,0.0630782169890664 +60855070012,227904,0.00504625735912531 +60855070012,231376,0.136248948696384 +60855070013,213988,0.0693950177935943 +60855070013,215038,0.097864768683274 +60855070013,215494,0 +60855070013,225552,0 +60855070013,226456,0.736654804270463 +60855070013,228952,0.096085409252669 +60855070014,210326,0.0151975683890578 +60855070014,211151,0.25531914893617 +60855070014,212246,0.106382978723404 +60855070014,212247,0.0972644376899696 +60855070014,212248,0.109422492401216 +60855070014,212558,0.0911854103343465 +60855070014,213688,0.167173252279635 +60855070014,230412,0.158054711246201 +60855070014,230415,0 +60855070021,211446,0.0487106017191977 +60855070021,211690,0.0515759312320917 +60855070021,215192,0.296561604584527 +60855070021,215193,0.0530085959885387 +60855070021,220703,0.227793696275072 +60855070021,226053,0.103151862464183 +60855070021,226248,0.0558739255014327 +60855070021,226251,0.0544412607449857 +60855070021,228953,0.108882521489971 +60855070022,210109,0 +60855070022,210904,0.31974921630094 +60855070022,219983,0 +60855070022,219984,0.241379310344828 +60855070022,220108,0 +60855070022,220109,0.106583072100313 +60855070022,229831,0.326018808777429 +60855070022,231703,0.00626959247648903 +60855071001,0,0 +60855071001,210106,0.39622641509434 +60855071001,210107,0.0966981132075472 +60855071001,211796,0.0235849056603774 +60855071001,215492,0.117924528301887 +60855071001,220105,0 +60855071001,222797,0.0235849056603774 +60855071001,222798,0.226415094339623 +60855071001,222800,0 +60855071001,223273,0.00235849056603774 +60855071001,223505,0.00943396226415094 +60855071001,227044,0.10377358490566 +60855071001,231520,0 +60855071002,210105,0.0022883295194508 +60855071002,211800,0.0697940503432494 +60855071002,212029,0.068649885583524 +60855071002,215491,0.704805491990847 +60855071002,222531,0.0011441647597254 +60855071002,228795,0 +60855071002,229687,0.0377574370709382 +60855071002,231519,0.115560640732265 +60855072031,210482,0.293637846655791 +60855072031,212027,0.166394779771615 +60855072031,219579,0.115823817292007 +60855072031,221717,0.424143556280587 +60855072032,212026,0.179883945841393 +60855072032,213105,0.0502901353965184 +60855072032,214794,0.0541586073500967 +60855072032,214795,0.0425531914893617 +60855072032,215146,0.0309477756286267 +60855072032,215542,0.0870406189555126 +60855072032,220430,0.119922630560928 +60855072032,222074,0.0193423597678917 +60855072032,225411,0.0870406189555126 +60855072032,226414,0.234042553191489 +60855072032,230275,0.0947775628626693 +60855072051,213103,0.376068376068376 +60855072051,220374,0.508547008547009 +60855072051,230632,0.115384615384615 +60855072052,210405,0.0847682119205298 +60855072052,210486,0.671523178807947 +60855072052,212312,0.0781456953642384 +60855072052,219814,0.165562913907285 +60855072053,211227,0.183639398998331 +60855072053,213101,0.193656093489149 +60855072053,213102,0.0634390651085142 +60855072053,214800,0.0383973288814691 +60855072053,216004,0.2220367278798 +60855072053,222066,0.0467445742904841 +60855072053,222073,0.13355592654424 +60855072053,225404,0.0634390651085142 +60855072053,232181,0.0550918196994992 +60855072054,210404,0.154385964912281 +60855072054,213100,0.16140350877193 +60855072054,214799,0.294736842105263 +60855072054,223495,0.207017543859649 +60855072054,230625,0.182456140350877 +60855072061,211225,0.398843930635838 +60855072061,214797,0.0770712909441233 +60855072061,214936,0.104046242774566 +60855072061,219586,0.148362235067437 +60855072061,221875,0.0655105973025048 +60855072061,223501,0.0809248554913295 +60855072061,227070,0.0616570327552987 +60855072061,232183,0.0635838150289017 +60855072062,210403,0.116379310344828 +60855072062,212307,0.109913793103448 +60855072062,216388,0.137931034482759 +60855072062,219583,0.0495689655172414 +60855072062,219584,0.0775862068965517 +60855072062,223246,0.351293103448276 +60855072062,223499,0.0452586206896552 +60855072062,232180,0.112068965517241 +60855073011,210903,0.156363636363636 +60855073011,214378,0.192727272727273 +60855073011,214379,0.127272727272727 +60855073011,214380,0.149090909090909 +60855073011,219980,0.374545454545455 +60855073012,210900,0 +60855073012,217024,0 +60855073012,218345,0.0712694877505568 +60855073012,219979,0.10467706013363 +60855073012,221549,0.21826280623608 +60855073012,222679,0.182628062360802 +60855073012,223245,0.0957683741648107 +60855073012,226669,0.32739420935412 +60855073013,210655,0.234657039711191 +60855073013,218229,0.104693140794224 +60855073013,219975,0.23826714801444 +60855073013,226044,0.342960288808664 +60855073013,231869,0.0794223826714801 +60855073014,210898,0.151750972762646 +60855073014,222677,0.743190661478599 +60855073014,228477,0 +60855073014,229610,0.105058365758755 +60855073015,211514,0.0416666666666667 +60855073015,211515,0.13768115942029 +60855073015,211516,0.132246376811594 +60855073015,218343,0.0923913043478261 +60855073015,218344,0.280797101449275 +60855073015,220829,0.309782608695652 +60855073015,231868,0.00543478260869565 +60855073016,210400,0.0719754977029096 +60855073016,218225,0.0398162327718224 +60855073016,223243,0.0367534456355283 +60855073016,228648,0.00306278713629403 +60855073016,231085,0.781010719754977 +60855073016,231866,0.0673813169984686 +60855073021,210652,0.0145560407569141 +60855073021,210653,0.110625909752547 +60855073021,210654,0.0116448326055313 +60855073021,211510,0.0393013100436681 +60855073021,211512,0.0145560407569141 +60855073021,217990,0.109170305676856 +60855073021,219311,0.0509461426491994 +60855073021,220208,0.0960698689956332 +60855073021,222518,0.0858806404657933 +60855073021,228475,0.0684133915574964 +60855073021,228476,0.136826783114993 +60855073021,229607,0.100436681222707 +60855073021,229609,0.0262008733624454 +60855073021,230695,0.0858806404657933 +60855073021,231429,0.049490538573508 +60855073022,210714,0.344410876132931 +60855073022,210715,0.27190332326284 +60855073022,214102,0.0120845921450151 +60855073022,218337,0.00302114803625378 +60855073022,218339,0.287009063444109 +60855073022,222516,0.081570996978852 +60855073022,222517,0 +60855074011,210080,0.0824742268041237 +60855074011,211783,0.198453608247423 +60855074011,214734,0.167525773195876 +60855074011,217870,0.0257731958762887 +60855074011,223918,0.172680412371134 +60855074011,228911,0.0747422680412371 +60855074011,229633,0.211340206185567 +60855074011,229635,0.0670103092783505 +60855074012,217694,0.0897435897435897 +60855074012,219642,0.238461538461538 +60855074012,223663,0.476923076923077 +60855074012,223664,0.0641025641025641 +60855074012,225634,0.0717948717948718 +60855074012,231076,0.058974358974359 +60855074013,211008,0.156182212581345 +60855074013,214796,0.117136659436009 +60855074013,217830,0.405639913232104 +60855074013,219582,0.0629067245119306 +60855074013,223118,0.110629067245119 +60855074013,230620,0.0650759219088937 +60855074013,230621,0.0824295010845987 +60855074014,210397,0.0638820638820639 +60855074014,215625,0.0909090909090909 +60855074014,216698,0.191646191646192 +60855074014,217236,0.213759213759214 +60855074014,217237,0.108108108108108 +60855074014,219573,0.0909090909090909 +60855074014,224102,0.0614250614250614 +60855074014,230270,0.122850122850123 +60855074014,232175,0.0565110565110565 +60855074015,210395,0.234200743494424 +60855074015,210475,0.137546468401487 +60855074015,215624,0.12639405204461 +60855074015,219002,0.197026022304833 +60855074015,219003,0.193308550185874 +60855074015,228600,0.111524163568773 +60855074021,215621,0.056672760511883 +60855074021,216696,0.0749542961608775 +60855074021,218979,0.241316270566728 +60855074021,218998,0.0493601462522852 +60855074021,218999,0.0749542961608775 +60855074021,219000,0.20109689213894 +60855074021,224022,0.109689213893967 +60855074021,224023,0.056672760511883 +60855074021,224098,0.0786106032906764 +60855074021,229417,0.056672760511883 +60855074022,215620,0.105263157894737 +60855074022,218383,0.121052631578947 +60855074022,224021,0 +60855074022,224096,0 +60855074022,226445,0.0947368421052632 +60855074022,228101,0.131578947368421 +60855074022,228102,0.205263157894737 +60855074022,228103,0.0815789473684211 +60855074022,228104,0.186842105263158 +60855074022,229416,0.0631578947368421 +60855074022,230269,0.0105263157894737 +60855074023,214099,0.0373134328358209 +60855074023,215619,0 +60855074023,216693,0.0503731343283582 +60855074023,216694,0.223880597014925 +60855074023,218381,0.216417910447761 +60855074023,218868,0.0485074626865672 +60855074023,218977,0.0541044776119403 +60855074023,221660,0.0652985074626866 +60855074023,221872,0.0652985074626866 +60855074023,223493,0.123134328358209 +60855074023,224263,0.00373134328358209 +60855074023,229415,0.111940298507463 +60855075001,218380,0.0473933649289099 +60855075001,220949,0.0616113744075829 +60855075001,221663,0.0979462875197472 +60855075001,221870,0.0410742496050553 +60855075001,224015,0.0600315955766193 +60855075001,224016,0.0821484992101106 +60855075001,224017,0.0410742496050553 +60855075001,227898,0.0726698262243286 +60855075001,228100,0.17219589257504 +60855075001,231597,0.139020537124803 +60855075001,231598,0.184834123222749 +60855075002,214874,0.0555555555555556 +60855075002,215616,0.0427350427350427 +60855075002,216690,0.0982905982905983 +60855075002,217327,0.170940170940171 +60855075002,223491,0.0726495726495726 +60855075002,223956,0.138888888888889 +60855075002,224014,0.104700854700855 +60855075002,224094,0.117521367521368 +60855075002,229412,0.111111111111111 +60855075002,229413,0.0683760683760684 +60855075002,231596,0.0192307692307692 +60855075003,213081,0.171084337349398 +60855075003,213082,0.212048192771084 +60855075003,214732,0.0578313253012048 +60855075003,215111,0.0746987951807229 +60855075003,217852,0.103614457831325 +60855075003,223096,0.130120481927711 +60855075003,223832,0.072289156626506 +60855075003,228942,0.11566265060241 +60855075003,229246,0.0626506024096386 +60855075004,212302,0.103594080338266 +60855075004,212303,0.0570824524312896 +60855075004,213115,0.116279069767442 +60855075004,221621,0.0845665961945032 +60855075004,223613,0.0613107822410148 +60855075004,223614,0.109936575052854 +60855075004,228781,0.0591966173361522 +60855075004,228784,0.107822410147992 +60855075004,230265,0.232558139534884 +60855075004,230705,0.0676532769556025 +60855076001,216356,0 +60855076001,217325,0 +60855076001,217326,0.0811808118081181 +60855076001,220897,0.03690036900369 +60855076001,222864,0.143911439114391 +60855076001,225631,0.276752767527675 +60855076001,225633,0.44280442804428 +60855076001,229629,0 +60855076001,230023,0.018450184501845 +60855076002,212301,0.501193317422434 +60855076002,217389,0.107398568019093 +60855076002,218499,0.0525059665871122 +60855076002,218500,0.0644391408114559 +60855076002,228560,0.0596658711217184 +60855076002,228946,0.214797136038186 +60855076003,214293,0.0393162393162393 +60855076003,214294,0.338461538461538 +60855076003,216392,0.276923076923077 +60855076003,220891,0.0376068376068376 +60855076003,220892,0.14017094017094 +60855076003,230701,0.167521367521368 +60855076004,218974,0.245689655172414 +60855076004,222833,0.55316091954023 +60855076004,222835,0.0589080459770115 +60855076004,223611,0.142241379310345 +60855077011,213077,1 +60855077012,213074,0.172638436482085 +60855077012,213075,0.0407166123778502 +60855077012,213076,0.107491856677524 +60855077012,213643,0.208469055374593 +60855077012,214051,0.125407166123779 +60855077012,214068,0.143322475570033 +60855077012,215925,0.107491856677524 +60855077012,217825,0.0944625407166124 +60855077013,210994,0.167785234899329 +60855077013,211576,0.212527964205817 +60855077013,212627,0 +60855077013,212628,0.212527964205817 +60855077013,219146,0.140939597315436 +60855077013,219808,0.00223713646532438 +60855077013,227689,0.263982102908277 +60855077021,211985,0.360175695461201 +60855077021,214067,0.0527086383601757 +60855077021,215921,0.247437774524158 +60855077021,217490,0.0585651537335286 +60855077021,220215,0.0102489019033675 +60855077021,222983,0.04099560761347 +60855077021,231415,0.0439238653001464 +60855077021,231416,0.185944363103953 +60855077022,211575,0.175438596491228 +60855077022,211984,0.150877192982456 +60855077022,213416,0.0456140350877193 +60855077022,213417,0.22280701754386 +60855077022,216279,0.301754385964912 +60855077022,230456,0.103508771929825 +60855077023,0,0 +60855077023,210836,0.554307116104869 +60855077023,211204,0.0536828963795256 +60855077023,212625,0 +60855077023,220057,0 +60855077023,223854,0.0799001248439451 +60855077023,228928,0.18601747815231 +60855077023,228929,0.0549313358302122 +60855077023,232220,0.0711610486891386 +60855077031,212585,0.407624633431085 +60855077031,220151,0.105571847507331 +60855077031,223985,0.06158357771261 +60855077031,232367,0.425219941348974 +60855077032,212582,0.786315789473684 +60855077032,220055,0.0757894736842105 +60855077032,228924,0.0336842105263158 +60855077032,228925,0.0621052631578947 +60855077032,228926,0.0421052631578947 +60855077033,211197,0.0589970501474926 +60855077033,211198,0.0766961651917404 +60855077033,212581,0.113569321533923 +60855077033,217669,0.107669616519174 +60855077033,217674,0.0427728613569322 +60855077033,219062,0.0693215339233038 +60855077033,219063,0.0634218289085546 +60855077033,223813,0.238938053097345 +60855077033,225672,0.051622418879056 +60855077033,226822,0.0442477876106195 +60855077033,229226,0.132743362831858 +60855077034,0,0 +60855077034,215309,0.0612813370473538 +60855077034,219061,0.142061281337047 +60855077034,223812,0.325905292479109 +60855077034,226399,0.108635097493036 +60855077034,226400,0.236768802228412 +60855077034,227434,0 +60855077034,229223,0.125348189415042 +60855077035,210708,0.261501210653753 +60855077035,231423,0.738498789346247 +60855078051,210450,0.222126188418323 +60855078051,210987,0.0795159896283492 +60855078051,213934,0.0129645635263613 +60855078051,214497,0.12618841832325 +60855078051,220925,0.471910112359551 +60855078051,228138,0.087294727744166 +60855078052,217662,0.397872340425532 +60855078052,223926,0.602127659574468 +60855078052,225667,0 +60855078052,232206,0 +60855078053,210461,0.230769230769231 +60855078053,215307,0.107692307692308 +60855078053,225706,0.456410256410256 +60855078053,231154,0.205128205128205 +60855078061,212332,0.104838709677419 +60855078061,214287,0.0618279569892473 +60855078061,217823,0.0564516129032258 +60855078061,225704,0.0698924731182796 +60855078061,231069,0.163978494623656 +60855078061,231070,0.188172043010753 +60855078061,231071,0.134408602150538 +60855078061,231150,0.220430107526882 +60855078062,215571,0.460365853658537 +60855078062,220817,0.102134146341463 +60855078062,220818,0.4375 +60855078063,210457,0 +60855078063,210462,0.00864864864864865 +60855078063,210705,0 +60855078063,210706,0 +60855078063,214504,0.24 +60855078063,215304,0 +60855078063,215305,0.262702702702703 +60855078063,220931,0.180540540540541 +60855078063,222510,0 +60855078063,223701,0.00108108108108108 +60855078063,223997,0.0259459459459459 +60855078063,231912,0.281081081081081 +60855078071,210969,0.0613207547169811 +60855078071,210970,0.101415094339623 +60855078071,212329,0.0872641509433962 +60855078071,214854,0.00943396226415094 +60855078071,214855,0.19811320754717 +60855078071,214856,0.143867924528302 +60855078071,215302,0.17688679245283 +60855078071,215303,0.0707547169811321 +60855078071,223700,0.089622641509434 +60855078071,227069,0.0613207547169811 +60855078072,210968,0.533884297520661 +60855078072,220101,0.466115702479339 +60855078081,222258,0.894160583941606 +60855078081,223696,0.105839416058394 +60855078082,212328,0.0559284116331096 +60855078082,222257,0.655480984340045 +60855078082,227066,0.239373601789709 +60855078082,230613,0.0492170022371365 +60855078083,210704,0.00238663484486874 +60855078083,210967,0.420047732696897 +60855078083,212622,0.243436754176611 +60855078083,212623,0.152744630071599 +60855078083,214851,0.0596658711217184 +60855078083,220150,0.0668257756563246 +60855078083,225700,0.0548926014319809 +60855078084,211555,0.124193548387097 +60855078084,213694,0.05 +60855078084,213695,0.0483870967741935 +60855078084,213696,0.0629032258064516 +60855078084,216163,0.0629032258064516 +60855078084,216850,0.175806451612903 +60855078084,221223,0.117741935483871 +60855078084,223595,0.0516129032258065 +60855078084,225795,0.0532258064516129 +60855078084,225796,0.0419354838709677 +60855078084,226439,0.0483870967741935 +60855078084,226440,0.114516129032258 +60855078084,227686,0.0483870967741935 +60855079031,217819,0.0477064220183486 +60855079031,220099,0.121100917431193 +60855079031,220877,0.0568807339449541 +60855079031,220878,0.0605504587155963 +60855079031,220879,0.110091743119266 +60855079031,221222,0.0935779816513762 +60855079031,222256,0.144954128440367 +60855079031,225698,0.0385321100917431 +60855079031,225792,0.0403669724770642 +60855079031,225793,0.0844036697247706 +60855079031,230678,0.0788990825688073 +60855079031,230679,0.0807339449541284 +60855079031,230680,0.0422018348623853 +60855079032,211554,0.037243947858473 +60855079032,213693,0.0502793296089385 +60855079032,220098,0.235567970204842 +60855079032,220400,0.0418994413407821 +60855079032,220872,0.0363128491620112 +60855079032,220873,0.0679702048417132 +60855079032,220874,0.0344506517690875 +60855079032,220875,0.0465549348230912 +60855079032,220876,0.0679702048417132 +60855079032,221216,0.0446927374301676 +60855079032,221217,0.0418994413407821 +60855079032,221218,0.0698324022346369 +60855079032,222564,0.0353817504655493 +60855079032,225790,0.0204841713221601 +60855079032,226436,0.0381750465549348 +60855079032,226437,0.0270018621973929 +60855079032,226438,0.0381750465549348 +60855079032,230676,0.0251396648044693 +60855079032,230677,0.0409683426443203 +60855079041,211551,0.0934256055363322 +60855079041,211552,0.0847750865051903 +60855079041,211553,0.0501730103806228 +60855079041,213691,0.0899653979238754 +60855079041,213692,0.0847750865051903 +60855079041,217816,0.0449826989619377 +60855079041,217818,0.147058823529412 +60855079041,220399,0.0536332179930796 +60855079041,220868,0.108996539792388 +60855079041,220869,0.0467128027681661 +60855079041,226435,0.0640138408304498 +60855079041,230675,0.131487889273356 +60855079042,219810,0.156673114119923 +60855079042,220398,0.137330754352031 +60855079042,220867,0.04642166344294 +60855079042,222563,0.0425531914893617 +60855079042,225789,0.160541586073501 +60855079042,226432,0.0967117988394584 +60855079042,226433,0.0676982591876209 +60855079042,230674,0.292069632495164 +60855079051,212882,0.285714285714286 +60855079051,220096,0.0585034013605442 +60855079051,222562,0.470748299319728 +60855079051,230961,0.185034013605442 +60855079052,211549,0.0913539967373573 +60855079052,217351,0.101141924959217 +60855079052,220521,0.119086460032626 +60855079052,220522,0.181076672104405 +60855079052,220865,0.0391517128874388 +60855079052,222561,0.0391517128874388 +60855079052,225696,0.0407830342577488 +60855079052,225786,0.0473083197389886 +60855079052,226428,0.0570962479608483 +60855079052,230609,0.195758564437194 +60855079052,230610,0.0880913539967374 +60855079053,212881,0.372368421052632 +60855079053,217349,0.221052631578947 +60855079053,220094,0.163157894736842 +60855079053,220396,0.235526315789474 +60855079053,232205,0.00789473684210526 +60855079061,215971,0.618266978922717 +60855079061,217347,0.0585480093676815 +60855079061,217675,0.121779859484778 +60855079061,217676,0.201405152224824 +60855079062,211585,0.175710594315245 +60855079062,215970,0.250645994832041 +60855079062,217865,0.196382428940568 +60855079062,217866,0.224806201550388 +60855079062,223717,0.152454780361757 +60855079063,211583,0.145328719723183 +60855079063,211584,0.121107266435986 +60855079063,215969,0.290657439446367 +60855079063,217863,0.0830449826989619 +60855079063,229107,0.117647058823529 +60855079063,231585,0.141868512110727 +60855079063,231586,0.100346020761246 +60855079064,211582,0.102484472049689 +60855079064,214863,0.093167701863354 +60855079064,214864,0.164596273291925 +60855079064,215968,0.0745341614906832 +60855079064,223715,0.130434782608696 +60855079064,223845,0.111801242236025 +60855079064,223846,0.077639751552795 +60855079064,229106,0.164596273291925 +60855079064,231584,0.0807453416149068 +60855080011,210800,0.0778364116094987 +60855080011,210801,0.468337730870712 +60855080011,210802,0.0857519788918206 +60855080011,211580,0.120052770448549 +60855080011,214862,0.162269129287599 +60855080011,225785,0.0554089709762533 +60855080011,231583,0.0303430079155673 +60855080011,232204,0 +60855080012,210799,0.241545893719807 +60855080012,214271,0.185990338164251 +60855080012,214860,0.27536231884058 +60855080012,215570,0.297101449275362 +60855080013,210798,0.147465437788018 +60855080013,214507,0.113671274961598 +60855080013,214858,0.0752688172043011 +60855080013,215963,0.0745007680491551 +60855080013,217862,0.372503840245776 +60855080013,224149,0.0714285714285714 +60855080013,228144,0.145161290322581 +60855080013,232233,0 +60855080014,210797,0.232558139534884 +60855080014,215959,0.178294573643411 +60855080014,223623,0.209302325581395 +60855080014,229400,0.37984496124031 +60855080031,210514,0.524950099800399 +60855080031,212095,0.189620758483034 +60855080031,223618,0.0558882235528942 +60855080031,223619,0.0818363273453094 +60855080031,229758,0.00199600798403194 +60855080031,231169,0.145708582834331 +60855080032,210794,0.127118644067797 +60855080032,210795,0.165254237288136 +60855080032,216436,0.220338983050847 +60855080032,221635,0.122881355932203 +60855080032,223709,0.364406779661017 +60855080041,210793,0.0301003344481605 +60855080041,214280,0.0546265328874025 +60855080041,217385,0.0312151616499443 +60855080041,217860,0.0278706800445931 +60855080041,220888,0.0445930880713489 +60855080041,221634,0.032329988851728 +60855080041,222571,0.0334448160535117 +60855080041,222572,0.0412486064659978 +60855080041,223409,0.0289855072463768 +60855080041,223410,0.0356744704570792 +60855080041,223617,0.0356744704570792 +60855080041,229098,0.604236343366778 +60855080042,213111,0.143497757847534 +60855080042,217383,0.0560538116591928 +60855080042,217384,0.0919282511210762 +60855080042,220886,0.0829596412556054 +60855080042,220887,0.0762331838565022 +60855080042,221950,0.139013452914798 +60855080042,222568,0.130044843049327 +60855080042,222569,0.0493273542600897 +60855080042,222570,0.145739910313901 +60855080042,228396,0.0852017937219731 +60855080043,210796,0.143239625167336 +60855080043,211538,0.21954484605087 +60855080043,211545,0.0508701472556894 +60855080043,211547,0.0589022757697456 +60855080043,212878,0.0736278447121821 +60855080043,212879,0.278447121820616 +60855080043,212880,0 +60855080043,220395,0.0963855421686747 +60855080043,225784,0.0789825970548862 +60855081011,211254,0.0384615384615385 +60855081011,211255,0.0737179487179487 +60855081011,213110,0.046474358974359 +60855081011,219153,0.092948717948718 +60855081011,219158,0.413461538461538 +60855081011,225818,0.046474358974359 +60855081011,225819,0.241987179487179 +60855081011,225820,0.046474358974359 +60855081012,210453,0.0794117647058823 +60855081012,210463,0.188235294117647 +60855081012,213109,0.347058823529412 +60855081012,213479,0.0573529411764706 +60855081012,224255,0.0338235294117647 +60855081012,228099,0.125 +60855081012,230198,0.119117647058824 +60855081012,230690,0.05 +60855081013,211314,0.417515274949084 +60855081013,211535,0.0010183299389002 +60855081013,213477,0.229124236252546 +60855081013,218913,0.154786150712831 +60855081013,219135,0.185336048879837 +60855081013,230194,0.0122199592668024 +60855081021,210448,0.00635424940428912 +60855081021,210458,0.204130262112788 +60855081021,210464,0 +60855081021,212347,0.079428117553614 +60855081021,212348,0.0873709293089754 +60855081021,212350,0.00238284352660842 +60855081021,213448,0.0262112787926926 +60855081021,213449,0.0675138999205719 +60855081021,214503,0 +60855081021,214805,0 +60855081021,216129,0 +60855081021,217377,0.0754567116759333 +60855081021,217515,0.0405083399523431 +60855081021,218030,0 +60855081021,218915,0 +60855081021,218916,0.25099285146942 +60855081021,220961,0 +60855081021,222312,0.0293884034948372 +60855081021,222315,0 +60855081021,223992,0 +60855081021,223996,0 +60855081021,227093,0.0492454328832407 +60855081021,228096,0 +60855081021,228385,0 +60855081021,229077,0.0389197776012708 +60855081021,230200,0 +60855081021,230646,0.0198570293884035 +60855081021,232216,0.0222398729150119 +60855082021,210147,0.133620689655172 +60855082021,212345,0.0711206896551724 +60855082021,213468,0.107758620689655 +60855082021,213469,0.0193965517241379 +60855082021,213470,0.174568965517241 +60855082021,216867,0.0495689655172414 +60855082021,216868,0.0495689655172414 +60855082021,220881,0.0366379310344828 +60855082021,223827,0.0948275862068965 +60855082021,227891,0.0625 +60855082021,227892,0.0495689655172414 +60855082021,228091,0.0797413793103448 +60855082021,228232,0.0711206896551724 +60855082022,211574,0.0591194968553459 +60855082022,211778,0.174842767295597 +60855082022,212344,0 +60855082022,212621,0.0792452830188679 +60855082022,216340,0.460377358490566 +60855082022,216341,0.0578616352201258 +60855082022,221911,0.0377358490566038 +60855082022,225812,0.030188679245283 +60855082022,227703,0.10062893081761 +60855082023,211568,0.0793650793650794 +60855082023,211573,0.0952380952380952 +60855082023,221909,0.105820105820106 +60855082023,221910,0.0714285714285714 +60855082023,225810,0.166666666666667 +60855082023,231581,0.235449735449735 +60855082023,232021,0.166666666666667 +60855082023,232046,0.0793650793650794 +60855082024,211775,0.0875656742556918 +60855082024,214127,0.0542907180385289 +60855082024,216339,0.17338003502627 +60855082024,217514,0.108581436077058 +60855082024,224092,0.0490367775831874 +60855082024,224093,0.0577933450087566 +60855082024,225808,0.304728546409807 +60855082024,227874,0.122591943957968 +60855082024,229076,0.042031523642732 +60855082025,211564,0.0512820512820513 +60855082025,211565,0.0495726495726496 +60855082025,211566,0.0495726495726496 +60855082025,211773,0.2 +60855082025,216160,0.052991452991453 +60855082025,216337,0.18974358974359 +60855082025,217513,0.153846153846154 +60855082025,228776,0.124786324786325 +60855082025,231579,0.0752136752136752 +60855082025,231580,0.052991452991453 +60855082031,211563,0.218225419664269 +60855082031,215581,0.136690647482014 +60855082031,215582,0.0815347721822542 +60855082031,215583,0.0983213429256595 +60855082031,227447,0.0575539568345324 +60855082031,227675,0.0887290167865707 +60855082031,231578,0.124700239808153 +60855082031,232187,0.194244604316547 +60855082032,211534,0.282692307692308 +60855082032,213169,0.255769230769231 +60855082032,223573,0.0442307692307692 +60855082032,223574,0.0769230769230769 +60855082032,223937,0.0826923076923077 +60855082032,225806,0.0442307692307692 +60855082032,227446,0.0519230769230769 +60855082032,227672,0.0634615384615385 +60855082032,231893,0.0980769230769231 +60855082033,211531,0.150877192982456 +60855082033,211532,0.0666666666666667 +60855082033,211533,0.0467836257309941 +60855082033,216335,0.178947368421053 +60855082033,218885,0.0994152046783626 +60855082033,223572,0.039766081871345 +60855082033,223935,0.0795321637426901 +60855082033,223936,0.11812865497076 +60855082033,231891,0.0748538011695906 +60855082033,231892,0.145029239766082 +60855082041,211561,0.0488549618320611 +60855082041,211562,0.099236641221374 +60855082041,224089,0.0519083969465649 +60855082041,224090,0.0824427480916031 +60855082041,231576,0.0488549618320611 +60855082041,232043,0.668702290076336 +60855082042,211530,0.329479768786127 +60855082042,211771,0.0982658959537572 +60855082042,214490,0.245664739884393 +60855082042,224087,0.0549132947976879 +60855082042,225804,0.104046242774566 +60855082042,225805,0.167630057803468 +60855082043,210785,0.0949227373068433 +60855082043,210786,0.0772626931567329 +60855082043,211769,0.0794701986754967 +60855082043,211770,0.0883002207505519 +60855082043,216333,0.108167770419426 +60855082043,223531,0.0860927152317881 +60855082043,224086,0.0706401766004415 +60855082043,225803,0.0706401766004415 +60855082043,227444,0.0662251655629139 +60855082043,228774,0.145695364238411 +60855082043,230645,0.112582781456954 +60855083011,210749,0.0888468809073724 +60855083011,217660,0.270321361058601 +60855083011,229769,0.306238185255198 +60855083011,231563,0.334593572778828 +60855083012,211529,0.101736972704715 +60855083012,215253,0.109181141439206 +60855083012,215254,0.104218362282878 +60855083012,218883,0.0620347394540943 +60855083012,220064,0.153846153846154 +60855083012,220065,0.148883374689826 +60855083012,223933,0.168734491315136 +60855083012,227668,0.0595533498759305 +60855083012,231888,0.0918114143920596 +60855083013,211251,0.053156146179402 +60855083013,211252,0.196013289036545 +60855083013,211527,0.210963455149502 +60855083013,215578,0.0564784053156146 +60855083013,215579,0.269102990033223 +60855083013,218884,0.214285714285714 +60855083031,210748,0 +60855083031,211250,0.143478260869565 +60855083031,214835,0.1 +60855083031,214836,0.091304347826087 +60855083031,214838,0.128260869565217 +60855083031,216331,0.182608695652174 +60855083031,218290,0.0847826086956522 +60855083031,218909,0.0782608695652174 +60855083031,223691,0.0891304347826087 +60855083031,223692,0.058695652173913 +60855083031,223964,0.00217391304347826 +60855083031,231887,0.041304347826087 +60855083032,210746,0.0656455142231947 +60855083032,210747,0.0765864332603939 +60855083032,211247,0.0568927789934354 +60855083032,211248,0.0547045951859956 +60855083032,214501,0.0547045951859956 +60855083032,214831,0.0590809628008753 +60855083032,214832,0.074398249452954 +60855083032,216330,0.0568927789934354 +60855083032,220965,0.142231947483589 +60855083032,223946,0.266958424507659 +60855083032,230183,0.0919037199124726 +60855083032,231886,0 +60855083041,210784,0.375 +60855083041,214830,0.0714285714285714 +60855083041,217614,0.119047619047619 +60855083041,220688,0.0615079365079365 +60855083041,225506,0.222222222222222 +60855083041,226059,0.0634920634920635 +60855083041,231561,0.0873015873015873 +60855083042,220199,0.317241379310345 +60855083042,225198,0.220689655172414 +60855083042,226058,0.131034482758621 +60855083042,227799,0.210344827586207 +60855083042,228458,0.120689655172414 +60855083043,214608,0.213815789473684 +60855083043,225197,0.786184210526316 +60855083044,210529,1 +60855083045,210150,0.660914581535807 +60855083045,232209,0.339085418464193 +60855084011,218455,0.116731517509728 +60855084011,220060,0.233463035019455 +60855084011,220061,0.116731517509728 +60855084011,220062,0.0778210116731518 +60855084011,225661,0.198443579766537 +60855084011,225662,0.178988326848249 +60855084011,226397,0.0778210116731518 +60855084012,217159,0.0664893617021277 +60855084012,218451,0.428191489361702 +60855084012,218454,0.0930851063829787 +60855084012,222858,0.0398936170212766 +60855084012,225660,0.103723404255319 +60855084012,226054,0.162234042553191 +60855084012,226396,0.106382978723404 +60855084013,215251,0.0419847328244275 +60855084013,215252,0.0744274809160305 +60855084013,217199,0.330152671755725 +60855084013,218450,0.324427480916031 +60855084013,220059,0.0916030534351145 +60855084013,226844,0.0916030534351145 +60855084013,232170,0.0458015267175573 +60855084014,219974,0.0771812080536913 +60855084014,225659,0.120805369127517 +60855084014,225967,0.187919463087248 +60855084014,229261,0.332214765100671 +60855084014,232168,0.167785234899329 +60855084014,232169,0.114093959731544 +60855084015,214062,0.301518438177874 +60855084015,214064,0.255965292841649 +60855084015,214065,0.052060737527115 +60855084015,225195,0.0563991323210412 +60855084015,231412,0.334056399132321 +60855084016,215183,0.38961038961039 +60855084016,215184,0.150974025974026 +60855084016,215690,0.0227272727272727 +60855084016,225194,0.0876623376623377 +60855084016,231410,0.349025974025974 +60855084031,215182,0.169064748201439 +60855084031,218280,0.287769784172662 +60855084031,225966,0.205035971223022 +60855084031,228454,0.165467625899281 +60855084031,228455,0.172661870503597 +60855084032,210783,0.106965174129353 +60855084032,215181,0.156716417910448 +60855084032,216327,0.353233830845771 +60855084032,218276,0.119402985074627 +60855084032,219970,0.082089552238806 +60855084032,228453,0.181592039800995 +60855084033,214604,0.0893854748603352 +60855084033,223944,0.61731843575419 +60855084033,227443,0.293296089385475 +60855084041,210964,0.0421487603305785 +60855084041,210966,0.0553719008264463 +60855084041,212327,0.0272727272727273 +60855084041,215179,0.0363636363636364 +60855084041,215180,0.371074380165289 +60855084041,217155,0.0619834710743802 +60855084041,219968,0.0190082644628099 +60855084041,227229,0.10495867768595 +60855084041,227794,0.0471074380165289 +60855084041,228451,0.234710743801653 +60855084042,214850,0.382838283828383 +60855084042,215177,0.0544554455445545 +60855084042,215178,0.0775577557755776 +60855084042,217152,0.0742574257425743 +60855084042,217153,0.0495049504950495 +60855084042,217733,0 +60855084042,225963,0.0643564356435644 +60855084042,227793,0.110561056105611 +60855084042,231683,0.186468646864686 +60855084043,214599,0.08 +60855084043,214600,0.0610526315789474 +60855084043,214602,0.0652631578947368 +60855084043,215176,0.0736842105263158 +60855084043,217151,0.0568421052631579 +60855084043,217746,0.210526315789474 +60855084043,225190,0.071578947368421 +60855084043,225962,0.0968421052631579 +60855084043,227792,0.105263157894737 +60855084043,231992,0.178947368421053 +60855085031,215295,0.756028368794326 +60855085031,216414,0 +60855085031,222595,0 +60855085031,222599,0.0865248226950355 +60855085031,230643,0.0453900709219858 +60855085031,230644,0.0453900709219858 +60855085031,231148,0.0666666666666667 +60855085032,212324,0.0843170320404722 +60855085032,212325,0.0640809443507589 +60855085032,213722,0.0573355817875211 +60855085032,220947,0.0337268128161889 +60855085032,223530,0.0623946037099494 +60855085032,228222,0.57504215851602 +60855085032,228410,0.0168634064080944 +60855085032,231997,0.106239460370995 +60855085033,213157,0 +60855085033,214849,0.0370879120879121 +60855085033,217725,0.0576923076923077 +60855085033,219836,0.173076923076923 +60855085033,221295,0.128434065934066 +60855085033,228174,0.10989010989011 +60855085033,228224,0.0693681318681319 +60855085033,231146,0.0556318681318681 +60855085033,231897,0.00892857142857143 +60855085033,231983,0.239697802197802 +60855085033,232035,0.120192307692308 +60855085041,212322,0 +60855085041,213219,0.40127970749543 +60855085041,216415,0.59872029250457 +60855085042,210962,0.336260978670013 +60855085042,223399,0.440401505646173 +60855085042,227060,0.223337515683814 +60855085043,212321,0.648578811369509 +60855085043,214847,0.351421188630491 +60855085044,213447,0.0408878504672897 +60855085044,215145,0.408878504672897 +60855085044,217747,0.0642523364485981 +60855085044,218505,0.066588785046729 +60855085044,222832,0.0373831775700935 +60855085044,223591,0.0735981308411215 +60855085044,230353,0.220794392523364 +60855085044,231990,0.0876168224299065 +60855085051,210128,0.206572769953052 +60855085051,214484,0.194835680751174 +60855085051,223396,0.0751173708920188 +60855085051,223397,0.131455399061033 +60855085051,223588,0.107981220657277 +60855085051,223589,0.0633802816901408 +60855085051,223590,0.157276995305164 +60855085051,227057,0.0633802816901408 +60855085052,214845,0.535019455252918 +60855085052,214846,0.151750972762646 +60855085052,217511,0.132295719844358 +60855085052,227090,0.0525291828793774 +60855085052,229776,0.0622568093385214 +60855085052,231142,0.066147859922179 +60855085053,213718,0.036231884057971 +60855085053,223524,0.0962732919254658 +60855085053,223526,0.530020703933747 +60855085053,224031,0.268115942028986 +60855085053,228772,0.0693581780538302 +60855085071,218037,0.445414847161572 +60855085071,223523,0.537117903930131 +60855085071,228770,0.0174672489082969 +60855085072,210124,0.502255639097744 +60855085072,214125,0.16390977443609 +60855085072,214126,0.22406015037594 +60855085072,214479,0.109774436090226 +60855085081,210126,0.343065693430657 +60855085081,210127,0.197080291970803 +60855085081,214842,0.145985401459854 +60855085081,228771,0.153284671532847 +60855085081,230689,0.160583941605839 +60855085082,212320,0.293181818181818 +60855085082,217744,0.320454545454545 +60855085082,225189,0.386363636363636 +60855085083,214301,1 +60855085084,214840,0.342592592592593 +60855085084,214841,0.277777777777778 +60855085084,228223,0.37962962962963 +60855086011,214595,0.0418250950570342 +60855086011,214596,0.243346007604563 +60855086011,214597,0.125475285171103 +60855086011,214598,0.174904942965779 +60855086011,215175,0 +60855086011,217150,0.00760456273764259 +60855086011,217997,0.0988593155893536 +60855086011,219967,0.11787072243346 +60855086011,220493,0 +60855086011,222343,0.0342205323193916 +60855086011,225961,0.155893536121673 +60855086012,210886,0.231034482758621 +60855086012,213556,0.0706896551724138 +60855086012,214123,0.187931034482759 +60855086012,215696,0.05 +60855086012,216219,0.11551724137931 +60855086012,222444,0.0637931034482759 +60855086012,226010,0.168965517241379 +60855086012,226629,0.112068965517241 +60855086013,210884,0.277992277992278 +60855086013,213553,0.17953667953668 +60855086013,216216,0.171814671814672 +60855086013,216217,0.0965250965250965 +60855086013,216218,0.0463320463320463 +60855086013,218660,0.121621621621622 +60855086013,218661,0.106177606177606 +60855086021,210880,0.037109375 +60855086021,210881,0.0537109375 +60855086021,210882,0.0185546875 +60855086021,214058,0.380859375 +60855086021,214476,0 +60855086021,215688,0 +60855086021,216214,0.1689453125 +60855086021,217268,0.1015625 +60855086021,218656,0.0078125 +60855086021,221618,0 +60855086021,222440,0.0654296875 +60855086021,222442,0.001953125 +60855086021,223584,0.0986328125 +60855086021,230076,0.0654296875 +60855086021,231299,0 +60855086022,210123,0.0403587443946188 +60855086022,212316,0.0964125560538117 +60855086022,212317,0.0717488789237668 +60855086022,214474,0.0650224215246637 +60855086022,214475,0.152466367713004 +60855086022,216404,0.0650224215246637 +60855086022,220393,0.07847533632287 +60855086022,222557,0.0605381165919283 +60855086022,222558,0.047085201793722 +60855086022,223392,0.0717488789237668 +60855086022,230641,0.134529147982063 +60855086022,232202,0.116591928251121 +60855086023,210767,0.0559440559440559 +60855086023,212877,0.181818181818182 +60855086023,216408,0.534965034965035 +60855086023,223801,0.0944055944055944 +60855086023,230322,0.115384615384615 +60855086023,231310,0.0174825174825175 +60855087031,210879,0.182844243792325 +60855087031,212876,0.124153498871332 +60855087031,218655,0.575620767494357 +60855087031,220392,0.117381489841986 +60855087032,210878,0.117910447761194 +60855087032,217734,0 +60855087032,226628,0.882089552238806 +60855087033,210766,0.156962025316456 +60855087033,212619,0.124050632911392 +60855087033,222304,0.0683544303797468 +60855087033,222305,0.20253164556962 +60855087033,230315,0.111392405063291 +60855087033,230317,0.126582278481013 +60855087033,230318,0.0784810126582278 +60855087033,230319,0.131645569620253 +60855087034,210761,0.390625 +60855087034,210763,0.424107142857143 +60855087034,210764,0.0803571428571428 +60855087034,210765,0.104910714285714 +60855087034,210877,0 +60855087035,210760,0.386692381870781 +60855087035,216213,0.259402121504339 +60855087035,217735,0.203471552555448 +60855087035,222337,0 +60855087035,230314,0.150433944069431 +60855087041,210876,0.354796320630749 +60855087041,215676,0.131406044678055 +60855087041,215678,0.273324572930355 +60855087041,226626,0.0827858081471748 +60855087041,230075,0.0407358738501971 +60855087041,231662,0.116951379763469 +60855087042,210047,0 +60855087042,210759,0.0387984981226533 +60855087042,211609,0.0563204005006258 +60855087042,211638,0.0851063829787234 +60855087042,211813,0 +60855087042,212068,0 +60855087042,212071,0 +60855087042,212091,0 +60855087042,212096,0 +60855087042,212098,0 +60855087042,212233,0 +60855087042,212380,0 +60855087042,212382,0 +60855087042,212885,0 +60855087042,213496,0.239048811013767 +60855087042,214942,0 +60855087042,215030,0 +60855087042,215406,0.103879849812265 +60855087042,215677,0.0387984981226533 +60855087042,215680,0.0225281602002503 +60855087042,215686,0 +60855087042,216172,0.106382978723404 +60855087042,216210,0.016270337922403 +60855087042,216211,0 +60855087042,216367,0 +60855087042,217994,0 +60855087042,218647,0 +60855087042,218652,0.0588235294117647 +60855087042,219728,0.0838548185231539 +60855087042,220147,0.0425531914893617 +60855087042,220390,0.0400500625782228 +60855087042,222329,0 +60855087042,223114,0 +60855087042,225491,0 +60855087042,225999,0.0400500625782228 +60855087042,226356,0 +60855087042,226624,0.0275344180225282 +60855087042,230073,0 +60855087042,230996,0 +60855087043,210043,0 +60855087043,210044,0 +60855087043,210045,0.00151285930408472 +60855087043,210046,0 +60855087043,210048,0.995461422087746 +60855087043,212374,0.00302571860816944 +60855087043,212376,0 +60855087043,212643,0 +60855087043,216209,0 +60855087043,216212,0 +60855087043,218653,0 +60855087043,220421,0 +60855087043,222438,0 +60855087043,227722,0 +60855087043,228195,0 +60855087043,231461,0 +60855088001,214943,0.202947845804989 +60855088001,214970,0.1281179138322 +60855088001,215239,0.129251700680272 +60855088001,219554,0 +60855088001,223742,0.410430839002268 +60855088001,226222,0.102040816326531 +60855088001,226354,0.0272108843537415 +60855088002,210758,0.0721247563352826 +60855088002,212231,0.269005847953216 +60855088002,215029,0.1364522417154 +60855088002,218667,0.0721247563352826 +60855088002,218668,0.286549707602339 +60855088002,220387,0.064327485380117 +60855088002,226220,0.0994152046783626 +60855089001,211273,0.460348162475822 +60855089001,212064,0.0145067698259188 +60855089001,212227,0.235976789168279 +60855089001,222300,0.189555125725339 +60855089001,222646,0.0996131528046422 +60855089002,210757,0.531506849315069 +60855089002,212866,0.172602739726027 +60855089002,220145,0.197260273972603 +60855089002,223795,0.0986301369863014 +60855089003,210755,1 +60855090001,211607,0.800632911392405 +60855090001,212224,0.199367088607595 +60855090002,215026,0.0858895705521472 +60855090002,215027,0.128834355828221 +60855090002,215028,0.668711656441718 +60855090002,225951,0.116564417177914 +60855090003,211274,0.454221165279429 +60855090003,212758,0.399524375743163 +60855090003,215023,0.146254458977408 +60855090004,212757,0.0523138832997988 +60855090004,213976,0.142857142857143 +60855090004,215020,0.297786720321932 +60855090004,215021,0.0482897384305835 +60855090004,218651,0.122736418511066 +60855090004,219604,0.0503018108651912 +60855090004,222296,0.0503018108651912 +60855090004,224899,0.0744466800804829 +60855090004,225949,0.0543259557344064 +60855090004,232361,0.0523138832997988 +60855090004,232362,0.0543259557344064 +60855091021,210685,0.336293007769145 +60855091021,211606,0 +60855091021,211627,0 +60855091021,211629,0.0244173140954495 +60855091021,211632,0.468368479467259 +60855091021,212061,0 +60855091021,213975,0.00332963374028857 +60855091021,215238,0 +60855091021,216718,0 +60855091021,217434,0.048834628190899 +60855091021,219023,0 +60855091021,219159,0 +60855091021,220429,0.00110987791342952 +60855091021,222029,0 +60855091021,223150,0 +60855091021,223152,0.00443951165371809 +60855091021,225876,0.113207547169811 +60855091021,228898,0 +60855091022,210683,0.183658170914543 +60855091022,214281,0.0584707646176912 +60855091022,214928,0.118440779610195 +60855091022,215235,0.36431784107946 +60855091022,219550,0.06071964017991 +60855091022,219551,0.0914542728635682 +60855091022,220434,0 +60855091022,220770,0.0742128935532234 +60855091022,223149,0.04047976011994 +60855091022,228970,0.00824587706146927 +60855091051,210523,0.177570093457944 +60855091051,210680,0.474299065420561 +60855091051,211327,0.348130841121495 +60855091052,212408,0.593220338983051 +60855091052,213974,0.0130378096479791 +60855091052,214941,0.0677966101694915 +60855091052,222957,0.325945241199479 +60855091053,213642,0.206896551724138 +60855091053,214059,0.366771159874608 +60855091053,216402,0 +60855091053,217267,0.125391849529781 +60855091053,229043,0.300940438871473 +60855091054,211938,1 +60855091061,213972,0.15025041736227 +60855091061,213973,0.537562604340568 +60855091061,220302,0.11686143572621 +60855091061,222295,0.0584307178631052 +60855091061,229015,0.136894824707846 +60855091062,210754,0.243243243243243 +60855091062,211937,0.203931203931204 +60855091062,213971,0.117936117936118 +60855091062,217430,0.206388206388206 +60855091062,224897,0.228501228501229 +60855091063,211936,0.307692307692308 +60855091063,217269,0.135989010989011 +60855091063,219739,0.418956043956044 +60855091063,229014,0.137362637362637 +60855091071,211934,1 +60855091072,211933,0.161371237458194 +60855091072,213969,0.250836120401338 +60855091072,215681,0.163879598662207 +60855091072,219734,0.0434782608695652 +60855091072,222126,0.0760869565217391 +60855091072,222127,0.304347826086957 +60855091081,211932,0.845995893223819 +60855091081,216699,0.154004106776181 +60855091081,218398,0 +60855091082,210676,0.668918918918919 +60855091082,210677,0.0923423423423423 +60855091082,230514,0.238738738738739 +60855091083,210678,0.399477806788512 +60855091083,211930,0.600522193211488 +60855091084,210438,0.568773234200743 +60855091084,210813,0.431226765799257 +60855091084,213491,0 +60855091084,214425,0 +60855091084,214426,0 +60855091084,219031,0 +60855091084,220401,0 +60855091084,229123,0 +60855091091,210673,0.000801282051282051 +60855091091,210674,0.301282051282051 +60855091091,210675,0.109775641025641 +60855091091,213497,0.588141025641026 +60855091091,214625,0 +60855091092,210682,0 +60855091092,211318,1 +60855091092,211924,0 +60855091092,211925,0 +60855091092,216006,0 +60855091092,216934,0 +60855092011,210528,0.186147186147186 +60855092011,219020,0.813852813852814 +60855092012,210440,0.452743902439024 +60855092012,218905,0.403963414634146 +60855092012,224695,0.143292682926829 +60855092013,213365,1 +60855092014,210640,0.219343696027634 +60855092014,210824,0.245250431778929 +60855092014,212579,0.0846286701208981 +60855092014,217573,0.321243523316062 +60855092014,218427,0.129533678756477 +60855092021,210442,0.558168316831683 +60855092021,210814,0.301980198019802 +60855092021,226019,0.139851485148515 +60855092022,210296,0.667721518987342 +60855092022,217655,0.0443037974683544 +60855092022,217954,0.287974683544304 +60855092023,210638,0.600472813238771 +60855092023,224105,0.399527186761229 +60855092024,212821,0.309433962264151 +60855092024,213364,0.313207547169811 +60855092024,217936,0.377358490566038 +60855093021,210295,0.18976897689769 +60855093021,210835,0.0231023102310231 +60855093021,212818,0.014026402640264 +60855093021,212819,0.0899339933993399 +60855093021,212820,0.0231023102310231 +60855093021,217651,0.0412541254125413 +60855093021,219364,0.0866336633663366 +60855093021,224194,0.151815181518152 +60855093021,224333,0.0280528052805281 +60855093021,224338,0.0676567656765677 +60855093021,225307,0.0981848184818482 +60855093021,225309,0 +60855093021,225310,0.0528052805280528 +60855093021,225311,0.0321782178217822 +60855093021,225933,0.0272277227722772 +60855093021,227826,0.018976897689769 +60855093021,231797,0.0552805280528053 +60855093031,217934,1 +60855093032,211805,0.30952380952381 +60855093032,217650,0.221428571428571 +60855093032,220213,0.152380952380952 +60855093032,225305,0.276190476190476 +60855093032,228088,0.0404761904761905 +60855093033,214731,1 +60855093034,217648,1 +60855093041,210290,0.0022075055187638 +60855093041,210292,0 +60855093041,210294,0.139072847682119 +60855093041,210634,0.0838852097130243 +60855093041,210636,0 +60855093041,211313,0.565121412803532 +60855093041,212544,0.0242825607064018 +60855093041,213913,0.183222958057395 +60855093041,219603,0.0022075055187638 +60855093041,224248,0 +60855093041,225932,0 +60855093042,210633,0.388961892247043 +60855093042,217566,0.148488830486202 +60855093042,219363,0.181340341655716 +60855093042,220676,0.0775295663600526 +60855093042,225928,0.0735873850197109 +60855093042,225930,0.130091984231275 +60855094011,210632,0.994936708860759 +60855094011,227391,0.00506329113924051 +60855094012,212815,0.378091872791519 +60855094012,217646,0.31095406360424 +60855094012,217647,0.127208480565371 +60855094012,217933,0.183745583038869 +60855094013,210822,0.444234404536862 +60855094013,214729,0.370510396975425 +60855094013,221653,0.185255198487713 +60855094031,211016,1 +60855094032,225606,0.887719298245614 +60855094032,228076,0.112280701754386 +60855094041,211179,0.190058479532164 +60855094041,211180,0.419590643274854 +60855094041,216962,0.390350877192982 +60855094042,212541,1 +60855094043,210361,0.763061968408262 +60855094043,214917,0.0376670716889429 +60855094043,230348,0.199270959902795 +60855094044,210823,0 +60855094044,211178,0.323268206039076 +60855094044,217030,0 +60855094044,218404,0.124333925399645 +60855094044,219014,0 +60855094044,219016,0 +60855094044,219827,0.00355239786856128 +60855094044,222758,0.548845470692717 +60855094044,224169,0 +60855094044,228072,0 +60855094044,230334,0 +60855094044,230335,0 +60855095001,212081,0.237515225334957 +60855095001,217657,0.459196102314251 +60855095001,219019,0.121802679658953 +60855095001,227967,0.181485992691839 +60855095002,211625,0.162729658792651 +60855095002,214971,0.0984251968503937 +60855095002,215997,0.279527559055118 +60855095002,216620,0.0984251968503937 +60855095002,221483,0.124671916010499 +60855095002,222487,0.139107611548556 +60855095002,232142,0.0971128608923885 +60855095003,210358,0.137048192771084 +60855095003,210359,0.233433734939759 +60855095003,212062,0.233433734939759 +60855095003,216274,0.0692771084337349 +60855095003,216960,0.0948795180722892 +60855095003,222757,0.0602409638554217 +60855095003,225601,0.102409638554217 +60855095003,228069,0.0692771084337349 +60855096001,210354,0.0895140664961637 +60855096001,210355,0.130434782608696 +60855096001,210356,0.0792838874680307 +60855096001,210357,0.0716112531969309 +60855096001,215913,0.040920716112532 +60855096001,216270,0.154731457800512 +60855096001,216271,0 +60855096001,216272,0.118925831202046 +60855096001,216278,0.0051150895140665 +60855096001,216618,0.182864450127877 +60855096001,221937,0.0805626598465473 +60855096001,224716,0 +60855096001,225294,0 +60855096001,228060,0.0460358056265985 +60855096001,228064,0 +60855096002,210353,0.744510978043912 +60855096002,212640,0.139720558882236 +60855096002,212641,0.115768463073852 +60855097001,216771,0.125284738041002 +60855097001,217426,0.334851936218679 +60855097001,219349,0.30751708428246 +60855097001,224435,0.0523917995444191 +60855097001,227289,0.17995444191344 +60855097002,213503,0.224032586558045 +60855097002,214224,0.0896130346232179 +60855097002,214627,0.686354378818737 +60855097003,214222,0.0344168260038241 +60855097003,214223,0.195028680688337 +60855097003,214622,0.24282982791587 +60855097003,214623,0.183556405353728 +60855097003,219350,0.00956022944550669 +60855097003,222581,0 +60855097003,224437,0 +60855097003,224682,0.189292543021033 +60855097003,224683,0.145315487571702 +60855097003,227705,0 +60855098011,211615,0.149677419354839 +60855098011,213861,0.12 +60855098011,214220,0.276129032258065 +60855098011,214920,0.259354838709677 +60855098011,214921,0.194838709677419 +60855098011,216769,0 +60855098012,214221,0.0641711229946524 +60855098012,214621,0.0614973262032086 +60855098012,216770,0.211229946524064 +60855098012,217425,0.131016042780749 +60855098012,219347,0.532085561497326 +60855098013,212372,0.168316831683168 +60855098013,212887,0.122772277227723 +60855098013,213858,0.116831683168317 +60855098013,213860,0.168316831683168 +60855098013,222736,0.328712871287129 +60855098013,226734,0.0950495049504951 +60855098014,210289,0.361940298507463 +60855098014,213859,0.389925373134328 +60855098014,215691,0.248134328358209 +60855098021,212565,0.175697865353038 +60855098021,213062,0.0985221674876847 +60855098021,213322,0.252873563218391 +60855098021,214217,0.284072249589491 +60855098021,214218,0.0853858784893268 +60855098021,220417,0.103448275862069 +60855098022,212263,0.424430641821946 +60855098022,213058,0.0393374741200828 +60855098022,213061,0.082815734989648 +60855098022,215725,0.0993788819875776 +60855098022,217029,0 +60855098022,223903,0.05175983436853 +60855098022,223904,0.082815734989648 +60855098022,224958,0.219461697722567 +60855099011,212262,0.216019417475728 +60855099011,212562,0.274271844660194 +60855099011,213318,0.463592233009709 +60855099011,213504,0.0461165048543689 +60855099012,212258,0.520958083832335 +60855099012,212259,0.248502994011976 +60855099012,214415,0.230538922155689 +60855099021,211714,0.169354838709677 +60855099021,212256,0.0695564516129032 +60855099021,214413,0.733870967741935 +60855099021,215693,0.0272177419354839 +60855099022,211712,0.216216216216216 +60855099022,211713,0.0614250614250614 +60855099022,213316,0.0761670761670762 +60855099022,214412,0.152334152334152 +60855099022,217423,0.253071253071253 +60855099022,223651,0.144963144963145 +60855099022,231659,0.0958230958230958 +60855099023,211710,0.588366890380313 +60855099023,212756,0.411633109619687 +60855100011,214408,0.205882352941176 +60855100011,215019,0.371323529411765 +60855100011,222638,0 +60855100011,223649,0.117647058823529 +60855100011,228593,0.128676470588235 +60855100011,228886,0.0588235294117647 +60855100011,229850,0.117647058823529 +60855100012,210136,0.0605536332179931 +60855100012,213158,0.0778546712802768 +60855100012,215017,0.0432525951557093 +60855100012,220433,0.069204152249135 +60855100012,221469,0.385813148788927 +60855100012,228884,0.126297577854671 +60855100012,229849,0.107266435986159 +60855100012,231750,0.129757785467128 +60855100013,211706,0.0609137055837563 +60855100013,213721,0.469543147208122 +60855100013,218032,0 +60855100013,222922,0.0609137055837563 +60855100013,223647,0.124365482233503 +60855100013,228048,0.0939086294416244 +60855100013,231966,0.190355329949239 +60855100014,212755,0.103448275862069 +60855100014,215016,0.0268199233716475 +60855100014,222467,0.413793103448276 +60855100014,225948,0.0459770114942529 +60855100014,229040,0.149425287356322 +60855100014,229041,0.260536398467433 +60855100015,210066,0.153125 +60855100015,210669,0.1125 +60855100015,212754,0.18125 +60855100015,222212,0.2375 +60855100015,222719,0.21875 +60855100015,227213,0.096875 +60855100016,214573,0.655038759689922 +60855100016,220658,0.344961240310077 +60855100021,210668,0.17907444668008 +60855100021,211904,0.0503018108651912 +60855100021,212050,0.0503018108651912 +60855100021,220293,0.0523138832997988 +60855100021,220656,0.142857142857143 +60855100021,222210,0.140845070422535 +60855100021,222718,0.0422535211267606 +60855100021,226166,0.3420523138833 +60855100022,210666,0.0631578947368421 +60855100022,210667,0.202631578947368 +60855100022,220655,0.068421052631579 +60855100022,222209,0.273684210526316 +60855100022,226717,0.160526315789474 +60855100022,227186,0.160526315789474 +60855100022,227187,0.0710526315789474 +60855100023,210062,0.0232558139534884 +60855100023,210064,0.0671834625322997 +60855100023,210665,0.118863049095607 +60855100023,212799,0.245478036175711 +60855100023,213813,0.160206718346253 +60855100023,219343,0.124031007751938 +60855100023,220654,0.0775193798449612 +60855100023,222208,0.108527131782946 +60855100023,225584,0.0749354005167959 +60855101001,211898,0.228200371057514 +60855101001,211900,0.0853432282003711 +60855101001,211901,0.0964749536178108 +60855101001,221166,0.38961038961039 +60855101001,222019,0.200371057513915 +60855101002,211903,1 +60855101003,220288,0.0962732919254658 +60855101003,222016,0.0807453416149068 +60855101003,226147,0.127329192546584 +60855101003,226164,0.695652173913043 +60855102001,212798,0.169747899159664 +60855102001,220652,0.0722689075630252 +60855102001,221163,0.0571428571428571 +60855102001,224847,0.0504201680672269 +60855102001,225581,0.115966386554622 +60855102001,226709,0.146218487394958 +60855102001,226710,0.134453781512605 +60855102001,226711,0.104201680672269 +60855102001,226712,0.149579831932773 +60855102002,210661,0.203438395415473 +60855102002,212796,0.117478510028653 +60855102002,219511,0.0515759312320917 +60855102002,219512,0.0687679083094556 +60855102002,229033,0.467048710601719 +60855102002,229034,0.0916905444126074 +60855102003,210659,0.126811594202899 +60855102003,213807,0.23731884057971 +60855102003,216652,0.0742753623188406 +60855102003,219758,0.269927536231884 +60855102003,221252,0.117753623188406 +60855102003,222507,0.0452898550724638 +60855102003,222508,0.0797101449275362 +60855102003,229707,0.0344202898550725 +60855102003,231061,0.0144927536231884 +60855103001,213805,0.332710280373832 +60855103001,215536,0.158878504672897 +60855103001,215537,0.0504672897196262 +60855103001,216814,0.192523364485981 +60855103001,219417,0.0485981308411215 +60855103001,225390,0.0691588785046729 +60855103001,230476,0.147663551401869 +60855103002,211895,0.750684931506849 +60855103002,215535,0 +60855103002,216116,0.180821917808219 +60855103002,216118,0.0684931506849315 +60855103002,219092,0 +60855103002,222503,0 +60855103002,222849,0 +60855103002,231209,0 +60855103003,211894,0.135770234986945 +60855103003,215531,0.0757180156657963 +60855103003,215941,0.0704960835509138 +60855103003,222502,0.172323759791123 +60855103003,226143,0.0234986945169713 +60855103003,231052,0.347258485639687 +60855103003,231054,0.174934725848564 +60855104001,211893,0.287215411558669 +60855104001,215937,0.00525394045534151 +60855104001,215938,0.0402802101576182 +60855104001,215940,0.0612959719789842 +60855104001,216108,0.0437828371278459 +60855104001,216109,0.126094570928196 +60855104001,219085,0.0875656742556918 +60855104001,219087,0.0735551663747811 +60855104001,219798,0.189141856392294 +60855104001,220988,0.0858143607705779 +60855104002,213672,0.191836734693878 +60855104002,213673,0.208163265306122 +60855104002,222241,0.106122448979592 +60855104002,229648,0.155102040816327 +60855104002,229649,0.338775510204082 +60855104003,211892,0.210526315789474 +60855104003,213442,0.128654970760234 +60855104003,213443,0.140350877192982 +60855104003,213670,0.152046783625731 +60855104003,213671,0.0760233918128655 +60855104003,214082,0.111111111111111 +60855104003,225384,0.105263157894737 +60855104003,225385,0.0760233918128655 +60855105001,210439,0.456937799043062 +60855105001,213441,0.162679425837321 +60855105001,214892,0.160287081339713 +60855105001,217496,0.220095693779904 +60855105002,213439,0.254758418740849 +60855105002,213801,0.30307467057101 +60855105002,221543,0.185944363103953 +60855105002,225381,0.256222547584187 +60855105003,211616,0.247753530166881 +60855105003,212058,0.13992297817715 +60855105003,213666,0.118100128369705 +60855105003,214284,0.0564826700898588 +60855105003,216996,0.030808729139923 +60855105003,216997,0.125802310654686 +60855105003,217262,0.086007702182285 +60855105003,221544,0.0667522464698331 +60855105003,222052,0.0962772785622593 +60855105003,225382,0.0320924261874198 +60855106001,213015,0.262798634812287 +60855106001,219507,0.488054607508532 +60855106001,225167,0.249146757679181 +60855106002,211106,0.0328867235079172 +60855106002,211107,0.0292326431181486 +60855106002,213017,0.0572472594397077 +60855106002,213018,0.110840438489647 +60855106002,219943,0.342265529841657 +60855106002,224841,0.0499390986601705 +60855106002,224842,0.133982947624848 +60855106002,227179,0.0304506699147381 +60855106002,227180,0.0535931790499391 +60855106002,227181,0.0937880633373934 +60855106002,229317,0.0657734470158343 +60855106003,213438,0.245501285347044 +60855106003,213799,0.0398457583547558 +60855106003,216994,0.287917737789203 +60855106003,219508,0 +60855106003,223719,0.0372750642673522 +60855106003,226139,0.0822622107969152 +60855106003,229640,0.0976863753213368 +60855106003,229641,0.209511568123393 +60855106004,210434,0.221074380165289 +60855106004,211108,0.679752066115702 +60855106004,221540,0.0392561983471074 +60855106004,226141,0.0599173553719008 +60855107001,212538,0.293286219081272 +60855107001,213232,0.261484098939929 +60855107001,215989,0.0636042402826855 +60855107001,217881,0.113074204946996 +60855107001,218385,0 +60855107001,218629,0.0742049469964664 +60855107001,221679,0 +60855107001,222426,0.00706713780918728 +60855107001,231369,0.137809187279152 +60855107001,231883,0.049469964664311 +60855107002,210745,0.189755529685681 +60855107002,213528,0.0454016298020955 +60855107002,215987,0.530849825378347 +60855107002,222423,0.0605355064027939 +60855107002,222425,0.110593713620489 +60855107002,227160,0.0628637951105937 +60855107003,210738,0.0327669902912621 +60855107003,216173,0.00970873786407767 +60855107003,218782,0.536407766990291 +60855107003,218785,0.199029126213592 +60855107003,222422,0.0594660194174757 +60855107003,226287,0.0279126213592233 +60855107003,226288,0.0351941747572816 +60855107003,226289,0.0995145631067961 +60855108011,211414,0.462962962962963 +60855108011,211415,0 +60855108011,213229,0.294444444444444 +60855108011,214304,0.242592592592593 +60855108012,210629,0.140845070422535 +60855108012,210630,0.209859154929577 +60855108012,210631,0.126760563380282 +60855108012,210743,0.197183098591549 +60855108012,213228,0.202816901408451 +60855108012,218162,0.0366197183098592 +60855108012,225147,0.0507042253521127 +60855108012,226285,0.0352112676056338 +60855108013,210626,0.401146131805158 +60855108013,210627,0.0716332378223496 +60855108013,210628,0.0787965616045845 +60855108013,213524,0.227793696275072 +60855108013,225145,0.220630372492837 +60855108021,212726,0.125 +60855108021,212727,0.169871794871795 +60855108021,213225,0.528846153846154 +60855108021,228297,0.176282051282051 +60855108022,212725,0.441919191919192 +60855108022,218895,0.29040404040404 +60855108022,225143,0.267676767676768 +60855108031,210741,0.0953307392996109 +60855108031,210742,0.0719844357976654 +60855108031,211246,0.0817120622568093 +60855108031,214826,0.0603112840466926 +60855108031,214828,0.0817120622568093 +60855108031,216126,0.132295719844358 +60855108031,219125,0 +60855108031,221686,0 +60855108031,223566,0.243190661478599 +60855108031,223567,0.233463035019455 +60855108032,210739,0.239845261121857 +60855108032,210740,0.197292069632495 +60855108032,211245,0.477756286266925 +60855108032,223387,0.0851063829787234 +60855109001,210736,0.102643856920684 +60855109001,212420,0.132192846034215 +60855109001,223564,0.0948678071539658 +60855109001,224739,0.110419906687403 +60855109001,226271,0.143079315707621 +60855109001,228295,0.105754276827372 +60855109001,229999,0.203732503888025 +60855109001,230007,0.107309486780715 +60855109002,210735,0.0543881334981459 +60855109002,211240,0.0852904820766378 +60855109002,211241,0.0531520395550062 +60855109002,214147,0.111248454882571 +60855109002,218878,0.168108776266996 +60855109002,223385,0.0593325092707046 +60855109002,223386,0.207663782447466 +60855109002,228767,0.0667490729295426 +60855109002,231554,0.19406674907293 +60855109003,210733,0.182758620689655 +60855109003,210734,0.101724137931034 +60855109003,211238,0.187931034482759 +60855109003,211239,0.177586206896552 +60855109003,218875,0.198275862068966 +60855109003,223326,0.151724137931034 +60855110001,210732,0.143790849673203 +60855110001,227339,0.259803921568627 +60855110001,227501,0.59640522875817 +60855110002,210421,0.322851153039832 +60855110002,210422,0.19496855345912 +60855110002,210731,0.308176100628931 +60855110002,216203,0.174004192872117 +60855110003,210419,0.572490706319703 +60855110003,229994,0.427509293680297 +60855110004,210418,0.167901234567901 +60855110004,218035,0.0666666666666667 +60855110004,218238,0.22716049382716 +60855110004,218872,0.377777777777778 +60855110004,218873,0.160493827160494 +60855110005,212618,0.236593059936909 +60855110005,214132,0.212933753943218 +60855110005,215294,0.427444794952681 +60855110005,223076,0.123028391167192 +60855111001,211087,0.347169811320755 +60855111001,212479,0.277358490566038 +60855111001,226975,0.190566037735849 +60855111001,227499,0.184905660377359 +60855111002,216199,0.149402390438247 +60855111002,217129,0.352589641434263 +60855111002,218254,0.197211155378486 +60855111002,226974,0.300796812749004 +60855111003,211084,0.365853658536585 +60855111003,221362,0.297117516629712 +60855111003,224136,0.337028824833703 +60855111004,216197,0.372881355932203 +60855111004,216918,0.150121065375303 +60855111004,224033,0.113801452784504 +60855111004,224573,0.162227602905569 +60855111004,229996,0.200968523002421 +60855112001,211083,0.0756756756756757 +60855112001,212695,0.230630630630631 +60855112001,214564,0.0756756756756757 +60855112001,215849,0.0828828828828829 +60855112001,216194,0.0846846846846847 +60855112001,216195,0.214414414414414 +60855112001,217126,0.100900900900901 +60855112001,217127,0.0558558558558559 +60855112001,219719,0.0792792792792793 +60855112002,212693,0.191094619666048 +60855112002,214130,0.230055658627087 +60855112002,214560,0.0797773654916512 +60855112002,214562,0.105751391465677 +60855112002,214563,0.153988868274583 +60855112002,219718,0.100185528756957 +60855112002,224818,0.139146567717996 +60855112003,215843,0.404833836858006 +60855112003,215845,0.223564954682779 +60855112003,216539,0.205438066465257 +60855112003,219918,0.166163141993958 +60855112004,212691,0.127840909090909 +60855112004,214557,0.394886363636364 +60855112004,214558,0.40625 +60855112004,214559,0.0710227272727273 +60855113011,210234,0.199526813880126 +60855113011,212201,0.055205047318612 +60855113011,212205,0.00709779179810725 +60855113011,212987,0.611198738170347 +60855113011,213142,0.126971608832808 +60855113012,210230,0.217741935483871 +60855113012,210231,0.122983870967742 +60855113012,210232,0.145161290322581 +60855113012,212200,0.0362903225806452 +60855113012,212202,0.122983870967742 +60855113012,214162,0.0625 +60855113012,218105,0.125 +60855113012,218106,0.167338709677419 +60855113012,219916,0 +60855113021,211872,0.22716049382716 +60855113021,215006,0.216049382716049 +60855113021,215009,0.474074074074074 +60855113021,215010,0.0827160493827161 +60855113022,214167,0.0631578947368421 +60855113022,215848,0.208421052631579 +60855113022,218611,0.147368421052632 +60855113022,218612,0.581052631578947 +60855113023,211081,0.158806544754572 +60855113023,211875,0.102983638113571 +60855113023,215007,0.21655437921078 +60855113023,219111,0.0904716073147257 +60855113023,224812,0.431183830606352 +60855114001,213361,0.129277566539924 +60855114001,213362,0.212927756653992 +60855114001,214161,0.0228136882129278 +60855114001,221085,0.144486692015209 +60855114001,224138,0.0760456273764259 +60855114001,226490,0.144486692015209 +60855114001,230869,0.121673003802281 +60855114001,231182,0.14828897338403 +60855114002,210227,0.259259259259259 +60855114002,212196,0.234567901234568 +60855114002,212197,0.0567901234567901 +60855114002,228873,0.308641975308642 +60855114002,230389,0.140740740740741 +60855114003,211965,0.287769784172662 +60855114003,220332,0.223021582733813 +60855114003,220333,0.158273381294964 +60855114003,228728,0.330935251798561 +60855114004,211964,0.147196261682243 +60855114004,219699,0.371495327102804 +60855114004,220324,0.105140186915888 +60855114004,220326,0.11214953271028 +60855114004,220328,0.100467289719626 +60855114004,220372,0.0490654205607477 +60855114004,225020,0.0560747663551402 +60855114004,225261,0.058411214953271 +60855115001,211962,0.12568306010929 +60855115001,218413,0.174863387978142 +60855115001,223108,0.213114754098361 +60855115001,224245,0.136612021857924 +60855115001,225257,0.103825136612022 +60855115001,225259,0.245901639344262 +60855115001,230003,0 +60855115002,211961,0.0772532188841202 +60855115002,214829,0.0611587982832618 +60855115002,215133,0.0675965665236052 +60855115002,217705,0.0965665236051502 +60855115002,217712,0.13412017167382 +60855115002,221594,0 +60855115002,221595,0.00107296137339056 +60855115002,221596,0.065450643776824 +60855115002,221678,0 +60855115002,222825,0.181330472103004 +60855115002,222826,0.0751072961373391 +60855115002,225770,0.0257510729613734 +60855115002,228809,0.137339055793991 +60855115002,230764,0.036480686695279 +60855115002,230765,0 +60855115002,230981,0.0407725321888412 +60855115003,214129,0.327790973871734 +60855115003,217710,0.318289786223278 +60855115003,218410,0.0593824228028504 +60855115003,218714,0.273159144893112 +60855115003,218716,0.0178147268408551 +60855115003,225017,0.00356294536817102 +60855115004,219696,1 +60855115004,227906,0 +60855115005,211958,0.0717131474103586 +60855115005,211959,0.0836653386454183 +60855115005,213505,0.131474103585657 +60855115005,214012,0.133466135458167 +60855115005,214013,0.0637450199203187 +60855115005,214015,0 +60855115005,217983,0.0697211155378486 +60855115005,218407,0.272908366533865 +60855115005,229918,0.173306772908367 +60855116081,213145,0 +60855116081,215979,0 +60855116081,215984,0 +60855116081,216761,0 +60855116081,216762,0 +60855116081,217456,0.928571428571429 +60855116081,217459,0 +60855116081,218188,0.0714285714285714 +60855116081,222703,0 +60855116081,222709,0 +60855116081,228412,0 +60855116081,231185,0 +60855116082,217883,0.0319148936170213 +60855116082,224051,0.968085106382979 +60855116091,211817,0 +60855116091,213141,0.0535002845759818 +60855116091,215977,0.675583380762664 +60855116091,217462,0 +60855116091,222710,0 +60855116091,222711,0 +60855116091,222713,0.0142287990893569 +60855116091,227372,0 +60855116091,228166,0 +60855116091,228797,0.255549231644849 +60855116091,231968,0.00113830392714855 +60855117011,212886,0.367058823529412 +60855117011,213437,0.209411764705882 +60855117011,213661,0.0870588235294118 +60855117011,216991,0.0894117647058824 +60855117011,229766,0.0776470588235294 +60855117011,230244,0.169411764705882 +60855117012,212391,0.0823170731707317 +60855117012,223460,0.106707317073171 +60855117012,225568,0.0121951219512195 +60855117012,227364,0.147865853658537 +60855117012,227611,0.285060975609756 +60855117012,228756,0.257621951219512 +60855117012,229382,0.0762195121951219 +60855117012,230241,0.0320121951219512 +60855117013,217166,0.138728323699422 +60855117013,217167,0.205202312138728 +60855117013,217867,0.205202312138728 +60855117013,227003,0.158959537572254 +60855117013,228651,0.0491329479768786 +60855117013,232127,0.242774566473988 +60855117021,212005,0.012012012012012 +60855117021,212006,0.036036036036036 +60855117021,214401,0.175675675675676 +60855117021,214663,0.201201201201201 +60855117021,214664,0.0840840840840841 +60855117021,218498,0.0690690690690691 +60855117021,221828,0.0855855855855856 +60855117021,221829,0.0930930930930931 +60855117021,221831,0 +60855117021,223017,0.144144144144144 +60855117021,223459,0.0525525525525526 +60855117021,228754,0.0465465465465465 +60855117022,214662,0.129963898916967 +60855117022,228751,0.23826714801444 +60855117022,228752,0.129963898916967 +60855117022,232045,0.501805054151625 +60855117041,212920,0.0178571428571429 +60855117041,212921,0.0453296703296703 +60855117041,216733,0.0700549450549451 +60855117041,217037,0.0357142857142857 +60855117041,217038,0.387362637362637 +60855117041,221956,0.157967032967033 +60855117041,222153,0.0343406593406593 +60855117041,228213,0.105769230769231 +60855117041,228214,0.0604395604395604 +60855117041,230853,0.0851648351648352 +60855117041,232309,0 +60855117042,211339,0.233050847457627 +60855117042,216729,0.122881355932203 +60855117042,217279,0.224576271186441 +60855117042,219849,0.114406779661017 +60855117042,230856,0.305084745762712 +60855117043,217286,0.00306748466257669 +60855117043,219177,0.148773006134969 +60855117043,221966,0.00460122699386503 +60855117043,221971,0.00613496932515337 +60855117043,221972,0.150306748466258 +60855117043,228424,0.116564417177914 +60855117043,228425,0.0874233128834356 +60855117043,228815,0.0368098159509202 +60855117043,229131,0.0904907975460123 +60855117043,229447,0.101226993865031 +60855117043,231324,0.0168711656441718 +60855117043,231325,0.0644171779141104 +60855117043,231752,0.0920245398773006 +60855117043,232063,0.0812883435582822 +60855117051,210431,0 +60855117051,210437,0 +60855117051,210807,0 +60855117051,210809,0 +60855117051,210817,0.00294985250737463 +60855117051,210826,0 +60855117051,210834,0.224188790560472 +60855117051,211265,0 +60855117051,212057,0 +60855117051,212789,0.35693215339233 +60855117051,213485,0 +60855117051,214898,0.0117994100294985 +60855117051,216167,0.0471976401179941 +60855117051,217224,0 +60855117051,218388,0.0383480825958702 +60855117051,218390,0 +60855117051,218888,0 +60855117051,219120,0.0353982300884956 +60855117051,219127,0 +60855117051,220529,0 +60855117051,222115,0 +60855117051,223962,0 +60855117051,225549,0 +60855117051,227278,0 +60855117051,228019,0.132743362831858 +60855117051,228794,0 +60855117051,230308,0.150442477876106 +60855117071,0,0 +60855117071,210532,0.00330305532617671 +60855117071,210539,0.0668868703550785 +60855117071,210541,0.0115606936416185 +60855117071,210545,0.00908340214698596 +60855117071,210546,0.0594549958711808 +60855117071,210547,0 +60855117071,211332,0.000825763831544178 +60855117071,211338,0.0825763831544178 +60855117071,211340,0 +60855117071,216443,0.0280759702725021 +60855117071,216451,0.00825763831544178 +60855117071,217034,0.00165152766308836 +60855117071,217281,0.092485549132948 +60855117071,217287,0 +60855117071,217754,0.00825763831544178 +60855117071,218298,0.0916597853014038 +60855117071,218548,0.0297274979355904 +60855117071,219174,0 +60855117071,219175,0 +60855117071,219850,0.0165152766308836 +60855117071,222143,0.00578034682080925 +60855117071,222147,0.00247729149463253 +60855117071,222155,0.014037985136251 +60855117071,228423,0.0511973575557391 +60855117071,228426,0.00412881915772089 +60855117071,228606,0 +60855117071,228607,0.280759702725021 +60855117071,228610,0.00247729149463253 +60855117071,228819,0.0272502064409579 +60855117071,229133,0.00247729149463253 +60855117071,231288,0.00165152766308836 +60855117071,231292,0.000825763831544178 +60855117071,231294,0.00578034682080925 +60855117071,231326,0.00825763831544178 +60855117071,231327,0.0123864574731627 +60855117071,231719,0.0115606936416185 +60855117071,232028,0.0520231213872832 +60855117071,232057,0.00660611065235343 +60855118001,0,0 +60855118001,210025,0.0564174894217207 +60855118001,210198,0 +60855118001,211041,0.0211565585331453 +60855118001,215362,0.0846262341325811 +60855118001,220630,0.00846262341325811 +60855118001,221051,0.0521861777150917 +60855118001,221117,0.187588152327221 +60855118001,221118,0.0282087447108604 +60855118001,221122,0.143864598025388 +60855118001,224400,0.0423131170662906 +60855118001,224541,0.0465444287729196 +60855118001,224542,0.0705218617771509 +60855118001,224543,0.126939351198872 +60855118001,224544,0.00987306064880113 +60855118001,229569,0.107193229901269 +60855118001,231028,0.0126939351198872 +60855118001,231029,0.00141043723554302 +60855118002,0,0 +60855118002,210191,0.153333333333333 +60855118002,210195,0.155555555555556 +60855118002,210206,0.0333333333333333 +60855118002,214543,0.0244444444444444 +60855118002,214545,0.0888888888888889 +60855118002,220620,0.266666666666667 +60855118002,220629,0.0755555555555556 +60855118002,221116,0.0711111111111111 +60855118002,224396,0 +60855118002,224404,0.131111111111111 +60855118003,0,0 +60855118003,210017,0 +60855118003,210021,0.0695652173913043 +60855118003,210022,0 +60855118003,210187,0.158695652173913 +60855118003,210188,0 +60855118003,210189,0 +60855118003,210200,0.193478260869565 +60855118003,213775,0.0217391304347826 +60855118003,214542,0 +60855118003,215365,0.00217391304347826 +60855118003,217528,0.0978260869565217 +60855118003,219898,0.0934782608695652 +60855118003,219901,0.0565217391304348 +60855118003,220626,0.132608695652174 +60855118003,221056,0 +60855118003,221057,0.0217391304347826 +60855118003,229293,0.058695652173913 +60855118003,229573,0.00217391304347826 +60855118003,230552,0.0108695652173913 +60855118003,230562,0.0326086956521739 +60855118003,230563,0.0478260869565217 +60855119051,210054,0.193877551020408 +60855119051,210056,0.101113172541744 +60855119051,210057,0.0333951762523191 +60855119051,211143,0.0250463821892393 +60855119051,211921,0.0417439703153989 +60855119051,213590,0.023191094619666 +60855119051,213960,0.0306122448979592 +60855119051,219301,0.038961038961039 +60855119051,219302,0.0630797773654917 +60855119051,219517,0.0408163265306122 +60855119051,219518,0.0222634508348794 +60855119051,224888,0.0352504638218924 +60855119051,225530,0.102968460111317 +60855119051,226040,0.0296846011131725 +60855119051,226334,0.0602968460111317 +60855119051,227583,0.0435992578849722 +60855119051,228706,0.0352504638218924 +60855119051,229510,0.0556586270871985 +60855119051,229598,0.023191094619666 +60855119071,210378,0.0881226053639847 +60855119071,211142,0.340996168582375 +60855119071,212286,0.0459770114942529 +60855119071,213278,0.0689655172413793 +60855119071,213279,0.0708812260536398 +60855119071,215511,0.0689655172413793 +60855119071,215512,0.0708812260536398 +60855119071,218336,0.0498084291187739 +60855119071,219516,0.120689655172414 +60855119071,224711,0.0747126436781609 +60855119072,211141,0.0288220551378446 +60855119072,212285,0.0476190476190476 +60855119072,215508,0.0776942355889724 +60855119072,216931,0.087719298245614 +60855119072,218333,0.0413533834586466 +60855119072,218334,0.06265664160401 +60855119072,221186,0.0776942355889724 +60855119072,221187,0.0413533834586466 +60855119072,223010,0.0463659147869674 +60855119072,223011,0.0664160401002506 +60855119072,224652,0.0714285714285714 +60855119072,224707,0.0614035087719298 +60855119072,224709,0.0588972431077694 +60855119072,226333,0.0802005012531328 +60855119072,227411,0.0601503759398496 +60855119072,227579,0.0902255639097744 +60855119091,211140,0.0555555555555556 +60855119091,212284,0.0444444444444444 +60855119091,213276,0.0355555555555556 +60855119091,216929,0.154444444444444 +60855119091,219514,0.213333333333333 +60855119091,219515,0.0988888888888889 +60855119091,219563,0 +60855119091,223007,0.0388888888888889 +60855119091,223008,0.164444444444444 +60855119091,224650,0.0822222222222222 +60855119091,226331,0.0344444444444444 +60855119091,226332,0.0233333333333333 +60855119091,228705,0.0544444444444444 +60855119091,229508,0 +60855119092,0,0 +60855119092,211137,0.216145833333333 +60855119092,219560,0.0078125 +60855119092,221266,0.0247395833333333 +60855119092,224649,0.0338541666666667 +60855119092,225359,0.0716145833333333 +60855119092,225360,0.0494791666666667 +60855119092,225363,0.0533854166666667 +60855119092,226861,0 +60855119092,227021,0.184895833333333 +60855119092,227022,0.0559895833333333 +60855119092,227023,0.0963541666666667 +60855119092,227233,0.0846354166666667 +60855119092,227467,0.12109375 +60855119093,216926,0.0618996798292423 +60855119093,216927,0.0224119530416222 +60855119093,217509,0.0266808964781217 +60855119093,217981,0.115261472785486 +60855119093,218987,0.0554962646744931 +60855119093,218988,0.0426894343649947 +60855119093,220858,0.0245464247598719 +60855119093,223558,0.0522945570971185 +60855119093,224647,0.0362860192102455 +60855119093,224648,0.0384204909284952 +60855119093,226329,0.0693703308431163 +60855119093,226330,0.0512273212379936 +60855119093,227231,0 +60855119093,228700,0.0736392742796158 +60855119093,228701,0.186766275346852 +60855119093,230306,0.0704375667022412 +60855119093,230496,0.0725720384204909 +60855119101,218809,0.197260273972603 +60855119101,224642,0.101369863013699 +60855119101,224644,0.257534246575342 +60855119101,226326,0.0657534246575342 +60855119101,226327,0.073972602739726 +60855119101,228313,0.2 +60855119101,230495,0.104109589041096 +60855119102,211133,0.110671936758893 +60855119102,211134,0.0197628458498024 +60855119102,216236,0.185770750988142 +60855119102,216237,0.0988142292490119 +60855119102,216238,0.1699604743083 +60855119102,218807,0.276679841897233 +60855119102,227230,0.138339920948617 +60855119103,211132,0.131147540983607 +60855119103,218805,0.140515222482436 +60855119103,218806,0.0772833723653396 +60855119103,226247,0.114754098360656 +60855119103,226325,0.447306791569087 +60855119103,227228,0.0889929742388759 +60855119111,0,0 +60855119111,210695,0.116331096196868 +60855119111,214593,0.00223713646532438 +60855119111,218851,0.0268456375838926 +60855119111,222673,0.779642058165548 +60855119111,224312,0.0335570469798658 +60855119111,226859,0.0413870246085011 +60855119111,227469,0 +60855119112,0,0 +60855119112,210936,0 +60855119112,212658,0 +60855119112,213874,0.155555555555556 +60855119112,215064,0 +60855119112,216981,0.0888888888888889 +60855119112,217023,0.019047619047619 +60855119112,221517,0 +60855119112,221528,0.333333333333333 +60855119112,222918,0.00317460317460317 +60855119112,223337,0 +60855119112,223731,0.00634920634920635 +60855119112,224492,0.20952380952381 +60855119112,226825,0.0698412698412698 +60855119112,228198,0.0253968253968254 +60855119112,229619,0.0603174603174603 +60855119112,230238,0 +60855119112,230942,0.0285714285714286 +60855119113,211702,0.0622895622895623 +60855119113,212279,0.373737373737374 +60855119113,212394,0.0976430976430976 +60855119113,214043,0.0235690235690236 +60855119113,214594,0.0606060606060606 +60855119113,221264,0.069023569023569 +60855119113,221466,0.0622895622895623 +60855119113,223216,0.0454545454545455 +60855119113,224313,0.0808080808080808 +60855119113,227018,0.124579124579125 +60855119121,210692,0.0485436893203883 +60855119121,216808,0.0305131761442441 +60855119121,218846,0.0319001386962552 +60855119121,218847,0.0707350901525659 +60855119121,218848,0.0402219140083218 +60855119121,221524,0.0485436893203883 +60855119121,221525,0.0360610263522885 +60855119121,221526,0.108183079056865 +60855119121,223205,0.0638002773925104 +60855119121,224212,0.072122052704577 +60855119121,226413,0.058252427184466 +60855119121,227016,0.0471567267683773 +60855119121,227362,0.343966712898752 +60855119122,216806,0.01 +60855119122,216807,0.11 +60855119122,219749,0.225 +60855119122,219750,0.0616666666666667 +60855119122,219965,0.0883333333333333 +60855119122,225184,0.0416666666666667 +60855119122,226412,0.0583333333333333 +60855119122,226855,0.095 +60855119122,226856,0.255 +60855119122,227361,0.055 +60855119123,216789,0.0886075949367089 +60855119123,218449,0.151898734177215 +60855119123,219963,0.0962025316455696 +60855119123,224211,0.29873417721519 +60855119123,225657,0.0784810126582278 +60855119123,229623,0.286075949367089 +60855119131,214367,0.0930787589498807 +60855119131,214368,0.0930787589498807 +60855119131,217147,0.116945107398568 +60855119131,217222,0.0572792362768496 +60855119131,219295,0.138424821002387 +60855119131,224885,0.155131264916468 +60855119131,225960,0.0835322195704057 +60855119131,227994,0.081145584725537 +60855119131,228447,0.181384248210024 +60855119132,219291,0.139059304703476 +60855119132,219292,0.081799591002045 +60855119132,219293,0.0858895705521472 +60855119132,219294,0.12678936605317 +60855119132,224884,0.165644171779141 +60855119132,225959,0.143149284253579 +60855119132,227360,0.110429447852761 +60855119132,227992,0.0511247443762781 +60855119132,227993,0.0961145194274029 +60855119133,213823,0.104046242774566 +60855119133,213825,0.0886319845857418 +60855119133,216600,0.0616570327552987 +60855119133,216601,0.0500963391136802 +60855119133,217144,0.0289017341040462 +60855119133,220526,0.0674373795761079 +60855119133,224883,0.0944123314065511 +60855119133,225956,0.0578034682080925 +60855119133,225957,0.0539499036608863 +60855119133,225958,0.0944123314065511 +60855119133,227358,0.0616570327552987 +60855119133,227359,0.0597302504816956 +60855119133,227991,0.0944123314065511 +60855119133,230304,0.0828516377649326 +60855119141,216668,0.0739130434782609 +60855119141,216669,0.0847826086956522 +60855119141,218362,0.058695652173913 +60855119141,218363,0.0673913043478261 +60855119141,218984,0.130434782608696 +60855119141,220130,0.0652173913043478 +60855119141,220855,0 +60855119141,220856,0.171739130434783 +60855119141,222093,0.0847826086956522 +60855119141,223359,0.0673913043478261 +60855119141,223545,0.0434782608695652 +60855119141,228764,0.104347826086957 +60855119141,230483,0.0478260869565217 +60855119142,213820,0.0433862433862434 +60855119142,213821,0.0380952380952381 +60855119142,213822,0.053968253968254 +60855119142,215291,0.0687830687830688 +60855119142,216598,0.0984126984126984 +60855119142,216599,0.073015873015873 +60855119142,216667,0.0253968253968254 +60855119142,219290,0.174603174603175 +60855119142,220127,0.0296296296296296 +60855119142,220129,0.0349206349206349 +60855119142,223306,0.0571428571428571 +60855119142,223307,0.0296296296296296 +60855119142,223308,0.0243386243386243 +60855119142,225955,0.0423280423280423 +60855119142,227355,0.0518518518518519 +60855119142,227356,0.0317460317460317 +60855119142,227990,0.0507936507936508 +60855119142,230157,0.071957671957672 +60855119143,216597,0.194899817850638 +60855119143,218361,0.151183970856102 +60855119143,219775,0.0837887067395264 +60855119143,221896,0.0455373406193078 +60855119143,223305,0.134790528233151 +60855119143,227662,0.136612021857924 +60855119143,227989,0.0965391621129326 +60855119143,230153,0.0947176684881603 +60855119143,230154,0.0619307832422587 +60855119151,214370,0.236024844720497 +60855119151,218989,0.0393374741200828 +60855119151,220859,0.0683229813664596 +60855119151,223561,0.13871635610766 +60855119151,225534,0.196687370600414 +60855119151,225535,0.0786749482401656 +60855119151,228471,0.0786749482401656 +60855119151,229600,0 +60855119151,229601,0.163561076604555 +60855119152,210651,0.212651413189771 +60855119152,210790,0 +60855119152,217223,0.0713324360699865 +60855119152,220207,0.488559892328398 +60855119152,222282,0.0484522207267833 +60855119152,222675,0.0955585464333782 +60855119152,225540,0.0578734858681023 +60855119152,225541,0.0255720053835801 +60855119161,210058,0.118881118881119 +60855119161,210060,0.0391608391608392 +60855119161,213593,0.114685314685315 +60855119161,213594,0.267132867132867 +60855119161,213595,0.0951048951048951 +60855119161,222280,0.0321678321678322 +60855119161,224741,0.107692307692308 +60855119161,225532,0.0587412587412587 +60855119161,226041,0.0363636363636364 +60855119161,228470,0.0461538461538462 +60855119161,229599,0.0839160839160839 +60855119162,210061,0.0553745928338762 +60855119162,210649,0.0575461454940282 +60855119162,214371,0.0380021715526602 +60855119162,214372,0.0456026058631922 +60855119162,214373,0.0325732899022801 +60855119162,217901,0.0629750271444083 +60855119162,219308,0.116178067318132 +60855119162,225536,0.0293159609120521 +60855119162,225537,0.0456026058631922 +60855119162,225538,0.0271444082519001 +60855119162,225539,0.0434310532030402 +60855119162,228472,0.332247557003257 +60855119162,229603,0.0488599348534202 +60855119162,230498,0.0380021715526602 +60855119162,230499,0.0271444082519001 +60855120011,210095,0 +60855120011,210920,0.00289017341040462 +60855120011,210940,0.107899807321773 +60855120011,211003,0.0838150289017341 +60855120011,212409,0 +60855120011,213867,0 +60855120011,214429,0.0308285163776493 +60855120011,215262,0 +60855120011,216095,0 +60855120011,218490,0.00867052023121387 +60855120011,220074,0 +60855120011,222989,0 +60855120011,223032,0.389210019267823 +60855120011,223033,0.01252408477842 +60855120011,223354,0.0481695568400771 +60855120011,224071,0.140655105973025 +60855120011,224493,0.000963391136801541 +60855120011,228355,0.166666666666667 +60855120011,228900,0.00385356454720617 +60855120011,229785,0 +60855120011,231271,0.00385356454720617 +60855120012,219555,1 +60855120013,217345,1 +60855120051,214366,0.371702637889688 +60855120051,215249,0.206235011990408 +60855120051,215250,0.0647482014388489 +60855120051,217194,0.112709832134293 +60855120051,226991,0.103117505995204 +60855120051,227987,0.0551558752997602 +60855120051,227988,0.0863309352517986 +60855120052,215248,0.135802469135802 +60855120052,217193,0.1440329218107 +60855120052,218448,0.51440329218107 +60855120052,225356,0.205761316872428 +60855120053,215246,0.15018315018315 +60855120053,215247,0.223443223443223 +60855120053,217192,0.117216117216117 +60855120053,218447,0.205128205128205 +60855120053,225355,0.142857142857143 +60855120053,232165,0.161172161172161 +60855120054,213819,0.215073529411765 +60855120054,216595,0.0790441176470588 +60855120054,216596,0.0845588235294118 +60855120054,217190,0.314338235294118 +60855120054,223672,0.0533088235294118 +60855120054,224878,0.0386029411764706 +60855120054,226841,0.0569852941176471 +60855120054,226990,0.0680147058823529 +60855120054,227986,0.0367647058823529 +60855120054,232164,0.0533088235294118 +60855120055,214441,0.167655786350148 +60855120055,214442,0.103857566765579 +60855120055,216594,0.341246290801187 +60855120055,217188,0.264094955489614 +60855120055,217189,0.123145400593472 +60855120171,211969,0.0490066225165563 +60855120171,213090,0.235761589403974 +60855120171,218731,0.0251655629139073 +60855120171,219329,0.16953642384106 +60855120171,219331,0.0980132450331126 +60855120171,221156,0.107284768211921 +60855120171,228881,0.31523178807947 +60855120172,210841,0.130124777183601 +60855120172,211215,0.071301247771836 +60855120172,213091,0.0409982174688057 +60855120172,217474,0.10873440285205 +60855120172,217475,0.0623885918003565 +60855120172,219413,0.0374331550802139 +60855120172,221155,0.0392156862745098 +60855120172,221514,0.162210338680927 +60855120172,221800,0.0392156862745098 +60855120172,223211,0.0392156862745098 +60855120172,225050,0.0409982174688057 +60855120172,225573,0.0730837789661319 +60855120172,225647,0.0784313725490196 +60855120172,229203,0.0766488413547237 +60855120173,213092,0.0332480818414322 +60855120173,213093,0.0268542199488491 +60855120173,214031,0.0460358056265985 +60855120173,217346,0.0396419437340153 +60855120173,221820,0.251918158567775 +60855120173,223212,0.051150895140665 +60855120173,223344,0.0907928388746803 +60855120173,224982,0.0370843989769821 +60855120173,226783,0.0780051150895141 +60855120173,227012,0.0332480818414322 +60855120173,229204,0.0473145780051151 +60855120173,230958,0.20843989769821 +60855120173,230959,0.0562659846547315 +60855120191,213641,0.164794007490637 +60855120191,214057,0.277153558052434 +60855120191,222494,0.295880149812734 +60855120191,226834,0.262172284644195 +60855120192,211919,0.510695187165775 +60855120192,214193,0.489304812834225 +60855120193,214191,1 +60855120201,212835,0.451476793248945 +60855120201,214056,0.177215189873418 +60855120201,231407,0.0928270042194093 +60855120201,231408,0.278481012658228 +60855120202,217485,0.957664233576642 +60855120202,221929,0.00583941605839416 +60855120202,230848,0.0364963503649635 +60855120203,224497,1 +60855120211,212833,0.105140186915888 +60855120211,212834,0.149532710280374 +60855120211,222978,0.196261682242991 +60855120211,226704,0.198598130841121 +60855120211,226797,0.350467289719626 +60855120212,0,0 +60855120212,212831,0.293103448275862 +60855120212,212832,0.453448275862069 +60855120212,215069,0.113793103448276 +60855120212,215070,0.0655172413793104 +60855120212,217482,0.0741379310344828 +60855120213,212828,0.053921568627451 +60855120213,212829,0.0882352941176471 +60855120213,221520,0.053921568627451 +60855120213,222234,0.0784313725490196 +60855120213,222975,0.370098039215686 +60855120213,222976,0.0906862745098039 +60855120213,222977,0.053921568627451 +60855120213,230947,0.137254901960784 +60855120213,231405,0.0735294117647059 +60855120214,210099,0.0552677029360967 +60855120214,212794,0.0604490500863558 +60855120214,213637,0.07426597582038 +60855120214,214045,0.0863557858376511 +60855120214,221513,0.55440414507772 +60855120214,228733,0.169257340241796 +60855120221,211214,0.120343839541547 +60855120221,213638,0.0802292263610315 +60855120221,219410,0.277936962750716 +60855120221,220260,0.0573065902578797 +60855120221,221159,0.154727793696275 +60855120221,221801,0.108882521489971 +60855120221,223043,0.0687679083094556 +60855120221,223342,0.131805157593123 +60855120222,210100,0.490620490620491 +60855120222,211216,0 +60855120222,218424,0.509379509379509 +60855120223,225577,0.141630901287554 +60855120223,228537,0.658082975679542 +60855120223,228734,0.200286123032904 +60855120231,211918,0.626453488372093 +60855120231,215068,0.0363372093023256 +60855120231,217481,0.155523255813953 +60855120231,221519,0.123546511627907 +60855120231,230946,0.0581395348837209 +60855120232,217480,0.303473491773309 +60855120232,225655,0.0822669104204753 +60855120232,228536,0.093235831809872 +60855120232,230944,0.521023765996344 +60855120233,215477,0.240924092409241 +60855120233,220763,0.495049504950495 +60855120233,226820,0.264026402640264 +60855120241,211443,0.0832672482157018 +60855120241,213265,0.392545598731166 +60855120241,213948,0.22680412371134 +60855120241,214954,0.0626486915146709 +60855120241,215476,0.0626486915146709 +60855120241,222454,0.0166534496431404 +60855120241,226308,0.0642347343378271 +60855120241,226648,0.0325138778747026 +60855120241,226818,0.0578905630452022 +60855120241,231471,0.000793021411578113 +60855120242,211442,0.732142857142857 +60855120242,211916,0.104591836734694 +60855120242,215954,0.00510204081632653 +60855120242,221895,0.0612244897959184 +60855120242,226647,0.0969387755102041 +60855120251,211296,0.0341207349081365 +60855120251,212537,0.162729658792651 +60855120251,215475,0.0406824146981627 +60855120251,217421,0.0406824146981627 +60855120251,217422,0.0380577427821522 +60855120251,224445,0.073490813648294 +60855120251,224446,0.122047244094488 +60855120251,224871,0.0603674540682415 +60855120251,224872,0.0459317585301837 +60855120251,224873,0.101049868766404 +60855120251,225865,0.0354330708661417 +60855120251,225866,0.020997375328084 +60855120251,226816,0.0866141732283465 +60855120251,230125,0.137795275590551 +60855120252,213264,0.929054054054054 +60855120252,226817,0.0709459459459459 +60855120261,210287,0.593437945791726 +60855120261,212577,0.0313837375178317 +60855120261,215474,0.373751783166904 +60855120261,228211,0.0014265335235378 +60855120262,211192,0.199329983249581 +60855120262,211194,0.0820770519262982 +60855120262,211725,0.0603015075376884 +60855120262,220048,0.0536013400335008 +60855120262,220049,0.0938023450586265 +60855120262,223172,0.0787269681742044 +60855120262,224444,0.0887772194304858 +60855120262,224869,0.172529313232831 +60855120262,226815,0.113902847571189 +60855120262,228544,0 +60855120262,230124,0.0569514237855946 +60855120271,215953,0.286529680365297 +60855120271,218355,0 +60855120271,219768,0 +60855120271,220125,0.159817351598174 +60855120271,223300,0.271689497716895 +60855120271,227657,0 +60855120271,231014,0.281963470319635 +60855120272,215290,0.0485584218512898 +60855120272,215952,0.0667678300455235 +60855120272,217833,0.0698027314112291 +60855120272,217834,0.0333839150227618 +60855120272,218354,0.0546282245827011 +60855120272,219100,0.0834597875569044 +60855120272,219110,0.0500758725341426 +60855120272,219767,0.138088012139605 +60855120272,219962,0.192716236722307 +60855120272,220114,0.0364188163884674 +60855120272,220115,0.0606980273141123 +60855120272,221893,0.0531107738998483 +60855120272,223678,0 +60855120272,227655,0.039453717754173 +60855120272,230148,0.0728376327769348 +60855120291,210375,0.362962962962963 +60855120291,218833,0.107407407407407 +60855120291,218835,0.52962962962963 +60855120292,211721,0.10077519379845 +60855120292,218829,0.0651162790697674 +60855120292,218830,0.105426356589147 +60855120292,219388,0.0635658914728682 +60855120292,219389,0.0527131782945736 +60855120292,223170,0.0651162790697674 +60855120292,224442,0.0821705426356589 +60855120292,224443,0.0434108527131783 +60855120292,225032,0.0790697674418605 +60855120292,225437,0.0914728682170543 +60855120292,225579,0.0790697674418605 +60855120292,228736,0.0914728682170543 +60855120292,230119,0.0806201550387597 +60855120293,219041,0.869662921348315 +60855120293,229032,0.130337078651685 +60855120294,213639,0.0780487804878049 +60855120294,214420,0.0764227642276423 +60855120294,219047,0.100813008130081 +60855120294,221460,0.0634146341463415 +60855120294,221461,0.0682926829268293 +60855120294,222950,0.0487804878048781 +60855120294,223029,0.040650406504065 +60855120294,225442,0.0439024390243902 +60855120294,225456,0.12520325203252 +60855120294,228519,0.117073170731707 +60855120294,228520,0.0504065040650407 +60855120294,228521,0.0666666666666667 +60855120294,228522,0.120325203252033 +60855120301,210373,0.0343053173241852 +60855120301,211719,0.0308747855917667 +60855120301,215470,0.0823327615780446 +60855120301,216794,0.0583190394511149 +60855120301,217419,0.0737564322469983 +60855120301,219386,0.0737564322469983 +60855120301,219387,0.0445969125214408 +60855120301,219961,0.0480274442538593 +60855120301,221467,0.0428816466552316 +60855120301,223168,0.0686106346483705 +60855120301,223169,0.065180102915952 +60855120301,225316,0.0668953687821612 +60855120301,226810,0.0943396226415094 +60855120301,227908,0.132075471698113 +60855120301,229620,0.0411663807890223 +60855120301,229624,0.0428816466552316 +60855120302,210371,0.317460317460317 +60855120302,210372,0.328042328042328 +60855120302,215468,0.216931216931217 +60855120302,216793,0.137566137566138 +60855120311,210370,0.147410358565737 +60855120311,214419,0.366533864541833 +60855120311,219045,0.119521912350598 +60855120311,223166,0.231075697211155 +60855120311,224306,0.135458167330677 +60855120312,210369,0.113861386138614 +60855120312,211718,0.126237623762376 +60855120312,214044,0.103960396039604 +60855120312,219385,0.0891089108910891 +60855120312,223165,0.0767326732673267 +60855120312,225320,0.118811881188119 +60855120312,225325,0.0569306930693069 +60855120312,228558,0.314356435643564 +60855120313,214049,0.222222222222222 +60855120313,216791,0.0925925925925926 +60855120313,216800,0.100529100529101 +60855120313,223041,0.153439153439153 +60855120313,223042,0.137566137566138 +60855120313,223348,0.108465608465608 +60855120313,225323,0.100529100529101 +60855120313,225324,0.0846560846560847 +60855120314,212277,0.14540059347181 +60855120314,221173,0.118694362017804 +60855120314,223040,0.166172106824926 +60855120314,223336,0.100890207715134 +60855120314,225319,0.163204747774481 +60855120314,227907,0.106824925816024 +60855120314,229621,0.198813056379822 +60855120321,210935,0.380597014925373 +60855120321,210937,0.420398009950249 +60855120321,230940,0.199004975124378 +60855120322,211217,0.368600682593857 +60855120322,216983,0.225255972696246 +60855120322,225653,0.0989761092150171 +60855120322,228347,0.191126279863481 +60855120322,228348,0.116040955631399 +60855120323,210101,0.173076923076923 +60855120323,210910,0 +60855120323,210934,0.368589743589744 +60855120323,211478,0 +60855120323,214033,0.00320512820512821 +60855120323,217477,0 +60855120323,221516,0.198717948717949 +60855120323,222756,0 +60855120323,223025,0 +60855120323,223217,0.147435897435897 +60855120323,227854,0.105769230769231 +60855120323,229494,0.00320512820512821 +60855120323,229770,0 +60855120323,230941,0 +60855120331,211705,0.0804020100502513 +60855120331,216790,0.188442211055276 +60855120331,221172,0.258793969849246 +60855120331,221458,0.123115577889447 +60855120331,223039,0.138190954773869 +60855120331,225440,0.105527638190955 +60855120331,225441,0.105527638190955 +60855120332,210917,0.21242774566474 +60855120332,211997,0.34971098265896 +60855120332,213096,0.0549132947976879 +60855120332,213873,0.0679190751445087 +60855120332,221457,0.0635838150289017 +60855120332,225455,0.197976878612717 +60855120332,226824,0 +60855120332,227853,0.0534682080924856 +60855120332,228509,0 +60855120332,231013,0 +60855120333,213623,0.109333333333333 +60855120333,220044,0.304 +60855120333,220045,0.0666666666666667 +60855120333,220749,0.096 +60855120333,228518,0.08 +60855120333,228739,0.0186666666666667 +60855120333,228740,0.125333333333333 +60855120333,229616,0.096 +60855120333,229617,0.104 +60855120334,212281,0.1 +60855120334,216798,0.0627450980392157 +60855120334,216799,0.0490196078431373 +60855120334,221171,0.0823529411764706 +60855120334,222949,0.390196078431373 +60855120334,225322,0.0823529411764706 +60855120334,228542,0.0686274509803922 +60855120334,228556,0.0843137254901961 +60855120334,228557,0.0803921568627451 +60855120341,211994,0.0766233766233766 +60855120341,212103,0.0454545454545455 +60855120341,212104,0.18961038961039 +60855120341,223035,0.0961038961038961 +60855120341,225645,0.0285714285714286 +60855120341,227006,0.563636363636364 +60855120342,211211,0.502145922746781 +60855120342,213089,0.497854077253219 +60855120351,211013,0.0437405731523379 +60855120351,212825,0.20211161387632 +60855120351,212917,0.0618401206636501 +60855120351,213875,0.0361990950226244 +60855120351,221511,0.2473604826546 +60855120351,221826,0.0497737556561086 +60855120351,224980,0.0558069381598793 +60855120351,225652,0.215686274509804 +60855120351,230229,0.0874811463046757 +60855120352,211977,0.120411160058737 +60855120352,213879,0.15712187958884 +60855120352,213880,0.111600587371512 +60855120352,217178,0.0602055800293686 +60855120352,217344,0.0690161527165932 +60855120352,217472,0.0205580029368576 +60855120352,220516,0.0719530102790015 +60855120352,222252,0.0646108663729809 +60855120352,224978,0.324522760646109 +60855120352,228353,0 +60855120361,213640,0.893604303646145 +60855120361,214418,0.106395696353855 +60855120371,210376,0.16295025728988 +60855120371,210377,0.0840480274442539 +60855120371,211722,0.0411663807890223 +60855120371,211724,0.065180102915952 +60855120371,219044,0.097770154373928 +60855120371,226811,0.108061749571184 +60855120371,226812,0.0771869639794168 +60855120371,226813,0.0411663807890223 +60855120371,228541,0.0668953687821612 +60855120371,230120,0.0480274442538593 +60855120371,230121,0.0548885077186964 +60855120371,230122,0.118353344768439 +60855120371,230123,0.0343053173241852 +60855120372,214421,0.458885941644562 +60855120372,215471,0.0663129973474801 +60855120372,215472,0.0663129973474801 +60855120372,215473,0.0636604774535809 +60855120372,223171,0.116710875331565 +60855120372,224868,0.0875331564986737 +60855120372,226814,0.140583554376658 +60855120381,210939,0.227626459143969 +60855120381,211727,0.229571984435798 +60855120381,229493,0.315175097276265 +60855120381,229864,0 +60855120381,230235,0.227626459143969 +60855120391,210909,0.757211538461538 +60855120391,210941,0.0528846153846154 +60855120391,213884,0.0745192307692308 +60855120391,218493,0.0384615384615385 +60855120391,220076,0.0625 +60855120391,220739,0 +60855120391,228408,0.0144230769230769 +60855120392,210942,0.119047619047619 +60855120392,213885,0.288359788359788 +60855120392,218209,0.304232804232804 +60855120392,222910,0.0793650793650794 +60855120392,222912,0.0555555555555556 +60855120392,228510,0.082010582010582 +60855120392,229614,0.0714285714285714 +60855120393,214654,0.195071868583162 +60855120393,220077,0.211498973305955 +60855120393,222911,0.203285420944559 +60855120393,225463,0.082135523613963 +60855120393,228358,0.080082135523614 +60855120393,229492,0.227926078028747 +60855120421,219332,0.266846361185984 +60855120421,219409,0.242587601078167 +60855120421,221512,0.412398921832884 +60855120421,226703,0.078167115902965 +60855120422,211996,0.0807174887892377 +60855120422,215057,0.130044843049327 +60855120422,216294,0.0538116591928251 +60855120422,216975,0.0695067264573991 +60855120422,216976,0.07847533632287 +60855120422,221821,0.0762331838565022 +60855120422,223341,0.511210762331839 +60855120431,216870,0.00402414486921529 +60855120431,223340,0.159959758551308 +60855120431,227007,0.298792756539235 +60855120431,227008,0.0352112676056338 +60855120431,227009,0.3420523138833 +60855120431,227010,0.113682092555332 +60855120431,230608,0.0462776659959759 +60855120432,211212,0.0369649805447471 +60855120432,211979,0.0466926070038911 +60855120432,211995,0.0642023346303502 +60855120432,212668,0.175097276264591 +60855120432,214249,0.056420233463035 +60855120432,216292,0.0525291828793774 +60855120432,216293,0.0700389105058366 +60855120432,217179,0.0447470817120623 +60855120432,217473,0.0505836575875486 +60855120432,219411,0.0428015564202335 +60855120432,225048,0.0447470817120623 +60855120432,225646,0.0486381322957198 +60855120432,227011,0.0856031128404669 +60855120432,229200,0.0505836575875486 +60855120432,229202,0.130350194552529 +60855120451,218441,0.102990033222591 +60855120451,218442,0.0813953488372093 +60855120451,218443,0.0415282392026578 +60855120451,219402,0.0481727574750831 +60855120451,219403,0.0514950166112957 +60855120451,223670,0.10797342192691 +60855120451,224877,0.222591362126246 +60855120451,225953,0.114617940199336 +60855120451,229491,0.0813953488372093 +60855120451,232162,0.0398671096345515 +60855120451,232163,0.10797342192691 +60855120452,213818,0.0728291316526611 +60855120452,214440,0.165266106442577 +60855120452,216647,0.0784313725490196 +60855120452,223669,0.0728291316526611 +60855120452,225349,0.131652661064426 +60855120452,225952,0.117647058823529 +60855120452,229490,0.246498599439776 +60855120452,232161,0.11484593837535 +60855120453,214365,0.217391304347826 +60855120453,217951,0.374581939799331 +60855120453,219401,0.0869565217391304 +60855120453,225348,0.224080267558528 +60855120453,229489,0.096989966555184 +60855120454,212275,0.139449541284404 +60855120454,216646,0.0752293577981651 +60855120454,217948,0.0660550458715596 +60855120454,217949,0.0844036697247706 +60855120454,219400,0.0880733944954128 +60855120454,223667,0.0770642201834862 +60855120454,225317,0.110091743119266 +60855120454,226989,0.0715596330275229 +60855120454,228553,0.0770642201834862 +60855120454,228554,0.0862385321100917 +60855120454,228555,0.0678899082568807 +60855120454,229488,0.0568807339449541 +60855120471,212753,0.0592705167173252 +60855120471,213816,0.0942249240121581 +60855120471,213817,0.199088145896657 +60855120471,214361,0.150455927051672 +60855120471,214362,0.0364741641337386 +60855120471,214363,0.0562310030395137 +60855120471,216590,0.0759878419452888 +60855120471,216591,0.133738601823708 +60855120471,216592,0.0577507598784195 +60855120471,227211,0.0653495440729483 +60855120471,227212,0.0714285714285714 +60855120472,212222,0.123636363636364 +60855120472,212752,0.0854545454545454 +60855120472,213956,0.0563636363636364 +60855120472,213957,0.0509090909090909 +60855120472,214197,0.0527272727272727 +60855120472,214198,0.0781818181818182 +60855120472,215014,0.0490909090909091 +60855120472,222464,0.0381818181818182 +60855120472,222465,0.0618181818181818 +60855120472,222466,0.227272727272727 +60855120472,227210,0.0490909090909091 +60855120472,232355,0.0709090909090909 +60855120472,232358,0.0563636363636364 +60855120473,214299,0.310204081632653 +60855120473,214437,0.136734693877551 +60855120473,214438,0.161224489795918 +60855120473,217947,0.106122448979592 +60855120473,225347,0.212244897959184 +60855120473,226835,0.073469387755102 +60855120521,216662,0.226851851851852 +60855120521,218359,0 +60855120521,219770,0.231481481481481 +60855120521,225938,0.541666666666667 +60855120522,212218,0.305288461538462 +60855120522,215955,0.0492788461538462 +60855120522,215956,0.0757211538461538 +60855120522,226650,0.0144230769230769 +60855120522,226651,0.364182692307692 +60855120522,230149,0.0853365384615385 +60855120522,230150,0.105769230769231 +60855120523,212748,0.124454148471616 +60855120523,212749,0.0676855895196507 +60855120523,212750,0.303493449781659 +60855120523,225941,0.504366812227074 +60855120531,212751,0.196405648267009 +60855120531,213955,0.13992297817715 +60855120531,222461,0.0487804878048781 +60855120531,222462,0.128369704749679 +60855120531,222463,0.0487804878048781 +60855120531,223303,0.0590500641848524 +60855120531,225942,0.061617458279846 +60855120531,227208,0.205391527599487 +60855120531,227209,0.111681643132221 +60855120532,213952,0.0456521739130435 +60855120532,213953,0.0695652173913043 +60855120532,213954,0.0804347826086956 +60855120532,214195,0.11304347826087 +60855120532,214196,0.0543478260869565 +60855120532,222460,0.121739130434783 +60855120532,227206,0.110869565217391 +60855120532,227207,0.108695652173913 +60855120532,231007,0.106521739130435 +60855120532,232353,0.102173913043478 +60855120532,232354,0.0869565217391304 +60855120533,211920,0.236641221374046 +60855120533,212747,0.110687022900763 +60855120533,213949,0.270992366412214 +60855120533,214194,0.179389312977099 +60855120533,222457,0.202290076335878 +60855121001,0,0 +60855121001,210500,0 +60855121001,210912,0.0562015503875969 +60855121001,211299,0.0271317829457364 +60855121001,211998,0.0387596899224806 +60855121001,212809,0.00775193798449612 +60855121001,214035,0.00193798449612403 +60855121001,215067,0.0116279069767442 +60855121001,216986,0.0968992248062016 +60855121001,217793,0.00581395348837209 +60855121001,217922,0.166666666666667 +60855121001,218019,0 +60855121001,220517,0 +60855121001,220742,0.0213178294573643 +60855121001,220743,0.0755813953488372 +60855121001,220746,0.0329457364341085 +60855121001,220794,0.00775193798449612 +60855121001,221825,0 +60855121001,222139,0.0290697674418605 +60855121001,222914,0.00387596899224806 +60855121001,222915,0.0348837209302326 +60855121001,223732,0.0968992248062016 +60855121001,224985,0.0930232558139535 +60855121001,225465,0.0213178294573643 +60855121001,225466,0.00193798449612403 +60855121001,226828,0.00193798449612403 +60855121001,227378,0.0445736434108527 +60855121001,227741,0 +60855121001,228203,0 +60855121001,228966,0.112403100775194 +60855121001,229495,0.00581395348837209 +60855121001,230237,0.00387596899224806 +60855122001,0,0 +60855122001,210870,0.120720720720721 +60855122001,210871,0.0036036036036036 +60855122001,211047,0 +60855122001,211848,0 +60855122001,212471,0.00540540540540541 +60855122001,216178,0.0900900900900901 +60855122001,216182,0.0414414414414414 +60855122001,217542,0.0774774774774775 +60855122001,217543,0.027027027027027 +60855122001,221344,0.616216216216216 +60855122001,221347,0 +60855122001,225111,0 +60855122001,225112,0 +60855122001,229808,0.0144144144144144 +60855122001,232264,0.0036036036036036 +60855122002,0,0 +60855122002,210211,0.0126146788990826 +60855122002,210214,0.0275229357798165 +60855122002,210217,0.00229357798165138 +60855122002,210218,0.0493119266055046 +60855122002,210599,0 +60855122002,210602,0.0493119266055046 +60855122002,210603,0.036697247706422 +60855122002,210605,0.00917431192660551 +60855122002,210875,0.00114678899082569 +60855122002,211048,0.0194954128440367 +60855122002,211059,0.00114678899082569 +60855122002,211657,0.0607798165137615 +60855122002,211661,0.00114678899082569 +60855122002,211665,0.0275229357798165 +60855122002,211666,0.105504587155963 +60855122002,212474,0.00114678899082569 +60855122002,212477,0 +60855122002,213197,0 +60855122002,213209,0 +60855122002,213212,0.0837155963302752 +60855122002,216186,0 +60855122002,217550,0.0481651376146789 +60855122002,217551,0.0791284403669725 +60855122002,217552,0 +60855122002,224790,0.0802752293577982 +60855122002,224793,0.051605504587156 +60855122002,224794,0 +60855122002,230043,0 +60855122002,230048,0 +60855122002,230050,0.0298165137614679 +60855122002,230052,0.00688073394495413 +60855122002,230054,0.0298165137614679 +60855122002,230380,0.129587155963303 +60855122002,231508,0 +60855122002,231509,0.0114678899082569 +60855122002,232266,0.0447247706422018 +60855123051,211030,0.0391459074733096 +60855123051,211834,0.416370106761566 +60855123051,212505,0.033214709371293 +60855123051,213738,0.0260972716488731 +60855123051,216480,0.0320284697508897 +60855123051,217589,0.128113879003559 +60855123051,221999,0.0604982206405694 +60855123051,222366,0.066429418742586 +60855123051,224535,0.119810201660735 +60855123051,230038,0.00474495848161329 +60855123051,232250,0.0735468564650059 +60855123052,210851,0.271889400921659 +60855123052,212942,0.191244239631336 +60855123052,215352,0.0276497695852535 +60855123052,215750,0.112903225806452 +60855123052,216561,0.076036866359447 +60855123052,220459,0.110599078341014 +60855123052,224380,0.209677419354839 +60855123071,210575,0.132478632478632 +60855123071,214522,0 +60855123071,217105,0.179487179487179 +60855123071,220616,0.230769230769231 +60855123071,221041,0.393162393162393 +60855123071,222193,0 +60855123071,228273,0 +60855123071,229455,0 +60855123071,229797,0.0641025641025641 +60855123072,211648,0.0546967895362663 +60855123072,213767,0.237812128418549 +60855123072,216566,0.0713436385255648 +60855123072,217295,0.137931034482759 +60855123072,217297,0.0344827586206897 +60855123072,217298,0.0570749108204518 +60855123072,220613,0.0618311533888228 +60855123072,224774,0.0428061831153389 +60855123072,225082,0.0261593341260404 +60855123072,228278,0.0582639714625446 +60855123072,229796,0.217598097502973 +60855123073,213757,0.0477223427331887 +60855123073,214521,0.0596529284164859 +60855123073,216496,0.0563991323210412 +60855123073,216744,0.113882863340564 +60855123073,216749,0.0422993492407809 +60855123073,217071,0.0704989154013015 +60855123073,219668,0.0455531453362256 +60855123073,220607,0.0531453362255965 +60855123073,225076,0.181127982646421 +60855123073,225078,0.0249457700650759 +60855123073,228437,0.150759219088937 +60855123073,232324,0.154013015184382 +60855123081,212437,0.100494233937397 +60855123081,212503,0.187808896210873 +60855123081,213188,0.0774299835255354 +60855123081,213747,0.135090609555189 +60855123081,214534,0.014827018121911 +60855123081,216471,0 +60855123081,217592,0.00988467874794069 +60855123081,218126,0.130148270181219 +60855123081,220600,0.00164744645799012 +60855123081,222187,0.0362438220757825 +60855123081,224527,0 +60855123081,227335,0 +60855123081,227336,0.0477759472817133 +60855123081,227757,0.125205930807249 +60855123081,231944,0.0181219110378913 +60855123081,232246,0.115321252059308 +60855123082,212136,0.0319018404907975 +60855123082,213748,0.0711656441717791 +60855123082,217290,0.0687116564417178 +60855123082,219191,0.482208588957055 +60855123082,219874,0.0331288343558282 +60855123082,222877,0.154601226993865 +60855123082,227768,0.0208588957055215 +60855123082,229558,0.12638036809816 +60855123082,229560,0.00613496932515337 +60855123082,230031,0.00245398773006135 +60855123082,231491,0.00245398773006135 +60855123083,0,0 +60855123083,210848,0.0435339308578745 +60855123083,211025,0.36235595390525 +60855123083,211827,0.057618437900128 +60855123083,212504,0.163892445582586 +60855123083,215343,0.151088348271447 +60855123083,221776,0.0345710627400768 +60855123083,222175,0.12291933418694 +60855123083,229557,0.0640204865556978 +60855123083,229803,0 +60855123091,212500,0.0189873417721519 +60855123091,212685,0.0284810126582278 +60855123091,213743,0.020042194092827 +60855123091,214511,0.0263713080168776 +60855123091,215747,0.126582278481013 +60855123091,218135,0.10126582278481 +60855123091,218765,0.0580168776371308 +60855123091,219193,0.29746835443038 +60855123091,219875,0.0959915611814346 +60855123091,220278,0.00316455696202532 +60855123091,221997,0.0780590717299578 +60855123091,222178,0 +60855123091,225095,0 +60855123091,227759,0.0274261603375527 +60855123091,229746,0.0527426160337553 +60855123091,229791,0.0654008438818565 +60855123092,229559,0.917018284106892 +60855123092,231938,0.0829817158931083 +60855123101,212984,0.337946943483276 +60855123101,215777,0.00115340253748558 +60855123101,217057,0.152249134948097 +60855123101,218084,0.00461361014994233 +60855123101,218769,0.230680507497116 +60855123101,220597,0.160322952710496 +60855123101,222004,0.0657439446366782 +60855123101,229564,0.0472895040369089 +60855123101,229736,0 +60855123102,214525,0.209549071618037 +60855123102,215787,0.10079575596817 +60855123102,217104,0 +60855123102,217109,0 +60855123102,217299,0 +60855123102,219229,0 +60855123102,219234,0.111405835543767 +60855123102,219863,0 +60855123102,219864,0.137931034482759 +60855123102,222369,0.0689655172413793 +60855123102,224771,0 +60855123102,231498,0.371352785145889 +60855123111,210586,0.0302491103202847 +60855123111,210590,0.135231316725979 +60855123111,210846,0.0115658362989324 +60855123111,212135,0.0364768683274021 +60855123111,212948,0.0204626334519573 +60855123111,213193,0.0649466192170818 +60855123111,217525,0.0516014234875445 +60855123111,217581,0.0364768683274021 +60855123111,218070,0.00444839857651246 +60855123111,218072,0 +60855123111,218081,0 +60855123111,218129,0.0409252669039146 +60855123111,218131,0.0258007117437722 +60855123111,218134,0.054270462633452 +60855123111,218136,0 +60855123111,218142,0 +60855123111,218319,0.273131672597865 +60855123111,218942,0 +60855123111,218943,0 +60855123111,220284,0.130782918149466 +60855123111,221283,0 +60855123111,221748,0 +60855123111,221777,0 +60855123111,221778,0.00266903914590747 +60855123111,221991,0.0195729537366548 +60855123111,221994,0.0302491103202847 +60855123111,224389,0 +60855123111,224521,0 +60855123111,224530,0.0293594306049822 +60855123111,224534,0 +60855123111,227333,0 +60855123111,227767,0 +60855123111,229566,0 +60855123111,229734,0 +60855123111,230025,0.00177935943060498 +60855123111,231490,0 +60855123121,211837,0.135815991237678 +60855123121,212441,0.067907995618839 +60855123121,212498,0.0449069003285871 +60855123121,213746,0.031763417305586 +60855123121,216470,0.0328587075575027 +60855123121,218595,0.181818181818182 +60855123121,222879,0.0547645125958379 +60855123121,223137,0.198247535596933 +60855123121,228268,0.15881708652793 +60855123121,229567,0.00109529025191676 +60855123121,231947,0.0920043811610077 +60855123131,211652,0.0147710487444609 +60855123131,211832,0.0709010339734121 +60855123131,212943,0.051698670605613 +60855123131,217107,0.265878877400295 +60855123131,218764,0.0930576070901034 +60855123131,220588,0.316100443131462 +60855123131,221795,0.0812407680945347 +60855123131,225093,0.0118168389955687 +60855123131,232327,0.0945347119645495 +60855123132,212456,0.0150862068965517 +60855123132,214526,0.327586206896552 +60855123132,215749,0.0517241379310345 +60855123132,218952,0.021551724137931 +60855123132,220589,0.109913793103448 +60855123132,220618,0.133620689655172 +60855123132,225083,0.0258620689655172 +60855123132,228274,0.157327586206897 +60855123132,229799,0.157327586206897 +60855123141,210857,0 +60855123141,210858,0.0726351351351351 +60855123141,215776,0.402027027027027 +60855123141,218312,0.0540540540540541 +60855123141,219894,0.0574324324324324 +60855123141,222881,0.0439189189189189 +60855123141,222882,0.0591216216216216 +60855123141,229563,0.143581081081081 +60855123141,229800,0.0675675675675676 +60855123141,230224,0.0996621621621622 +60855123142,211382,0.0327272727272727 +60855123142,212139,0.123636363636364 +60855123142,219861,0.236363636363636 +60855123142,219862,0.345454545454545 +60855123142,222368,0.261818181818182 +60855123143,210584,0.0838414634146342 +60855123143,212439,0.144817073170732 +60855123143,212497,0.0304878048780488 +60855123143,213739,0.0731707317073171 +60855123143,216478,0.0304878048780488 +60855123143,220596,0.0548780487804878 +60855123143,222002,0.0548780487804878 +60855123143,230216,0.111280487804878 +60855123143,231946,0.416158536585366 +60855123144,211033,0.0501392757660167 +60855123144,211034,0.064066852367688 +60855123144,212140,0.389972144846797 +60855123144,212496,0 +60855123144,216479,0.0334261838440111 +60855123144,218960,0 +60855123144,220592,0.128133704735376 +60855123144,222000,0.0167130919220056 +60855123144,231496,0.0835654596100279 +60855123144,231945,0.064066852367688 +60855123144,232251,0.064066852367688 +60855123144,232252,0.105849582172702 +60855124011,211360,0.00584795321637427 +60855124011,211392,0.0187134502923977 +60855124011,212448,0.0631578947368421 +60855124011,213516,0.0596491228070175 +60855124011,214157,0.0339181286549708 +60855124011,214322,0.0467836257309942 +60855124011,214327,0.0467836257309941 +60855124011,218056,0.0526315789473684 +60855124011,219202,0.0304093567251462 +60855124011,221038,0.0444444444444444 +60855124011,221762,0.00818713450292398 +60855124011,221769,0.039766081871345 +60855124011,222374,0.00233918128654971 +60855124011,226481,0.064327485380117 +60855124011,226486,0.0900584795321637 +60855124011,228670,0.00350877192982456 +60855124011,229146,0.0292397660818713 +60855124011,230373,0.177777777777778 +60855124011,230857,0.134502923976608 +60855124011,231338,0.0467836257309941 +60855124011,231342,0.00116959064327485 +60855124012,211031,0.183246073298429 +60855124012,211396,0.0244328097731239 +60855124012,212157,0.0157068062827225 +60855124012,212957,0.116928446771379 +60855124012,214990,0.0715532286212914 +60855124012,216482,0.0296684118673647 +60855124012,216562,0.0279232111692845 +60855124012,218776,0.0366492146596859 +60855124012,221291,0.12565445026178 +60855124012,224375,0.0488656195462478 +60855124012,227325,0.087260034904014 +60855124012,228282,0.00174520069808028 +60855124012,228438,0.106457242582897 +60855124012,229288,0.0488656195462478 +60855124012,231763,0.0261780104712042 +60855124012,232069,0.0488656195462478 +60855124021,210859,0.0236559139784946 +60855124021,213343,0.0397849462365591 +60855124021,213519,0.0526881720430108 +60855124021,214152,0.0333333333333333 +60855124021,214155,0.106451612903226 +60855124021,214328,0.0709677419354839 +60855124021,215159,0.0225806451612903 +60855124021,217110,0.0354838709677419 +60855124021,218065,0.0591397849462366 +60855124021,221039,0.0967741935483871 +60855124021,221770,0.0731182795698925 +60855124021,222623,0.0827956989247312 +60855124021,224765,0 +60855124021,227490,0.0526881720430108 +60855124021,230859,0.102150537634409 +60855124021,230862,0.0634408602150538 +60855124021,231346,0.021505376344086 +60855124021,231764,0.0634408602150538 +60855124022,212975,0.00673400673400673 +60855124022,214338,0.0774410774410774 +60855124022,215788,0.0303030303030303 +60855124022,216734,0.0909090909090909 +60855124022,216735,0.0336700336700337 +60855124022,220609,0.00336700336700337 +60855124022,224374,0.164983164983165 +60855124022,224378,0.00336700336700337 +60855124022,224755,0.208754208754209 +60855124022,227492,0.228956228956229 +60855124022,227928,0.0606060606060606 +60855124022,231758,0.0909090909090909 +60855124023,0,0 +60855124023,210596,0.0557377049180328 +60855124023,212447,0.0557377049180328 +60855124023,212686,0.0131147540983607 +60855124023,213515,0.213114754098361 +60855124023,213769,0.019672131147541 +60855124023,217062,0.0819672131147541 +60855124023,218309,0.0655737704918033 +60855124023,220274,0 +60855124023,230032,0.173770491803279 +60855124023,230371,0.2 +60855124023,232259,0.121311475409836 +60855125031,212168,0.0172043010752688 +60855125031,212952,0.0265232974910394 +60855125031,212953,0.0279569892473118 +60855125031,212954,0.0136200716845878 +60855125031,212955,0.0200716845878136 +60855125031,215833,0.0186379928315412 +60855125031,215834,0.0344086021505376 +60855125031,216021,0.0236559139784946 +60855125031,216022,0.032258064516129 +60855125031,216511,0.121863799283154 +60855125031,219206,0.0946236559139785 +60855125031,219207,0.00716845878136201 +60855125031,219477,0.021505376344086 +60855125031,219480,0.267383512544803 +60855125031,219881,0.149820788530466 +60855125031,227936,0.0365591397849462 +60855125031,227937,0.0279569892473118 +60855125031,227938,0.0265232974910394 +60855125031,228666,0.032258064516129 +60855125032,213753,0.041123370110331 +60855125032,215767,0.183550651955868 +60855125032,215773,0.0240722166499498 +60855125032,215774,0.0361083249749248 +60855125032,216739,0.0310932798395186 +60855125032,219883,0.0601805416248746 +60855125032,219884,0.0772316950852558 +60855125032,219892,0.0300902708124373 +60855125032,224751,0.105315947843531 +60855125032,224781,0.0341023069207623 +60855125032,225068,0.0521564694082247 +60855125032,225069,0.0260782347041123 +60855125032,228431,0.0240722166499498 +60855125032,228433,0.0952858575727182 +60855125032,228434,0.0270812437311936 +60855125032,228677,0.0320962888665998 +60855125032,232082,0.0752256770310933 +60855125032,232084,0.045135406218656 +60855125051,212167,0.0248500428449015 +60855125051,215835,0.077120822622108 +60855125051,215836,0.0942587832047986 +60855125051,216488,0.0188517566409597 +60855125051,216492,0.0197086546700943 +60855125051,216747,0.0197086546700943 +60855125051,217075,0.0231362467866324 +60855125051,217579,0.170522707797772 +60855125051,219209,0.0274207369323051 +60855125051,219489,0.151670951156812 +60855125051,220277,0.171379605826907 +60855125051,224371,0.101970865467009 +60855125051,226945,0.0479862896315338 +60855125051,228665,0.0317052270779777 +60855125051,229163,0 +60855125051,232320,0.0197086546700943 +60855125052,212982,0.17910447761194 +60855125052,216517,0 +60855125052,216742,0.0298507462686567 +60855125052,219487,0.115958668197474 +60855125052,219681,0.358208955223881 +60855125052,224754,0.112514351320321 +60855125052,225096,0.0551090700344432 +60855125052,227940,0.052812858783008 +60855125052,228444,0.0711825487944891 +60855125052,228675,0 +60855125052,232085,0.0252583237657865 +60855125061,211374,0.188976377952756 +60855125061,212156,0.0649606299212598 +60855125061,213182,0.0492125984251969 +60855125061,214979,0.031496062992126 +60855125061,214982,0.0393700787401575 +60855125061,215173,0.0570866141732283 +60855125061,216518,0 +60855125061,218778,0.116141732283465 +60855125061,224363,0.143700787401575 +60855125061,224776,0.165354330708661 +60855125061,227117,0.0078740157480315 +60855125061,227496,0.102362204724409 +60855125061,228283,0.0334645669291339 +60855125062,212164,0.0630434782608696 +60855125062,212171,0.0869565217391304 +60855125062,212172,0.058695652173913 +60855125062,212173,0.0521739130434783 +60855125062,212967,0.0304347826086956 +60855125062,216019,0.00434782608695652 +60855125062,216494,0.0434782608695652 +60855125062,217077,0.058695652173913 +60855125062,217123,0.00217391304347826 +60855125062,217779,0.0543478260869565 +60855125062,218607,0.0521739130434783 +60855125062,219199,0.0391304347826087 +60855125062,219486,0 +60855125062,219682,0.110869565217391 +60855125062,220610,0.0891304347826087 +60855125062,222199,0.106521739130435 +60855125062,228834,0.0456521739130435 +60855125062,229978,0 +60855125062,229981,0.102173913043478 +60855125063,212152,0.0437158469945355 +60855125063,212964,0.0587431693989071 +60855125063,212966,0.0546448087431694 +60855125063,213184,0.064207650273224 +60855125063,216013,0.0655737704918033 +60855125063,216493,0.0491803278688525 +60855125063,216555,0.0423497267759563 +60855125063,217778,0.0833333333333333 +60855125063,219210,0.0286885245901639 +60855125063,219878,0.117486338797814 +60855125063,221111,0.0956284153005464 +60855125063,224381,0.102459016393443 +60855125063,224747,0.087431693989071 +60855125063,224760,0.0437158469945355 +60855125063,232321,0.0628415300546448 +60855125081,212950,0.0526315789473684 +60855125081,212961,0.0511695906432749 +60855125081,212965,0.0687134502923977 +60855125081,215766,0.0555555555555556 +60855125081,215839,0.172514619883041 +60855125081,216491,0.0716374269005848 +60855125081,216497,0.0833333333333333 +60855125081,216737,0.162280701754386 +60855125081,217294,0.0160818713450292 +60855125081,219223,0.0190058479532164 +60855125081,225067,0.138888888888889 +60855125081,228442,0.0175438596491228 +60855125081,228446,0.0453216374269006 +60855125081,232322,0.0453216374269006 +60855125082,214975,0.109530583214794 +60855125082,214985,0.0199146514935989 +60855125082,214986,0.0839260312944523 +60855125082,214987,0.0611664295874822 +60855125082,214988,0.0924608819345661 +60855125082,215761,0.199146514935989 +60855125082,215769,0.0910384068278805 +60855125082,217585,0.0810810810810811 +60855125082,219203,0.0867709815078236 +60855125082,221772,0.0483641536273115 +60855125082,227494,0.126600284495021 +60855125083,212176,0.216741405082212 +60855125083,216486,0.0493273542600897 +60855125083,216736,0.0597907324364723 +60855125083,220603,0.0104633781763827 +60855125083,224519,0.0642750373692078 +60855125083,224520,0.118086696562033 +60855125083,229153,0.031390134529148 +60855125083,229158,0.449925261584454 +60855125084,215762,0.229257641921397 +60855125084,215826,0.104803493449782 +60855125084,215827,0.14410480349345 +60855125084,216014,0.0567685589519651 +60855125084,216483,0.104803493449782 +60855125084,219491,0.0283842794759825 +60855125084,220448,0.0393013100436681 +60855125084,224507,0.0807860262008734 +60855125084,224517,0.11353711790393 +60855125084,232074,0.0982532751091703 +60855125091,211363,0.266066838046273 +60855125091,211364,0.0655526992287918 +60855125091,215161,0.0488431876606684 +60855125091,219198,0.0411311053984576 +60855125091,221766,0.077120822622108 +60855125091,227485,0.32133676092545 +60855125091,229986,0.122107969151671 +60855125091,231760,0.057840616966581 +60855125092,211362,0.0203045685279188 +60855125092,214329,0.0558375634517767 +60855125092,214973,0.307106598984772 +60855125092,215160,0.109137055837563 +60855125092,221026,0 +60855125092,224367,0.291878172588832 +60855125092,227484,0.0634517766497462 +60855125092,231759,0.152284263959391 +60855125101,214536,0.180645161290323 +60855125101,217526,0.0309677419354839 +60855125101,217577,0.0412903225806452 +60855125101,219490,0.175483870967742 +60855125101,219493,0.193548387096774 +60855125101,219895,0.0412903225806452 +60855125101,220457,0.0606451612903226 +60855125101,224503,0.136774193548387 +60855125101,228982,0.0309677419354839 +60855125101,228992,0.0361290322580645 +60855125101,228993,0.0554838709677419 +60855125101,229456,0.00516129032258065 +60855125101,231339,0.0116129032258065 +60855125102,215828,0.0831683168316832 +60855125102,216015,0.099009900990099 +60855125102,216016,0.0574257425742574 +60855125102,216017,0.0415841584158416 +60855125102,216485,0.0495049504950495 +60855125102,216738,0.112871287128713 +60855125102,227495,0.265346534653465 +60855125102,227930,0.0851485148514852 +60855125102,231766,0 +60855125102,232070,0.15049504950495 +60855125102,232071,0.0554455445544554 +60855125103,212962,0.0408401400233372 +60855125103,216018,0.0571761960326721 +60855125103,217524,0.137689614935823 +60855125103,219213,0.492415402567095 +60855125103,224746,0.0618436406067678 +60855125103,228674,0 +60855125103,232080,0.180863477246208 +60855125103,232081,0.029171528588098 +60855126021,210561,0 +60855126021,210569,0.00652173913043478 +60855126021,211359,0.00434782608695652 +60855126021,212146,0 +60855126021,212460,0 +60855126021,212461,0.0260869565217391 +60855126021,213341,0.0434782608695652 +60855126021,213513,0.0739130434782609 +60855126021,213517,0.0130434782608696 +60855126021,214154,0.0282608695652174 +60855126021,214517,0.0130434782608696 +60855126021,214519,0.0652173913043478 +60855126021,215344,0 +60855126021,216509,0.00434782608695652 +60855126021,217067,0.115217391304348 +60855126021,217088,0.00217391304347826 +60855126021,217094,0 +60855126021,218059,0 +60855126021,218062,0 +60855126021,218311,0 +60855126021,218603,0.00434782608695652 +60855126021,218779,0.00217391304347826 +60855126021,221029,0.0195652173913043 +60855126021,222631,0.0478260869565217 +60855126021,222633,0 +60855126021,222883,0.0521739130434783 +60855126021,223144,0.0630434782608696 +60855126021,223450,0.00869565217391304 +60855126021,224362,0.00217391304347826 +60855126021,224383,0.00217391304347826 +60855126021,225087,0.0173913043478261 +60855126021,226478,0.184782608695652 +60855126021,226482,0.058695652173913 +60855126021,226485,0.0108695652173913 +60855126021,226953,0 +60855126021,227327,0 +60855126021,227330,0.110869565217391 +60855126021,228680,0 +60855126021,228987,0 +60855126021,229157,0 +60855126021,229162,0 +60855126021,229457,0 +60855126021,231335,0.0195652173913043 +60855126022,212445,0.0459518599562363 +60855126022,212678,0.275711159737418 +60855126022,213514,0.12691466083151 +60855126022,216473,0.0218818380743982 +60855126022,217061,0.115973741794311 +60855126022,221279,0.00437636761487965 +60855126022,222182,0.115973741794311 +60855126022,222183,0.264770240700219 +60855126022,226479,0.0153172866520788 +60855126022,231948,0.0131291028446389 +60855126031,217086,0.00746268656716418 +60855126031,221036,0.0559701492537313 +60855126031,221775,0.0671641791044776 +60855126031,222010,0.287313432835821 +60855126031,223147,0.082089552238806 +60855126031,223454,0.126865671641791 +60855126031,227111,0.373134328358209 +60855126032,215763,0.0378378378378378 +60855126032,216009,0.102702702702703 +60855126032,216740,0.2 +60855126032,219877,0.427027027027027 +60855126032,219889,0.108108108108108 +60855126032,227931,0.124324324324324 +60855126033,211357,0.087719298245614 +60855126033,213347,0 +60855126033,214153,0.0311890838206628 +60855126033,214330,0.0350877192982456 +60855126033,217576,0 +60855126033,218578,0.0487329434697856 +60855126033,218583,0 +60855126033,221022,0.126705653021442 +60855126033,221033,0.01364522417154 +60855126033,221768,0.0604288499025341 +60855126033,222204,0.12280701754386 +60855126033,226955,0.192982456140351 +60855126033,230220,0.00194931773879142 +60855126033,230863,0.0194931773879142 +60855126033,230866,0.0623781676413255 +60855126033,230867,0.0818713450292398 +60855126033,231331,0 +60855126033,231333,0.115009746588694 +60855126041,212465,0.0273972602739726 +60855126041,217119,0.00684931506849315 +60855126041,219683,0.26027397260274 +60855126041,221028,0.280821917808219 +60855126041,221032,0.424657534246575 +60855126042,210564,0.514223194748359 +60855126042,214325,0.282275711159737 +60855126042,219482,0.0656455142231948 +60855126042,221031,0.0962800875273523 +60855126042,223452,0.0393873085339169 +60855126042,229976,0.00218818380743982 +60855126043,212151,0.0224719101123595 +60855126043,212162,0.050561797752809 +60855126043,219205,0.146067415730337 +60855126043,221774,0.0730337078651685 +60855126043,224370,0.0674157303370786 +60855126043,224508,0.213483146067416 +60855126043,224509,0.275280898876405 +60855126043,224748,0.151685393258427 +60855130001,213906,0.358340688437776 +60855130001,215983,0.00088261253309797 +60855130001,217226,0 +60855130001,217228,0.421006178287732 +60855130001,217884,0.217122683142101 +60855130001,218258,0.00264783759929391 +60855130001,219123,0 +60855130001,221327,0 +60855130001,223360,0 +60855130001,223989,0 +60855130001,231184,0 +60855130002,214121,1 +60855130003,217717,1 +60855135001,0,0 +60855135001,210002,0 +60855135001,210005,0.068241469816273 +60855135001,210008,0.036745406824147 +60855135001,210009,0.0708661417322835 +60855135001,210013,0.010498687664042 +60855135001,210176,0.0341207349081365 +60855135001,210178,0.0078740157480315 +60855135001,210181,0.031496062992126 +60855135001,210550,0.0026246719160105 +60855135001,210553,0.0131233595800525 +60855135001,210554,0.020997375328084 +60855135001,210555,0.05249343832021 +60855135001,210558,0.0026246719160105 +60855135001,210559,0.0236220472440945 +60855135001,211021,0 +60855135001,211346,0.010498687664042 +60855135001,211352,0 +60855135001,211355,0 +60855135001,211356,0.0026246719160105 +60855135001,212118,0 +60855135001,212119,0 +60855135001,212127,0 +60855135001,212131,0.041994750656168 +60855135001,212425,0 +60855135001,212430,0 +60855135001,212432,0 +60855135001,212433,0.0183727034120735 +60855135001,212435,0 +60855135001,212925,0 +60855135001,213727,0.078740157480315 +60855135001,213728,0 +60855135001,213731,0.0026246719160105 +60855135001,215737,0.0026246719160105 +60855135001,215739,0.0131233595800525 +60855135001,216463,0 +60855135001,216464,0 +60855135001,217046,0 +60855135001,217047,0.005249343832021 +60855135001,217049,0 +60855135001,217054,0.068241469816273 +60855135001,217055,0 +60855135001,217574,0 +60855135001,218055,0 +60855135001,218112,0.005249343832021 +60855135001,218558,0.0026246719160105 +60855135001,218559,0 +60855135001,218561,0.0026246719160105 +60855135001,218565,0.0078740157480315 +60855135001,218748,0 +60855135001,219473,0 +60855135001,219659,0 +60855135001,219661,0 +60855135001,220262,0 +60855135001,220263,0 +60855135001,220264,0 +60855135001,220270,0.0131233595800525 +60855135001,220437,0.0446194225721785 +60855135001,220439,0 +60855135001,220441,0 +60855135001,220578,0.0078740157480315 +60855135001,220580,0 +60855135001,220585,0.031496062992126 +60855135001,221005,0 +60855135001,221102,0 +60855135001,221269,0 +60855135001,221274,0 +60855135001,221738,0 +60855135001,221740,0.0026246719160105 +60855135001,221743,0.0078740157480315 +60855135001,221980,0 +60855135001,222157,0 +60855135001,222174,0 +60855135001,222361,0 +60855135001,222362,0 +60855135001,222615,0 +60855135001,222871,0.0393700787401575 +60855135001,226935,0.0026246719160105 +60855135001,227314,0 +60855135001,227315,0 +60855135001,227316,0.0183727034120735 +60855135001,227317,0.102362204724409 +60855135001,227318,0.0026246719160105 +60855135001,227320,0.0813648293963255 +60855135001,227743,0 +60855135001,227744,0 +60855135001,228262,0 +60855135001,228653,0.0026246719160105 +60855135001,228654,0 +60855135001,229280,0 +60855135001,229452,0 +60855135001,229723,0 +60855135001,229725,0 +60855135001,229729,0 +60855135001,229958,0 +60855135001,229965,0 +60855135001,229967,0 +60855135001,230541,0.005249343832021 +60855135001,230545,0 +60952501031,511097,0.0495049504950495 +60952501031,511436,0.253465346534653 +60952501031,511744,0.0792079207920792 +60952501031,517655,0.19009900990099 +60952501031,518488,0.427722772277228 +60952501031,519863,0 +60952501032,510799,0.0285714285714286 +60952501032,511367,0.539495798319328 +60952501032,511442,0.34453781512605 +60952501032,514905,0.0873949579831933 +60952501033,513155,0.063231850117096 +60952501033,514078,0.255269320843091 +60952501033,516097,0.166276346604215 +60952501033,516972,0.297423887587822 +60952501033,517663,0.0608899297423888 +60952501033,517902,0.0725995316159251 +60952501033,518762,0.0843091334894614 +60952501041,511588,0.0808383233532934 +60952501041,512100,0.140718562874251 +60952501041,515696,0.110778443113772 +60952501041,516164,0.230538922155689 +60952501041,517906,0.101796407185629 +60952501041,518490,0.0898203592814371 +60952501041,519747,0.137724550898204 +60952501041,520017,0.107784431137725 +60952501042,510801,0.0849256900212314 +60952501042,511439,0.422505307855626 +60952501042,514520,0.233545647558386 +60952501042,515064,0.259023354564756 +60952501051,510051,0.06158357771261 +60952501051,511366,0.356304985337243 +60952501051,516267,0.432551319648094 +60952501051,519524,0.149560117302053 +60952501051,520071,0 +60952501052,511590,0.0239162929745889 +60952501052,513079,0 +60952501052,513097,0 +60952501052,513756,0.180866965620329 +60952501052,514062,0 +60952501052,514357,0 +60952501052,514561,0.131539611360239 +60952501052,515160,0 +60952501052,516707,0 +60952501052,516838,0.0612855007473842 +60952501052,519250,0.295964125560538 +60952501052,519439,0.306427503736921 +60952501053,510050,0.289765721331689 +60952501053,510542,0.093711467324291 +60952501053,512283,0.143033292231813 +60952501053,516579,0.0875462392108508 +60952501053,516632,0.286066584463625 +60952501053,519523,0.0567200986436498 +60952501053,519724,0.0431565967940814 +60952501061,510169,0 +60952501061,510571,0.172351885098743 +60952501061,513081,0.206463195691203 +60952501061,513775,0.0754039497307002 +60952501061,514295,0.0951526032315979 +60952501061,514916,0.253141831238779 +60952501061,516676,0 +60952501061,518571,0.00538599640933573 +60952501061,519441,0.0574506283662478 +60952501061,519922,0.134649910233393 +60952501062,511042,0.188191881918819 +60952501062,511058,0.0651906519065191 +60952501062,511444,0.0701107011070111 +60952501062,511623,0.214022140221402 +60952501062,517675,0.217712177121771 +60952501062,517677,0.167281672816728 +60952501062,518632,0.0774907749077491 +60952502001,510470,0.0520833333333333 +60952502001,511441,0.0486111111111111 +60952502001,511589,0.0416666666666667 +60952502001,515709,0.125 +60952502001,515781,0.190972222222222 +60952502001,516099,0.0208333333333333 +60952502001,516214,0.00520833333333333 +60952502001,516568,0.392361111111111 +60952502001,517909,0.0364583333333333 +60952502001,517910,0.0868055555555556 +60952502002,511086,0 +60952502002,511087,0.051948051948052 +60952502002,511451,0.142857142857143 +60952502002,512110,0.136363636363636 +60952502002,512111,0.0876623376623377 +60952502002,512113,0.100649350649351 +60952502002,516215,0.103896103896104 +60952502002,516216,0.123376623376623 +60952502002,518776,0.12987012987013 +60952502002,519788,0.123376623376623 +60952502003,510313,0.0471698113207547 +60952502003,511449,0.0641509433962264 +60952502003,512112,0.0962264150943396 +60952502003,512516,0.175471698113208 +60952502003,514118,0.162264150943396 +60952502003,514521,0.181132075471698 +60952502003,516027,0.10377358490566 +60952502003,518772,0.118867924528302 +60952502003,520135,0.0509433962264151 +60952503001,511433,0.181372549019608 +60952503001,511434,0.0318627450980392 +60952503001,511440,0.193627450980392 +60952503001,512098,0.21078431372549 +60952503001,514517,0.0220588235294118 +60952503001,515690,0.0833333333333333 +60952503001,517669,0.127450980392157 +60952503001,519868,0.0392156862745098 +60952503001,520016,0.110294117647059 +60952503002,511437,0.128668171557562 +60952503002,513156,0.101580135440181 +60952503002,514512,0.331828442437923 +60952503002,514518,0.0632054176072235 +60952503002,515694,0.0474040632054176 +60952503002,516095,0.054176072234763 +60952503002,516100,0.0993227990970655 +60952503002,519041,0.173814898419865 +60952503003,512101,0.739463601532567 +60952503003,515698,0.130268199233716 +60952503003,515704,0.130268199233716 +60952504001,511060,0.117088607594937 +60952504001,511061,0.370253164556962 +60952504001,514874,0.199367088607595 +60952504001,515699,0.246835443037975 +60952504001,516159,0.0664556962025316 +60952504002,512106,0.172147001934236 +60952504002,512108,0.18568665377176 +60952504002,514513,0.0193423597678917 +60952504002,514515,0.0831721470019342 +60952504002,514875,0.0522243713733075 +60952504002,517905,0.0793036750483559 +60952504002,517912,0.0851063829787234 +60952504002,517913,0.0812379110251451 +60952504002,518637,0.141199226305609 +60952504002,518771,0.00773694390715667 +60952504002,520129,0.0928433268858801 +60952504003,511743,0.0830860534124629 +60952504003,512105,0.0801186943620178 +60952504003,512838,0.100890207715134 +60952504003,514516,0.112759643916914 +60952504003,515703,0.0919881305637982 +60952504003,516213,0.121661721068249 +60952504003,516585,0 +60952504003,518761,0.181008902077151 +60952504003,518770,0.100890207715134 +60952504003,520267,0.127596439169139 +60952505011,511450,0.123456790123457 +60952505011,511454,0.138888888888889 +60952505011,512423,0.259259259259259 +60952505011,516024,0.0679012345679012 +60952505011,516211,0.111111111111111 +60952505011,517921,0.157407407407407 +60952505011,520136,0.104938271604938 +60952505011,520138,0.037037037037037 +60952505012,511473,0.092964824120603 +60952505012,512109,0.170854271356784 +60952505012,514117,0.042713567839196 +60952505012,515705,0.344221105527638 +60952505012,515706,0.0979899497487437 +60952505012,516229,0.092964824120603 +60952505012,517923,0.105527638190955 +60952505012,519725,0.0527638190954774 +60952505021,511452,0.122935779816514 +60952505021,512424,0.055045871559633 +60952505021,512427,0.0568807339449541 +60952505021,512517,0.275229357798165 +60952505021,512520,0.115596330275229 +60952505021,514119,0.0642201834862385 +60952505021,516026,0.0495412844036697 +60952505021,516221,0.143119266055046 +60952505021,516222,0.0623853211009174 +60952505021,518779,0.055045871559633 +60952505022,510302,0.174061433447099 +60952505022,512841,0.170648464163823 +60952505022,518256,0.168941979522184 +60952505022,518782,0 +60952505022,518854,0.486348122866894 +60952506011,510794,0.101391650099404 +60952506011,511282,0.0914512922465209 +60952506011,512737,0.230616302186879 +60952506011,512742,0.0596421471172962 +60952506011,513096,0.135188866799205 +60952506011,513741,0.0755467196819085 +60952506011,518412,0.0874751491053678 +60952506011,520147,0.0795228628230616 +60952506011,520266,0.0139165009940358 +60952506011,520268,0.0874751491053678 +60952506011,520271,0.0377733598409543 +60952506012,510400,0.0111642743221691 +60952506012,511443,0.295055821371611 +60952506012,512739,0.0590111642743222 +60952506012,514567,0.0526315789473684 +60952506012,515702,0.154704944178628 +60952506012,516703,0.161084529505582 +60952506012,518919,0.119617224880383 +60952506012,519034,0.0781499202551834 +60952506012,519163,0.0685805422647528 +60952506013,510401,0.0716510903426791 +60952506013,510790,0.0716510903426791 +60952506013,512439,0.0529595015576324 +60952506013,513737,0.102803738317757 +60952506013,516034,0.386292834890966 +60952506013,516273,0.177570093457944 +60952506013,516275,0.137071651090343 +60952506041,510791,0.0341880341880342 +60952506041,511624,0.213675213675214 +60952506041,511826,0.102564102564103 +60952506041,516084,0.64957264957265 +60952506042,0,0 +60952506042,510164,0.438888888888889 +60952506042,511204,0.386111111111111 +60952506042,514130,0.0861111111111111 +60952506042,520077,0.0888888888888889 +60952506043,513743,0.148989898989899 +60952506043,515362,0.638888888888889 +60952506043,516212,0.138888888888889 +60952506043,519445,0.0732323232323232 +60952506051,510166,0.271812080536913 +60952506051,511018,0.191275167785235 +60952506051,513018,0.187919463087248 +60952506051,518070,0.00335570469798658 +60952506051,518083,0.258389261744966 +60952506051,518857,0.087248322147651 +60952506052,510544,0.163355408388521 +60952506052,512293,0.198675496688742 +60952506052,514358,0.194260485651214 +60952506052,516028,0.443708609271523 +60952506053,0,0 +60952506053,510856,0.669540229885057 +60952506053,518987,0.330459770114943 +60952507011,0,0 +60952507011,510385,0.0518783542039356 +60952507011,510386,0.0483005366726297 +60952507011,511203,0.0858676207513417 +60952507011,513402,0.00178890876565295 +60952507011,513415,0 +60952507011,513480,0 +60952507011,513724,0.0196779964221825 +60952507011,513725,0.0250447227191413 +60952507011,513906,0.0679785330948122 +60952507011,514055,0.198568872987478 +60952507011,514363,0.0161001788908766 +60952507011,515356,0.0232558139534884 +60952507011,515368,0 +60952507011,516777,0 +60952507011,516930,0.0286225402504472 +60952507011,517649,0.0196779964221825 +60952507011,518913,0.0626118067978533 +60952507011,519055,0.350626118067979 +60952507012,510138,0.0331858407079646 +60952507012,510140,0.0442477876106195 +60952507012,510144,0.0929203539823009 +60952507012,510389,0.0398230088495575 +60952507012,510392,0.081858407079646 +60952507012,510395,0.0442477876106195 +60952507012,510783,0.121681415929204 +60952507012,510784,0.0553097345132743 +60952507012,512829,0.0907079646017699 +60952507012,513728,0.0907079646017699 +60952507012,514697,0.0464601769911504 +60952507012,517680,0.172566371681416 +60952507012,518916,0.086283185840708 +60952508011,0,0 +60952508011,510122,0 +60952508011,510382,0 +60952508011,510384,0.00376647834274953 +60952508011,510390,0.150659133709981 +60952508011,510463,0 +60952508011,510464,0 +60952508011,510535,0 +60952508011,510798,0 +60952508011,511456,0.252354048964218 +60952508011,511460,0 +60952508011,511582,0 +60952508011,511586,0 +60952508011,512837,0.378531073446328 +60952508011,513014,0 +60952508011,513023,0 +60952508011,513397,0 +60952508011,513890,0.00188323917137476 +60952508011,513913,0 +60952508011,514054,0 +60952508011,514100,0 +60952508011,514156,0 +60952508011,514208,0.150659133709981 +60952508011,514211,0.0395480225988701 +60952508011,514293,0.0207156308851224 +60952508011,514924,0 +60952508011,515802,0 +60952508011,516682,0 +60952508011,516790,0 +60952508011,516846,0 +60952508011,518180,0 +60952508011,519144,0.00188323917137476 +60952508011,519786,0 +60952508012,512438,0.0557851239669422 +60952508012,512830,0.446280991735537 +60952508012,514895,0 +60952508012,518914,0.12396694214876 +60952508012,520144,0.37396694214876 +60952508013,512284,0.947247706422018 +60952508013,516375,0.0527522935779817 +60952509001,0,0 +60952509001,510547,0.0170212765957447 +60952509001,510550,0.0617021276595745 +60952509001,510945,0.0872340425531915 +60952509001,510949,0.0319148936170213 +60952509001,511928,0.0680851063829787 +60952509001,513472,0.051063829787234 +60952509001,513479,0 +60952509001,516828,0.642553191489362 +60952509001,516910,0.0404255319148936 +60952509002,510304,0 +60952509002,510305,0.0126582278481013 +60952509002,510307,0.00253164556962025 +60952509002,510585,0.283544303797468 +60952509002,510947,0.00759493670886076 +60952509002,510948,0.0822784810126582 +60952509002,510952,0.0468354430379747 +60952509002,513408,0 +60952509002,513476,0.00253164556962025 +60952509002,513783,0.069620253164557 +60952509002,513785,0.0113924050632911 +60952509002,516725,0.0227848101265823 +60952509002,516912,0.0164556962025316 +60952509002,518321,0.281012658227848 +60952509002,518322,0.0278481012658228 +60952509002,519389,0.0215189873417722 +60952509002,519939,0.111392405063291 +60952510001,510173,0.109677419354839 +60952510001,510557,0.109677419354839 +60952510001,510951,0.0870967741935484 +60952510001,510957,0.232258064516129 +60952510001,513413,0.103225806451613 +60952510001,513898,0.0612903225806452 +60952510001,514143,0.116129032258065 +60952510001,514149,0.0258064516129032 +60952510001,514570,0.0548387096774194 +60952510001,515453,0.1 +60952510002,510172,0.158256880733945 +60952510002,510588,0.073394495412844 +60952510002,510595,0.073394495412844 +60952510002,511023,0.0665137614678899 +60952510002,511355,0.100917431192661 +60952510002,513475,0.0344036697247706 +60952510002,513716,0.055045871559633 +60952510002,515445,0.0665137614678899 +60952510002,515446,0.110091743119266 +60952510002,516924,0.0642201834862385 +60952510002,518481,0.0894495412844037 +60952510002,519372,0.0711009174311927 +60952510002,519923,0.036697247706422 +60952510003,510180,0.0636363636363636 +60952510003,510596,0.0272727272727273 +60952510003,511022,0.115151515151515 +60952510003,511024,0.133333333333333 +60952510003,511354,0.0909090909090909 +60952510003,511356,0.0878787878787879 +60952510003,511358,0.0545454545454545 +60952510003,511359,0.0666666666666667 +60952510003,513403,0.124242424242424 +60952510003,513723,0.163636363636364 +60952510003,515052,0.0727272727272727 +60952510003,516570,0 +60952511001,510863,0.0430247718383312 +60952511001,511025,0.0234680573663625 +60952511001,511059,0.0717079530638853 +60952511001,511735,0.061277705345502 +60952511001,513905,0.0964797913950456 +60952511001,514095,0.059973924380704 +60952511001,514097,0.0443285528031291 +60952511001,514098,0.0508474576271186 +60952511001,515357,0.0417209908735332 +60952511001,516091,0 +60952511001,516518,0.106910039113429 +60952511001,517653,0.0182529335071708 +60952511001,517673,0.0625814863102999 +60952511001,518626,0.0521512385919166 +60952511001,518628,0.0378096479791395 +60952511001,518633,0.059973924380704 +60952511001,518638,0.0352020860495437 +60952511001,519873,0.0469361147327249 +60952511001,519879,0.0508474576271186 +60952511001,520006,0.0365058670143416 +60952511002,511028,0.216393442622951 +60952511002,511047,0.0852459016393443 +60952511002,511733,0.0360655737704918 +60952511002,514093,0.19016393442623 +60952511002,515055,0.101639344262295 +60952511002,518485,0.0918032786885246 +60952511002,519742,0.222950819672131 +60952511002,519743,0.0557377049180328 +60952512001,510560,0.0286975717439294 +60952512001,510962,0.0794701986754967 +60952512001,511043,0.0441501103752759 +60952512001,511045,0.0507726269315673 +60952512001,511374,0.0309050772626932 +60952512001,511375,0.114790286975717 +60952512001,511722,0.103752759381898 +60952512001,511729,0.0618101545253863 +60952512001,513712,0.0596026490066225 +60952512001,513907,0.0573951434878587 +60952512001,514082,0.0640176600441501 +60952512001,514083,0.0154525386313466 +60952512001,514087,0.0485651214128035 +60952512001,514146,0.0596026490066225 +60952512001,514715,0.15673289183223 +60952512001,519942,0.0242825607064018 +60952512002,510562,0.155737704918033 +60952512002,511044,0.0327868852459016 +60952512002,511725,0.10655737704918 +60952512002,513715,0.289617486338798 +60952512002,514716,0.0437158469945355 +60952512002,516978,0 +60952512002,516979,0.172131147540984 +60952512002,517667,0.0683060109289618 +60952512002,519864,0.131147540983607 +60952512002,519866,0 +60952512003,511048,0.11787072243346 +60952512003,511730,0 +60952512003,511734,0.110266159695817 +60952512003,513418,0.0608365019011407 +60952512003,513421,0.273764258555133 +60952512003,515355,0.11787072243346 +60952512003,517650,0.0608365019011407 +60952512003,517672,0.159695817490494 +60952512003,519871,0.0988593155893536 +60952513001,510558,0.0935483870967742 +60952513001,510559,0.0548387096774194 +60952513001,511035,0.180645161290323 +60952513001,511037,0.0709677419354839 +60952513001,511726,0.135483870967742 +60952513001,514079,0.135483870967742 +60952513001,514085,0.106451612903226 +60952513001,514145,0.0516129032258065 +60952513001,515066,0.0483870967741935 +60952513001,516923,0.12258064516129 +60952513002,511031,0.140692640692641 +60952513002,511036,0.051948051948052 +60952513002,511369,0.0670995670995671 +60952513002,511371,0.0541125541125541 +60952513002,514088,0.0497835497835498 +60952513002,515068,0.11038961038961 +60952513002,515076,0.127705627705628 +60952513002,517665,0.0541125541125541 +60952513002,518470,0.147186147186147 +60952513002,519735,0.0238095238095238 +60952513002,519748,0.0714285714285714 +60952513002,519862,0.101731601731602 +60952513003,510958,0.0462287104622871 +60952513003,511030,0.165450121654501 +60952513003,514714,0.0875912408759124 +60952513003,516968,0.131386861313869 +60952513003,516970,0.1338199513382 +60952513003,517659,0.0997566909975669 +60952513003,519745,0.0778588807785888 +60952513003,520068,0.257907542579075 +60952514001,510300,0.00861008610086101 +60952514001,511032,0.044280442804428 +60952514001,511095,0.19680196801968 +60952514001,512049,0.043050430504305 +60952514001,512279,0.0701107011070111 +60952514001,512362,0.263222632226322 +60952514001,513918,0.177121771217712 +60952514001,514046,0.154981549815498 +60952514001,516877,0.041820418204182 +60952514002,510299,0.120938628158845 +60952514002,510475,0.0234657039711191 +60952514002,510476,0.0433212996389892 +60952514002,510538,0.0703971119133574 +60952514002,511291,0.0433212996389892 +60952514002,511988,0.0902527075812274 +60952514002,512046,0.110108303249097 +60952514002,513622,0.0812274368231047 +60952514002,513754,0.0126353790613718 +60952514002,514355,0.0722021660649819 +60952514002,516447,0.0541516245487365 +60952514002,516575,0.157039711191336 +60952514002,519433,0.120938628158845 +60952514003,510128,0.0409276944065484 +60952514003,510472,0.0368349249658936 +60952514003,510474,0.0818553888130969 +60952514003,510477,0.0259208731241473 +60952514003,511362,0.0804911323328786 +60952514003,514279,0.0627557980900409 +60952514003,515059,0.0450204638472033 +60952514003,515061,0.0313778990450205 +60952514003,515785,0.129604365620737 +60952514003,516863,0.0613915416098227 +60952514003,517527,0.0477489768076398 +60952514003,518314,0.0627557980900409 +60952514003,519614,0.29331514324693 +60952515001,510134,0.0376712328767123 +60952515001,510308,0.126712328767123 +60952515001,510531,0.0445205479452055 +60952515001,510953,0.0719178082191781 +60952515001,511925,0.0821917808219178 +60952515001,513094,0.0924657534246575 +60952515001,514277,0.219178082191781 +60952515001,516916,0.0479452054794521 +60952515001,517470,0.0410958904109589 +60952515001,518073,0.10958904109589 +60952515001,518327,0.126712328767123 +60952515002,510175,0.0584269662921348 +60952515002,510311,0.0921348314606742 +60952515002,510552,0.0966292134831461 +60952515002,510554,0.0898876404494382 +60952515002,510555,0.0157303370786517 +60952515002,510954,0.182022471910112 +60952515002,511093,0.0426966292134831 +60952515002,512430,0.00449438202247191 +60952515002,514151,0.0247191011235955 +60952515002,514706,0.0337078651685393 +60952515002,515440,0.0359550561797753 +60952515002,516781,0.00898876404494382 +60952515002,516864,0.146067415730337 +60952515002,518072,0.0561797752808989 +60952515002,518074,0.0314606741573034 +60952515002,518319,0.0382022471910112 +60952515002,518328,0.0224719101123595 +60952515002,519623,0.0202247191011236 +60952515003,510176,0.0521739130434783 +60952515003,510548,0.0991304347826087 +60952515003,510556,0.0695652173913043 +60952515003,510950,0.107826086956522 +60952515003,510956,0.0382608695652174 +60952515003,513901,0.0626086956521739 +60952515003,513902,0.0539130434782609 +60952515003,514150,0.0434782608695652 +60952515003,514152,0.0156521739130435 +60952515003,514708,0.0278260869565217 +60952515003,515441,0.0208695652173913 +60952515003,515443,0.0504347826086956 +60952515003,516919,0.0591304347826087 +60952515003,518079,0.144347826086957 +60952515003,518471,0.0330434782608696 +60952515003,519734,0.121739130434783 +60952516001,510130,0.422077922077922 +60952516001,510137,0.0324675324675325 +60952516001,510481,0.051948051948052 +60952516001,514283,0.12012987012987 +60952516001,514931,0.0616883116883117 +60952516001,516720,0.100649350649351 +60952516001,519619,0.149350649350649 +60952516001,519791,0.038961038961039 +60952516001,519925,0.0227272727272727 +60952516002,0,0 +60952516002,510133,0.0392441860465116 +60952516002,510177,0.0203488372093023 +60952516002,510179,0.0523255813953488 +60952516002,510483,0.101744186046512 +60952516002,510539,0.107558139534884 +60952516002,510586,0.0406976744186047 +60952516002,510940,0.0915697674418605 +60952516002,511922,0.103197674418605 +60952516002,511927,0.0203488372093023 +60952516002,511929,0.0465116279069767 +60952516002,513406,0.0276162790697674 +60952516002,513896,0.0319767441860465 +60952516002,516722,0.0479651162790698 +60952516002,516723,0.0421511627906977 +60952516002,516724,0.0174418604651163 +60952516002,516869,0.0232558139534884 +60952516002,516873,0.0508720930232558 +60952516002,517882,0.0726744186046512 +60952516002,519374,0.0566860465116279 +60952516002,519625,0.00581395348837209 +60952517011,510466,0.102893890675241 +60952517011,510479,0.0418006430868167 +60952517011,510861,0.090032154340836 +60952517011,511583,0.0369774919614148 +60952517011,511594,0.0498392282958199 +60952517011,511921,0.0610932475884244 +60952517011,513837,0.160771704180064 +60952517011,513893,0.0723472668810289 +60952517011,515784,0.0578778135048232 +60952517011,515789,0.0128617363344051 +60952517011,516684,0.168810289389068 +60952517011,517475,0.090032154340836 +60952517011,520279,0.0546623794212219 +60952517012,0,0 +60952517012,510461,0.0678191489361702 +60952517012,510465,0.0638297872340425 +60952517012,511578,0.0398936170212766 +60952517012,511579,0.0319148936170213 +60952517012,512615,0 +60952517012,513883,0.132978723404255 +60952517012,513888,0.0797872340425532 +60952517012,514160,0.00531914893617021 +60952517012,517875,0.0478723404255319 +60952517012,517876,0.0518617021276596 +60952517012,517880,0.128989361702128 +60952517012,518172,0.0638297872340425 +60952517012,518173,0.251329787234043 +60952517012,518315,0.0345744680851064 +60952517012,519236,0 +60952517021,510124,0.220048899755501 +60952517021,510125,0.0709046454767726 +60952517021,511984,0.100244498777506 +60952517021,516572,0.0953545232273839 +60952517021,516859,0.0929095354523227 +60952517021,519148,0.178484107579462 +60952517021,520072,0.242053789731051 +60952517022,510181,0.0466926070038911 +60952517022,510462,0.0466926070038911 +60952517022,510468,0 +60952517022,511577,0.0428015564202335 +60952517022,511673,0.151750972762646 +60952517022,513884,0.130350194552529 +60952517022,514296,0.167315175097276 +60952517022,516821,0.0992217898832685 +60952517022,516822,0.110894941634241 +60952517022,519500,0.120622568093385 +60952517022,519518,0.0836575875486381 +60952518021,0,0 +60952518021,510294,0.367130008176615 +60952518021,510471,0.026982829108749 +60952518021,511073,0 +60952518021,511075,0 +60952518021,511225,0 +60952518021,511977,0.0719542109566639 +60952518021,511978,0.158626328699918 +60952518021,512034,0.0098119378577269 +60952518021,512039,0.0973017170891251 +60952518021,512361,0 +60952518021,513835,0.000817661488143908 +60952518021,513972,0 +60952518021,513986,0.100572363041701 +60952518021,514289,0.0130825838103025 +60952518021,514796,0 +60952518021,514804,0 +60952518021,516534,0.0408830744071954 +60952518021,516670,0 +60952518021,516833,0 +60952518021,516837,0 +60952518021,518711,0.0703188879803761 +60952518021,519295,0 +60952518021,519653,0.0425183973834832 +60952518031,0,0 +60952518031,511068,0.434959349593496 +60952518031,511072,0 +60952518031,512605,0 +60952518031,513833,0 +60952518031,514899,0.117886178861789 +60952518031,516671,0.447154471544715 +60952518031,519281,0 +60952518031,519659,0 +60952518032,510158,0.0522565320665083 +60952518032,510159,0.0973871733966746 +60952518032,510160,0.0403800475059382 +60952518032,511288,0.114014251781473 +60952518032,511471,0.190023752969121 +60952518032,511622,0.0997624703087886 +60952518032,511675,0.106888361045131 +60952518032,511678,0.0593824228028504 +60952518032,513971,0 +60952518032,514126,0.0498812351543943 +60952518032,514901,0.130641330166271 +60952518032,519282,0.0593824228028504 +60952518033,510154,0.341317365269461 +60952518033,511287,0.218562874251497 +60952518033,516520,0.0868263473053892 +60952518033,518565,0.0838323353293413 +60952518033,518567,0.155688622754491 +60952518033,518568,0.11377245508982 +60952518034,510157,0.222826086956522 +60952518034,511286,0.114130434782609 +60952518034,513255,0.380434782608696 +60952518034,518563,0.203804347826087 +60952518034,519168,0.078804347826087 +60952518041,510153,0.338414634146341 +60952518041,510170,0.576219512195122 +60952518041,510570,0.0853658536585366 +60952518042,510569,0.313915857605178 +60952518042,511285,0.129449838187702 +60952518042,511618,0.197411003236246 +60952518042,513966,0.0355987055016181 +60952518042,514531,0.323624595469256 +60952518043,0,0 +60952518043,512045,0.278592375366569 +60952518043,515154,0.346041055718475 +60952518043,516378,0.12316715542522 +60952518043,519167,0.252199413489736 +60952519011,0,0 +60952519011,511076,0.567607726597325 +60952519011,511666,0.11887072808321 +60952519011,512040,0.0193164933135215 +60952519011,513459,0 +60952519011,514800,0.0728083209509658 +60952519011,518577,0.0386329866270431 +60952519011,519289,0.182763744427935 +60952519012,510579,0.320474777448071 +60952519012,512041,0.252225519287834 +60952519012,513982,0 +60952519012,518843,0.0237388724035608 +60952519012,519434,0.403560830860534 +60952519013,511981,0.212676056338028 +60952519013,511987,0.683098591549296 +60952519013,516446,0.104225352112676 +60952519021,510573,0.0920245398773006 +60952519021,510577,0.0766871165644172 +60952519021,511290,0.693251533742331 +60952519021,511679,0 +60952519021,511680,0.138036809815951 +60952519022,510575,0.158730158730159 +60952519022,511625,0.0853174603174603 +60952519022,511969,0.0555555555555556 +60952519022,513973,0.0555555555555556 +60952519022,516444,0.0912698412698413 +60952519022,518574,0.196428571428571 +60952519022,518575,0.0615079365079365 +60952519022,518576,0.0694444444444444 +60952519022,519286,0.0515873015873016 +60952519022,519661,0.174603174603175 +60952519023,510578,0 +60952519023,511062,0.142241379310345 +60952519023,511682,0.193965517241379 +60952519023,511972,0.00431034482758621 +60952519023,512681,0 +60952519023,513529,0.293103448275862 +60952519023,513974,0.224137931034483 +60952519023,518579,0.142241379310345 +60952519024,510319,0.0965250965250965 +60952519024,511971,0.0868725868725869 +60952519024,512277,0.154440154440154 +60952519024,513976,0.250965250965251 +60952519024,514556,0.204633204633205 +60952519024,516525,0.125482625482625 +60952519024,519299,0.0810810810810811 +60952519031,512036,0.602985074626866 +60952519031,513979,0.125373134328358 +60952519031,520282,0.271641791044776 +60952519032,510865,0.0596745027124774 +60952519032,511065,0.0470162748643761 +60952519032,511066,0.0759493670886076 +60952519032,511668,0.0343580470162749 +60952519032,511683,0.247739602169982 +60952519032,511974,0.106690777576854 +60952519032,513546,0.197106690777577 +60952519032,513981,0.0433996383363472 +60952519032,518705,0.0795660036166365 +60952519032,518706,0.108499095840868 +60952519033,510532,0.0601851851851852 +60952519033,510533,0.0848765432098765 +60952519033,511063,0.334876543209877 +60952519033,518066,0.233024691358025 +60952519033,518184,0.0339506172839506 +60952519033,518718,0.137345679012346 +60952519033,519430,0.115740740740741 +60952520001,0,0 +60952520001,510151,0.0333817126269956 +60952520001,510320,0.258345428156749 +60952520001,511292,0.41944847605225 +60952520001,513532,0.191582002902758 +60952520001,513534,0 +60952520001,514539,0.0362844702467344 +60952520001,516448,0.0609579100145138 +60952520002,0,0 +60952520002,510148,0.080188679245283 +60952520002,510150,0.0825471698113208 +60952520002,510301,0.0141509433962264 +60952520002,510879,0.0966981132075472 +60952520002,510880,0.0330188679245283 +60952520002,511219,0.167452830188679 +60952520002,511220,0.0589622641509434 +60952520002,512043,0.0943396226415094 +60952520002,513166,0.0778301886792453 +60952520002,513167,0.0778301886792453 +60952520002,513168,0.0518867924528302 +60952520002,514058,0.0589622641509434 +60952520002,516371,0.0613207547169811 +60952520002,518269,0.044811320754717 +60952520003,0,0 +60952520003,510149,0.05 +60952520003,511209,0.119047619047619 +60952520003,511210,0.116666666666667 +60952520003,511211,0.0452380952380952 +60952520003,511214,0.0619047619047619 +60952520003,511218,0.019047619047619 +60952520003,515165,0.185714285714286 +60952520003,516168,0.164285714285714 +60952520003,518268,0.0547619047619048 +60952520003,518715,0.14047619047619 +60952520003,519049,0.0428571428571429 +60952520004,0,0 +60952520004,510534,0.0705882352941176 +60952520004,510869,0.0137254901960784 +60952520004,512103,0.129411764705882 +60952520004,513749,0.0450980392156863 +60952520004,514109,0.0666666666666667 +60952520004,518768,0.0627450980392157 +60952520004,518921,0.264705882352941 +60952520004,519044,0.203921568627451 +60952520004,519046,0.123529411764706 +60952520004,519504,0.0196078431372549 +60952521021,0,0 +60952521021,510317,0 +60952521021,510318,0.0382513661202186 +60952521021,510328,0 +60952521021,510581,0.00109289617486339 +60952521021,511222,0.0557377049180328 +60952521021,511223,0.0273224043715847 +60952521021,511284,0.0459016393442623 +60952521021,511295,0.0775956284153005 +60952521021,511607,0.0972677595628415 +60952521021,511608,0.0207650273224044 +60952521021,511612,0.00218579234972678 +60952521021,511674,0 +60952521021,512348,0 +60952521021,512352,0 +60952521021,512353,0.0655737704918033 +60952521021,512431,0 +60952521021,513013,0.0513661202185792 +60952521021,513261,0.00655737704918033 +60952521021,513264,0.00109289617486339 +60952521021,513541,0.0349726775956284 +60952521021,514101,0 +60952521021,514115,0.0797814207650273 +60952521021,514530,0.0896174863387978 +60952521021,514540,0.0284153005464481 +60952521021,514892,0.00109289617486339 +60952521021,516162,0 +60952521021,516165,0.130054644808743 +60952521021,516372,0.0491803278688525 +60952521021,516705,0.0349726775956284 +60952521021,517883,0 +60952521021,518426,0.0360655737704918 +60952521021,518491,0 +60952521021,518909,0 +60952521021,519054,0.0207650273224044 +60952521021,519127,0.00437158469945355 +60952521021,520260,0 +60952521022,0,0 +60952521022,510321,0 +60952521022,510568,0.0432766615146832 +60952521022,511293,0.106646058732612 +60952521022,511294,0.0401854714064915 +60952521022,511470,0.0123647604327666 +60952521022,511740,0 +60952521022,512107,0 +60952521022,512426,0 +60952521022,512604,0 +60952521022,513537,0.0772797527047913 +60952521022,513539,0.044822256568779 +60952521022,513544,0 +60952521022,513735,0 +60952521022,513769,0 +60952521022,515353,0 +60952521022,516035,0.0788253477588872 +60952521022,516270,0.00154559505409583 +60952521022,516369,0.132921174652241 +60952521022,516457,0 +60952521022,516772,0 +60952521022,517678,0.259659969088099 +60952521022,517908,0 +60952521022,518423,0.102009273570325 +60952521022,518424,0.0602782071097372 +60952521022,519051,0.0216383307573416 +60952521022,519174,0 +60952521022,519184,0 +60952521022,520002,0.0154559505409583 +60952521022,520142,0 +60952521022,520521,0.00309119010819165 +60952521031,516667,0.441584158415842 +60952521031,517927,0.558415841584158 +60952521032,510298,0.179233621755253 +60952521032,510316,0.065512978986403 +60952521032,511224,0.065512978986403 +60952521032,511353,0.0531520395550062 +60952521032,512287,0.112484548825711 +60952521032,512521,0.0605686032138443 +60952521032,514294,0.0543881334981459 +60952521032,515710,0.106304079110012 +60952521032,516030,0.0358467243510507 +60952521032,516031,0.0370828182941904 +60952521032,516223,0.112484548825711 +60952521032,516836,0.034610630407911 +60952521032,516926,0.0333745364647713 +60952521032,518902,0.0494437577255871 +60952521033,513017,0.377551020408163 +60952521033,513764,0.142857142857143 +60952521033,514365,0.479591836734694 +60952521041,510182,0.00550206327372765 +60952521041,510183,0.0508940852819807 +60952521041,510324,0.0453920220082531 +60952521041,510795,0.0646492434662999 +60952521041,510943,0.306740027510316 +60952521041,511019,0.00137551581843191 +60952521041,514103,0.0742778541953232 +60952521041,514888,0.0563961485557084 +60952521041,516029,0.0165061898211829 +60952521041,516269,0.0440165061898212 +60952521041,516629,0.111416781292985 +60952521041,517472,0.192572214580468 +60952521041,519567,0.0302613480055021 +60952521042,510398,0.0783505154639175 +60952521042,510563,0.402061855670103 +60952521042,510797,0.0412371134020619 +60952521042,512292,0.0556701030927835 +60952521042,512524,0.119587628865979 +60952521042,514275,0.144329896907216 +60952521042,519627,0.158762886597938 +60952521043,0,0 +60952521043,510564,0.0579439252336449 +60952521043,510963,0.241121495327103 +60952521043,511721,0.0822429906542056 +60952521043,513545,0.0710280373831776 +60952521043,514213,0.0635514018691589 +60952521043,514282,0 +60952521043,517469,0.362616822429907 +60952521043,519248,0.121495327102804 +60952521051,510567,0.0839363241678727 +60952521051,510724,0.597684515195369 +60952521051,510941,0.0911722141823444 +60952521051,513752,0.0506512301013025 +60952521051,514102,0.0723589001447178 +60952521051,516630,0.044862518089725 +60952521051,519557,0.0593342981186686 +60952521052,510325,0.0991452991452991 +60952521052,510326,0.123076923076923 +60952521052,513621,0 +60952521052,514695,0.712820512820513 +60952521052,514887,0.0649572649572649 +60952521061,510565,0.0335820895522388 +60952521061,513249,0.210820895522388 +60952521061,518168,0.0895522388059701 +60952521061,519612,0.666044776119403 +60952521062,512747,0.0837004405286344 +60952521062,512748,0.301762114537445 +60952521062,513246,0.147577092511013 +60952521062,513247,0.101321585903084 +60952521062,513251,0.118942731277533 +60952521062,513748,0.066079295154185 +60952521062,516874,0.105726872246696 +60952521062,519045,0.0748898678414097 +60952521063,512749,0.273141122913505 +60952521063,513248,0.726858877086495 +60952521071,514274,0.482300884955752 +60952521071,516365,0.0685840707964602 +60952521071,516580,0.162610619469027 +60952521071,516845,0.286504424778761 +60952521072,510147,0.0240480961923848 +60952521072,510867,0.0661322645290581 +60952521072,510874,0.0861723446893788 +60952521072,511212,0.128256513026052 +60952521072,511213,0.0901803607214429 +60952521072,513250,0.0861723446893788 +60952521072,514106,0.0861723446893788 +60952521072,514112,0.062124248496994 +60952521072,514113,0.112224448897796 +60952521072,516366,0.190380761523046 +60952521072,518258,0.0681362725450902 +60952521081,510566,0.392014519056261 +60952521081,510877,0.029038112522686 +60952521081,511208,0.11978221415608 +60952521081,511215,0.0852994555353902 +60952521081,511283,0.0362976406533575 +60952521081,511587,0.183303085299456 +60952521081,513746,0.137931034482759 +60952521081,516880,0.0163339382940109 +60952521082,513163,0.0666666666666667 +60952521082,513528,0.107246376811594 +60952521082,516082,0.0623188405797101 +60952521082,516361,0.0666666666666667 +60952521082,516831,0.592753623188406 +60952521082,519164,0.0507246376811594 +60952521082,520143,0.0536231884057971 +60952522011,0,0 +60952522011,510208,0.0287162162162162 +60952522011,510354,0.0185810810810811 +60952522011,510503,0.118243243243243 +60952522011,510984,0 +60952522011,511163,0.0109797297297297 +60952522011,511935,0.00929054054054054 +60952522011,512207,0 +60952522011,512211,0.00422297297297297 +60952522011,512955,0.0430743243243243 +60952522011,513278,0.0785472972972973 +60952522011,513334,0.111486486486486 +60952522011,514398,0.00168918918918919 +60952522011,515102,0.152027027027027 +60952522011,515203,0.0253378378378378 +60952522011,515997,0 +60952522011,516398,0.105574324324324 +60952522011,516400,0.0135135135135135 +60952522011,517428,0.00168918918918919 +60952522011,517430,0.120777027027027 +60952522011,517686,0.125 +60952522011,518520,0.00253378378378378 +60952522011,518942,0.0287162162162162 +60952522012,0,0 +60952522012,510352,0.00366300366300366 +60952522012,510828,0.358974358974359 +60952522012,511870,0.120879120879121 +60952522012,512876,0.0146520146520147 +60952522012,513579,0.106227106227106 +60952522012,515581,0.0586080586080586 +60952522012,518661,0.0879120879120879 +60952522012,518813,0.0769230769230769 +60952522012,520109,0.172161172161172 +60952522013,0,0 +60952522013,510207,0.377224199288256 +60952522013,510357,0 +60952522013,510360,0 +60952522013,511869,0.0569395017793594 +60952522013,515612,0 +60952522013,516126,0.302491103202847 +60952522013,516403,0.263345195729537 +60952522014,510242,0.106333072713057 +60952522014,510243,0 +60952522014,510436,0 +60952522014,510437,0 +60952522014,510777,0.199374511336982 +60952522014,510831,0.000781860828772478 +60952522014,511992,0.0109460516028147 +60952522014,513000,0 +60952522014,513002,0.0422204847537138 +60952522014,513200,0 +60952522014,514755,0.0969507427677873 +60952522014,515207,0.0390930414386239 +60952522014,515620,0.0617670054730258 +60952522014,515661,0.00234558248631744 +60952522014,516136,0.00781860828772478 +60952522014,516138,0.053948397185301 +60952522014,516140,0.00938232994526974 +60952522014,516242,0.0320562939796716 +60952522014,516303,0.0250195465207193 +60952522014,516309,0.0985144644253323 +60952522014,517332,0.0750586395621579 +60952522014,517640,0.0344018764659891 +60952522014,518452,0 +60952522014,519582,0.00234558248631744 +60952522014,519802,0.0578577013291634 +60952522014,519981,0.0437842064112588 +60952522021,510909,0 +60952522021,511168,0.197452229299363 +60952522021,511968,0 +60952522021,515098,0.246284501061571 +60952522021,518867,0 +60952522021,520213,0.556263269639066 +60952522022,510232,0 +60952522022,511492,0.0625814863102999 +60952522022,511685,0.0691003911342894 +60952522022,512386,0.0208604954367666 +60952522022,512850,0.0743155149934811 +60952522022,513491,0.0651890482398957 +60952522022,513549,0.059973924380704 +60952522022,513933,0 +60952522022,515104,0 +60952522022,515478,0.148631029986962 +60952522022,516482,0.0586701434159061 +60952522022,517405,0 +60952522022,517417,0.18122555410691 +60952522022,518194,0.220338983050847 +60952522022,519318,0.0391134289439374 +60952522023,0,0 +60952522023,510910,0.804915514592934 +60952522023,510917,0.00460829493087558 +60952522023,510988,0 +60952522023,512373,0.0998463901689708 +60952522023,513424,0.0245775729646697 +60952522023,515101,0 +60952522023,515391,0.00768049155145929 +60952522023,515663,0.00460829493087558 +60952522023,518449,0.0537634408602151 +60952522024,0,0 +60952522024,510246,0.00174672489082969 +60952522024,510428,0.0786026200873362 +60952522024,511395,0 +60952522024,511534,0.110917030567686 +60952522024,511684,0.0838427947598253 +60952522024,511771,0 +60952522024,511875,0.0663755458515284 +60952522024,512636,0.14235807860262 +60952522024,514377,0 +60952522024,514917,0.000873362445414847 +60952522024,515334,0.332751091703057 +60952522024,515587,0.0899563318777293 +60952522024,515653,0.0672489082969432 +60952522024,517296,0 +60952522024,517496,0 +60952522024,517643,0.0253275109170306 +60952523051,0,0 +60952523051,510210,0 +60952523051,510245,0.00143266475644699 +60952523051,510631,0 +60952523051,510692,0.00859598853868195 +60952523051,510982,0.0716332378223496 +60952523051,510989,0 +60952523051,510990,0 +60952523051,511147,0 +60952523051,511148,0.0143266475644699 +60952523051,511873,0.0687679083094556 +60952523051,512078,0.0386819484240688 +60952523051,512567,0 +60952523051,512763,0 +60952523051,512854,0 +60952523051,513559,0 +60952523051,513846,0.0988538681948424 +60952523051,514000,0 +60952523051,514507,0.107449856733524 +60952523051,514609,0 +60952523051,514976,0.0386819484240688 +60952523051,515107,0.472779369627507 +60952523051,515192,0.00716332378223496 +60952523051,515664,0 +60952523051,515998,0.0100286532951289 +60952523051,516601,0.0272206303724928 +60952523051,516960,0 +60952523051,517009,0 +60952523051,517063,0 +60952523051,517192,0.0128939828080229 +60952523051,517421,0 +60952523051,517544,0 +60952523051,518587,0 +60952523051,518806,0.00286532951289398 +60952523051,519824,0.0186246418338109 +60952523052,510922,0 +60952523052,511517,0.386206896551724 +60952523052,512860,0.341379310344828 +60952523052,515195,0.0448275862068966 +60952523052,515590,0 +60952523052,516742,0.0758620689655172 +60952523052,516743,0.151724137931034 +60952523052,517003,0 +60952523053,512956,0.148148148148148 +60952523053,513485,0.277777777777778 +60952523053,515568,0.237654320987654 +60952523053,515591,0.0787037037037037 +60952523053,517282,0.123456790123457 +60952523053,517374,0.0493827160493827 +60952523053,518666,0.0848765432098765 +60952523061,510993,0.412133891213389 +60952523061,510994,0.0774058577405858 +60952523061,511111,0.146443514644351 +60952523061,512861,0.102510460251046 +60952523061,513422,0.184100418410042 +60952523061,517538,0.0774058577405858 +60952523062,510818,0.4328165374677 +60952523062,513182,0.0465116279069767 +60952523062,513423,0.18733850129199 +60952523062,513558,0.0361757105943152 +60952523062,515592,0.0645994832041344 +60952523062,516109,0.0361757105943152 +60952523062,516111,0.0516795865633075 +60952523062,516112,0.0594315245478036 +60952523062,517354,0.0374677002583979 +60952523062,519391,0.0478036175710594 +60952523101,510252,0.0937866354044549 +60952523101,510340,0.228604923798359 +60952523101,510624,0.0316529894490035 +60952523101,511176,0.041031652989449 +60952523101,511303,0.018757327080891 +60952523101,511948,0.00468933177022274 +60952523101,511949,0.0773739742086753 +60952523101,512559,0.0562719812426729 +60952523101,512767,0.0140679953106682 +60952523101,512770,0.116060961313013 +60952523101,513824,0.022274325908558 +60952523101,514399,0.157092614302462 +60952523101,516117,0.0328253223915592 +60952523101,517119,0.105509964830012 +60952523102,510014,0.0657534246575342 +60952523102,511155,0.0493150684931507 +60952523102,512060,0.00273972602739726 +60952523102,512385,0.0904109589041096 +60952523102,512778,0.0356164383561644 +60952523102,513932,0.0986301369863014 +60952523102,513991,0.0821917808219178 +60952523102,515804,0.0273972602739726 +60952523102,516952,0.00547945205479452 +60952523102,517436,0.421917808219178 +60952523102,518099,0 +60952523102,518378,0.120547945205479 +60952523111,510343,0.0730688935281837 +60952523111,510658,0.0563674321503132 +60952523111,512320,0.0438413361169102 +60952523111,512707,0.154488517745303 +60952523111,515881,0.572025052192067 +60952523111,517037,0.100208768267223 +60952523112,510626,0.0512483574244415 +60952523112,510627,0.363994743758213 +60952523112,510628,0.0210249671484888 +60952523112,511158,0 +60952523112,511306,0.088042049934297 +60952523112,511763,0.441524310118265 +60952523112,513192,0 +60952523112,519307,0.0341655716162943 +60952523113,510017,0.110749185667752 +60952523113,510337,0.156351791530945 +60952523113,512561,0.403908794788274 +60952523113,517487,0.328990228013029 +60952523121,511162,0.18864774624374 +60952523121,512367,0.0250417362270451 +60952523121,513928,0.148580968280467 +60952523121,514489,0.0484140233722871 +60952523121,515740,0.168614357262103 +60952523121,516329,0.208681135225376 +60952523121,516815,0.212020033388982 +60952523122,510810,1 +60952523131,510219,0.0689655172413793 +60952523131,512564,0.332123411978221 +60952523131,513355,0.519056261343013 +60952523131,514382,0.0798548094373866 +60952523132,510016,0.0646616541353383 +60952523132,510216,0 +60952523132,510339,0.249624060150376 +60952523132,512057,0.243609022556391 +60952523132,512469,0.0766917293233083 +60952523132,512565,0 +60952523132,518740,0.365413533834586 +60952523133,510499,0 +60952523133,511123,0 +60952523133,513553,0.770325203252032 +60952523133,513555,0.103658536585366 +60952523133,515875,0 +60952523133,516965,0.126016260162602 +60952523141,510222,1 +60952523142,510639,0.349785407725322 +60952523142,510817,0.0407725321888412 +60952523142,512375,0.21244635193133 +60952523142,514381,0.0665236051502146 +60952523142,517318,0.330472103004292 +60952523143,510235,0.464684014869888 +60952523143,510771,0.139405204460967 +60952523143,511511,0.107806691449814 +60952523143,512466,0.0780669144981413 +60952523143,514827,0.180297397769517 +60952523143,516392,0.0297397769516729 +60952523151,511117,0.111627906976744 +60952523151,511628,0.288372093023256 +60952523151,512076,0.144186046511628 +60952523151,514611,0.167441860465116 +60952523151,515177,0.288372093023256 +60952523152,510002,0.248927038626609 +60952523152,510805,0.178111587982833 +60952523152,511120,0.165236051502146 +60952523152,512943,0 +60952523152,517049,0.218884120171674 +60952523152,517127,0.0987124463519313 +60952523152,517697,0.0901287553648069 +60952523153,510217,0.161290322580645 +60952523153,511121,0.344758064516129 +60952523153,513552,0.116935483870968 +60952523153,513554,0.215725806451613 +60952523153,517295,0.161290322580645 +60952523161,511122,0.824742268041237 +60952523161,513107,0.173539518900344 +60952523161,517366,0.00171821305841924 +60952523162,510251,0.629906542056075 +60952523162,514828,0.235514018691589 +60952523162,516339,0.134579439252336 +60952523171,0,0 +60952523171,510427,0.615384615384615 +60952523171,511124,0.00327332242225859 +60952523171,511540,0.00654664484451719 +60952523171,511995,0.106382978723404 +60952523171,512075,0 +60952523171,514612,0.0261865793780687 +60952523171,515586,0.0801963993453355 +60952523171,516185,0.0016366612111293 +60952523171,517315,0.160392798690671 +60952523172,0,0 +60952523172,510009,0 +60952523172,510358,0 +60952523172,510684,0 +60952523172,510697,0.0368231046931408 +60952523172,510780,0.12057761732852 +60952523172,510807,0 +60952523172,510981,0.0397111913357401 +60952523172,511327,0 +60952523172,512066,0.0353790613718412 +60952523172,512202,0 +60952523172,512849,0.0541516245487365 +60952523172,513993,0 +60952523172,514845,0 +60952523172,515200,0.0664259927797834 +60952523172,515201,0.0787003610108303 +60952523172,515205,0.0267148014440433 +60952523172,515259,0 +60952523172,515867,0.230324909747292 +60952523172,515888,0 +60952523172,515889,0.000722021660649819 +60952523172,516120,0 +60952523172,516135,0.00288808664259928 +60952523172,516184,0.0433212996389892 +60952523172,516416,0.132851985559567 +60952523172,517498,0.00288808664259928 +60952523172,518228,0.0555956678700361 +60952523172,518231,0 +60952523172,518235,0.0245487364620939 +60952523172,518736,0.0389891696750903 +60952523172,519571,0.000722021660649819 +60952523172,519679,0 +60952523172,519680,0.00505415162454874 +60952523172,519681,0.0036101083032491 +60952523172,520224,0 +60952524011,510641,0.090625 +60952524011,511230,0.203125 +60952524011,511232,0.103125 +60952524011,512381,0.121875 +60952524011,514390,0.140625 +60952524011,515274,0.1 +60952524011,515275,0.096875 +60952524011,516302,0.103125 +60952524011,518944,0.040625 +60952524012,511932,0.0314685314685315 +60952524012,514196,0.0314685314685315 +60952524012,515647,0.353146853146853 +60952524012,516129,0.244755244755245 +60952524012,516130,0.108391608391608 +60952524012,517187,0 +60952524012,519814,0.230769230769231 +60952524013,511114,0.768802228412256 +60952524013,513857,0.128133704735376 +60952524013,514388,0.100278551532033 +60952524013,516957,0.00278551532033426 +60952524014,511229,0.0822942643391521 +60952524014,511313,0.0698254364089776 +60952524014,511867,0 +60952524014,513185,0 +60952524014,515272,0.0698254364089776 +60952524014,516063,0.640897755610973 +60952524014,516300,0.057356608478803 +60952524014,516301,0.0798004987531172 +60952524021,511133,0.111111111111111 +60952524021,511930,0.718346253229974 +60952524021,516413,0.0801033591731266 +60952524021,516473,0.0904392764857881 +60952524022,0,0 +60952524022,510683,0 +60952524022,511135,0 +60952524022,511310,0.758620689655172 +60952524022,511931,0.0818965517241379 +60952524022,512138,0 +60952524022,514199,0 +60952524022,514200,0.0014367816091954 +60952524022,514650,0 +60952524022,514660,0 +60952524022,515394,0.0617816091954023 +60952524022,515877,0 +60952524022,515905,0.0028735632183908 +60952524022,516894,0 +60952524022,517031,0 +60952524022,517033,0 +60952524022,519214,0 +60952524022,519804,0.0933908045977011 +60952524023,511312,0.463576158940397 +60952524023,512963,0.536423841059603 +60952525011,510769,0 +60952525011,511240,0.131067961165049 +60952525011,511247,0.0436893203883495 +60952525011,511504,0.135922330097087 +60952525011,512693,0.106796116504854 +60952525011,512699,0.135922330097087 +60952525011,512700,0.106796116504854 +60952525011,517336,0.194174757281553 +60952525011,517337,0.145631067961165 +60952525012,510764,0.213256484149856 +60952525012,510766,0.0778097982708934 +60952525012,510767,0.190201729106628 +60952525012,511239,0.0763688760806916 +60952525012,511241,0.0619596541786744 +60952525012,511242,0.0547550432276657 +60952525012,511503,0.0778097982708934 +60952525012,512302,0.0331412103746398 +60952525012,514392,0.0273775216138329 +60952525012,514823,0.0360230547550432 +60952525012,516384,0.0389048991354467 +60952525012,517327,0.0893371757925072 +60952525012,517328,0 +60952525012,518949,0.0230547550432277 +60952525021,510643,0 +60952525021,511233,0 +60952525021,511234,0.0100334448160535 +60952525021,511243,0 +60952525021,511246,0.00668896321070234 +60952525021,511506,0.107023411371237 +60952525021,511940,0.120401337792642 +60952525021,512145,0.0501672240802676 +60952525021,512696,0.096989966555184 +60952525021,514654,0.0367892976588629 +60952525021,514655,0.00668896321070234 +60952525021,514661,0.040133779264214 +60952525021,514813,0.110367892976589 +60952525021,514825,0.0668896321070234 +60952525021,515278,0.0301003344481605 +60952525021,516132,0.0836120401337793 +60952525021,516385,0.040133779264214 +60952525021,516386,0.0167224080267559 +60952525021,517146,0.11371237458194 +60952525021,517149,0.0234113712374582 +60952525021,517432,0 +60952525021,519952,0.040133779264214 +60952525022,510768,0.153284671532847 +60952525022,511244,0.160583941605839 +60952525022,511245,0.0985401459854015 +60952525022,511933,0.113138686131387 +60952525022,511942,0.0656934306569343 +60952525022,512213,0.0912408759124088 +60952525022,513499,0.0802919708029197 +60952525022,514484,0.109489051094891 +60952525022,515906,0.0656934306569343 +60952525022,516474,0 +60952525022,517163,0.062043795620438 +60952526041,510819,0.753125 +60952526041,514385,0 +60952526041,515263,0.246875 +60952526041,515593,0 +60952526041,517936,0 +60952526041,518582,0 +60952526041,518583,0 +60952526042,510225,0.11328125 +60952526042,510661,0.583984375 +60952526042,510815,0.064453125 +60952526042,511228,0.048828125 +60952526042,519674,0.14453125 +60952526042,519809,0.044921875 +60952526043,510640,0.102803738317757 +60952526043,511852,0.143302180685358 +60952526043,512379,0.208722741433022 +60952526043,513860,0.0841121495327103 +60952526043,514014,0.0747663551401869 +60952526043,514387,0.0186915887850467 +60952526043,514815,0.252336448598131 +60952526043,516131,0.0778816199376947 +60952526043,516298,0.0373831775700935 +60952526051,510224,0.287878787878788 +60952526051,512383,0.205627705627706 +60952526051,514379,0 +60952526051,514822,0.327922077922078 +60952526051,515266,0.178571428571429 +60952526052,510763,0.0470588235294118 +60952526052,511128,0.254901960784314 +60952526052,511235,0.368627450980392 +60952526052,512687,0.194117647058824 +60952526052,515269,0.135294117647059 +60952526053,510765,0.0562659846547315 +60952526053,511130,0.0230179028132992 +60952526053,511541,0.176470588235294 +60952526053,512692,0.10230179028133 +60952526053,512694,0.120204603580563 +60952526053,516307,0.115089514066496 +60952526053,516308,0.153452685421995 +60952526053,516383,0.061381074168798 +60952526053,517145,0.0383631713554987 +60952526053,518139,0.153452685421995 +60952526061,511129,0.17663421418637 +60952526061,512194,0.219749652294854 +60952526061,512196,0.019471488178025 +60952526061,513108,0.584144645340751 +60952526062,512193,0.879732739420935 +60952526062,515179,0.120267260579065 +60952526063,510237,0.348360655737705 +60952526063,510665,0.206967213114754 +60952526063,512365,0.247950819672131 +60952526063,516190,0.157786885245902 +60952526063,518948,0.0389344262295082 +60952526071,511508,0.12807881773399 +60952526071,511635,0.334975369458128 +60952526071,511637,0.0591133004926108 +60952526071,512949,0.061576354679803 +60952526071,512950,0.083743842364532 +60952526071,513115,0.083743842364532 +60952526071,515186,0.0541871921182266 +60952526071,516321,0.0788177339901478 +60952526071,517368,0.11576354679803 +60952526072,510227,0.0472878998609179 +60952526072,512198,0.0598052851182198 +60952526072,512314,0 +60952526072,512947,0.112656467315716 +60952526072,515187,0.0139082058414465 +60952526072,520084,0.7663421418637 +60952526081,511638,0.456989247311828 +60952526081,512313,0.543010752688172 +60952526082,511636,0.256067961165049 +60952526082,512945,0.0570388349514563 +60952526082,512948,0.154126213592233 +60952526082,512953,0.066747572815534 +60952526082,514378,0.435679611650485 +60952526082,517367,0.0303398058252427 +60952526101,510077,0.185328185328185 +60952526101,510079,0.133204633204633 +60952526101,510652,0.0888030888030888 +60952526101,512201,0.0444015444015444 +60952526101,515822,0.0617760617760618 +60952526101,516414,0.222007722007722 +60952526101,516486,0.0540540540540541 +60952526101,517334,0.21042471042471 +60952526102,511633,0.142300194931774 +60952526102,511850,0.115009746588694 +60952526102,512317,0.0740740740740741 +60952526102,512944,0.10916179337232 +60952526102,513111,0.0916179337231969 +60952526102,513119,0.0545808966861598 +60952526102,514471,0.0760233918128655 +60952526102,515466,0.0799220272904483 +60952526102,516395,0.0467836257309941 +60952526102,516397,0.0955165692007797 +60952526102,517373,0.0604288499025341 +60952526102,520087,0.0545808966861598 +60952526111,510651,0.100961538461538 +60952526111,511634,0.0384615384615385 +60952526111,511640,0.0240384615384615 +60952526111,515467,0.336538461538462 +60952526111,516133,0.28125 +60952526111,516393,0.158653846153846 +60952526111,516394,0.0600961538461538 +60952526112,512632,0.22140221402214 +60952526112,516183,0.247232472324723 +60952526112,517401,0.284132841328413 +60952526112,518528,0.247232472324723 +60952526113,515191,1 +60952527021,0,0 +60952527021,510334,0.116803278688525 +60952527021,511134,0 +60952527021,511493,0.131147540983607 +60952527021,512003,0.0942622950819672 +60952527021,512304,0.0225409836065574 +60952527021,512306,0.0840163934426229 +60952527021,512316,0.112704918032787 +60952527021,513926,0.0389344262295082 +60952527021,514487,0.0327868852459016 +60952527021,514488,0.0225409836065574 +60952527021,516119,0.0614754098360656 +60952527021,516477,0.0348360655737705 +60952527021,516478,0.0512295081967213 +60952527021,517061,0.194672131147541 +60952527021,517132,0.00204918032786885 +60952527022,510336,0.33015873015873 +60952527022,510635,0.0476190476190476 +60952527022,510907,0 +60952527022,511138,0.0634920634920635 +60952527022,511943,0.0603174603174603 +60952527022,512005,0 +60952527022,512147,0.0984126984126984 +60952527022,512315,0.019047619047619 +60952527022,512396,0.0507936507936508 +60952527022,513925,0.117460317460317 +60952527022,518870,0.212698412698413 +60952527023,0,0 +60952527023,511331,0.0756013745704467 +60952527023,512688,0.103092783505155 +60952527023,514653,0.570446735395189 +60952527023,516483,0.171821305841924 +60952527023,520236,0.0790378006872852 +60952527024,510333,0.240917782026769 +60952527024,511945,0.0363288718929254 +60952527024,512054,0.0898661567877629 +60952527024,514970,0.0917782026768642 +60952527024,515559,0.147227533460803 +60952527024,516118,0.393881453154876 +60952527025,511496,0.272727272727273 +60952527025,511947,0.443526170798898 +60952527025,512061,0.118457300275482 +60952527025,517044,0 +60952527025,519457,0.165289256198347 +60952527026,0,0 +60952527026,510013,0.0130293159609121 +60952527026,510240,0.00977198697068404 +60952527026,510254,0 +60952527026,510348,0 +60952527026,510632,0.736156351791531 +60952527026,510636,0.0749185667752443 +60952527026,510645,0 +60952527026,510666,0 +60952527026,510774,0 +60952527026,510776,0 +60952527026,510778,0.0162866449511401 +60952527026,510804,0.00651465798045603 +60952527026,510997,0 +60952527026,511110,0 +60952527026,511119,0 +60952527026,511127,0 +60952527026,511237,0 +60952527026,511302,0 +60952527026,511630,0 +60952527026,511631,0 +60952527026,511691,0 +60952527026,511874,0 +60952527026,511959,0 +60952527026,512053,0 +60952527026,512566,0.0781758957654723 +60952527026,512691,0 +60952527026,512705,0.00325732899022801 +60952527026,513198,0 +60952527026,513283,0 +60952527026,513333,0.00651465798045603 +60952527026,514318,0 +60952527026,514322,0.00325732899022801 +60952527026,514405,0 +60952527026,514605,0.00325732899022801 +60952527026,514606,0 +60952527026,514843,0.00325732899022801 +60952527026,515729,0.00651465798045603 +60952527026,516079,0 +60952527026,516114,0 +60952527026,516182,0.00325732899022801 +60952527026,516551,0.00325732899022801 +60952527026,516605,0.0130293159609121 +60952527026,516902,0 +60952527026,517834,0 +60952527026,518668,0 +60952527026,519840,0.0195439739413681 +60952527031,510229,0.26875 +60952527031,510625,0.384375 +60952527031,510672,0.096875 +60952527031,510673,0.15625 +60952527031,515190,0.08125 +60952527031,520209,0.0125 +60952527031,520519,0 +60952527032,510228,0.103092783505155 +60952527032,510646,0.177319587628866 +60952527032,511639,0.224742268041237 +60952527032,512952,0.0969072164948453 +60952527032,513118,0.0762886597938144 +60952527032,514005,0.0680412371134021 +60952527032,515395,0.0927835051546392 +60952527032,517154,0.160824742268041 +60952527033,510648,0.458015267175573 +60952527033,510833,0.264631043256997 +60952527033,510996,0.27735368956743 +60952527041,510649,0.705882352941176 +60952527041,515465,0.294117647058823 +60952527042,511131,0.245614035087719 +60952527042,514478,0.219298245614035 +60952527042,515469,0.144736842105263 +60952527042,516472,0.118421052631579 +60952527042,517161,0.12719298245614 +60952527042,520097,0.144736842105263 +60952527043,510330,0.28673835125448 +60952527043,510502,0.222222222222222 +60952527043,512310,0.211469534050179 +60952527043,516334,0.200716845878136 +60952527043,516488,0.0788530465949821 +60952527044,511999,0.151898734177215 +60952527044,513934,0.286919831223629 +60952527044,514979,0.20253164556962 +60952527044,515554,0.126582278481013 +60952527044,520206,0.232067510548523 +60952527045,513495,0.0692883895131086 +60952527045,513496,0.0561797752808989 +60952527045,513498,0.0543071161048689 +60952527045,514475,0.0543071161048689 +60952527045,514476,0.0730337078651685 +60952527045,516330,0.601123595505618 +60952527045,517160,0.048689138576779 +60952527045,519975,0.0430711610486891 +60952527051,510093,0.265060240963855 +60952527051,510653,0.144578313253012 +60952527051,511946,0.0873493975903614 +60952527051,512055,0.0843373493975904 +60952527051,513564,0.120481927710843 +60952527051,514493,0.159638554216867 +60952527051,517415,0.13855421686747 +60952527052,511861,0.107692307692308 +60952527052,512629,0.130769230769231 +60952527052,512630,0.1 +60952527052,514749,0.157692307692308 +60952527052,516407,0.169230769230769 +60952527052,516425,0.215384615384615 +60952527052,518512,0.119230769230769 +60952527053,510092,0.263598326359833 +60952527053,512628,0.163179916317992 +60952527053,512980,0.317991631799163 +60952527053,517390,0.129707112970711 +60952527053,518511,0.125523012552301 +60952527054,510080,0.0793918918918919 +60952527054,510655,0.0557432432432432 +60952527054,510656,0.0658783783783784 +60952527054,512312,0.14527027027027 +60952527054,512540,0.0456081081081081 +60952527054,512544,0.16722972972973 +60952527054,512545,0.10472972972973 +60952527054,512958,0.0422297297297297 +60952527054,514309,0.0506756756756757 +60952527054,515817,0.0439189189189189 +60952527054,517394,0.0861486486486487 +60952527054,517397,0.0439189189189189 +60952527054,517412,0.0692567567567568 +60952527055,510078,0.353092783505155 +60952527055,511839,0.368556701030928 +60952527055,515814,0.077319587628866 +60952527055,515816,0.118556701030928 +60952527055,516406,0.0824742268041237 +60952527061,0,0 +60952527061,510634,0.163006756756757 +60952527061,510688,0.0625 +60952527061,510822,0.117398648648649 +60952527061,512546,0.101351351351351 +60952527061,512556,0.142736486486486 +60952527061,514380,0.216216216216216 +60952527061,514837,0.0472972972972973 +60952527061,515398,0.0506756756756757 +60952527061,515576,0.03125 +60952527061,516746,0.0278716216216216 +60952527061,517179,0.0388513513513514 +60952527061,518739,0 +60952527061,519089,0.000844594594594595 +60952527071,510511,0.165322580645161 +60952527071,513494,0.0336021505376344 +60952527071,513497,0.133064516129032 +60952527071,514479,0.0806451612903226 +60952527071,515656,0.0134408602150538 +60952527071,517058,0.35752688172043 +60952527071,517159,0.102150537634409 +60952527071,519676,0.0443548387096774 +60952527071,520098,0.0698924731182796 +60952527072,510654,0.08199121522694 +60952527072,512539,0.551976573938507 +60952527072,514816,0.361639824304539 +60952527072,516487,0.00439238653001464 +60952527073,511151,0.0398406374501992 +60952527073,511998,0.235059760956175 +60952527073,515556,0.0876494023904383 +60952527073,515746,0.199203187250996 +60952527073,516405,0.223107569721116 +60952527073,519087,0.215139442231076 +60952528011,511140,0 +60952528012,512073,0 +60952528012,515890,0 +60952528013,0,0 +60952528013,512480,1 +60952528014,511519,0.133333333333333 +60952528014,511520,0.231884057971014 +60952528014,512622,0.301449275362319 +60952528014,512970,0.0550724637681159 +60952528014,517173,0.165217391304348 +60952528014,518367,0.11304347826087 +60952528015,0,0 +60952528015,510010,0.0454545454545455 +60952528015,516417,0.881818181818182 +60952528015,517171,0 +60952528015,517385,0.0727272727272727 +60952528021,510085,0 +60952528021,510086,0.828571428571429 +60952528021,511525,0 +60952528021,511529,0 +60952528021,512978,0 +60952528021,514747,0 +60952528021,515561,0 +60952528021,516239,0 +60952528021,516422,0 +60952528021,517494,0.171428571428571 +60952528022,510508,0 +60952528022,510509,0 +60952528022,511401,0 +60952528022,511522,0.857142857142857 +60952528022,511523,0.142857142857143 +60952528022,511952,0 +60952528022,511953,0 +60952528022,512209,0 +60952528022,512549,0 +60952528022,512974,0 +60952528022,514402,0 +60952528022,514738,0 +60952528022,514756,0 +60952528022,514757,0 +60952528022,516490,0 +60952529031,0,0 +60952529031,510109,0.0617283950617284 +60952529031,510279,0.0339506172839506 +60952529031,511430,0.00308641975308642 +60952529031,511907,0.0925925925925926 +60952529031,512029,0.0185185185185185 +60952529031,512174,0.0679012345679012 +60952529031,512175,0 +60952529031,512338,0.00925925925925926 +60952529031,512343,0.037037037037037 +60952529031,512924,0.219135802469136 +60952529031,512933,0.0401234567901235 +60952529031,515949,0 +60952529031,516507,0 +60952529031,517582,0.0339506172839506 +60952529031,517858,0.00308641975308642 +60952529031,519705,0.00925925925925926 +60952529031,519769,0 +60952529031,520031,0.367283950617284 +60952529031,520117,0.00308641975308642 +60952529032,0,0 +60952529032,510118,0.110778443113772 +60952529032,511657,0.0359281437125748 +60952529032,512247,0.0688622754491018 +60952529032,514855,0.062874251497006 +60952529032,515496,0.0778443113772455 +60952529032,517588,0.167664670658683 +60952529032,518289,0.476047904191617 +60952529033,510043,0 +60952529033,510285,0.0130597014925373 +60952529033,511197,0 +60952529033,512230,0.0746268656716418 +60952529033,512581,0.0708955223880597 +60952529033,512582,0.0690298507462686 +60952529033,512935,0.0578358208955224 +60952529033,514343,0 +60952529033,515488,0.10634328358209 +60952529033,516443,0.083955223880597 +60952529033,517449,0.121268656716418 +60952529033,517586,0.130597014925373 +60952529033,517865,0 +60952529033,518287,0.0149253731343284 +60952529033,519722,0.257462686567164 +60952529033,520175,0 +60952529034,0,0 +60952529034,510115,0.0897097625329815 +60952529034,510290,0.079155672823219 +60952529034,510528,0.0897097625329815 +60952529034,510845,0.00263852242744063 +60952529034,511273,0.0263852242744063 +60952529034,511279,0.00263852242744063 +60952529034,511334,0.0316622691292876 +60952529034,511335,0.0237467018469657 +60952529034,511422,0.0105540897097625 +60952529034,511655,0.00263852242744063 +60952529034,511656,0 +60952529034,512656,0.00527704485488127 +60952529034,512660,0.0395778364116095 +60952529034,513958,0.0422163588390501 +60952529034,514345,0.0158311345646438 +60952529034,514449,0.0158311345646438 +60952529034,515215,0.00263852242744063 +60952529034,515217,0.00527704485488127 +60952529034,515430,0.0131926121372032 +60952529034,515521,0.0105540897097625 +60952529034,515765,0.00263852242744063 +60952529034,515860,0 +60952529034,516427,0.0686015831134565 +60952529034,516659,0 +60952529034,517800,0.0844327176781003 +60952529034,517812,0.00527704485488127 +60952529034,518167,0.0633245382585752 +60952529034,518555,0.00263852242744063 +60952529034,519221,0.00263852242744063 +60952529034,519279,0.0844327176781003 +60952529034,519412,0.0131926121372032 +60952529034,519716,0 +60952529034,519853,0.0844327176781003 +60952529034,520162,0.079155672823219 +60952529041,0,0 +60952529041,511015,0.079225352112676 +60952529041,511714,0.0651408450704225 +60952529041,511718,0.00352112676056338 +60952529041,512021,0.0809859154929577 +60952529041,512585,0.102112676056338 +60952529041,512586,0.0545774647887324 +60952529041,513957,0.0563380281690141 +60952529041,514465,0.195422535211268 +60952529041,515284,0.154929577464789 +60952529041,515545,0.0440140845070423 +60952529041,518692,0.028169014084507 +60952529041,519424,0.0633802816901408 +60952529041,520118,0.0721830985915493 +60952529042,0,0 +60952529042,510049,0.00130890052356021 +60952529042,510268,0 +60952529042,510843,0.00130890052356021 +60952529042,511271,0.00130890052356021 +60952529042,511659,0.0261780104712042 +60952529042,511804,0.0104712041884817 +60952529042,512587,0 +60952529042,512588,0.00130890052356021 +60952529042,513306,0.0130890052356021 +60952529042,513307,0.429319371727749 +60952529042,513961,0.153141361256545 +60952529042,513962,0.0222513089005236 +60952529042,515767,0 +60952529042,517595,0.049738219895288 +60952529042,517597,0 +60952529042,518034,0.12303664921466 +60952529042,518743,0 +60952529042,518750,0 +60952529042,519233,0.134816753926702 +60952529042,519274,0.0327225130890052 +60952529042,519426,0 +60952529042,520256,0 +60952529043,0,0 +60952529043,510262,0.13519313304721 +60952529043,510271,0.330472103004292 +60952529043,510274,0.00643776824034335 +60952529043,510291,0.17381974248927 +60952529043,512164,0.0214592274678112 +60952529043,512231,0.0493562231759657 +60952529043,512405,0 +60952529043,512590,0.0150214592274678 +60952529043,513075,0.055793991416309 +60952529043,513076,0.01931330472103 +60952529043,516689,0.145922746781116 +60952529043,520047,0.0472103004291846 +60952529081,510366,0.342028985507246 +60952529081,512097,0.298550724637681 +60952529081,512717,0.359420289855072 +60952529082,510371,0.039453717754173 +60952529082,511266,0.461305007587253 +60952529082,512719,0.0576631259484067 +60952529082,512903,0.0971168437025797 +60952529082,518611,0.344461305007587 +60952529083,512168,0.871886120996441 +60952529083,520243,0.128113879003559 +60952529091,510450,0.0407766990291262 +60952529091,510840,0.254368932038835 +60952529091,513304,0.506796116504854 +60952529091,514028,0.0135922330097087 +60952529091,517603,0.087378640776699 +60952529091,519645,0.0970873786407767 +60952529092,510034,0.325622775800712 +60952529092,510047,0.0106761565836299 +60952529092,510836,0.642348754448399 +60952529092,513315,0.00355871886120996 +60952529092,514688,0.0177935943060498 +60952529092,517519,0 +60952529092,518408,0 +60952529101,510361,0.269911504424779 +60952529101,510364,0.40929203539823 +60952529101,510837,0.0398230088495575 +60952529101,513443,0.132743362831858 +60952529101,519717,0.148230088495575 +60952529102,510372,0.291015625 +60952529102,510374,0.35546875 +60952529102,510375,0.216796875 +60952529102,518249,0.13671875 +60952529103,510036,0.247172859450727 +60952529103,510451,0.148626817447496 +60952529103,512096,0.180936995153473 +60952529103,512497,0.0856219709208401 +60952529103,513141,0.323101777059774 +60952529103,514041,0.0145395799676898 +60952529104,511193,0.566371681415929 +60952529104,511343,0.0914454277286136 +60952529104,517617,0.342182890855457 +60952529111,510846,0.0997920997920998 +60952529111,512810,0.323284823284823 +60952529111,513586,0.0748440748440748 +60952529111,514447,0 +60952529111,514782,0.0550935550935551 +60952529111,516513,0.211018711018711 +60952529111,517854,0 +60952529111,517999,0 +60952529111,518062,0.00207900207900208 +60952529111,518063,0.00415800415800416 +60952529111,518405,0.106029106029106 +60952529111,519110,0 +60952529111,519904,0.123700623700624 +60952529111,520052,0 +60952529112,512166,0.122480620155039 +60952529112,513071,0.147286821705426 +60952529112,514422,0.00310077519379845 +60952529112,518406,0.117829457364341 +60952529112,518554,0.108527131782946 +60952529112,519644,0 +60952529112,520046,0.50077519379845 +60952529112,520163,0 +60952529113,510278,0.427083333333333 +60952529113,512410,0.229166666666667 +60952529113,513146,0.135416666666667 +60952529113,513232,0.100694444444444 +60952529113,514687,0.107638888888889 +60952529114,510041,0.595105672969967 +60952529114,510362,0.155728587319244 +60952529114,512167,0 +60952529114,517994,0.187986651835373 +60952529114,520040,0.0611790878754171 +60952529121,510027,0.488738738738739 +60952529121,510842,0.0315315315315315 +60952529121,510847,0.045045045045045 +60952529121,512733,0.0900900900900901 +60952529121,519025,0.175675675675676 +60952529121,519028,0 +60952529121,519646,0.168918918918919 +60952529122,512334,0 +60952529122,512731,0.284172661870504 +60952529122,513221,0.205035971223022 +60952529122,513588,0.510791366906475 +60952529122,513669,0 +60952529123,513149,0.280519480519481 +60952529123,514676,0.438961038961039 +60952529123,516762,0.0441558441558442 +60952529123,517770,0.0831168831168831 +60952529123,519718,0.153246753246753 +60952529124,511565,0.0919811320754717 +60952529124,512178,0.452830188679245 +60952529124,512812,0.205188679245283 +60952529124,513236,0.134433962264151 +60952529124,518403,0.115566037735849 +60952529125,510033,0.260233918128655 +60952529125,511561,0.274853801169591 +60952529125,512165,0.16374269005848 +60952529125,512665,0.043859649122807 +60952529125,515773,0.0321637426900585 +60952529125,517634,0.225146198830409 +60952529131,511563,0.206451612903226 +60952529131,511801,0.135483870967742 +60952529131,513142,0.0774193548387097 +60952529131,516004,0.212903225806452 +60952529131,516009,0.193548387096774 +60952529131,516152,0.174193548387097 +60952529132,510380,0.0636792452830189 +60952529132,510841,0.10377358490566 +60952529132,511562,0.275943396226415 +60952529132,512400,0.0235849056603774 +60952529132,513591,0.127358490566038 +60952529132,516006,0.195754716981132 +60952529132,516253,0.150943396226415 +60952529132,519021,0.0589622641509434 +60952529133,510851,0.60377358490566 +60952529133,513583,0.0700808625336927 +60952529133,513653,0.21832884097035 +60952529133,513660,0.107816711590297 +60952529134,512422,0.126126126126126 +60952529134,513594,0.29954954954955 +60952529134,517799,0.0563063063063063 +60952529134,518402,0.353603603603604 +60952529134,518410,0.0630630630630631 +60952529134,519023,0.101351351351351 +60952529141,510039,0.197333333333333 +60952529141,510282,0.154666666666667 +60952529141,510373,0.124 +60952529141,512172,0.00133333333333333 +60952529141,512510,0.0426666666666667 +60952529141,512905,0.364 +60952529141,512928,0.04 +60952529141,517623,0.00933333333333333 +60952529141,518250,0.0666666666666667 +60952529142,510032,0.056710775047259 +60952529142,512800,0.30812854442344 +60952529142,513313,0.0359168241965974 +60952529142,517798,0.283553875236295 +60952529142,517997,0.0926275992438563 +60952529142,518047,0.223062381852552 +60952529143,510844,1 +60952529151,510265,0.418181818181818 +60952529151,510852,0.125 +60952529151,512723,0.00681818181818182 +60952529151,513140,0.245454545454545 +60952529151,513951,0.0545454545454545 +60952529151,515851,0.025 +60952529151,516254,0.125 +60952529152,510037,0.0912052117263844 +60952529152,510260,0 +60952529152,510264,0.0912052117263844 +60952529152,510854,0.00977198697068404 +60952529152,512419,0.187296416938111 +60952529152,513521,0.00162866449511401 +60952529152,513647,0.190553745928339 +60952529152,514067,0.0130293159609121 +60952529152,516196,0.249185667752443 +60952529152,518246,0.166123778501629 +60952530001,0,0 +60952530001,516021,0 +60952530001,516562,0 +60952530001,516621,0 +60952530001,517810,0 +60952531011,510111,0 +60952531011,511350,0.0409090909090909 +60952531011,511602,0.00909090909090909 +60952531011,511705,0.377272727272727 +60952531011,511706,0.0136363636363636 +60952531011,511900,0.0409090909090909 +60952531011,512601,0.163636363636364 +60952531011,512914,0.0272727272727273 +60952531011,514781,0 +60952531011,515343,0.0136363636363636 +60952531011,515537,0.0454545454545454 +60952531011,516511,0.181818181818182 +60952531011,517846,0 +60952531011,518301,0.0863636363636364 +60952531011,519649,0 +60952531012,511345,0.0859106529209622 +60952531012,511347,0 +60952531012,511600,0.147766323024055 +60952531012,511601,0.343642611683849 +60952531012,511905,0.0618556701030928 +60952531012,512937,0.00343642611683849 +60952531012,514853,0.0790378006872852 +60952531012,515044,0.0893470790378007 +60952531012,515536,0 +60952531012,517820,0.151202749140893 +60952531012,518296,0.00343642611683849 +60952531012,519852,0.0343642611683849 +60952531013,510927,0.153374233128834 +60952531013,510932,0.162576687116564 +60952531013,511894,0.147239263803681 +60952531013,511895,0.0889570552147239 +60952531013,515211,0.196319018404908 +60952531013,518010,0.174846625766871 +60952531013,518159,0.0766871165644172 +60952531014,510924,0.236842105263158 +60952531014,510925,0.0864661654135338 +60952531014,511892,0.191729323308271 +60952531014,512932,0.25187969924812 +60952531014,515530,0.101503759398496 +60952531014,515532,0.131578947368421 +60952531015,512929,0.41588785046729 +60952531015,514457,0.114485981308411 +60952531015,515036,0.0864485981308411 +60952531015,517992,0.364485981308411 +60952531015,519848,0.0186915887850467 +60952531016,510447,0.0511111111111111 +60952531016,512249,0.16 +60952531016,512726,0.111111111111111 +60952531016,513223,0.124444444444444 +60952531016,514849,0.415555555555556 +60952531016,515518,0.111111111111111 +60952531016,520037,0.0266666666666667 +60952531051,511603,0.0471014492753623 +60952531051,511813,0 +60952531051,512917,0 +60952531051,514778,0.699275362318841 +60952531051,515139,0 +60952531051,517778,0.253623188405797 +60952531051,518051,0 +60952531051,519903,0 +60952531052,510455,0.558863328822733 +60952531052,512335,0 +60952531052,514040,0.228687415426252 +60952531052,516759,0.212449255751015 +60952531053,510257,0.0714285714285714 +60952531053,511712,0.0822510822510823 +60952531053,514677,0.0562770562770563 +60952531053,515285,0.188311688311688 +60952531053,516758,0.242424242424242 +60952531053,517779,0.0800865800865801 +60952531053,518305,0.145021645021645 +60952531053,518307,0.0779220779220779 +60952531053,518604,0.0562770562770563 +60952531054,511424,0.202127659574468 +60952531054,512085,0.457446808510638 +60952531054,512241,0.205673758865248 +60952531054,518453,0.134751773049645 +60952531055,517621,0.653061224489796 +60952531055,519553,0.346938775510204 +60952531061,512242,0.503378378378378 +60952531061,512900,0.152027027027027 +60952531061,512901,0.202702702702703 +60952531061,516150,0.141891891891892 +60952531062,515683,0.306049822064057 +60952531062,516005,0.405693950177936 +60952531062,517807,0.288256227758007 +60952531063,511799,0.0472103004291846 +60952531063,512094,0.0958512160228898 +60952531063,512095,0.0329041487839771 +60952531063,513309,0.566523605150215 +60952531063,516003,0.163090128755365 +60952531063,516346,0 +60952531063,517792,0.0386266094420601 +60952531063,518610,0.055793991416309 +60952531071,510105,0.094488188976378 +60952531071,510106,0.0918635170603675 +60952531071,511708,0 +60952531071,512940,0.0813648293963255 +60952531071,513654,0.120734908136483 +60952531071,514442,0 +60952531071,514462,0.398950131233596 +60952531071,515542,0.089238845144357 +60952531071,515688,0.123359580052493 +60952531072,511429,0.124054462934947 +60952531072,511797,0.104387291981846 +60952531072,512092,0.145234493192133 +60952531072,515142,0.370650529500756 +60952531072,517787,0.0574886535552194 +60952531072,517824,0.151285930408472 +60952531072,518602,0.0468986384266263 +60952531073,510449,0.0803897685749086 +60952531073,511428,0.119366626065773 +60952531073,512087,0.526187576126675 +60952531073,517790,0.132764920828258 +60952531073,518603,0.0316686967113276 +60952531073,519994,0.0803897685749086 +60952531073,520248,0.0292326431181486 +60952531074,512091,0.431122448979592 +60952531074,512509,0.0688775510204082 +60952531074,515689,0.191326530612245 +60952531074,517785,0.308673469387755 +60952531081,511425,0.0818965517241379 +60952531081,512594,0.0344827586206897 +60952531081,512658,0.160919540229885 +60952531081,512897,0.0775862068965517 +60952531081,515685,0.0704022988505747 +60952531081,516144,0.0517241379310345 +60952531081,516145,0.0330459770114943 +60952531081,517459,0.125 +60952531081,517589,0.0804597701149425 +60952531081,517783,0.0445402298850575 +60952531081,517825,0.109195402298851 +60952531081,518297,0.0387931034482759 +60952531081,518599,0.0919540229885057 +60952531082,510031,0.0547945205479452 +60952531082,511192,0.719178082191781 +60952531082,511426,0.0639269406392694 +60952531082,512896,0.0639269406392694 +60952531082,518122,0.0981735159817352 +60952531083,0,0 +60952531083,511349,0.0182767624020888 +60952531083,512595,0.302872062663185 +60952531083,513450,0.164490861618799 +60952531083,513523,0.224543080939948 +60952531083,517602,0 +60952531083,520155,0.289817232375979 +60952532011,510035,0.0707070707070707 +60952532011,512734,0.0787878787878788 +60952532011,513225,0.0262626262626263 +60952532011,515489,0.0808080808080808 +60952532011,516243,0.167676767676768 +60952532011,516250,0.165656565656566 +60952532011,517619,0.0848484848484848 +60952532011,518163,0.147474747474747 +60952532011,518458,0.103030303030303 +60952532011,520116,0.0747474747474747 +60952532012,510376,0.103658536585366 +60952532012,510835,0.359756097560976 +60952532012,510839,0.0701219512195122 +60952532012,513150,0.0335365853658537 +60952532012,513877,0.176829268292683 +60952532012,515351,0.0640243902439024 +60952532012,515500,0.155487804878049 +60952532012,517620,0.0335365853658537 +60952532012,518459,0.00304878048780488 +60952532013,510277,0.0561330561330561 +60952532013,510288,0.0852390852390852 +60952532013,510448,0.32016632016632 +60952532013,510458,0.0332640332640333 +60952532013,511569,0.0540540540540541 +60952532013,515034,0.118503118503119 +60952532013,515517,0.0561330561330561 +60952532013,518005,0.0873180873180873 +60952532013,518155,0.0478170478170478 +60952532013,519841,0.141372141372141 +60952532014,510444,0.501945525291829 +60952532014,512026,0.118677042801556 +60952532014,512027,0.0389105058365759 +60952532014,514680,0.0817120622568093 +60952532014,517512,0.25875486381323 +60952532031,511570,0.0541871921182266 +60952532031,511595,0.0394088669950739 +60952532031,511596,0.0394088669950739 +60952532031,511891,0.0394088669950739 +60952532031,514679,0.149425287356322 +60952532031,514692,0.0459770114942529 +60952532031,514694,0.0410509031198686 +60952532031,514846,0.0147783251231527 +60952532031,515035,0.0788177339901478 +60952532031,515288,0.083743842364532 +60952532031,518002,0.0394088669950739 +60952532031,518003,0.0394088669950739 +60952532031,518154,0.0394088669950739 +60952532031,518156,0.0459770114942529 +60952532031,518157,0.0410509031198686 +60952532031,518158,0.123152709359606 +60952532031,519842,0.0443349753694581 +60952532031,519844,0.0410509031198686 +60952532032,510457,0.138698630136986 +60952532032,510459,0.0650684931506849 +60952532032,511597,0.0530821917808219 +60952532032,511598,0.0393835616438356 +60952532032,511886,0.10958904109589 +60952532032,511887,0.0565068493150685 +60952532032,511888,0.0993150684931507 +60952532032,511898,0 +60952532032,512729,0.0445205479452055 +60952532032,514691,0.00513698630136986 +60952532032,515032,0.0462328767123288 +60952532032,515534,0.0547945205479452 +60952532032,517632,0.107876712328767 +60952532032,518004,0.107876712328767 +60952532032,518009,0.0719178082191781 +60952532033,510110,0 +60952532033,510460,0.0863095238095238 +60952532033,510930,0 +60952532033,511599,0.0386904761904762 +60952532033,511890,0.163690476190476 +60952532033,511901,0.0803571428571428 +60952532033,511902,0.12797619047619 +60952532033,511903,0.00595238095238095 +60952532033,511904,0 +60952532033,512931,0.395833333333333 +60952532033,514850,0.101190476190476 +60952532033,514852,0 +60952532033,515341,0 +60952532033,515535,0 +60952532033,519988,0 +60952532041,0,0 +60952532041,510276,0 +60952532041,510367,0.00172117039586919 +60952532041,510929,0.129087779690189 +60952532041,511812,0.0430292598967298 +60952532041,514039,0.0929432013769363 +60952532041,518830,0 +60952532041,519414,0.733218588640275 +60952532042,510379,0.434540389972145 +60952532042,511572,0.337047353760446 +60952532042,511663,0.0473537604456825 +60952532042,513308,0.172701949860724 +60952532042,518030,0.00835654596100279 +60952532043,512408,0.0804387568555759 +60952532043,514413,0.120658135283364 +60952532043,515214,0.0585009140767824 +60952532043,516607,0.248628884826325 +60952532043,517995,0.0292504570383912 +60952532043,518290,0.213893967093236 +60952532043,518684,0.248628884826325 +60952532044,510101,0.139175257731959 +60952532044,510102,0.077319587628866 +60952532044,510103,0.134020618556701 +60952532044,510452,0.0902061855670103 +60952532044,512235,0.270618556701031 +60952532044,512236,0.0644329896907216 +60952532044,518298,0.0670103092783505 +60952532044,518299,0.157216494845361 +60952532045,515540,0.861650485436893 +60952532045,519993,0.138349514563107 +60952532051,510269,0.145631067961165 +60952532051,511558,0.0339805825242718 +60952532051,512936,0.0800970873786408 +60952532051,513067,0.140776699029126 +60952532051,514684,0.116504854368932 +60952532051,517631,0.233009708737864 +60952532051,518165,0.0776699029126214 +60952532051,520161,0.172330097087379 +60952532052,511269,0.160919540229885 +60952532052,514685,0.371647509578544 +60952532052,515434,0.256704980842912 +60952532052,519987,0.210727969348659 +60952532053,512514,0 +60952532053,514779,0.322368421052632 +60952532053,516654,0 +60952532053,518050,0 +60952532053,518300,0.256578947368421 +60952532053,519777,0.414473684210526 +60952532053,520044,0.00657894736842105 +60952532061,510030,0.194029850746269 +60952532061,511006,0.166044776119403 +60952532061,511720,0.0727611940298507 +60952532061,512080,0.0298507462686567 +60952532061,512728,0.0578358208955224 +60952532061,513643,0.0597014925373134 +60952532061,515042,0.0858208955223881 +60952532061,517809,0.205223880597015 +60952532061,518254,0.0783582089552239 +60952532061,519222,0.0503731343283582 +60952532062,0,0 +60952532062,511664,0.552688172043011 +60952532062,512017,0.0301075268817204 +60952532062,513445,0.0924731182795699 +60952532062,513446,0.101075268817204 +60952532062,513448,0.223655913978495 +60952532062,514025,0 +60952533001,0,0 +60952533001,510056,0.00369685767097967 +60952533001,510063,0 +60952533001,510064,0.0055452865064695 +60952533001,510066,0 +60952533001,510067,0 +60952533001,510189,0 +60952533001,510203,0.0055452865064695 +60952533001,510413,0.0184842883548983 +60952533001,510488,0.00369685767097967 +60952533001,510607,0.00184842883548983 +60952533001,510616,0.00184842883548983 +60952533001,510618,0.0055452865064695 +60952533001,510732,0.00184842883548983 +60952533001,510733,0.0129390018484288 +60952533001,510735,0.0258780036968577 +60952533001,510892,0.00184842883548983 +60952533001,510966,0.00369685767097967 +60952533001,510968,0.00369685767097967 +60952533001,510969,0 +60952533001,510970,0.00184842883548983 +60952533001,510974,0.00924214417744917 +60952533001,510976,0.00184842883548983 +60952533001,511107,0.00369685767097967 +60952533001,511377,0.0129390018484288 +60952533001,511378,0 +60952533001,511476,0.0129390018484288 +60952533001,511486,0 +60952533001,511489,0 +60952533001,511746,0 +60952533001,511758,0.00369685767097967 +60952533001,512121,0.00924214417744917 +60952533001,512182,0.00739371534195933 +60952533001,512753,0 +60952533001,512755,0.00739371534195933 +60952533001,513803,0.00184842883548983 +60952533001,513843,0.00184842883548983 +60952533001,513844,0.0055452865064695 +60952533001,514171,0.00739371534195933 +60952533001,514176,0.00184842883548983 +60952533001,514595,0 +60952533001,514630,0.022181146025878 +60952533001,514947,0.00924214417744917 +60952533001,514948,0 +60952533001,514949,0.00184842883548983 +60952533001,514953,0 +60952533001,514955,0 +60952533001,514956,0 +60952533001,514965,0.0147874306839187 +60952533001,514985,0 +60952533001,514994,0.011090573012939 +60952533001,515082,0 +60952533001,515086,0 +60952533001,515087,0.0277264325323475 +60952533001,515228,0.00184842883548983 +60952533001,515237,0.0203327171903882 +60952533001,515293,0 +60952533001,515299,0.0166358595194085 +60952533001,515307,0.00369685767097967 +60952533001,515372,0.033271719038817 +60952533001,515512,0 +60952533001,515623,0.00184842883548983 +60952533001,515624,0.00924214417744917 +60952533001,515625,0.00184842883548983 +60952533001,515626,0.022181146025878 +60952533001,515627,0.00369685767097967 +60952533001,515628,0.00184842883548983 +60952533001,515632,0.00924214417744917 +60952533001,515714,0 +60952533001,515717,0.00184842883548983 +60952533001,515719,0 +60952533001,515966,0.1090573012939 +60952533001,516047,0.00184842883548983 +60952533001,516048,0 +60952533001,516101,0.00369685767097967 +60952533001,516102,0 +60952533001,516104,0.022181146025878 +60952533001,516178,0 +60952533001,516290,0.0961182994454713 +60952533001,516462,0.0517560073937153 +60952533001,516535,0.00924214417744917 +60952533001,516540,0.0129390018484288 +60952533001,516640,0.0055452865064695 +60952533001,516795,0 +60952533001,516796,0.00184842883548983 +60952533001,516853,0.00184842883548983 +60952533001,516893,0 +60952533001,516990,0.011090573012939 +60952533001,516991,0.0055452865064695 +60952533001,516992,0 +60952533001,516993,0 +60952533001,516994,0.0147874306839187 +60952533001,516995,0 +60952533001,516996,0 +60952533001,517077,0.0388170055452865 +60952533001,517089,0.00184842883548983 +60952533001,517091,0.00924214417744917 +60952533001,517093,0.00924214417744917 +60952533001,517100,0.00369685767097967 +60952533001,517107,0.0813308687615527 +60952533001,517209,0.00924214417744917 +60952533001,517216,0.00739371534195933 +60952533001,518103,0 +60952533001,518113,0 +60952533001,518199,0.0055452865064695 +60952533001,518341,0.0055452865064695 +60952533001,518346,0.00184842883548983 +60952533001,518349,0.00369685767097967 +60952533001,518351,0.0258780036968577 +60952533001,518499,0.0055452865064695 +60952533001,518640,0.00184842883548983 +60952533001,518641,0.00184842883548983 +60952533001,518794,0 +60952533001,518923,0.00184842883548983 +60952533001,518933,0.00739371534195933 +60952533001,519190,0.00184842883548983 +60952533001,520201,0.011090573012939 +60952533001,520202,0.0147874306839187 +60952533001,520204,0.00369685767097967 +60952533002,0,0 +60952533002,510060,0 +60952533002,510069,0 +60952533002,510071,0 +60952533002,510074,0.0026246719160105 +60952533002,510075,0 +60952533002,510184,0.0131233595800525 +60952533002,510192,0 +60952533002,510196,0 +60952533002,510414,0.041994750656168 +60952533002,510421,0.0078740157480315 +60952533002,510493,0.0288713910761155 +60952533002,510604,0.005249343832021 +60952533002,510736,0.0131233595800525 +60952533002,510745,0 +60952533002,510749,0.0078740157480315 +60952533002,510751,0.0078740157480315 +60952533002,510752,0 +60952533002,510753,0 +60952533002,510754,0 +60952533002,510755,0.0131233595800525 +60952533002,510882,0.0026246719160105 +60952533002,510887,0 +60952533002,510888,0.0078740157480315 +60952533002,510964,0.0026246719160105 +60952533002,511020,0.0026246719160105 +60952533002,511098,0 +60952533002,511101,0.0078740157480315 +60952533002,511102,0.0236220472440945 +60952533002,511380,0.0078740157480315 +60952533002,511381,0.005249343832021 +60952533002,511753,0.0656167979002625 +60952533002,511762,0.031496062992126 +60952533002,511833,0.010498687664042 +60952533002,512120,0.0183727034120735 +60952533002,512123,0.0078740157480315 +60952533002,512125,0.010498687664042 +60952533002,512129,0.0078740157480315 +60952533002,512442,0.005249343832021 +60952533002,512447,0 +60952533002,512533,0.010498687664042 +60952533002,512756,0 +60952533002,512760,0.010498687664042 +60952533002,513797,0 +60952533002,513807,0.0026246719160105 +60952533002,513811,0.015748031496063 +60952533002,513819,0 +60952533002,514175,0.0236220472440945 +60952533002,514177,0.015748031496063 +60952533002,514223,0 +60952533002,514233,0 +60952533002,514625,0.005249343832021 +60952533002,514627,0.0393700787401575 +60952533002,514634,0.010498687664042 +60952533002,514642,0 +60952533002,514725,0.0236220472440945 +60952533002,514939,0.0236220472440945 +60952533002,514941,0.0026246719160105 +60952533002,514951,0 +60952533002,514996,0.020997375328084 +60952533002,514999,0.0131233595800525 +60952533002,515231,0 +60952533002,515232,0.0078740157480315 +60952533002,515243,0.005249343832021 +60952533002,515251,0 +60952533002,515295,0 +60952533002,515302,0 +60952533002,515711,0.0183727034120735 +60952533002,515969,0 +60952533002,516049,0.015748031496063 +60952533002,516059,0.0341207349081365 +60952533002,516171,0.005249343832021 +60952533002,516172,0.005249343832021 +60952533002,516589,0.0341207349081365 +60952533002,516591,0 +60952533002,516596,0.0288713910761155 +60952533002,516648,0.0026246719160105 +60952533002,516806,0 +60952533002,516848,0.010498687664042 +60952533002,516950,0.005249343832021 +60952533002,517094,0.073490813648294 +60952533002,517249,0.0131233595800525 +60952533002,517254,0 +60952533002,517255,0.015748031496063 +60952533002,518110,0.0236220472440945 +60952533002,518187,0.020997375328084 +60952533002,518188,0.0131233595800525 +60952533002,518338,0.005249343832021 +60952533002,518639,0.0183727034120735 +60952533002,518798,0.0131233595800525 +60952533002,518936,0.0131233595800525 +60952533002,518941,0 +60952533002,519191,0.0393700787401575 +60952533002,519195,0 +60952534021,510058,0.0451745379876797 +60952534021,510600,0.0616016427104723 +60952534021,511388,0.00205338809034908 +60952534021,511482,0.0862422997946612 +60952534021,512127,0 +60952534021,512128,0.00410677618069815 +60952534021,512528,0.00410677618069815 +60952534021,512761,0.129363449691992 +60952534021,514178,0.240246406570842 +60952534021,514228,0.00410677618069815 +60952534021,514230,0.00205338809034908 +60952534021,514944,0.0205338809034908 +60952534021,514998,0.00410677618069815 +60952534021,515726,0.00616016427104723 +60952534021,515957,0.0225872689938398 +60952534021,516941,0.164271047227926 +60952534021,517114,0 +60952534021,517226,0.145790554414784 +60952534021,518501,0.00410677618069815 +60952534021,520200,0.053388090349076 +60952534022,511390,0.180272108843537 +60952534022,512187,0.207482993197279 +60952534022,514584,0.115646258503401 +60952534022,514587,0.125850340136054 +60952534022,517095,0.19047619047619 +60952534022,518652,0.180272108843537 +60952534023,510598,0.0240549828178694 +60952534023,514616,0.0240549828178694 +60952534023,515958,0.175257731958763 +60952534023,516937,0.127147766323024 +60952534023,518503,0.305841924398625 +60952534023,518651,0.0343642611683849 +60952534023,518788,0.257731958762887 +60952534023,520197,0.0515463917525773 +60952534024,510057,0.0308724832214765 +60952534024,510204,0.394630872483221 +60952534024,512183,0.208053691275168 +60952534024,514301,0 +60952534024,514302,0 +60952534024,515301,0.0134228187919463 +60952534024,516939,0.0469798657718121 +60952534024,518014,0.0711409395973154 +60952534024,519199,0.23489932885906 +60952534024,520198,0 +60952534025,510194,0.0547945205479452 +60952534025,510599,0.100456621004566 +60952534025,510602,0.0502283105022831 +60952534025,511483,0.13013698630137 +60952534025,514618,0.123287671232877 +60952534025,514935,0.273972602739726 +60952534025,515305,0.13013698630137 +60952534025,515373,0.0045662100456621 +60952534025,515386,0.107305936073059 +60952534025,515968,0.0251141552511416 +60952534025,517109,0 +60952534031,510977,0.111984282907662 +60952534031,511384,0.0707269155206287 +60952534031,511474,0.0962671905697446 +60952534031,512186,0.0648330058939096 +60952534031,512526,0.0648330058939096 +60952534031,514184,0.0825147347740668 +60952534031,514989,0.243614931237721 +60952534031,515637,0.0766208251473477 +60952534031,515724,0.0550098231827112 +60952534031,517221,0.0746561886051081 +60952534031,518787,0.0589390962671906 +60952534032,515235,0.0675675675675676 +60952534032,515384,0.118918918918919 +60952534032,516947,0.0648648648648649 +60952534032,517078,0.224324324324324 +60952534032,517215,0.367567567567568 +60952534032,518115,0.0189189189189189 +60952534032,518789,0.137837837837838 +60952534033,510188,0.075036075036075 +60952534033,510486,0.158730158730159 +60952534033,510497,0.0562770562770563 +60952534033,511104,0.173160173160173 +60952534033,512185,0.215007215007215 +60952534033,513796,0.141414141414141 +60952534033,514591,0.0331890331890332 +60952534033,514727,0.0245310245310245 +60952534033,515081,0.0851370851370851 +60952534033,516231,0.0375180375180375 +60952534041,510418,0.266086956521739 +60952534041,510741,0.173913043478261 +60952534041,511382,0.0817391304347826 +60952534041,514180,0.135652173913043 +60952534041,514183,0.0834782608695652 +60952534041,516851,0.0365217391304348 +60952534041,516881,0.0330434782608696 +60952534041,518648,0.0643478260869565 +60952534041,518650,0.125217391304348 +60952534042,510419,0.181384248210024 +60952534042,511387,0.119331742243437 +60952534042,512530,0.107398568019093 +60952534042,512531,0.181384248210024 +60952534042,514581,0.124105011933174 +60952534042,516883,0.0835322195704057 +60952534042,516888,0.202863961813842 +60952534043,510738,0.102756892230576 +60952534043,510979,0.0175438596491228 +60952534043,514166,0.075187969924812 +60952534043,514181,0.0726817042606516 +60952534043,515383,0.255639097744361 +60952534043,515955,0.215538847117794 +60952534043,516041,0.0676691729323308 +60952534043,517247,0.192982456140351 +60952534044,510491,0.0416068866571019 +60952534044,510492,0.143472022955524 +60952534044,512525,0.0588235294117647 +60952534044,512529,0.0401721664275466 +60952534044,515230,0.0588235294117647 +60952534044,515245,0 +60952534044,515289,0.100430416068867 +60952534044,515721,0.259684361549498 +60952534044,517113,0.103299856527977 +60952534044,518192,0.164992826398852 +60952534044,518655,0.0286944045911047 +60952535001,0,0 +60952535001,510019,0.0617283950617284 +60952535001,510020,0 +60952535001,510096,0.000474833808167142 +60952535001,510097,0.000474833808167142 +60952535001,510523,0.000474833808167142 +60952535001,510699,0.0123456790123457 +60952535001,510700,0 +60952535001,510703,0.0147198480531814 +60952535001,510708,0.115384615384615 +60952535001,510713,0.0959164292497626 +60952535001,511001,0 +60952535001,511190,0.0740740740740741 +60952535001,511257,0.000474833808167142 +60952535001,511259,0 +60952535001,511402,0.01661918328585 +60952535001,511542,0.00237416904083571 +60952535001,511650,0.00759734093067426 +60952535001,511652,0.00284900284900285 +60952535001,511654,0.00142450142450142 +60952535001,511783,0.000474833808167142 +60952535001,511789,0 +60952535001,511790,0.00142450142450142 +60952535001,511883,0.00142450142450142 +60952535001,511884,0.0104463437796771 +60952535001,512008,0.000949667616334283 +60952535001,512153,0 +60952535001,512159,0.094017094017094 +60952535001,512221,0.0270655270655271 +60952535001,512224,0.000949667616334283 +60952535001,512267,0 +60952535001,512269,0 +60952535001,512272,0 +60952535001,512325,0 +60952535001,512330,0 +60952535001,512482,0.0322886989553656 +60952535001,512486,0.0427350427350427 +60952535001,512576,0.00189933523266857 +60952535001,512709,0 +60952535001,512710,0 +60952535001,512715,0 +60952535001,512884,0 +60952535001,513055,0 +60952535001,513057,0 +60952535001,513122,0 +60952535001,513130,0 +60952535001,513131,0.00237416904083571 +60952535001,513364,0.000949667616334283 +60952535001,513369,0 +60952535001,513371,0 +60952535001,513373,0.000474833808167142 +60952535001,513436,0 +60952535001,513508,0.000474833808167142 +60952535001,513633,0.0280151946818613 +60952535001,513641,0.0227920227920228 +60952535001,513700,0 +60952535001,513709,0.0465337132003799 +60952535001,513861,0.0550807217473884 +60952535001,513945,0 +60952535001,513947,0 +60952535001,514263,0.0265906932573599 +60952535001,514265,0.00427350427350427 +60952535001,514268,0.0194681861348528 +60952535001,514326,0 +60952535001,514771,0 +60952535001,515108,0.000474833808167142 +60952535001,515113,0.000474833808167142 +60952535001,515482,0.00142450142450142 +60952535001,515833,0 +60952535001,515921,0.00189933523266857 +60952535001,515922,0 +60952535001,515923,0.000474833808167142 +60952535001,515924,0.00522317188983856 +60952535001,515931,0.00142450142450142 +60952535001,515943,0.0299145299145299 +60952535001,517560,0 +60952535001,517561,0 +60952535001,517577,0.00142450142450142 +60952535001,517579,0 +60952535001,517724,0.000474833808167142 +60952535001,517725,0.00284900284900285 +60952535001,517728,0 +60952535001,517731,0 +60952535001,517739,0 +60952535001,517754,0.0446343779677113 +60952535001,517942,0.00142450142450142 +60952535001,517943,0 +60952535001,518389,0 +60952535001,518391,0 +60952535001,518531,0 +60952535001,518537,0.00189933523266857 +60952535001,518675,0 +60952535001,518814,0 +60952535001,518816,0 +60952535001,518819,0 +60952535001,519013,0.000474833808167142 +60952535001,519151,0.00189933523266857 +60952535001,519153,0 +60952535001,519155,0.00332383665716999 +60952535001,519157,0.00332383665716999 +60952535001,519255,0 +60952535001,519256,0.000474833808167142 +60952535001,519257,0 +60952535001,519266,0.00712250712250712 +60952535001,519344,0 +60952535001,519403,0.0389363722697056 +60952535001,519479,0.0213675213675214 +60952535001,519535,0 +60952535001,519635,0.00142450142450142 +60952535001,519637,0 +60952535001,519749,0 +60952535001,519892,0 +60952535001,519894,0 +60952535002,0,0 +60952535002,512162,0.10355486862442 +60952535002,512163,0.146831530139104 +60952535002,512645,0.131375579598145 +60952535002,512889,0.0834621329211747 +60952535002,513679,0.344667697063369 +60952535002,514332,0.0154559505409583 +60952535002,515112,0.0525502318392581 +60952535002,518963,0.12210200927357 +60952535003,0,0 +60952535003,511411,0.0379061371841155 +60952535003,511412,0.0342960288808664 +60952535003,511413,0.0234657039711191 +60952535003,511414,0.0342960288808664 +60952535003,511415,0.0288808664259928 +60952535003,511417,0.0577617328519856 +60952535003,511419,0.0974729241877256 +60952535003,512010,0.102888086642599 +60952535003,512323,0.102888086642599 +60952535003,512649,0.0703971119133574 +60952535003,512652,0.0541516245487365 +60952535003,512890,0.0523465703971119 +60952535003,512891,0.0180505415162455 +60952535003,513046,0.0703971119133574 +60952535003,514336,0 +60952535003,517744,0.133574007220217 +60952535003,517962,0.01985559566787 +60952535003,518967,0.0306859205776173 +60952535003,518968,0.0288808664259928 +60952535003,519408,0.00180505415162455 +60952535004,0,0 +60952535004,510518,0.00420168067226891 +60952535004,510524,0.0105042016806723 +60952535004,511261,0.0567226890756303 +60952535004,511406,0.00210084033613445 +60952535004,511548,0.0105042016806723 +60952535004,511879,0.0420168067226891 +60952535004,511882,0.00420168067226891 +60952535004,511885,0 +60952535004,512015,0.0168067226890756 +60952535004,512016,0.00210084033613445 +60952535004,512160,0.0126050420168067 +60952535004,512268,0 +60952535004,512274,0 +60952535004,512788,0.00630252100840336 +60952535004,512894,0.123949579831933 +60952535004,513053,0 +60952535004,513368,0.00630252100840336 +60952535004,513377,0 +60952535004,513378,0 +60952535004,513435,0 +60952535004,513504,0.00630252100840336 +60952535004,513624,0.00420168067226891 +60952535004,513941,0.00630252100840336 +60952535004,514330,0 +60952535004,515117,0 +60952535004,515119,0.00630252100840336 +60952535004,515753,0.638655462184874 +60952535004,515829,0.00840336134453781 +60952535004,515920,0 +60952535004,517568,0 +60952535004,517957,0.00210084033613445 +60952535004,517959,0.00630252100840336 +60952535004,518534,0.0168067226890756 +60952535004,518538,0.00630252100840336 +60952535004,518817,0 +60959800001,510249,0 +60959800001,514842,1 +60959800001,518133,0 +60959800001,518221,0 +60959800001,518372,0 +60971501001,710382,0.0683111954459203 +60971501001,713738,0.0740037950664137 +60971501001,714839,0.0360531309297913 +60971501001,715252,0.0626185958254269 +60971501001,715253,0.0512333965844402 +60971501001,715906,0.0417457305502846 +60971501001,717987,0.195445920303605 +60971501001,717988,0.00569259962049336 +60971501001,717989,0.142314990512334 +60971501001,719448,0.0626185958254269 +60971501001,719450,0.0664136622390892 +60971501001,719454,0.0208728652751423 +60971501001,720160,0.0607210626185958 +60971501001,720187,0.104364326375712 +60971501001,720255,0.00759013282732448 +60971501002,0,0 +60971501002,710585,0.20377358490566 +60971501002,710770,0.320754716981132 +60971501002,710771,0.0641509433962264 +60971501002,713060,0 +60971501002,713456,0.116981132075472 +60971501002,713739,0.0830188679245283 +60971501002,715626,0.0415094339622641 +60971501002,719322,0.00377358490566038 +60971501002,719536,0.0679245283018868 +60971501002,719537,0.0981132075471698 +60971501002,720261,0 +60971501003,0,0 +60971501003,710088,0 +60971501003,710462,0.186170212765957 +60971501003,710583,0.0319148936170213 +60971501003,710963,0.0106382978723404 +60971501003,711570,0 +60971501003,711960,0 +60971501003,716360,0.111702127659574 +60971501003,716439,0 +60971501003,717385,0.0106382978723404 +60971501003,718122,0.218085106382979 +60971501003,718160,0 +60971501003,718161,0 +60971501003,719453,0.303191489361702 +60971501003,719645,0 +60971501003,720175,0 +60971501003,720289,0.127659574468085 +60971502021,711031,0.334261838440111 +60971502021,711034,0.0222841225626741 +60971502021,712866,0.11142061281337 +60971502021,714835,0.15041782729805 +60971502021,715909,0.119777158774373 +60971502021,716097,0 +60971502021,717292,0.0362116991643454 +60971502021,717846,0.0278551532033426 +60971502021,719451,0.052924791086351 +60971502021,720036,0.144846796657382 +60971502022,712392,0.200400801603206 +60971502022,713459,0.0561122244488978 +60971502022,713613,0.132264529058116 +60971502022,714465,0.100200400801603 +60971502022,715342,0.170340681362725 +60971502022,717343,0.0280561122244489 +60971502022,719325,0.0801603206412826 +60971502022,719649,0.106212424849699 +60971502022,720037,0.0501002004008016 +60971502022,720038,0.0761523046092184 +60971502023,714836,0.2 +60971502023,715905,0.183050847457627 +60971502023,717841,0.0847457627118644 +60971502023,720027,0.532203389830509 +60971502024,710233,0.0637037037037037 +60971502024,711028,0.0518518518518519 +60971502024,713119,0.037037037037037 +60971502024,714033,0.0414814814814815 +60971502024,715044,0.137777777777778 +60971502024,715173,0.00888888888888889 +60971502024,715174,0.265185185185185 +60971502024,715314,0 +60971502024,716023,0.0977777777777778 +60971502024,717871,0.0562962962962963 +60971502024,718168,0.0251851851851852 +60971502024,718944,0.214814814814815 +60971502025,710231,0.0616197183098592 +60971502025,712714,0.0686619718309859 +60971502025,713056,0.105633802816901 +60971502025,717101,0.154929577464789 +60971502025,717293,0.130281690140845 +60971502025,717342,0.200704225352113 +60971502025,718000,0.0404929577464789 +60971502025,720028,0.073943661971831 +60971502025,720035,0.163732394366197 +60971502031,712394,0.203626220362622 +60971502031,712864,0.267782426778243 +60971502031,715321,0.0488145048814505 +60971502031,715336,0.0781032078103208 +60971502031,716011,0.0669456066945607 +60971502031,716027,0.0153417015341702 +60971502031,719359,0.207810320781032 +60971502031,720033,0.0683403068340307 +60971502031,720148,0.0251046025104603 +60971502031,720149,0.0181311018131102 +60971502032,710377,0.165441176470588 +60971502032,710842,0.0477941176470588 +60971502032,712865,0.224264705882353 +60971502032,713461,0 +60971502032,713736,0.117647058823529 +60971502032,716215,0.123161764705882 +60971502032,717299,0.183823529411765 +60971502032,719084,0.137867647058824 +60971502033,713742,0.219081272084806 +60971502033,714466,0.0471142520612485 +60971502033,719236,0.0647820965842167 +60971502033,720257,0.63133097762073 +60971502033,720388,0.0376914016489988 +60971502041,712862,0.0441501103752759 +60971502041,712863,0.0507726269315673 +60971502041,715907,0 +60971502041,715908,0.0507726269315673 +60971502041,716098,0.0640176600441501 +60971502041,717844,0.0022075055187638 +60971502041,717845,0.00883002207505519 +60971502041,717847,0.112582781456954 +60971502041,717848,0.0353200883002208 +60971502041,719362,0.1280353200883 +60971502041,719364,0.101545253863135 +60971502041,720150,0.033112582781457 +60971502041,720154,0.368653421633554 +60971502042,713466,0.202363367799114 +60971502042,714468,0.0251107828655835 +60971502042,714834,0.03397341211226 +60971502042,716017,0.0546528803545052 +60971502042,716096,0.146233382570162 +60971502042,717840,0.0354505169867061 +60971502042,719330,0.0502215657311669 +60971502042,719354,0.183161004431315 +60971502042,719360,0.0324963072378139 +60971502042,720032,0.236336779911374 +60971502043,710380,0.0793650793650794 +60971502043,712056,0.0396825396825397 +60971502043,716216,0.0714285714285714 +60971502043,717387,0.166666666666667 +60971502043,717850,0.0753968253968254 +60971502043,717851,0.0753968253968254 +60971502043,719083,0.359126984126984 +60971502043,719446,0.0773809523809524 +60971502043,719447,0.0496031746031746 +60971502043,720157,0.00595238095238095 +60971503031,0,0 +60971503031,710967,0.139841688654354 +60971503031,713206,0 +60971503031,713464,0 +60971503031,713688,0.079155672823219 +60971503031,714087,0.0211081794195251 +60971503031,715546,0.298153034300792 +60971503031,717344,0.0817941952506596 +60971503031,717384,0.379947229551451 +60971503031,718169,0 +60971503032,710461,0.0540037243947858 +60971503032,711761,0.0465549348230912 +60971503032,711964,0.0279329608938547 +60971503032,712396,0.0856610800744879 +60971503032,713199,0.0279329608938547 +60971503032,713207,0.0279329608938547 +60971503032,713398,0.0651769087523277 +60971503032,713617,0 +60971503032,713746,0.00558659217877095 +60971503032,713952,0.0391061452513966 +60971503032,716492,0.0223463687150838 +60971503032,716493,0.0130353817504655 +60971503032,716601,0 +60971503032,717295,0.0633147113594041 +60971503032,718170,0.154562383612663 +60971503032,718820,0.169459962756052 +60971503032,718952,0.0409683426443203 +60971503032,719761,0.0856610800744879 +60971503032,719856,0.0707635009310987 +60971503032,720179,0 +60971503033,711242,0.212996389891697 +60971503033,712476,0.0613718411552347 +60971503033,713192,0.205776173285199 +60971503033,715036,0.0252707581227437 +60971503033,716898,0.108303249097473 +60971503033,718822,0.205776173285199 +60971503033,719963,0.180505415162455 +60971503034,712308,0.467021276595745 +60971503034,712391,0.452127659574468 +60971503034,713125,0.0670212765957447 +60971503034,715547,0.0138297872340426 +60971503041,715328,0.226537216828479 +60971503041,715333,0.682847896440129 +60971503041,716901,0.0906148867313916 +60971503042,711663,0.180574555403557 +60971503042,711667,0.0629274965800274 +60971503042,712478,0.0779753761969904 +60971503042,712971,0.0314637482900137 +60971503042,713191,0.0437756497948016 +60971503042,715335,0.0738714090287278 +60971503042,715339,0.0218878248974008 +60971503042,716897,0.0451436388508892 +60971503042,718175,0.231190150478796 +60971503042,718829,0.0834473324213406 +60971503042,719968,0.06703146374829 +60971503042,720063,0.0807113543091655 +60971503043,711241,0.00838926174496644 +60971503043,711345,0.0302013422818792 +60971503043,712480,0.0805369127516778 +60971503043,712781,0.169463087248322 +60971503043,712871,0.0352348993288591 +60971503043,713190,0.174496644295302 +60971503043,713194,0.12248322147651 +60971503043,713310,0.0922818791946309 +60971503043,713467,0.140939597315436 +60971503043,717019,0.0469798657718121 +60971503043,717386,0.0251677852348993 +60971503043,718831,0.0738255033557047 +60971503044,710844,0.131534569983137 +60971503044,711666,0.0910623946037099 +60971503044,711669,0.349072512647555 +60971503044,711767,0.03035413153457 +60971503044,713616,0.12141652613828 +60971503044,713687,0.0354131534569983 +60971503044,716008,0.0590219224283305 +60971503044,717864,0.0522765598650927 +60971503044,720030,0.129848229342327 +60971503051,712964,0.270758122743682 +60971503051,713690,0.32129963898917 +60971503051,716600,0.0108303249097473 +60971503051,717296,0.191335740072202 +60971503051,717855,0.205776173285199 +60971503052,717870,0.0385438972162741 +60971503052,718004,0.443254817987152 +60971503052,719078,0.389721627408994 +60971503052,720062,0.0899357601713062 +60971503052,720067,0.0385438972162741 +60971503053,711240,0.141914191419142 +60971503053,712477,0.0759075907590759 +60971503053,712965,0.0478547854785479 +60971503053,713131,0.0132013201320132 +60971503053,716015,0.133663366336634 +60971503053,716221,0.376237623762376 +60971503053,718823,0.0412541254125413 +60971503053,719964,0.16996699669967 +60971503054,711665,0.329749103942652 +60971503054,713610,0.10752688172043 +60971503054,716013,0.0896057347670251 +60971503054,717018,0.114695340501792 +60971503054,717866,0.150537634408602 +60971503054,718953,0.207885304659498 +60971503061,712784,0.103174603174603 +60971503061,712786,0.121693121693122 +60971503061,713316,0.0687830687830688 +60971503061,715040,0.19047619047619 +60971503061,715043,0.0952380952380952 +60971503061,717025,0.166666666666667 +60971503061,717868,0.0185185185185185 +60971503061,719966,0.235449735449735 +60971503062,715330,0.0907079646017699 +60971503062,715332,0.128318584070796 +60971503062,716902,0.238938053097345 +60971503062,717022,0.163716814159292 +60971503062,719965,0.36283185840708 +60971503062,719967,0.0154867256637168 +60971503063,710586,0.21251629726206 +60971503063,711766,0.0417209908735332 +60971503063,712785,0.269882659713168 +60971503063,712968,0.0534550195567145 +60971503063,715041,0.029986962190352 +60971503063,716290,0.0352020860495437 +60971503063,718179,0.0990873533246415 +60971503063,718611,0.0130378096479791 +60971503063,718824,0.0534550195567145 +60971503063,720192,0.0795306388526728 +60971503063,720295,0.112125162972621 +60971505001,711351,0.0166666666666667 +60971505001,711759,0 +60971505001,713185,0.0833333333333333 +60971505001,713469,0.241666666666667 +60971505001,715028,0 +60971505001,715029,0 +60971505001,717854,0 +60971505001,719079,0.658333333333333 +60971505002,710846,0.0807799442896936 +60971505002,712152,0.264623955431755 +60971505002,712156,0.0278551532033426 +60971505002,715324,0.0194986072423398 +60971505002,717389,0.0807799442896936 +60971505002,718701,0.370473537604457 +60971505002,718702,0.0724233983286908 +60971505002,719861,0.0696378830083565 +60971505002,720288,0.0139275766016713 +60971505003,711023,0.0934426229508197 +60971505003,711033,0.00163934426229508 +60971505003,711762,0.180327868852459 +60971505003,711962,0 +60971505003,712309,0.060655737704918 +60971505003,712386,0.0278688524590164 +60971505003,713129,0 +60971505003,713317,0.00327868852459016 +60971505003,713957,0.0147540983606557 +60971505003,714401,0.0491803278688525 +60971505003,715046,0.0836065573770492 +60971505003,716693,0.208196721311475 +60971505003,717235,0.0836065573770492 +60971505003,719204,0.10983606557377 +60971505003,719652,0.039344262295082 +60971505003,719959,0.0442622950819672 +60971505004,712151,0.0215827338129496 +60971505004,712962,0.0863309352517986 +60971505004,713684,0.0215827338129496 +60971505004,713744,0.183453237410072 +60971505004,713959,0.287769784172662 +60971505004,715345,0.133093525179856 +60971505004,719210,0.266187050359712 +60971505005,710460,1 +60971505006,710092,0.247252747252747 +60971505006,713184,0.362637362637363 +60971505006,715023,0.0769230769230769 +60971505006,715024,0 +60971505006,718163,0.244505494505495 +60971505006,718164,0.032967032967033 +60971505006,719762,0.0357142857142857 +60971506011,711791,0.223776223776224 +60971506011,711793,0.0862470862470862 +60971506011,712337,0.0909090909090909 +60971506011,714490,0.0652680652680653 +60971506011,715946,0.0722610722610723 +60971506011,717438,0.0745920745920746 +60971506011,718390,0.386946386946387 +60971506012,711102,0.293286219081272 +60971506012,712341,0.162544169611307 +60971506012,712659,0.54416961130742 +60971506013,711107,1 +60971506014,710328,0.928286852589641 +60971506014,711100,0.0717131474103586 +60971506021,710717,0.12289156626506 +60971506021,710865,0.221686746987952 +60971506021,711380,0.144578313253012 +60971506021,711384,0.178313253012048 +60971506021,715930,0.0385542168674699 +60971506021,719880,0.15421686746988 +60971506021,719978,0.139759036144578 +60971506022,710721,0.281385281385281 +60971506022,711385,0.151515151515152 +60971506022,711797,0.151515151515152 +60971506022,714149,0.112554112554113 +60971506022,718643,0.303030303030303 +60971506023,710718,0.0919037199124726 +60971506023,710719,0.0831509846827133 +60971506023,711382,0.0700218818380744 +60971506023,711792,0.142231947483589 +60971506023,712338,0.0568927789934354 +60971506023,712339,0.0612691466083151 +60971506023,714494,0.115973741794311 +60971506023,714899,0.164113785557987 +60971506023,715944,0.0940919037199125 +60971506023,715947,0.12035010940919 +60971506024,710727,0.257211538461538 +60971506024,712333,0.0769230769230769 +60971506024,712340,0.115384615384615 +60971506024,712661,0.0841346153846154 +60971506024,714491,0.112980769230769 +60971506024,715414,0.1875 +60971506024,715951,0.0913461538461538 +60971506024,718393,0.0745192307692308 +60971506031,710397,0.218434343434343 +60971506031,712075,0.0909090909090909 +60971506031,712417,0.0391414141414141 +60971506031,714130,0.0871212121212121 +60971506031,714532,0.0820707070707071 +60971506031,715922,0.0328282828282828 +60971506031,717254,0.0227272727272727 +60971506031,717416,0.077020202020202 +60971506031,718375,0.286616161616162 +60971506031,718462,0.0353535353535354 +60971506031,719671,0.0277777777777778 +60971506032,713080,0.642857142857143 +60971506032,719676,0.357142857142857 +60971506033,710714,0.331896551724138 +60971506033,711996,0.28448275862069 +60971506033,715943,0.383620689655172 +60971506034,710125,0.0665557404326123 +60971506034,710401,0.0599001663893511 +60971506034,711690,0.0948419301164725 +60971506034,712728,0.0998336106489185 +60971506034,714136,0.0815307820299501 +60971506034,714542,0.0482529118136439 +60971506034,715760,0.361064891846922 +60971506034,716817,0.00831946755407654 +60971506034,717420,0.179700499168053 +60971506035,711379,0.0787172011661808 +60971506035,711992,0 +60971506035,713555,0.0641399416909621 +60971506035,714334,0.478134110787172 +60971506035,714343,0.104956268221574 +60971506035,714344,0 +60971506035,715428,0 +60971506035,716064,0.274052478134111 +60971506035,720313,0 +60971506036,710406,0.11614730878187 +60971506036,710790,0.15014164305949 +60971506036,713891,0.359773371104816 +60971506036,714134,0.30028328611898 +60971506036,715296,0.0736543909348442 +60971506071,710874,0.424157303370786 +60971506071,711266,0.205056179775281 +60971506071,712079,0.26685393258427 +60971506071,718642,0.103932584269663 +60971506072,710487,0.0171673819742489 +60971506072,711112,0.334763948497854 +60971506072,711260,0.184549356223176 +60971506072,711689,0 +60971506072,712076,0 +60971506072,713771,0.0987124463519313 +60971506072,713901,0.0171673819742489 +60971506072,713985,0 +60971506072,714340,0 +60971506072,714527,0 +60971506072,715751,0 +60971506072,716060,0.141630901287554 +60971506072,718448,0 +60971506072,718450,0 +60971506072,718469,0 +60971506072,718645,0 +60971506072,719464,0.206008583690987 +60971506072,719473,0 +60971506073,710257,0 +60971506073,712002,0.0774938169826875 +60971506073,712498,0.055234954657873 +60971506073,713493,0.0321516900247321 +60971506073,714481,0.0255564715581204 +60971506073,714794,0.0123660346248969 +60971506073,715309,0.0832646331409728 +60971506073,715692,0.106347897774114 +60971506073,715704,0.0758450123660346 +60971506073,715798,0.0791426215993405 +60971506073,715974,0.0305028854080791 +60971506073,717428,0.179719703215169 +60971506073,717588,0.0222588623248145 +60971506073,718502,0.158285243198681 +60971506073,719019,0.0140148392415499 +60971506073,719463,0.0478153338829349 +60971506091,712988,0.210950080515298 +60971506091,713260,0.188405797101449 +60971506091,715658,0.264090177133655 +60971506091,716826,0.119162640901771 +60971506091,718377,0.217391304347826 +60971506091,720218,0 +60971506092,710030,0.499005964214712 +60971506092,711450,0.00795228628230616 +60971506092,712080,0.101391650099404 +60971506092,713723,0.391650099403579 +60971506092,715923,0 +60971506092,719565,0 +60971506093,710031,0.770935960591133 +60971506093,719564,0.229064039408867 +60971506094,710032,0.536231884057971 +60971506094,712416,0.0985507246376812 +60971506094,714129,0.159420289855072 +60971506094,714531,0 +60971506094,718461,0.205797101449275 +60971506101,712419,0.125 +60971506101,713256,0.0675 +60971506101,715954,0.1975 +60971506101,715967,0.23 +60971506101,718649,0.2125 +60971506101,719563,0.1675 +60971506102,710034,0.150492264416315 +60971506102,711446,0.151898734177215 +60971506102,712729,0.19831223628692 +60971506102,713341,0.0562587904360056 +60971506102,717361,0.177215189873418 +60971506102,718895,0.137834036568214 +60971506102,719467,0.0787623066104079 +60971506102,719468,0.0492264416315049 +60971506103,710118,0.44106463878327 +60971506103,713079,0.163498098859316 +60971506103,715695,0.228136882129278 +60971506103,717044,0.167300380228137 +60971506111,710804,0.0998980632008155 +60971506111,711519,0.0448521916411825 +60971506111,712247,0.055045871559633 +60971506111,712662,0.139653414882773 +60971506111,714863,0.0693170234454638 +60971506111,715783,0.0642201834862385 +60971506111,717358,0.527013251783894 +60971506112,710329,0.153354632587859 +60971506112,712894,0.846645367412141 +60971506112,717424,0 +60971506113,710632,1 +60971506121,710873,0.0706243602865916 +60971506121,711593,0.0552712384851586 +60971506121,712425,0.0307062436028659 +60971506121,712730,0.113613101330604 +60971506121,712731,0.0706243602865916 +60971506121,713719,0.0163766632548618 +60971506121,715400,0.24360286591607 +60971506121,715583,0.101330603889458 +60971506121,715856,0.0470829068577277 +60971506121,717423,0.0880245649948823 +60971506121,719879,0.0839303991811668 +60971506121,719882,0.0788126919140225 +60971506122,0,0 +60971506122,710267,0.00313479623824451 +60971506122,710403,0.0156739811912226 +60971506122,710870,0.00783699059561128 +60971506122,711101,0 +60971506122,711193,0.04858934169279 +60971506122,711441,0.0815047021943574 +60971506122,711448,0.00940438871473354 +60971506122,711498,0.0564263322884012 +60971506122,711794,0 +60971506122,711811,0.0125391849529781 +60971506122,712083,0.0407523510971787 +60971506122,712342,0.04858934169279 +60971506122,712734,0.0658307210031348 +60971506122,712901,0.0266457680250784 +60971506122,713718,0.0423197492163009 +60971506122,713766,0 +60971506122,714141,0 +60971506122,714493,0 +60971506122,714783,0.00313479623824451 +60971506122,714785,0 +60971506122,715300,0 +60971506122,715427,0.0438871473354232 +60971506122,715784,0.00156739811912226 +60971506122,715860,0 +60971506122,715960,0.0282131661442006 +60971506122,716802,0.343260188087774 +60971506122,716922,0 +60971506122,717363,0.0846394984326019 +60971506122,717426,0.0125391849529781 +60971506122,717559,0 +60971506122,718396,0.00313479623824451 +60971506122,719023,0 +60971506122,719376,0.00313479623824451 +60971506122,719561,0.00156739811912226 +60971506122,719569,0.0156739811912226 +60971507011,0,0 +60971507011,710258,0.0167364016736402 +60971507011,710343,0.00836820083682008 +60971507011,710997,0.0606694560669456 +60971507011,710998,0.150627615062762 +60971507011,711190,0.0334728033472803 +60971507011,711442,0 +60971507011,711473,0.106694560669456 +60971507011,711599,0.098326359832636 +60971507011,714489,0.00209205020920502 +60971507011,714710,0.278242677824268 +60971507011,715758,0.0502092050209205 +60971507011,716239,0 +60971507011,717458,0.146443514644351 +60971507011,718380,0 +60971507011,718478,0 +60971507011,719782,0.0481171548117155 +60971507012,0,0 +60971507012,710331,0.0583090379008746 +60971507012,711001,0.097667638483965 +60971507012,711003,0.384839650145773 +60971507012,711988,0 +60971507012,713710,0.17930029154519 +60971507012,714057,0.0830903790087464 +60971507012,714138,0.15597667638484 +60971507012,715786,0.0408163265306122 +60971507013,0,0 +60971507013,710613,0 +60971507013,710616,0.0772277227722772 +60971507013,710995,0.134653465346535 +60971507013,711191,0.0277227722772277 +60971507013,711265,0 +60971507013,711458,0.0158415841584158 +60971507013,711462,0 +60971507013,711463,0 +60971507013,711474,0 +60971507013,714146,0.0475247524752475 +60971507013,715854,0.0653465346534653 +60971507013,715855,0.0198019801980198 +60971507013,715937,0 +60971507013,715941,0 +60971507013,716240,0.0613861386138614 +60971507013,716255,0.116831683168317 +60971507013,719677,0.16039603960396 +60971507013,719686,0 +60971507013,719777,0.0415841584158416 +60971507013,719779,0.184158415841584 +60971507013,719781,0.0475247524752475 +60971507014,710993,0.0703363914373089 +60971507014,711469,0.201834862385321 +60971507014,711595,0.36697247706422 +60971507014,718483,0.36085626911315 +60971507021,711491,0.0666666666666667 +60971507021,711695,0.268817204301075 +60971507021,715202,0.335483870967742 +60971507021,719793,0.329032258064516 +60971507022,711597,0.0716332378223496 +60971507022,714054,0.458452722063037 +60971507022,714147,0.114613180515759 +60971507022,717579,0.355300859598854 +60971507023,710333,0.42910447761194 +60971507023,712570,0.281716417910448 +60971507023,715201,0.208955223880597 +60971507023,716045,0.0317164179104478 +60971507023,718387,0.0485074626865672 +60971507024,718384,0.160098522167488 +60971507024,718385,0.366995073891626 +60971507024,719788,0.145320197044335 +60971507024,719791,0.0911330049261084 +60971507024,719792,0.236453201970443 +60971508001,710253,0.304461942257218 +60971508001,710606,0.307086614173228 +60971508001,711183,0.0551181102362205 +60971508001,714789,0.215223097112861 +60971508001,715851,0.047244094488189 +60971508001,719681,0.0708661417322835 +60971508002,711468,0.0864978902953586 +60971508002,713713,0.333333333333333 +60971508002,713714,0.0717299578059072 +60971508002,716130,0.0886075949367089 +60971508002,716131,0.124472573839662 +60971508002,716132,0.105485232067511 +60971508002,717456,0.0738396624472574 +60971508002,717464,0.116033755274262 +60971508003,711185,0.179775280898876 +60971508003,711455,0.205056179775281 +60971508003,713253,0.140449438202247 +60971508003,713712,0.0421348314606742 +60971508003,715853,0.303370786516854 +60971508003,715936,0.126404494382022 +60971508003,719689,0.00280898876404494 +60971508004,710411,0.169761273209549 +60971508004,710722,0.0809018567639257 +60971508004,710986,0.0437665782493369 +60971508004,710991,0.0583554376657825 +60971508004,711186,0.0610079575596817 +60971508004,711466,0.0517241379310345 +60971508004,711591,0.0530503978779841 +60971508004,713156,0.00663129973474801 +60971508004,713980,0.00530503978779841 +60971508004,715293,0.419098143236074 +60971508004,718463,0.0358090185676393 +60971508004,720217,0.0145888594164456 +60971509011,0,0 +60971509011,710405,0.0559284116331096 +60971509011,710607,0.0917225950782998 +60971509011,711189,0.00223713646532438 +60971509011,711454,0.0805369127516778 +60971509011,713421,0.178970917225951 +60971509011,713422,0 +60971509011,714137,0.176733780760626 +60971509011,714421,0 +60971509011,715850,0.0402684563758389 +60971509011,717455,0.342281879194631 +60971509011,717596,0.0313199105145414 +60971509012,0,0 +60971509012,710612,0.132307692307692 +60971509012,711461,0.184615384615385 +60971509012,711471,0.0615384615384615 +60971509012,711598,0.0430769230769231 +60971509012,713423,0.0769230769230769 +60971509012,715404,0.295384615384615 +60971509012,716236,0.113846153846154 +60971509012,717457,0.0923076923076923 +60971509013,710249,0.508120649651972 +60971509013,715762,0.491879350348028 +60971509014,710793,0.472527472527473 +60971509014,715124,0.172161172161172 +60971509014,716049,0.161172161172161 +60971509014,716050,0.113553113553114 +60971509014,719674,0.0805860805860806 +60971509015,0,0 +60971509015,710341,0.0172413793103448 +60971509015,715119,0.0134099616858238 +60971509015,715122,0.053639846743295 +60971509015,715299,0.503831417624521 +60971509015,715499,0.116858237547893 +60971509015,715917,0.0114942528735632 +60971509015,715935,0 +60971509015,715964,0 +60971509015,715965,0.00766283524904215 +60971509015,715978,0.176245210727969 +60971509015,716057,0.0440613026819923 +60971509015,716123,0.0440613026819923 +60971509015,720316,0.0114942528735632 +60971509021,711909,0.351473922902494 +60971509021,713347,0.247165532879819 +60971509021,715118,0.233560090702948 +60971509021,717439,0.167800453514739 +60971509022,710252,0.0816326530612245 +60971509022,710875,0.370262390670554 +60971509022,715121,0.169096209912536 +60971509022,716053,0.137026239067055 +60971509022,717448,0.24198250728863 +60971509023,713419,0.182410423452769 +60971509023,715409,0.697068403908795 +60971509023,717447,0.120521172638436 +60971509024,710254,0.0754098360655738 +60971509024,711182,0.124590163934426 +60971509024,711184,0.213114754098361 +60971509024,711456,0.137704918032787 +60971509024,711457,0.0918032786885246 +60971509024,716055,0.219672131147541 +60971509024,716125,0.137704918032787 +60971510001,710791,0.0946882217090069 +60971510001,710867,0.12933025404157 +60971510001,711449,0.0046189376443418 +60971510001,711592,0.348729792147806 +60971510001,711600,0.113163972286374 +60971510001,712074,0.0277136258660508 +60971510001,712986,0 +60971510001,715931,0.108545034642032 +60971510001,715957,0.173210161662818 +60971510001,716256,0 +60971510001,718373,0 +60971510002,714068,0.0837004405286344 +60971510002,715401,0.0726872246696035 +60971510002,715969,0.290748898678414 +60971510002,716048,0.156387665198238 +60971510002,717435,0.257709251101322 +60971510002,718416,0.138766519823789 +60971510003,710872,0.112449799196787 +60971510003,712733,0.0763052208835341 +60971510003,713161,0.142570281124498 +60971510003,715297,0.182730923694779 +60971510003,715932,0.186746987951807 +60971510003,717436,0.216867469879518 +60971510003,717568,0.0823293172690763 +60971511001,710474,0.0395189003436426 +60971511001,711445,0.221649484536082 +60971511001,711830,0.0171821305841924 +60971511001,712562,0.00343642611683849 +60971511001,713089,0.0120274914089347 +60971511001,715653,0.0292096219931271 +60971511001,716259,0.0395189003436426 +60971511001,716380,0.0738831615120275 +60971511001,716788,0.0463917525773196 +60971511001,717553,0.0206185567010309 +60971511001,718403,0.130584192439863 +60971511001,718412,0.063573883161512 +60971511001,719382,0.0687285223367698 +60971511001,720090,0.189003436426117 +60971511001,720092,0.0446735395189003 +60971511002,711195,0.150442477876106 +60971511002,711436,0.187104930467762 +60971511002,711438,0.0467762326169406 +60971511002,712563,0.0897597977243995 +60971511002,713489,0.0480404551201011 +60971511002,714411,0.04551201011378 +60971511002,714413,0.150442477876106 +60971511002,717555,0.0783817951959545 +60971511002,718399,0.20353982300885 +60971511003,0,0 +60971511003,711686,0.034324942791762 +60971511003,712174,0.0755148741418764 +60971511003,713637,0.0274599542334096 +60971511003,713937,0.123569794050343 +60971511003,714336,0.0320366132723112 +60971511003,714339,0.411899313501144 +60971511003,714709,0.258581235697941 +60971511003,714864,0.0366132723112128 +60971512011,710407,0 +60971512011,712241,0 +60971512011,712820,0 +60971512011,712895,0 +60971512011,715570,0.899280575539568 +60971512011,715968,0.0143884892086331 +60971512011,718400,0.00179856115107914 +60971512011,719985,0.00719424460431655 +60971512011,719987,0.0773381294964029 +60971512012,710724,0.0300546448087432 +60971512012,711485,0.23224043715847 +60971512012,712085,0 +60971512012,712176,0.0655737704918033 +60971512012,712179,0.191256830601093 +60971512012,713154,0 +60971512012,715206,0 +60971512012,715508,0.0109289617486339 +60971512012,715688,0 +60971512012,717577,0.12568306010929 +60971512012,718402,0.234972677595628 +60971512012,718411,0 +60971512012,718769,0.00819672131147541 +60971512012,719988,0.101092896174863 +60971512013,711113,0.185446009389671 +60971512013,713152,0.0868544600938967 +60971512013,713769,0.211267605633803 +60971512013,713770,0.0962441314553991 +60971512013,714122,0.0751173708920188 +60971512013,714540,0.0352112676056338 +60971512013,716146,0.176056338028169 +60971512013,716620,0.133802816901408 +60971512014,711433,0.0610889774236388 +60971512014,711434,0.0398406374501992 +60971512014,711437,0 +60971512014,711484,0 +60971512014,711533,0.0106241699867198 +60971512014,713778,0.181938911022576 +60971512014,715567,0.0544488711819389 +60971512014,716715,0.0650730411686587 +60971512014,718413,0.130146082337317 +60971512014,718445,0.00265604249667995 +60971512014,719030,0.282868525896414 +60971512014,719255,0.164674634794157 +60971512014,719470,0.00664010624169987 +60971512015,0,0 +60971512015,711522,0.744318181818182 +60971512015,711524,0.0142045454545455 +60971512015,711531,0 +60971512015,711894,0 +60971512015,712891,0.00426136363636364 +60971512015,713340,0.00568181818181818 +60971512015,715738,0.0639204545454545 +60971512015,718371,0 +60971512015,718518,0.00852272727272727 +60971512015,719143,0.00284090909090909 +60971512015,719983,0.0113636363636364 +60971512015,719984,0.144886363636364 +60971512031,712568,0.380841121495327 +60971512031,716511,0.231308411214953 +60971512031,720208,0.38785046728972 +60971512032,711005,0.230425055928412 +60971512032,712813,0.205816554809843 +60971512032,713150,0.125279642058166 +60971512032,716378,0.21923937360179 +60971512032,718476,0.21923937360179 +60971512033,710113,0.0797101449275362 +60971512033,710412,0.171497584541063 +60971512033,712240,0.272946859903382 +60971512033,713149,0.123188405797101 +60971512033,715649,0.123188405797101 +60971512033,715650,0.0772946859903382 +60971512033,716509,0.152173913043478 +60971512034,711421,0.202328966521106 +60971512034,711429,0.145560407569141 +60971512034,711915,0.173216885007278 +60971512034,712814,0.0363901018922853 +60971512034,713976,0.0451237263464338 +60971512034,714337,0.0771470160116448 +60971512034,715269,0.208151382823872 +60971512034,719140,0.112081513828239 +60971512041,711423,0.062111801242236 +60971512041,712899,0.324534161490683 +60971512041,715272,0.0745341614906832 +60971512041,716801,0.077639751552795 +60971512041,716825,0.149068322981366 +60971512041,718437,0.312111801242236 +60971512042,710626,0.0666666666666667 +60971512042,712888,0.227450980392157 +60971512042,718436,0.0137254901960784 +60971512042,718638,0.145098039215686 +60971512042,719129,0.117647058823529 +60971512042,719136,0.429411764705882 +60971512043,711900,0.132258064516129 +60971512043,714341,0.164516129032258 +60971512043,715739,0.587096774193548 +60971512043,718879,0.106451612903226 +60971512043,719134,0.00967741935483871 +60971513011,713974,0.263772954924875 +60971513011,715504,0.626043405676127 +60971513011,716458,0.0617696160267112 +60971513011,718440,0.0484140233722871 +60971513012,711897,0.364583333333333 +60971513012,712237,0.135416666666667 +60971513012,714858,0.197916666666667 +60971513012,715745,0.0677083333333333 +60971513012,716234,0.15625 +60971513012,716456,0.078125 +60971513013,712497,0.108877721943049 +60971513013,714855,0 +60971513013,716306,0.0971524288107203 +60971513013,716812,0.599664991624791 +60971513013,719133,0.194304857621441 +60971513051,710037,0.16798418972332 +60971513051,710044,0.221343873517787 +60971513051,710344,0.0553359683794466 +60971513051,711486,0.224308300395257 +60971513051,711833,0 +60971513051,713344,0 +60971513051,714107,0 +60971513051,714798,0 +60971513051,715740,0 +60971513051,716794,0.260869565217391 +60971513051,720324,0.0701581027667984 +60971513052,712493,0.219178082191781 +60971513052,712736,0.26027397260274 +60971513052,712737,0.520547945205479 +60971513053,713625,0.0677685950413223 +60971513053,714852,0.0628099173553719 +60971513053,714853,0.0677685950413223 +60971513053,716231,0.209917355371901 +60971513053,718364,0.515702479338843 +60971513053,718366,0.0760330578512397 +60971513054,710271,0.570114942528736 +60971513054,713086,0.0873563218390805 +60971513054,714856,0.342528735632184 +60971513061,713333,0.165775401069519 +60971513061,714482,0.834224598930481 +60971513062,714483,0.409090909090909 +60971513062,715645,0.1875 +60971513062,715647,0.196022727272727 +60971513062,719022,0.207386363636364 +60971513063,711513,0.276649746192893 +60971513063,715694,0.611675126903553 +60971513063,719465,0.111675126903553 +60971513064,710284,0.554313099041534 +60971513064,716924,0.445686900958466 +60971513071,710337,0.346839546191248 +60971513071,712816,0.653160453808752 +60971513072,715416,0.629943502824859 +60971513072,715571,0.0875706214689266 +60971513072,715693,0.282485875706215 +60971513073,711908,0.401345291479821 +60971513073,714902,0.598654708520179 +60971513074,711907,0.233995584988962 +60971513074,712243,0.335540838852097 +60971513074,712245,0.43046357615894 +60971513081,711827,0.667844522968198 +60971513081,716120,0.169611307420495 +60971513081,719003,0.162544169611307 +60971513082,716310,0.050131926121372 +60971513082,717595,0.0488126649076517 +60971513082,719005,0.777044854881267 +60971513082,720097,0.0514511873350923 +60971513082,720098,0.0725593667546174 +60971513083,711515,1 +60971513084,710268,0.360189573459716 +60971513084,712088,0.156398104265403 +60971513084,715754,0.483412322274882 +60971513085,710043,0.00188323917137476 +60971513085,710930,0 +60971513085,711111,0.436911487758945 +60971513085,712503,0.220338983050847 +60971513085,712507,0.0922787193973635 +60971513085,715698,0.0564971751412429 +60971513085,715919,0.107344632768362 +60971513085,720094,0.0847457627118644 +60971513091,711258,0.26530612244898 +60971513091,711261,0.255102040816327 +60971513091,711835,0.0255102040816327 +60971513091,712892,0.0357142857142857 +60971513091,712898,0.142857142857143 +60971513091,713153,0.00510204081632653 +60971513091,715776,0 +60971513091,717046,0.13265306122449 +60971513091,717116,0.0102040816326531 +60971513091,718414,0.127551020408163 +60971513092,710404,0.362302483069977 +60971513092,710877,0.0869074492099323 +60971513092,711269,0.04627539503386 +60971513092,711270,0.0677200902934537 +60971513092,711694,0.0316027088036117 +60971513092,712246,0.0338600451467269 +60971513092,713900,0.0395033860045147 +60971513092,714485,0.0451467268623025 +60971513092,716058,0.124153498871332 +60971513092,718359,0.0948081264108352 +60971513092,718407,0.0677200902934537 +60971513093,710276,0.25557461406518 +60971513093,710413,0.293310463121784 +60971513093,710623,0.00171526586620926 +60971513093,713721,0.181818181818182 +60971513093,716617,0.226415094339623 +60971513093,717601,0.0411663807890223 +60971513101,713977,0.101123595505618 +60971513101,715648,0.734082397003745 +60971513101,716459,0.164794007490637 +60971513102,712239,0.856275303643725 +60971513102,713722,0.143724696356275 +60971513103,710270,0.12847965738758 +60971513103,711428,0.254817987152034 +60971513103,712235,0.184154175588865 +60971513103,715646,0.0535331905781585 +60971513103,718648,0.379014989293362 +60971513104,710129,0.960176991150443 +60971513104,718443,0.0398230088495575 +60971513111,710481,0.166666666666667 +60971513111,711432,0 +60971513111,714537,0.197777777777778 +60971513111,715305,0.433333333333333 +60971513111,715767,0.0711111111111111 +60971513111,716723,0.0888888888888889 +60971513111,719148,0.0422222222222222 +60971513112,713775,1 +60971513112,719254,0 +60971513113,710029,0.0907759882869693 +60971513113,713562,0.600292825768668 +60971513113,714111,0.169838945827233 +60971513113,720320,0.13909224011713 +60971513114,710035,0.413793103448276 +60971513114,713337,0.209770114942529 +60971513114,715737,0.195402298850575 +60971513114,716144,0.181034482758621 +60971513115,710342,1 +60971514011,710083,0.298751950078003 +60971514011,712437,0.00078003120124805 +60971514011,712836,0.0046801872074883 +60971514011,714664,0.0327613104524181 +60971514011,714976,0.109204368174727 +60971514011,716409,0.0078003120124805 +60971514011,717805,0.062402496099844 +60971514011,718697,0.0967238689547582 +60971514011,718817,0.0920436817472699 +60971514011,719212,0.133385335413417 +60971514011,719304,0.0109204368174727 +60971514011,720247,0.0405616224648986 +60971514011,720275,0.0608424336973479 +60971514011,720276,0.0491419656786272 +60971514012,710924,0.0102739726027397 +60971514012,712755,0 +60971514012,713833,0.113013698630137 +60971514012,714618,0.143835616438356 +60971514012,714621,0.0188356164383562 +60971514012,716081,0.0599315068493151 +60971514012,716083,0.106164383561644 +60971514012,716408,0.422945205479452 +60971514012,717948,0.125 +60971514013,710452,0.257142857142857 +60971514013,712768,0.177777777777778 +60971514013,716086,0.250793650793651 +60971514013,717681,0.13015873015873 +60971514013,718588,0.133333333333333 +60971514013,719289,0.0507936507936508 +60971514021,0,0 +60971514021,710359,0.0197109067017083 +60971514021,710372,0.0341655716162943 +60971514021,710677,0 +60971514021,712021,0.0578186596583443 +60971514021,712031,0.176084099868594 +60971514021,712929,0.0302233902759527 +60971514021,712930,0.00131406044678055 +60971514021,714944,0 +60971514021,715242,0.134034165571616 +60971514021,716082,0.440210249671485 +60971514021,716582,0 +60971514021,717221,0.105124835742444 +60971514021,719174,0.00131406044678055 +60971514021,719744,0 +60971514021,720363,0 +60971514022,710207,0.241153342070773 +60971514022,711311,0.0694626474442988 +60971514022,713108,0.127129750982962 +60971514022,713376,0.119266055045872 +60971514022,716342,0.277850589777195 +60971514022,720166,0.165137614678899 +60971514023,710451,0.0998902305159166 +60971514023,712377,0.879253567508233 +60971514023,718045,0.0208562019758507 +60971514024,710543,0.0314685314685315 +60971514024,710675,0.00699300699300699 +60971514024,713100,0.339160839160839 +60971514024,714751,0.115384615384615 +60971514024,715982,0.027972027972028 +60971514024,716572,0.020979020979021 +60971514024,717742,0.115384615384615 +60971514024,718721,0.0314685314685315 +60971514024,718722,0.311188811188811 +60971514025,710222,0.186346863468635 +60971514025,710838,0.22140221402214 +60971514025,711319,0.018450184501845 +60971514025,712766,0.260147601476015 +60971514025,717678,0.25830258302583 +60971514025,720369,0.0553505535055351 +60971515021,712440,0 +60971515021,712846,0.0797297297297297 +60971515021,714278,0.105405405405405 +60971515021,714589,0.224324324324324 +60971515021,715609,0.106756756756757 +60971515021,717333,0.289189189189189 +60971515021,718087,0.0743243243243243 +60971515021,719429,0.0108108108108108 +60971515021,720008,0.109459459459459 +60971515021,720142,0 +60971515022,0,0 +60971515022,714370,0.209386281588448 +60971515022,714978,0.563176895306859 +60971515022,717337,0.0072202166064982 +60971515022,720007,0.0505415162454874 +60971515022,720168,0.169675090252708 +60971515023,710523,0.210862619808307 +60971515023,711323,0.204472843450479 +60971515023,711737,0.0862619808306709 +60971515023,714226,0.185303514376997 +60971515023,717879,0.121405750798722 +60971515023,717941,0.191693290734824 +60971515024,716641,0.145390070921986 +60971515024,717323,0.205673758865248 +60971515024,720002,0.648936170212766 +60971515025,710521,0.108545034642032 +60971515025,712126,0.429561200923788 +60971515025,714572,0.286374133949192 +60971515025,716638,0.175519630484988 +60971515026,712014,0.345413363533409 +60971515026,712015,0.242355605889015 +60971515026,714571,0.0588901472253681 +60971515026,719104,0.2559456398641 +60971515026,720004,0.0973952434881087 +60971515031,711222,0.291746641074856 +60971515031,711721,0.0134357005758157 +60971515031,712935,0.374280230326296 +60971515031,716202,0.0825335892514395 +60971515031,716665,0 +60971515031,716997,0.103646833013436 +60971515031,720169,0.134357005758157 +60971515032,713283,0.0868347338935574 +60971515032,713575,0.159663865546218 +60971515032,714647,0.106442577030812 +60971515032,716206,0.182072829131653 +60971515032,717760,0.142857142857143 +60971515032,717767,0.221288515406162 +60971515032,719529,0.100840336134454 +60971515033,712011,0.0560747663551402 +60971515033,713502,0.119626168224299 +60971515033,714958,0 +60971515033,717077,0.317757009345794 +60971515033,717142,0.205607476635514 +60971515033,717208,0.110280373831776 +60971515033,718685,0 +60971515033,719197,0.097196261682243 +60971515033,720006,0.0934579439252336 +60971515041,710522,0.169565217391304 +60971515041,710752,0.145652173913043 +60971515041,713499,0.193478260869565 +60971515041,714574,0.0891304347826087 +60971515041,716174,0.402173913043478 +60971515042,710171,0.078125 +60971515042,711221,0.107142857142857 +60971515042,716469,0.256696428571429 +60971515042,717322,0.247767857142857 +60971515042,719103,0.310267857142857 +60971515043,712013,0.0884955752212389 +60971515043,714573,0.168141592920354 +60971515043,716575,0.223451327433628 +60971515043,717144,0.519911504424779 +60971516011,710679,0.138755980861244 +60971516011,711324,0.535885167464115 +60971516011,711724,0.126794258373206 +60971516011,716666,0.0741626794258373 +60971516011,718041,0.124401913875598 +60971516012,711228,0.0729001584786054 +60971516012,712839,0 +60971516012,713040,0 +60971516012,716001,0.00158478605388273 +60971516012,716091,0 +60971516012,716213,0.206022187004754 +60971516012,717070,0.00316957210776545 +60971516012,718180,0.00158478605388273 +60971516012,719187,0.00316957210776545 +60971516012,719332,0.711568938193344 +60971516013,712109,0.513157894736842 +60971516013,712936,0.486842105263158 +60971516021,711226,0.0620805369127517 +60971516021,711229,0.0687919463087248 +60971516021,712463,0.0251677852348993 +60971516021,712693,0.120805369127517 +60971516021,713669,0.0520134228187919 +60971516021,714379,0.119127516778523 +60971516021,715614,0.359060402684564 +60971516021,716273,0.114093959731544 +60971516021,719316,0.0385906040268456 +60971516021,719402,0.0402684563758389 +60971516022,712692,0.0228471001757469 +60971516022,712939,0.81195079086116 +60971516022,713582,0.0492091388400703 +60971516022,717260,0.115992970123023 +60971516023,0,0 +60971516023,710519,0.414464534075104 +60971516023,712835,0.0542420027816412 +60971516023,713386,0 +60971516023,714378,0 +60971516023,714757,0 +60971516023,716171,0.225312934631433 +60971516023,716201,0.0598052851182197 +60971516023,716347,0.164116828929068 +60971516023,716882,0 +60971516023,717264,0.0403337969401947 +60971516023,717768,0.00973574408901252 +60971516023,717795,0.00278164116828929 +60971516023,718057,0.0292072322670376 +60971516023,718814,0 +60971517001,713862,0.0952380952380952 +60971517001,714362,0.117216117216117 +60971517001,716383,0.787545787545788 +60971517002,0,0 +60971517002,710366,0.246612466124661 +60971517002,710944,0 +60971517002,716765,0 +60971517002,717798,0 +60971517002,717801,0.140921409214092 +60971517002,718812,0.612466124661247 +60971517003,711208,0.648330058939096 +60971517003,711209,0.180746561886051 +60971517003,717737,0.0648330058939096 +60971517003,718910,0.106090373280943 +60971517004,710166,0.015130674002751 +60971517004,710168,0.0770288858321871 +60971517004,710169,0.0770288858321871 +60971517004,711619,0.0371389270976616 +60971517004,712917,0.0687757909215956 +60971517004,714566,0.0605226960110041 +60971517004,714567,0.0962861072902338 +60971517004,715226,0.0825309491059147 +60971517004,715465,0.134800550206327 +60971517004,715466,0.0522696011004127 +60971517004,716635,0.0866574965612105 +60971517004,716670,0.063273727647868 +60971517004,718599,0.0605226960110041 +60971517004,718666,0.0880330123796424 +60971517005,712467,0.608695652173913 +60971517005,714367,0.072463768115942 +60971517005,718600,0.184782608695652 +60971517005,719295,0.0615942028985507 +60971517005,719404,0.072463768115942 +60971517006,712585,0.362139917695473 +60971517006,714286,0.0761316872427984 +60971517006,716743,0.561728395061728 +60971518001,710690,0.0178571428571429 +60971518001,712114,0.0694444444444444 +60971518001,713021,0.142857142857143 +60971518001,713027,0.0555555555555556 +60971518001,713591,0.271825396825397 +60971518001,713857,0.327380952380952 +60971518001,719290,0.115079365079365 +60971518002,712443,0.0796178343949045 +60971518002,713034,0.0955414012738854 +60971518002,713933,0.0923566878980892 +60971518002,713934,0.0796178343949045 +60971518002,714275,0.235668789808917 +60971518002,716424,0.089171974522293 +60971518002,716425,0.089171974522293 +60971518002,719302,0.238853503184713 +60971518003,712295,0.182058047493404 +60971518003,713029,0.0237467018469657 +60971518003,713031,0.0870712401055409 +60971518003,713588,0.145118733509235 +60971518003,713927,0.0738786279683377 +60971518003,713929,0.110817941952507 +60971518003,714269,0.0659630606860158 +60971518003,714922,0.16622691292876 +60971518003,718591,0.0738786279683377 +60971518003,719293,0.0712401055408971 +60971518004,710919,0.024132730015083 +60971518004,711709,0.110105580693816 +60971518004,712115,0.0180995475113122 +60971518004,712116,0.242835595776772 +60971518004,712117,0.22473604826546 +60971518004,713022,0.0739064856711916 +60971518004,713032,0.0648567119155355 +60971518004,718590,0.0392156862745098 +60971518004,719335,0.0452488687782805 +60971518004,720226,0.156862745098039 +60971518005,710184,0 +60971518005,712441,0.108695652173913 +60971518005,714272,0 +60971518005,714274,0.108695652173913 +60971518005,716422,0.166666666666667 +60971518005,717685,0 +60971518005,717686,0 +60971518005,717735,0 +60971518005,717736,0.152173913043478 +60971518005,718593,0.11231884057971 +60971518005,718594,0.108695652173913 +60971518005,719298,0.11231884057971 +60971518005,719301,0.130434782608696 +60971519001,710921,0.28515625 +60971519001,714614,0.2421875 +60971519001,716193,0.31640625 +60971519001,716401,0.15625 +60971519002,712022,0.192170818505338 +60971519002,716084,0.135231316725979 +60971519002,718032,0.462633451957295 +60971519002,719057,0.209964412811388 +60971519003,710920,0.0945121951219512 +60971519003,710922,0.115853658536585 +60971519003,712019,0.146341463414634 +60971519003,712020,0.128048780487805 +60971519003,714615,0.100609756097561 +60971519003,716403,0.0975609756097561 +60971519003,718028,0.0975609756097561 +60971519003,718029,0.11280487804878 +60971519003,718030,0.106707317073171 +60971519004,710829,0.363636363636364 +60971519004,712292,0.112554112554113 +60971519004,714253,0.0974025974025974 +60971519004,714255,0.0411255411255411 +60971519004,715992,0.201298701298701 +60971519004,716404,0.0735930735930736 +60971519004,717189,0.0606060606060606 +60971519004,717190,0.0497835497835498 +60971520001,710187,0.0636704119850187 +60971520001,710432,0.0805243445692884 +60971520001,710434,0 +60971520001,710435,0 +60971520001,710824,0.0617977528089888 +60971520001,710825,0 +60971520001,710931,0.00936329588014981 +60971520001,711946,0.0861423220973783 +60971520001,711947,0 +60971520001,712277,0.157303370786517 +60971520001,712279,0.0617977528089888 +60971520001,712280,0.0299625468164794 +60971520001,712281,0 +60971520001,712460,0 +60971520001,712597,0 +60971520001,713864,0.185393258426966 +60971520001,714254,0 +60971520001,714260,0 +60971520001,714261,0 +60971520001,716349,0 +60971520001,716391,0.0730337078651685 +60971520001,716394,0.146067415730337 +60971520001,717065,0.0224719101123595 +60971520001,717072,0 +60971520001,717184,0 +60971520001,717185,0 +60971520001,717193,0 +60971520001,717204,0 +60971520001,717731,0 +60971520001,718917,0 +60971520001,719046,0 +60971520001,720009,0 +60971520001,720351,0.0224719101123595 +60971520002,710431,0.0358744394618834 +60971520002,710538,0.0201793721973094 +60971520002,710823,0.07847533632287 +60971520002,710828,0.336322869955157 +60971520002,710918,0.0560538116591928 +60971520002,712291,0.0224215246636771 +60971520002,713869,0.0336322869955157 +60971520002,717195,0.015695067264574 +60971520002,717196,0.047085201793722 +60971520002,717775,0.150224215246637 +60971520002,718915,0.139013452914798 +60971520002,719045,0.0224215246636771 +60971520002,719047,0.0403587443946188 +60971520002,719056,0.00224215246636771 +60971521001,710176,0.375 +60971521001,710444,0.00290697674418605 +60971521001,713851,0.0290697674418605 +60971521001,714576,0.174418604651163 +60971521001,715887,0.130813953488372 +60971521001,715896,0.159883720930233 +60971521001,716562,0.0232558139534884 +60971521001,718684,0 +60971521001,720126,0.104651162790698 +60971521001,720240,0 +60971521002,712685,0.477966101694915 +60971521002,713853,0.267796610169492 +60971521002,716320,0.0305084745762712 +60971521002,716321,0.142372881355932 +60971521002,717944,0.0813559322033898 +60971521002,718932,0 +60971521003,710185,0.130890052356021 +60971521003,710190,0.167539267015707 +60971521003,711942,0.081151832460733 +60971521003,711943,0.0863874345549738 +60971521003,713863,0.133507853403141 +60971521003,716385,0.130890052356021 +60971521003,716387,0.107329842931937 +60971521003,717064,0.107329842931937 +60971521003,717722,0.0549738219895288 +60971522011,710357,0.148936170212766 +60971522011,711304,0.118203309692671 +60971522011,711712,0.0614657210401891 +60971522011,712300,0.26241134751773 +60971522011,714247,0.174940898345154 +60971522011,714813,0.141843971631206 +60971522011,716323,0.0921985815602837 +60971522012,711306,0.0194805194805195 +60971522012,712097,0.0865800865800866 +60971522012,714242,0.0930735930735931 +60971522012,714243,0.11038961038961 +60971522012,715227,0.216450216450216 +60971522012,716322,0.0670995670995671 +60971522012,716329,0.0822510822510823 +60971522012,716567,0.103896103896104 +60971522012,716671,0.0974025974025974 +60971522012,718016,0.123376623376623 +60971522013,710361,0.0604166666666667 +60971522013,710751,0.439583333333333 +60971522013,710936,0.0208333333333333 +60971522013,714591,0.05 +60971522013,715229,0.114583333333333 +60971522013,716331,0.0645833333333333 +60971522013,718667,0.1375 +60971522013,719805,0.1125 +60971522014,714593,0.12396694214876 +60971522014,714815,0.333333333333333 +60971522014,716568,0.239669421487603 +60971522014,718018,0.12396694214876 +60971522014,718668,0.179063360881543 +60971522021,710427,0.0234113712374582 +60971522021,712824,0.471571906354515 +60971522021,713859,0.0936454849498328 +60971522021,715237,0.247491638795987 +60971522021,717217,0.163879598662207 +60971522022,710663,0.208540218470705 +60971522022,711279,0.0486593843098312 +60971522022,711282,0.21648460774578 +60971522022,711933,0.389275074478649 +60971522022,711939,0.05759682224429 +60971522022,716999,0.0754716981132075 +60971522022,720136,0.00397219463753724 +60971522023,710061,0.0659340659340659 +60971522023,711328,0.272893772893773 +60971522023,711551,0.0677655677655678 +60971522023,716993,0.172161172161172 +60971522023,717181,0.274725274725275 +60971522023,718800,0.146520146520147 +60971522024,710428,0.0224215246636771 +60971522024,712107,0.0739910313901345 +60971522024,714961,0.224215246636771 +60971522024,715539,0.0582959641255605 +60971522024,718798,0.459641255605381 +60971522024,718799,0.161434977578475 +60971522025,710367,0.20979020979021 +60971522025,713860,0.0891608391608392 +60971522025,714452,0 +60971522025,718796,0.701048951048951 +60971522031,711136,0.100278551532033 +60971522031,711637,0.0835654596100279 +60971522031,711639,0.116991643454039 +60971522031,713374,0.0139275766016713 +60971522031,714596,0.0779944289693593 +60971522031,714600,0.0947075208913649 +60971522031,716330,0.161559888579387 +60971522031,716745,0.217270194986072 +60971522031,717180,0.0584958217270195 +60971522031,717658,0.0306406685236769 +60971522031,717663,0.0445682451253482 +60971522032,712594,0.0940594059405941 +60971522032,715230,0.202970297029703 +60971522032,715603,0.0792079207920792 +60971522032,717068,0.175742574257426 +60971522032,717076,0.202970297029703 +60971522032,717205,0.0940594059405941 +60971522032,718557,0.150990099009901 +60971522033,710917,0.33955223880597 +60971522033,711636,0.281716417910448 +60971522033,711638,0.0317164179104478 +60971522033,714612,0.0391791044776119 +60971522033,714613,0.0317164179104478 +60971522033,715991,0.0503731343283582 +60971522033,716399,0.0373134328358209 +60971522033,717089,0.0335820895522388 +60971522033,717207,0.0205223880597015 +60971522033,718025,0.134328358208955 +60971522034,710433,0.147663551401869 +60971522034,710537,0.11588785046729 +60971522034,712595,0.0411214953271028 +60971522034,712596,0.00560747663551402 +60971522034,713868,0.145794392523364 +60971522034,716393,0.0168224299065421 +60971522034,717069,0.132710280373832 +60971522034,717192,0.097196261682243 +60971522034,717197,0.0504672897196262 +60971522034,717884,0.158878504672897 +60971522034,717885,0.0429906542056075 +60971522034,718054,0 +60971522034,718925,0.0448598130841121 +60971523001,711711,0.0696095076400679 +60971523001,711715,0.0628183361629881 +60971523001,714245,0.191850594227504 +60971523001,714246,0.123938879456706 +60971523001,715225,0.0492359932088285 +60971523001,717873,0.502546689303905 +60971523001,717962,0 +60971523002,711133,0.00242130750605327 +60971523002,712098,0.401937046004843 +60971523002,712120,0.467312348668281 +60971523002,717172,0.062953995157385 +60971523002,718021,0.0435835351089588 +60971523002,719201,0.0217917675544794 +60971523003,710656,0.0757042253521127 +60971523003,710839,0.169014084507042 +60971523003,710840,0.11443661971831 +60971523003,711547,0.234154929577465 +60971523003,712124,0.0880281690140845 +60971523003,712290,0.0792253521126761 +60971523003,716870,0.137323943661972 +60971523003,717665,0.073943661971831 +60971523003,717667,0 +60971523003,718676,0.028169014084507 +60971523004,711138,0.0603174603174603 +60971523004,711140,0.120634920634921 +60971523004,714604,0.0825396825396826 +60971523004,717174,0.46984126984127 +60971523004,717179,0.053968253968254 +60971523004,718792,0.212698412698413 +60971524001,710178,0 +60971524001,710446,0.0896174863387978 +60971524001,712133,0 +60971524001,712357,0.178142076502732 +60971524001,716268,0.204371584699454 +60971524001,716324,0.0327868852459016 +60971524001,716355,0.0743169398907104 +60971524001,717331,0.259016393442623 +60971524001,718930,0.0502732240437158 +60971524001,719604,0.0601092896174863 +60971524001,719723,0.0513661202185792 +60971524002,710556,0.141882673942701 +60971524002,710687,0.155525238744884 +60971524002,713835,0.0859481582537517 +60971524002,714934,0.0122783083219645 +60971524002,715605,0.137789904502046 +60971524002,716381,0.22237380627558 +60971524002,716990,0.114597544338336 +60971524002,716995,0.0641200545702592 +60971524002,717661,0.0654843110504775 +60971524003,0,0 +60971524003,710659,0.383529411764706 +60971524003,710688,0.201176470588235 +60971524003,711218,0.04 +60971524003,711292,0.254117647058824 +60971524003,714827,0.0458823529411765 +60971524003,716176,0.00235294117647059 +60971524003,716282,0.0352941176470588 +60971524003,718842,0 +60971524003,720120,0.0376470588235294 +60971524004,710213,0.0867237687366167 +60971524004,710225,0.0738758029978587 +60971524004,710420,0.113490364025696 +60971524004,710438,0.533190578158458 +60971524004,711159,0.00749464668094218 +60971524004,711714,0.10813704496788 +60971524004,714933,0.00214132762312634 +60971524004,719523,0.0749464668094218 +60971524005,710557,0.176046176046176 +60971524005,710676,0.272727272727273 +60971524005,711131,0.0663780663780664 +60971524005,712940,0.135642135642136 +60971524005,714206,0.0663780663780664 +60971524005,715608,0.203463203463203 +60971524005,719431,0.0793650793650794 +60971525011,710368,0.0721784776902887 +60971525011,711746,0 +60971525011,712587,0.127296587926509 +60971525011,713287,0.161417322834646 +60971525011,716173,0.195538057742782 +60971525011,716742,0.0406824146981627 +60971525011,719066,0.275590551181102 +60971525011,720133,0.127296587926509 +60971525012,710900,0.00571428571428571 +60971525012,711211,0.417142857142857 +60971525012,714454,0.474285714285714 +60971525012,719898,0.102857142857143 +60971525013,712272,0.412532637075718 +60971525013,712276,0.0757180156657963 +60971525013,717907,0.511749347258486 +60971525021,710553,0.219281663516068 +60971525021,711735,0 +60971525021,711929,0.111531190926276 +60971525021,712827,0.0661625708884688 +60971525021,715446,0.0831758034026465 +60971525021,715447,0.187145557655955 +60971525021,715895,0.162570888468809 +60971525021,716739,0.0831758034026465 +60971525021,719809,0.0869565217391304 +60971525022,710362,0.0172711571675302 +60971525022,710657,0.0379965457685665 +60971525022,712275,0.0639032815198618 +60971525022,714212,0.326424870466321 +60971525022,716750,0.260794473229706 +60971525022,720010,0.293609671848014 +60971525023,712586,0.126005361930295 +60971525023,716175,0.0938337801608579 +60971525023,716741,0.656836461126005 +60971525023,717198,0.123324396782842 +60971526001,0,0 +60971526001,711217,0.0864197530864197 +60971526001,711326,0.126984126984127 +60971526001,711928,0.340388007054674 +60971526001,714607,0.0881834215167548 +60971526001,717088,0.0529100529100529 +60971526001,718671,0.0229276895943563 +60971526001,719939,0.218694885361552 +60971526001,720228,0.0634920634920635 +60971526002,710666,0.0785169029443839 +60971526002,712591,0.121046892039258 +60971526002,712697,0.103598691384951 +60971526002,713453,0.0174482006543075 +60971526002,714655,0.0828789531079607 +60971526002,715157,0.0981461286804798 +60971526002,715618,0.0316248636859324 +60971526002,716278,0.0425299890948746 +60971526002,717963,0.0327153762268266 +60971526002,718065,0.0403489640130862 +60971526002,718604,0.019629225736096 +60971526002,719727,0.151581243184297 +60971526002,719914,0.130861504907306 +60971526002,720132,0.0490730643402399 +60971526003,711213,0.110824742268041 +60971526003,714758,0.206185567010309 +60971526003,716396,0.255154639175258 +60971526003,717202,0.105670103092784 +60971526003,719901,0.25 +60971526003,719904,0.0721649484536082 +60971526004,710664,0.181102362204724 +60971526004,711948,0.0905511811023622 +60971526004,712588,0.0846456692913386 +60971526004,712592,0.0925196850393701 +60971526004,712915,0.062992125984252 +60971526004,713299,0.0354330708661417 +60971526004,714285,0.102362204724409 +60971526004,716634,0.094488188976378 +60971526004,718044,0.0925196850393701 +60971526004,719625,0.0551181102362205 +60971526004,719921,0.108267716535433 +60971526005,710216,0.00165289256198347 +60971526005,710830,0.0826446280991736 +60971526005,711215,0.0264462809917355 +60971526005,714459,0.00165289256198347 +60971526005,714737,0.0694214876033058 +60971526005,714913,0.028099173553719 +60971526005,715989,0.0760330578512397 +60971526005,716188,0.056198347107438 +60971526005,716197,0.0363636363636364 +60971526005,716199,0.0231404958677686 +60971526005,716397,0.087603305785124 +60971526005,716398,0.00495867768595041 +60971526005,716636,0.0231404958677686 +60971526005,717271,0.0330578512396694 +60971526005,717329,0.0578512396694215 +60971526005,717931,0.0760330578512397 +60971526005,719050,0.031404958677686 +60971526005,719053,0.0330578512396694 +60971526005,719722,0.0247933884297521 +60971526005,719728,0.00991735537190083 +60971526005,719908,0.143801652892562 +60971526005,719954,0 +60971526005,720171,0.0727272727272727 +60971526006,710813,0.084 +60971526006,710899,0.152 +60971526006,712589,0.228 +60971526006,715449,0.536 +60971527011,712822,0.0871369294605809 +60971527011,713291,0.00622406639004149 +60971527011,713666,0.118257261410788 +60971527011,714458,0.004149377593361 +60971527011,715164,0.0228215767634855 +60971527011,717910,0.176348547717842 +60971527011,718962,0.0518672199170125 +60971527011,719049,0.533195020746888 +60971527012,711130,0.4 +60971527012,714277,0.107692307692308 +60971527012,717912,0.104615384615385 +60971527012,719597,0.387692307692308 +60971527013,714606,0.132124352331606 +60971527013,717269,0.121761658031088 +60971527013,718556,0.0569948186528497 +60971527013,719218,0.61139896373057 +60971527013,719219,0.077720207253886 +60971527014,710060,0.361344537815126 +60971527014,713820,0.456582633053221 +60971527014,714267,0.182072829131653 +60971527015,710057,0.905482041587902 +60971527015,710158,0 +60971527015,713822,0.0945179584120983 +60971527015,719708,0 +60971527021,710055,0 +60971527021,710056,0 +60971527021,710889,0.0515463917525773 +60971527021,710893,0.0515463917525773 +60971527021,711125,0.103092783505155 +60971527021,711128,0 +60971527021,711129,0.0412371134020619 +60971527021,715438,0.474226804123711 +60971527021,716584,0.0927835051546392 +60971527021,716624,0 +60971527021,719601,0.185567010309278 +60971527021,719955,0 +60971527022,710513,0 +60971527022,712925,0 +60971527022,713277,0.0905587668593449 +60971527022,714305,0.194605009633911 +60971527022,714364,0.714836223506744 +60971527022,717226,0 +60971527023,710891,0.294303797468354 +60971527023,711289,0.110759493670886 +60971527023,714219,0.227848101265823 +60971527023,717270,0.221518987341772 +60971527023,717642,0.145569620253165 +60971527024,710054,0.115236875800256 +60971527024,710219,0.235595390524968 +60971527024,710542,0.0614596670934699 +60971527024,711556,0 +60971527024,712371,0 +60971527024,715437,0.00128040973111396 +60971527024,715532,0 +60971527024,715538,0.23943661971831 +60971527024,716092,0 +60971527024,716625,0.0717029449423816 +60971527024,716672,0.00384122919334187 +60971527024,717000,0.140845070422535 +60971527024,718084,0.00128040973111396 +60971527024,719099,0 +60971527024,719707,0 +60971527024,719715,0 +60971527024,720001,0.12932138284251 +60971527025,712598,0.174358974358974 +60971527025,714268,0.205128205128205 +60971527025,714937,0.179487179487179 +60971527025,716627,0.18974358974359 +60971527025,719716,0.169230769230769 +60971527025,719760,0.0820512820512821 +60971528011,710175,0.218390804597701 +60971528011,710547,0.0670498084291188 +60971528011,711290,0 +60971528011,711291,0.00383141762452107 +60971528011,712682,0 +60971528011,712684,0 +60971528011,712923,0.120689655172414 +60971528011,713830,0.419540229885057 +60971528011,714569,0.0172413793103448 +60971528011,716079,0 +60971528011,716177,0 +60971528011,717646,0 +60971528011,719726,0 +60971528011,719917,0.153256704980843 +60971528012,710662,0.288888888888889 +60971528012,714653,0.0888888888888889 +60971528012,715146,0.366666666666667 +60971528012,719220,0.155555555555556 +60971528012,719806,0.1 +60971528013,711315,0.337408312958435 +60971528013,717210,0.266503667481663 +60971528013,718966,0.102689486552567 +60971528013,719221,0.134474327628362 +60971528013,720021,0.158924205378973 +60971528014,712686,0.488038277511962 +60971528014,720000,0.511961722488038 +60971528015,712269,0.136482939632546 +60971528015,712298,0.304461942257218 +60971528015,712754,0.330708661417323 +60971528015,716629,0 +60971528015,717914,0.057742782152231 +60971528015,718558,0.0341207349081365 +60971528015,718969,0.136482939632546 +60971528021,716186,0.416149068322981 +60971528021,716653,0 +60971528021,717703,0.583850931677019 +60971528022,713362,0.0286368843069874 +60971528022,714232,0.202749140893471 +60971528022,714739,0.22794959908362 +60971528022,716267,0.270332187857961 +60971528022,716654,0 +60971528022,719341,0.187857961053837 +60971528022,720230,0.0148911798396334 +60971528022,720231,0.0675830469644903 +60971528023,711707,0 +60971528023,713017,0.196382428940568 +60971528023,714355,0.803617571059432 +60971528023,716185,0 +60971528024,710528,0.17304189435337 +60971528024,712360,0 +60971528024,712845,0 +60971528024,714356,0 +60971528024,714582,0.282331511839709 +60971528024,716187,0.0601092896174863 +60971528024,717764,0.484517304189435 +60971528025,712450,0.161147902869757 +60971528025,712458,0.262693156732892 +60971528025,714357,0.116997792494481 +60971528025,717706,0.139072847682119 +60971528025,717922,0.187637969094923 +60971528025,720232,0.132450331125828 +60971529031,710898,0.676375404530744 +60971529031,712123,0.0938511326860841 +60971529031,712604,0.229773462783172 +60971529032,712681,0.0884450784593438 +60971529032,713451,0.319543509272468 +60971529032,715997,0.0485021398002853 +60971529032,716184,0.0485021398002853 +60971529032,716209,0.215406562054208 +60971529032,717704,0.0356633380884451 +60971529032,720123,0.243937232524964 +60971529033,713018,0.606837606837607 +60971529033,720119,0.393162393162393 +60971529034,716748,0.242753623188406 +60971529034,717151,0.347826086956522 +60971529034,717649,0.409420289855072 +60971529041,710221,0.0826558265582656 +60971529041,711952,0.104336043360434 +60971529041,712757,0.0772357723577236 +60971529041,713508,0.043360433604336 +60971529041,714225,0.464769647696477 +60971529041,714816,0.151761517615176 +60971529041,719440,0.0514905149051491 +60971529041,720059,0.024390243902439 +60971529042,712359,0.367041198501873 +60971529042,714299,0.213483146067416 +60971529042,715475,0.419475655430712 +60971529043,710832,0.217842323651452 +60971529043,710904,0.344398340248963 +60971529043,713509,0.147302904564315 +60971529043,715441,0.0726141078838174 +60971529043,715985,0.217842323651452 +60971529044,715454,0.687344913151365 +60971529044,716676,0.312655086848635 +60971529051,711145,0.391304347826087 +60971529051,712361,0.036231884057971 +60971529051,712447,0.108695652173913 +60971529051,713016,0.128623188405797 +60971529051,714942,0.335144927536232 +60971529052,710212,0.122137404580153 +60971529052,710650,0.0534351145038168 +60971529052,710940,0.223282442748092 +60971529052,712449,0.204198473282443 +60971529052,712609,0.0534351145038168 +60971529052,715999,0.0687022900763359 +60971529052,717765,0.188931297709924 +60971529052,718072,0.0858778625954199 +60971529053,714012,0.393088552915767 +60971529053,714304,0.172786177105832 +60971529053,715610,0.0712742980561555 +60971529053,715994,0.16414686825054 +60971529053,719826,0.198704103671706 +60971529061,710197,0.0286885245901639 +60971529061,710217,0.0647540983606557 +60971529061,710218,0.183606557377049 +60971529061,710224,0.0516393442622951 +60971529061,710517,0.0139344262295082 +60971529061,711957,0.0475409836065574 +60971529061,712136,0.0459016393442623 +60971529061,712466,0.0647540983606557 +60971529061,712847,0.0631147540983607 +60971529061,716356,0.0319672131147541 +60971529061,718719,0.069672131147541 +60971529061,719410,0.030327868852459 +60971529061,719439,0.0540983606557377 +60971529061,719807,0.100819672131148 +60971529061,720014,0.0352459016393443 +60971529061,720239,0.113934426229508 +60971529062,0,0 +60971529062,710515,0.259312320916905 +60971529062,710892,0.0143266475644699 +60971529062,712454,0.126074498567335 +60971529062,715440,0.130372492836676 +60971529062,718559,0.469914040114613 +60971530011,710524,0.211325966850829 +60971530011,713023,0.56353591160221 +60971530011,714746,0.154696132596685 +60971530011,717959,0.0704419889502762 +60971530012,710173,0.108452950558214 +60971530012,710199,0.165869218500797 +60971530012,710200,0.178628389154705 +60971530012,710905,0.125996810207337 +60971530012,711557,0.0861244019138756 +60971530012,713019,0.151515151515152 +60971530012,714577,0.100478468899522 +60971530012,714738,0.0398724082934609 +60971530012,714740,0.0430622009569378 +60971530013,710181,0.0920930232558139 +60971530013,713363,0 +60971530013,713364,0.0474418604651163 +60971530013,713842,0.213023255813953 +60971530013,713844,0 +60971530013,713845,0.00372093023255814 +60971530013,714233,0.053953488372093 +60971530013,714583,0.0502325581395349 +60971530013,716350,0.193488372093023 +60971530013,717153,0.17953488372093 +60971530013,717155,0.0372093023255814 +60971530013,717166,0.00372093023255814 +60971530013,717924,0.0948837209302326 +60971530013,719214,0.0306976744186047 +60971530013,720043,0 +60971530021,713579,0.733102253032929 +60971530021,715526,0.0450606585788562 +60971530021,716336,0.121317157712305 +60971530021,717281,0.10051993067591 +60971530022,710205,0.0907258064516129 +60971530022,710909,0.106854838709677 +60971530022,713659,0.0625 +60971530022,713847,0.0564516129032258 +60971530022,714005,0.0745967741935484 +60971530022,714461,0.151209677419355 +60971530022,717876,0.0443548387096774 +60971530022,720017,0.0544354838709677 +60971530022,720235,0.207661290322581 +60971530022,720236,0.0625 +60971530022,720342,0.0887096774193548 +60971530023,710189,0.014760147601476 +60971530023,710429,0 +60971530023,710430,0.0848708487084871 +60971530023,711298,0 +60971530023,713843,0.180811808118081 +60971530023,716389,0.236162361623616 +60971530023,716649,0.003690036900369 +60971530023,717067,0.0738007380073801 +60971530023,717167,0.132841328413284 +60971530023,717182,0 +60971530023,717724,0.125461254612546 +60971530023,717725,0.0959409594095941 +60971530023,717730,0 +60971530023,718913,0.0516605166051661 +60971530024,710066,0.476439790575916 +60971530024,710371,0.12565445026178 +60971530024,713367,0 +60971530024,714006,0 +60971530024,716337,0.397905759162304 +60971530025,710442,0.239852398523985 +60971530025,711705,0.143911439114391 +60971530025,712289,0.158671586715867 +60971530025,715530,0.118081180811808 +60971530025,715882,0.173431734317343 +60971530025,717332,0.0774907749077491 +60971530025,718911,0.0885608856088561 +60971530031,710076,0.366197183098592 +60971530031,714586,0.250704225352113 +60971530031,716338,0.383098591549296 +60971530032,710911,0.00307692307692308 +60971530032,716204,0.0276923076923077 +60971530032,717186,0.141538461538462 +60971530032,717877,0.0676923076923077 +60971530032,719910,0.0769230769230769 +60971530032,720018,0.683076923076923 +60971530033,710215,0.436923076923077 +60971530033,710913,0.0830769230769231 +60971530033,711708,0.463076923076923 +60971530033,714229,0.0169230769230769 +60971530034,714587,0.704545454545455 +60971530034,714637,0.12012987012987 +60971530034,714638,0.0568181818181818 +60971530034,719598,0.0714285714285714 +60971530034,720339,0.0470779220779221 +60971530051,710820,0.208333333333333 +60971530051,712271,0.0305555555555556 +60971530051,715457,0.366666666666667 +60971530051,719194,0.227777777777778 +60971530051,719522,0.166666666666667 +60971530052,710761,0.0149253731343284 +60971530052,712445,0 +60971530052,712770,0.208955223880597 +60971530052,713446,0 +60971530052,716170,0.100746268656716 +60971530052,716874,0.0970149253731343 +60971530052,718602,0.16044776119403 +60971530052,719812,0.417910447761194 +60971530053,711543,0.0756756756756757 +60971530053,712468,0.190990990990991 +60971530053,712608,0.0576576576576577 +60971530053,712948,0.0882882882882883 +60971530053,713292,0.00900900900900901 +60971530053,717814,0.0558558558558559 +60971530053,719307,0 +60971530053,719509,0.432432432432432 +60971530053,719718,0.0252252252252252 +60971530053,719951,0.0576576576576577 +60971530053,720117,0.00720720720720721 +60971530054,710526,0.352760736196319 +60971530054,714581,0.0950920245398773 +60971530054,716659,0.168711656441718 +60971530054,717715,0.0889570552147239 +60971530054,719217,0.0889570552147239 +60971530054,719942,0.205521472392638 +60971530055,710552,0.469283276450512 +60971530055,714946,0.530716723549488 +60971530056,711554,0.308917197452229 +60971530056,713655,0.117834394904459 +60971530056,715143,0.146496815286624 +60971530056,716660,0.254777070063694 +60971530056,717945,0.171974522292994 +60971530061,713653,1 +60971530062,712461,0.419558359621451 +60971530062,713369,0.0977917981072555 +60971530062,714360,0.38801261829653 +60971530062,715142,0.0946372239747634 +60971530063,710202,0.128014842300557 +60971530063,711220,0.257884972170686 +60971530063,715153,0.109461966604824 +60971530063,716579,0.0909090909090909 +60971530063,717713,0.098330241187384 +60971530063,717717,0 +60971530063,718840,0.205936920222635 +60971530063,719599,0.109461966604824 +60971530064,710174,0.0507246376811594 +60971530064,711645,0.0833333333333333 +60971530064,712610,0.0893719806763285 +60971530064,712949,0.0398550724637681 +60971530064,716077,0.0772946859903382 +60971530064,716998,0.178743961352657 +60971530064,717318,0.218599033816425 +60971530064,717727,0.117149758454106 +60971530064,718603,0.144927536231884 +60971530065,710672,0.524390243902439 +60971530065,713506,0.155487804878049 +60971530065,715154,0.176829268292683 +60971530065,716334,0.143292682926829 +60971530066,710527,0.259340659340659 +60971530066,710833,0.114285714285714 +60971530066,711954,0.626373626373626 +60971531021,710535,0.0889570552147239 +60971531021,714622,0.110429447852761 +60971531021,714908,0.0950920245398773 +60971531021,716196,0.150306748466258 +60971531021,717191,0.236196319018405 +60971531021,717732,0.165644171779141 +60971531021,718921,0.153374233128834 +60971531022,712763,0.204705882352941 +60971531022,714909,0.623529411764706 +60971531022,717188,0.171764705882353 +60971531023,710421,0.185082872928177 +60971531023,710443,0.0773480662983425 +60971531023,711147,0.102209944751381 +60971531023,718012,0.121546961325967 +60971531023,718013,0.0773480662983425 +60971531023,719059,0.43646408839779 +60971531024,713850,0.114068441064639 +60971531024,716087,0.106463878326996 +60971531024,719524,0.779467680608365 +60971531031,710653,0.0959119496855346 +60971531031,713840,0.0487421383647799 +60971531031,716428,0.537735849056604 +60971531031,718970,0.14937106918239 +60971531031,719730,0.124213836477987 +60971531031,720344,0.0440251572327044 +60971531032,710651,0.0841836734693878 +60971531032,715884,0.0943877551020408 +60971531032,716316,0.155612244897959 +60971531032,716317,0.0637755102040816 +60971531032,717783,0.403061224489796 +60971531032,719435,0.198979591836735 +60971531033,714443,0.86241610738255 +60971531033,716461,0.13758389261745 +60971531041,710436,0.00696864111498258 +60971531041,710534,0.0574912891986063 +60971531041,710822,0.270034843205575 +60971531041,712282,0.0696864111498258 +60971531041,715232,0.322299651567944 +60971531041,717075,0.0609756097560976 +60971531041,719313,0.212543554006969 +60971531041,720128,0 +60971531042,710908,0.282786885245902 +60971531042,712823,0.0286885245901639 +60971531042,713841,0.00409836065573771 +60971531042,715545,0.188524590163934 +60971531042,716429,0.0860655737704918 +60971531042,717163,0.192622950819672 +60971531042,717170,0 +60971531042,717258,0.00819672131147541 +60971531042,719058,0.00819672131147541 +60971531042,720016,0.200819672131148 +60971531043,713661,1 +60971532001,711300,0.182758620689655 +60971532001,714624,0.00689655172413793 +60971532001,716661,0 +60971532001,716764,0.00344827586206897 +60971532001,717677,0.317241379310345 +60971532001,718011,0.0206896551724138 +60971532001,719179,0 +60971532001,719438,0.179310344827586 +60971532001,720044,0.1 +60971532001,720227,0.189655172413793 +60971532002,710196,0.0724137931034483 +60971532002,710568,0 +60971532002,714625,0.13448275862069 +60971532002,714626,0.0724137931034483 +60971532002,714629,0.00689655172413793 +60971532002,716871,0.0655172413793104 +60971532002,719501,0.0310344827586207 +60971532002,720015,0.617241379310345 +60971532003,711553,0.37160751565762 +60971532003,712931,0.235908141962422 +60971532003,716195,0.390396659707724 +60971532003,717897,0.00208768267223382 +60971532003,718035,0 +60971532004,710191,0.0121268656716418 +60971532004,710681,0.0550373134328358 +60971532004,710682,0.0951492537313433 +60971532004,711951,0.180037313432836 +60971532004,712029,0.000932835820895522 +60971532004,712038,0.0466417910447761 +60971532004,712758,0.194029850746269 +60971532004,712760,0.0223880597014925 +60971532004,713819,0.0541044776119403 +60971532004,714361,0.0373134328358209 +60971532004,714945,0.110074626865672 +60971532004,715525,0.064365671641791 +60971532004,715531,0 +60971532004,717652,0.0363805970149254 +60971532004,719339,0.0914179104477612 +60971532004,720046,0 +60971532004,720167,0 +60971533001,710077,0.0956979806848112 +60971533001,710906,0.266900790166813 +60971533001,711152,0.0228270412642669 +60971533001,711567,0.0272168568920105 +60971533001,713450,0.0184372256365233 +60971533001,713849,0.0500438981562774 +60971533001,715527,0.0570676031606673 +60971533001,716335,0.0298507462686567 +60971533001,719199,0.124670763827919 +60971533001,719308,0.26865671641791 +60971533001,719637,0.038630377524144 +60971533002,710937,0.125 +60971533002,713657,0.265243902439024 +60971533002,713664,0.274390243902439 +60971533002,714561,0.00914634146341464 +60971533002,714584,0.207317073170732 +60971533002,719813,0.11890243902439 +60971533003,710819,0.00988142292490119 +60971533003,711205,0.0790513833992095 +60971533003,714446,0.102766798418972 +60971533003,714623,0.130434782608696 +60971533003,714639,0.0671936758893281 +60971533003,714675,0.00592885375494071 +60971533003,714932,0.294466403162055 +60971533003,716470,0.0770750988142292 +60971533003,716877,0 +60971533003,717058,0.223320158102767 +60971533003,717909,0 +60971533003,718092,0.00988142292490118 +60971533004,711127,0.167208848405986 +60971533004,711314,0.0956408588158751 +60971533004,712125,0.16135328562134 +60971533004,712299,0 +60971533004,712703,0.0540013012361744 +60971533004,712704,0.0858815875081327 +60971533004,714665,0.171763175016265 +60971533004,715533,0.0260247234873129 +60971533004,715612,0.00910865322055953 +60971533004,717159,0.0429407937540664 +60971533004,717883,0.186076772934288 +60971533004,718056,0 +60971534011,710579,0.134185303514377 +60971534011,711335,0.0830670926517572 +60971534011,711659,0.182108626198083 +60971534011,711660,0.012779552715655 +60971534011,714689,0.134185303514377 +60971534011,714690,0.0511182108626198 +60971534011,715016,0.108626198083067 +60971534011,715167,0.073482428115016 +60971534011,718101,0 +60971534011,718102,0.0415335463258786 +60971534011,718103,0.0159744408945687 +60971534011,718104,0 +60971534011,718158,0.0958466453674121 +60971534011,718725,0 +60971534011,718731,0.0638977635782748 +60971534011,718734,0.00319488817891374 +60971534011,718981,0 +60971534011,719424,0 +60971534011,719425,0 +60971534011,719927,0 +60971534011,720026,0 +60971534012,710575,0.184534270650264 +60971534012,711754,0.0246045694200351 +60971534012,712858,0.242530755711775 +60971534012,713117,0.161687170474517 +60971534012,717371,0.142355008787346 +60971534012,719936,0.244288224956063 +60971534013,711650,0.171021377672209 +60971534013,712470,0.130641330166271 +60971534013,713394,0.270783847980998 +60971534013,714687,0.0261282660332542 +60971534013,717974,0.130641330166271 +60971534013,717976,0.0973871733966746 +60971534013,719421,0.173396674584323 +60971534014,710577,0.247685185185185 +60971534014,712047,0.127314814814815 +60971534014,712860,0.115740740740741 +60971534014,714691,0.178240740740741 +60971534014,714994,0.210648148148148 +60971534014,719839,0.12037037037037 +60971534015,711655,0.119289340101523 +60971534015,711657,0.126903553299492 +60971534015,714996,0.0888324873096447 +60971534015,714997,0.0634517766497462 +60971534015,716484,0.0964467005076142 +60971534015,717978,0.0761421319796954 +60971534015,718730,0.428934010152284 +60971534016,710581,0.149700598802395 +60971534016,712616,0.245508982035928 +60971534016,716434,0.385229540918164 +60971534016,717977,0.0998003992015968 +60971534016,718729,0.119760479041916 +60971534031,712849,0.0647181628392484 +60971534031,712961,0.106471816283925 +60971534031,713303,0.104384133611691 +60971534031,714389,0.248434237995825 +60971534031,715007,0.177453027139875 +60971534031,716595,0.00208768267223382 +60971534031,718852,0.296450939457203 +60971534032,710582,0.180722891566265 +60971534032,710954,0.0120481927710843 +60971534032,710956,0.210843373493976 +60971534032,712859,0.0200803212851406 +60971534032,713164,0.226907630522088 +60971534032,713680,0.00803212851405622 +60971534032,715021,0.112449799196787 +60971534032,718105,0.178714859437751 +60971534032,718733,0 +60971534032,718846,0.0401606425702811 +60971534032,718850,0.0100401606425703 +60971534033,710951,0.285714285714286 +60971534033,712379,0.149068322981366 +60971534033,712619,0.133540372670807 +60971534033,716483,0.0372670807453416 +60971534033,718732,0.142857142857143 +60971534033,719427,0.251552795031056 +60971534034,710953,0.01875 +60971534034,712959,0.190625 +60971534034,713391,0.1125 +60971534034,714384,0.209375 +60971534034,715003,0.171875 +60971534034,715004,0.25 +60971534034,718847,0.046875 +60971534041,711651,0.202185792349727 +60971534041,715001,0.204918032786885 +60971534041,718109,0.188524590163934 +60971534041,718140,0.0792349726775956 +60971534041,719511,0.117486338797814 +60971534041,719925,0.207650273224044 +60971534042,710226,0.131386861313869 +60971534042,713307,0.0291970802919708 +60971534042,713950,0.0912408759124088 +60971534042,714765,0.501824817518248 +60971534042,718843,0.0656934306569343 +60971534042,719512,0.0583941605839416 +60971534042,719621,0.122262773722628 +60971534043,712380,0 +60971534043,712780,0.0553745928338762 +60971534043,715310,0.237785016286645 +60971534043,718152,0.39413680781759 +60971534043,718723,0.312703583061889 +60971534044,712958,0.062124248496994 +60971534044,714025,0.148296593186373 +60971534044,714762,0.0200400801603206 +60971534044,716892,0.302605210420842 +60971534044,719114,0.208416833667335 +60971534044,719226,0.0721442885771543 +60971534044,719837,0.186372745490982 +60971535011,712383,0.531746031746032 +60971535011,712850,0.113756613756614 +60971535011,719115,0.105820105820106 +60971535011,719737,0.248677248677249 +60971535012,712145,0.0709534368070953 +60971535012,712848,0.314855875831486 +60971535012,713301,0.110864745011086 +60971535012,716891,0.0776053215077605 +60971535012,719233,0.159645232815965 +60971535012,719513,0.266075388026608 +60971535013,711751,0.0126582278481013 +60971535013,713302,0.20253164556962 +60971535013,713677,0.0151898734177215 +60971535013,718853,0.369620253164557 +60971535013,719113,0.121518987341772 +60971535013,719224,0.141772151898734 +60971535013,719738,0.136708860759494 +60971535014,710948,0.00530973451327434 +60971535014,710958,0.265486725663717 +60971535014,713167,0.0371681415929204 +60971535014,713306,0.171681415929204 +60971535014,714380,0.047787610619469 +60971535014,717828,0 +60971535014,717829,0.343362831858407 +60971535014,718971,0.00176991150442478 +60971535014,719618,0.0601769911504425 +60971535014,719834,0.0672566371681416 +60971535021,713389,0.332326283987915 +60971535021,716591,0.16012084592145 +60971535021,717369,0.0785498489425982 +60971535021,718139,0.429003021148036 +60971535022,713608,0.370629370629371 +60971535022,716766,0.265734265734266 +60971535022,717370,0.363636363636364 +60971535023,712711,0.118881118881119 +60971535023,714761,0.249417249417249 +60971535023,718973,0.214452214452214 +60971535023,718974,0.149184149184149 +60971535023,719111,0.0629370629370629 +60971535023,719734,0.205128205128205 +60971535024,0,0 +60971535024,711750,0.0359168241965974 +60971535024,712142,0.0359168241965974 +60971535024,712855,0.0302457466918715 +60971535024,712953,0.00945179584120983 +60971535024,714684,0.00756143667296786 +60971535024,716890,0.0207939508506616 +60971535024,717233,0.544423440453686 +60971535024,717291,0.0378071833648393 +60971535024,718111,0.0396975425330813 +60971535024,718112,0.0680529300567108 +60971535024,718146,0.153119092627599 +60971535024,718159,0.0170132325141777 +60971536001,715010,0.151133501259446 +60971536001,717967,0.453400503778338 +60971536001,718606,0.234256926952141 +60971536001,719413,0.052896725440806 +60971536001,719417,0.00503778337531486 +60971536001,719418,0.103274559193955 +60971536002,711339,0.0710526315789474 +60971536002,713605,0.136842105263158 +60971536002,713948,0.139473684210526 +60971536002,716769,0.0894736842105263 +60971536002,717234,0.223684210526316 +60971536002,719623,0.339473684210526 +60971536003,710572,0.193704600484261 +60971536003,710573,0.0242130750605327 +60971536003,712304,0.036319612590799 +60971536003,712305,0 +60971536003,714383,0.285714285714286 +60971536003,714391,0.0581113801452785 +60971536003,717972,0.164648910411622 +60971536003,719414,0.0702179176755448 +60971536003,719415,0.0290556900726392 +60971536003,719420,0.138014527845036 +60971536004,712708,0.297520661157025 +60971536004,712710,0.223140495867769 +60971536004,713603,0.0881542699724518 +60971536004,716688,0.0771349862258953 +60971536004,717981,0.140495867768595 +60971536004,718148,0.173553719008264 +60971536004,719622,0 +60971536005,711341,0.0375375375375375 +60971536005,711342,0.16966966966967 +60971536005,711749,0.0600600600600601 +60971536005,712041,0.0510510510510511 +60971536005,712469,0.10960960960961 +60971536005,713607,0.0675675675675676 +60971536005,716482,0.12012012012012 +60971536005,716686,0.0690690690690691 +60971536005,717285,0.039039039039039 +60971536005,717979,0.0915915915915916 +60971536005,718977,0.138138138138138 +60971536005,719732,0.0465465465465465 +60971537031,0,0 +60971537031,710307,0.471631205673759 +60971537031,710886,0.187943262411348 +60971537031,712538,0.0549645390070922 +60971537031,713512,0.00177304964539007 +60971537031,713784,0.203900709219858 +60971537031,717640,0.0797872340425532 +60971537032,710050,0.712846347607053 +60971537032,713013,0.287153652392947 +60971537033,0,0 +60971537033,711538,1 +60971537034,710143,0.0759493670886076 +60971537034,711804,0.029535864978903 +60971537034,711925,0.0928270042194093 +60971537034,712532,0.177215189873418 +60971537034,713011,0.215189873417722 +60971537034,718550,0.156118143459916 +60971537034,719992,0.253164556962025 +60971537035,0,0 +60971537035,713015,1 +60971537041,710646,0.0140449438202247 +60971537041,711274,0 +60971537041,711277,0.162921348314607 +60971537041,711873,0.00561797752808989 +60971537041,712093,0 +60971537041,712749,0.570224719101124 +60971537041,713802,0.0814606741573034 +60971537041,714721,0 +60971537041,715831,0 +60971537041,718226,0.165730337078652 +60971537041,719803,0 +60971537042,0,0 +60971537042,712092,0.624633431085044 +60971537042,712264,0.0351906158357771 +60971537042,715132,0.0762463343108504 +60971537042,717054,0.0263929618768328 +60971537042,717615,0.00586510263929619 +60971537042,718196,0.117302052785924 +60971537042,718655,0.114369501466276 +60971537043,0,0 +60971537043,710491,0.0539772727272727 +60971537043,710811,0.821022727272727 +60971537043,719040,0.125 +60971537044,0,0 +60971537044,710745,0.444168734491315 +60971537044,710887,0.466501240694789 +60971537044,717130,0.0893300248138958 +60971537051,0,0 +60971537051,711015,0.788321167883212 +60971537051,711121,0 +60971537051,712199,0.0109489051094891 +60971537051,712677,0.0072992700729927 +60971537051,713727,0.0912408759124088 +60971537051,714434,0.0583941605839416 +60971537051,716536,0.0218978102189781 +60971537051,718192,0.0218978102189781 +60971537052,712221,0.0142450142450142 +60971537052,712680,0.00854700854700855 +60971537052,713572,0.492877492877493 +60971537052,719277,0.484330484330484 +60971537053,710144,1 +60971537054,711839,0.0308370044052863 +60971537054,712218,0.539647577092511 +60971537054,714878,0.394273127753304 +60971537054,718228,0.0352422907488987 +60971537061,711844,0.253125 +60971537061,712253,0.190625 +60971537061,712679,0.140625 +60971537061,714350,0.165625 +60971537061,715518,0.01875 +60971537061,716925,0.1125 +60971537061,719265,0.1 +60971537061,719266,0.01875 +60971537062,0,0 +60971537062,711842,0.0988372093023256 +60971537062,712257,0.13953488372093 +60971537062,714351,0.0503875968992248 +60971537062,715217,0.209302325581395 +60971537062,715219,0.187984496124031 +60971537062,719267,0.180232558139535 +60971537062,719595,0.133720930232558 +60971537063,0,0 +60971537063,711018,1 +60971537064,712252,0.250704225352113 +60971537064,713792,0.0929577464788732 +60971537064,713793,0.219718309859155 +60971537064,714069,0.0535211267605634 +60971537064,714070,0.0112676056338028 +60971537064,714196,0.371830985915493 +60971538011,0,0 +60971538011,711082,0.0141643059490085 +60971538011,711405,0.0056657223796034 +60971538011,711586,0.0339943342776204 +60971538011,712651,0.101983002832861 +60971538011,712798,0.45042492917847 +60971538011,713141,0.0339943342776204 +60971538011,713888,0.0169971671388102 +60971538011,715392,0.192634560906516 +60971538011,716227,0.0198300283286119 +60971538011,717304,0.0028328611898017 +60971538011,717536,0.0538243626062323 +60971538011,720310,0.0736543909348442 +60971538012,710243,0.0712574850299401 +60971538012,710600,0.0880239520958084 +60971538012,710787,0.0437125748502994 +60971538012,710789,0.0988023952095808 +60971538012,711373,0.0197604790419162 +60971538012,711374,0.0664670658682635 +60971538012,711416,0.162275449101796 +60971538012,711583,0.092814371257485 +60971538012,713236,0.00119760479041916 +60971538012,713413,0.062874251497006 +60971538012,713621,0.092814371257485 +60971538012,713695,0.00119760479041916 +60971538012,714046,0.00119760479041916 +60971538012,714885,0.0401197604790419 +60971538012,715489,0.00179640718562874 +60971538012,718293,0.146706586826347 +60971538012,718354,0 +60971538012,718629,0.00898203592814371 +60971538013,711179,0.169435215946844 +60971538013,713233,0.737541528239203 +60971538013,713624,0.0930232558139535 +60971538014,712069,0.232854864433812 +60971538014,713071,0.127591706539075 +60971538014,713232,0.239234449760766 +60971538014,713620,0.161084529505582 +60971538014,715566,0.181818181818182 +60971538014,719661,0.0574162679425837 +60971538041,710705,0.0884353741496599 +60971538041,711086,0.163265306122449 +60971538041,711588,0.168367346938776 +60971538041,716912,0.20578231292517 +60971538041,716914,0 +60971538041,718322,0.374149659863946 +60971538042,711582,0.0784313725490196 +60971538042,712801,0.0431372549019608 +60971538042,717349,0.203921568627451 +60971538042,717546,0.435294117647059 +60971538042,719973,0.23921568627451 +60971538061,714705,0.207746478873239 +60971538061,718867,0.792253521126761 +60971538062,713887,0.219512195121951 +60971538062,715711,0.34390243902439 +60971538062,716229,0.14390243902439 +60971538062,718333,0.292682926829268 +60971538063,710703,0.0623818525519849 +60971538063,718344,0 +60971538063,719975,0.937618147448015 +60971538071,711174,0.327683615819209 +60971538071,711180,0.206214689265537 +60971538071,711587,0.104519774011299 +60971538071,716785,0.361581920903955 +60971538072,0,0 +60971538072,710468,0.0386571719226857 +60971538072,711065,0.0081383519837233 +60971538072,711088,0.191251271617497 +60971538072,711173,0.0396744659206511 +60971538072,712066,0.0203458799593082 +60971538072,712654,0.034587995930824 +60971538072,713142,0.0630722278738555 +60971538072,713880,0.0233977619532045 +60971538072,715388,0.112919633774161 +60971538072,715719,0.00508646998982706 +60971538072,715846,0.237029501525941 +60971538072,716781,0.169888097660224 +60971538072,720205,0.0559511698880977 +60971538081,710712,0.140060240963855 +60971538081,712323,0.0180722891566265 +60971538081,712805,0.0993975903614458 +60971538081,713962,0.0120481927710843 +60971538081,713964,0.108433734939759 +60971538081,714408,0.331325301204819 +60971538081,715712,0.234939759036145 +60971538081,715842,0.0542168674698795 +60971538081,717040,0.00150602409638554 +60971538081,719668,0 +60971538082,717031,0.791946308724832 +60971538082,717309,0.208053691275168 +60971538083,711092,0 +60971538083,711407,0.233613445378151 +60971538083,711986,0.277310924369748 +60971538083,712330,0.0235294117647059 +60971538083,713070,0.0722689075630252 +60971538083,713622,0.0722689075630252 +60971538083,713698,0.0285714285714286 +60971538083,714040,0 +60971538083,714326,0 +60971538083,718748,0.292436974789916 +60971538091,710246,0 +60971538091,710324,0.418891170431211 +60971538091,711581,0.0739219712525667 +60971538091,712070,0.0677618069815195 +60971538091,714096,0.127310061601643 +60971538091,717544,0.149897330595483 +60971538091,719770,0.162217659137577 +60971538092,711406,0.102649006622517 +60971538092,711985,0.0248344370860927 +60971538092,712409,0.149006622516556 +60971538092,712410,0.211920529801325 +60971538092,714409,0.142384105960265 +60971538092,714890,0.369205298013245 +60971538093,712653,0.362467866323907 +60971538093,715078,0.480719794344473 +60971538093,717244,0.15681233933162 +60971539011,710782,0.036144578313253 +60971539011,712556,0 +60971539011,715099,0.28714859437751 +60971539011,715187,0 +60971539011,715264,0.162650602409639 +60971539011,715379,0.108433734939759 +60971539011,715559,0.234939759036145 +60971539011,715732,0 +60971539011,717538,0.0562248995983936 +60971539011,719976,0.0582329317269076 +60971539011,720207,0.0562248995983936 +60971539012,710786,0.0176678445229682 +60971539012,715708,0.109540636042403 +60971539012,716611,0.872791519434629 +60971539013,710707,0.09625 +60971539013,712978,0 +60971539013,713478,0.10125 +60971539013,713703,0.14625 +60971539013,714777,0.00125 +60971539013,715188,0 +60971539013,715189,0.0425 +60971539013,715190,0.11875 +60971539013,715263,0.08625 +60971539013,715380,0.00875 +60971539013,715490,0.04125 +60971539013,718299,0.01 +60971539013,719974,0.07625 +60971539013,719977,0.15125 +60971539013,720078,0.12 +60971539014,710323,0.0528169014084507 +60971539014,710781,0.00352112676056338 +60971539014,710858,0.186619718309859 +60971539014,712648,0 +60971539014,713146,0.0105633802816901 +60971539014,713618,0.214788732394366 +60971539014,713879,0.0669014084507042 +60971539014,715734,0.0387323943661972 +60971539014,716454,0.369718309859155 +60971539014,717540,0.0563380281690141 +60971539021,710016,0 +60971539021,710018,0.0712945590994372 +60971539021,710019,0.00938086303939963 +60971539021,710109,0.0150093808630394 +60971539021,710390,0.0206378986866792 +60971539021,710470,0.198874296435272 +60971539021,713543,0.00938086303939963 +60971539021,714519,0.0562851782363977 +60971539021,714525,0.0187617260787993 +60971539021,715390,0.0356472795497186 +60971539021,715395,0.00375234521575985 +60971539021,716372,0.0281425891181989 +60971539021,716373,0.00187617260787992 +60971539021,716376,0 +60971539021,716377,0.0787992495309568 +60971539021,717110,0.225140712945591 +60971539021,717530,0.0225140712945591 +60971539021,718874,0.110694183864916 +60971539021,720079,0.0487804878048781 +60971539021,720195,0.0112570356472795 +60971539021,720197,0.0337711069418387 +60971539022,710979,0.0590551181102362 +60971539022,711253,0.633858267716535 +60971539022,715114,0.200787401574803 +60971539022,718749,0.106299212598425 +60971539023,710013,0.369272237196765 +60971539023,710017,0.0700808625336927 +60971539023,710110,0.0431266846361186 +60971539023,710471,0.0754716981132075 +60971539023,713410,0.121293800539084 +60971539023,715386,0.142857142857143 +60971539023,720196,0.177897574123989 +60971539024,711682,0.248407643312102 +60971539024,715381,0.10828025477707 +60971539024,715561,0.111464968152866 +60971539024,717348,0.375796178343949 +60971539024,717523,0.156050955414013 +60971539031,711410,0.1825 +60971539031,711778,0.5075 +60971539031,713246,0.0375 +60971539031,714101,0.0875 +60971539031,714775,0.1425 +60971539031,716506,0.0425 +60971539032,710012,0.0880829015544042 +60971539032,710107,0.0647668393782383 +60971539032,710108,0.103626943005181 +60971539032,713248,0.0906735751295337 +60971539032,713249,0.0751295336787565 +60971539032,713250,0.0984455958549223 +60971539032,714516,0.321243523316062 +60971539032,715104,0.0336787564766839 +60971539032,715105,0.124352331606218 +60971539033,710106,0.313131313131313 +60971539033,715396,0.63973063973064 +60971539033,718326,0.00336700336700337 +60971539033,718330,0.0336700336700337 +60971539033,718425,0.0101010101010101 +60971539033,718871,0 +60971539034,710009,0.178861788617886 +60971539034,710010,0.040650406504065 +60971539034,710011,0.115853658536585 +60971539034,710105,0.101626016260163 +60971539034,713247,0.0975609756097561 +60971539034,716304,0.150406504065041 +60971539034,717527,0.0955284552845528 +60971539034,720089,0.219512195121951 +60971540001,710321,0.239669421487603 +60971540001,710497,0.00826446280991736 +60971540001,712230,0.384297520661157 +60971540001,713481,0.0413223140495868 +60971540001,714044,0.206611570247934 +60971540001,714480,0.0495867768595041 +60971540001,717350,0.0702479338842975 +60971540002,0,0 +60971540002,710244,0 +60971540002,710469,0 +60971540002,711063,0.0443686006825939 +60971540002,714051,0.542662116040956 +60971540002,715096,0.0853242320819113 +60971540002,716507,0 +60971540002,717520,0.0170648464163823 +60971540002,718312,0.0546075085324232 +60971540002,718313,0.0784982935153583 +60971540002,719866,0.109215017064846 +60971540002,720201,0.068259385665529 +60971540003,0,0 +60971540003,710025,0.0714285714285714 +60971540003,710785,0.0970695970695971 +60971540003,711093,0.241758241758242 +60971540003,712228,0.0860805860805861 +60971540003,713484,0.217948717948718 +60971540003,717517,0.159340659340659 +60971540003,717526,0.0970695970695971 +60971540003,719126,0.0293040293040293 +60971541001,0,0 +60971541001,710093,0.0135746606334842 +60971541001,710851,0.0633484162895928 +60971541001,711057,0.00452488687782805 +60971541001,712546,0.0995475113122172 +60971541001,713210,0.0723981900452489 +60971541001,713475,0.0497737556561086 +60971541001,715360,0.294117647058824 +60971541001,717104,0.0588235294117647 +60971541001,717106,0.144796380090498 +60971541001,717346,0.199095022624434 +60971541002,0,0 +60971541002,710385,0.0372549019607843 +60971541002,710466,0.00980392156862745 +60971541002,710779,0.00392156862745098 +60971541002,710855,0.0568627450980392 +60971541002,711043,0.0333333333333333 +60971541002,711044,0.0588235294117647 +60971541002,711164,0.0196078431372549 +60971541002,711362,0.119607843137255 +60971541002,712162,0.241176470588235 +60971541002,712718,0.0372549019607843 +60971541002,712723,0.0274509803921569 +60971541002,712878,0 +60971541002,713238,0.0254901960784314 +60971541002,713539,0.276470588235294 +60971541002,716036,0 +60971541002,717300,0.0215686274509804 +60971541002,717491,0.0137254901960784 +60971541002,718257,0.00392156862745098 +60971541002,718996,0.0137254901960784 +60971541003,0,0 +60971541003,710096,0.00266666666666667 +60971541003,710099,0.00266666666666667 +60971541003,710318,0 +60971541003,710384,0.0266666666666667 +60971541003,710778,0.00266666666666667 +60971541003,710780,0.0373333333333333 +60971541003,710850,0.0826666666666667 +60971541003,710972,0 +60971541003,711036,0 +60971541003,711051,0.386666666666667 +60971541003,711364,0.00533333333333333 +60971541003,711886,0.0426666666666667 +60971541003,711976,0.00266666666666667 +60971541003,712225,0.008 +60971541003,712635,0 +60971541003,712637,0.024 +60971541003,712795,0.00266666666666667 +60971541003,712796,0.008 +60971541003,712880,0 +60971541003,712882,0 +60971541003,713224,0.00266666666666667 +60971541003,713321,0.0666666666666667 +60971541003,714404,0.101333333333333 +60971541003,715065,0.0186666666666667 +60971541003,715369,0 +60971541003,716451,0.00533333333333333 +60971541003,716705,0.0106666666666667 +60971541003,716774,0 +60971541003,717105,0 +60971541003,717107,0.146666666666667 +60971541003,717109,0 +60971541003,717404,0 +60971541003,717483,0 +60971541003,717500,0 +60971541003,718260,0.00266666666666667 +60971541003,718986,0.0106666666666667 +60971541003,718995,0 +60971541003,719462,0 +60971541004,710236,0 +60971541004,710310,0.0101351351351351 +60971541004,710697,0.0304054054054054 +60971541004,710698,0.0506756756756757 +60971541004,711169,0.0304054054054054 +60971541004,711249,0.141891891891892 +60971541004,711363,0.0304054054054054 +60971541004,711499,0.0675675675675676 +60971541004,713537,0 +60971541004,713538,0.00337837837837838 +60971541004,714089,0.00337837837837838 +60971541004,714090,0.138513513513514 +60971541004,714843,0.0337837837837838 +60971541004,716031,0.138513513513514 +60971541004,716032,0.00675675675675676 +60971541004,716371,0.206081081081081 +60971541004,716701,0.0506756756756757 +60971541004,716772,0.0371621621621622 +60971541004,716777,0.00675675675675676 +60971541004,718284,0.00337837837837838 +60971541004,719374,0.0101351351351351 +60971542011,710596,0.173570019723866 +60971542011,711354,0.230769230769231 +60971542011,711355,0.0473372781065089 +60971542011,715477,0.142011834319527 +60971542011,715835,0.161735700197239 +60971542011,718271,0.175542406311637 +60971542011,718282,0.0690335305719921 +60971542012,710465,0.0257234726688103 +60971542012,711571,0.311897106109325 +60971542012,715357,0.276527331189711 +60971542012,715838,0.382636655948553 +60971542012,718264,0.00321543408360129 +60971542012,718621,0 +60971542013,710699,0.341121495327103 +60971542013,710976,0 +60971542013,711058,0.00467289719626168 +60971542013,711501,0.00467289719626168 +60971542013,711576,0.210280373831776 +60971542013,712403,0.0373831775700935 +60971542013,715257,0 +60971542013,715558,0.144859813084112 +60971542013,715631,0.00467289719626168 +60971542013,716294,0.0233644859813084 +60971542013,718251,0.228971962616822 +60971542013,719238,0 +60971542014,710313,0.298701298701299 +60971542014,711359,0.0155844155844156 +60971542014,711772,0.0181818181818182 +60971542014,712486,0.2 +60971542014,713748,0.467532467532468 +60971542021,0,0 +60971542021,710598,0.143570536828964 +60971542021,711170,0.0961298377028714 +60971542021,711352,0.0605493133583021 +60971542021,711676,0 +60971542021,712400,0 +60971542021,713227,0.124843945068664 +60971542021,713873,0.0980024968789014 +60971542021,713875,0.0318352059925094 +60971542021,714469,0.0511860174781523 +60971542021,714845,0.0649188514357054 +60971542021,715047,0.00749063670411985 +60971542021,715059,0.0181023720349563 +60971542021,715106,0.0243445692883895 +60971542021,716369,0.133583021223471 +60971542021,716442,0.0287141073657928 +60971542021,716445,0 +60971542021,717498,0.000624219725343321 +60971542021,718613,0.0118601747815231 +60971542021,718618,0.00436953807740325 +60971542021,718744,0.0143570536828964 +60971542021,719459,0.0848938826466916 +60971542021,719659,0.000624219725343321 +60971542022,0,0 +60971542022,711059,0.216216216216216 +60971542022,711356,0.0196560196560197 +60971542022,711670,0.00245700245700246 +60971542022,711881,0.0171990171990172 +60971542022,712061,0.262899262899263 +60971542022,712797,0.0294840294840295 +60971542022,713219,0 +60971542022,716366,0.189189189189189 +60971542022,716368,0.00491400491400491 +60971542022,716494,0.125307125307125 +60971542022,716504,0.127764127764128 +60971542022,717301,0.00491400491400491 +60971542022,717398,0 +60971542022,719239,0 +60971542023,710235,0.112727272727273 +60971542023,710312,0.0690909090909091 +60971542023,710694,0.389090909090909 +60971542023,711674,0.12 +60971542023,711773,0.12 +60971542023,716110,0.189090909090909 +60971543021,713800,0.110024449877751 +60971543021,716514,0.17359413202934 +60971543021,719994,0.71638141809291 +60971543022,712583,0.0313111545988258 +60971543022,713272,0.324853228962818 +60971543022,714076,0.407045009784736 +60971543022,716516,0.23679060665362 +60971543023,710732,0.235602094240838 +60971543023,711122,0.0157068062827225 +60971543023,713432,0.0130890052356021 +60971543023,714966,0.641361256544503 +60971543023,716832,0.0471204188481675 +60971543023,716980,0.0157068062827225 +60971543023,718225,0.0261780104712042 +60971543023,719282,0.00523560209424084 +60971543024,0,0 +60971543024,710154,0.0041407867494824 +60971543024,710347,0.463768115942029 +60971543024,712096,0.0331262939958592 +60971543024,712212,0.0124223602484472 +60971543024,712545,0.0331262939958592 +60971543024,713014,0.0144927536231884 +60971543024,714803,0.0041407867494824 +60971543024,715520,0.0041407867494824 +60971543024,718209,0.041407867494824 +60971543024,719990,0.389233954451346 +60971543031,0,0 +60971543031,710736,0.00900900900900901 +60971543031,711389,0.0495495495495495 +60971543031,711864,0.018018018018018 +60971543031,712350,0.0045045045045045 +60971543031,712520,0.177927927927928 +60971543031,712575,0.20045045045045 +60971543031,712577,0.00225225225225225 +60971543031,713354,0.045045045045045 +60971543031,713356,0.0315315315315315 +60971543031,713904,0.018018018018018 +60971543031,714194,0.0427927927927928 +60971543031,714495,0.0720720720720721 +60971543031,715137,0.0045045045045045 +60971543031,715800,0.135135135135135 +60971543031,715813,0.0135135135135135 +60971543031,715818,0.0225225225225225 +60971543031,715875,0 +60971543031,716858,0 +60971543031,716948,0 +60971543031,717603,0 +60971543031,718553,0.0247747747747748 +60971543031,719584,0.0563063063063063 +60971543031,719585,0 +60971543031,719697,0.0720720720720721 +60971543031,719891,0 +60971543032,0,0 +60971543032,714500,0.2903981264637 +60971543032,716933,0.323185011709602 +60971543032,719270,0 +60971543032,719696,0.386416861826698 +60971543041,0,0 +60971543041,710134,0.121495327102804 +60971543041,710150,0.224299065420561 +60971543041,710290,0.11214953271028 +60971543041,710293,0.00311526479750779 +60971543041,710296,0.00934579439252336 +60971543041,710297,0 +60971543041,710502,0.00623052959501558 +60971543041,710635,0 +60971543041,710636,0.0218068535825545 +60971543041,710640,0.0249221183800623 +60971543041,710642,0.00934579439252336 +60971543041,710644,0.0311526479750779 +60971543041,710645,0 +60971543041,710733,0.127725856697819 +60971543041,712353,0.00311526479750779 +60971543041,712354,0.00311526479750779 +60971543041,712519,0.0249221183800623 +60971543041,713990,0.0280373831775701 +60971543041,714348,0 +60971543041,714496,0.00623052959501558 +60971543041,714880,0 +60971543041,715280,0 +60971543041,715283,0.0623052959501558 +60971543041,715284,0.00623052959501558 +60971543041,715812,0.00934579439252336 +60971543041,716524,0 +60971543041,716545,0 +60971543041,716557,0 +60971543041,716926,0.0747663551401869 +60971543041,716930,0.0654205607476635 +60971543041,717626,0.00311526479750779 +60971543041,718229,0 +60971543041,718561,0.0155763239875389 +60971543041,719888,0.00623052959501558 +60971543042,0,0 +60971543042,710138,0.261904761904762 +60971543042,710496,0.707482993197279 +60971543042,713269,0.0204081632653061 +60971543042,715292,0.0102040816326531 +60971543043,0,0 +60971543043,710046,0.0574948665297741 +60971543043,710047,0.0410677618069815 +60971543043,710744,0 +60971543043,710806,0.28952772073922 +60971543043,711402,0.234086242299795 +60971543043,711614,0.0944558521560575 +60971543043,714968,0.281314168377823 +60971543043,716974,0.00205338809034908 +60979901000,0,0 diff --git a/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv new file mode 100644 index 000000000..99b40dfb5 --- /dev/null +++ b/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv @@ -0,0 +1,5367 @@ +"blockgroup","taz2","taz2_share" +60014001001,300125,0.649923896499239 +60014001001,301054,0.350076103500761 +60014002001,300114,0.485776805251641 +60014002001,301088,0.514223194748359 +60014002002,300569,1 +60014003001,300113,1 +60014003002,300115,0.302147239263804 +60014003002,301090,0.420245398773006 +60014003002,301091,0.27760736196319 +60014003003,300115,1 +60014003004,300115,0.132352941176471 +60014003004,301089,0.282352941176471 +60014003004,301090,0.585294117647059 +60014004001,300568,1 +60014004002,300466,1 +60014004003,300123,1 +60014005001,300118,1 +60014005002,300093,1 +60014005003,300094,1 +60014006001,300288,1 +60014006002,300018,1 +60014007001,300282,1 +60014007002,300241,0.615230460921844 +60014007002,301084,0.158316633266533 +60014007002,301085,0.226452905811623 +60014007003,300166,0.738317757009346 +60014007003,301086,0.261682242990654 +60014007004,300167,0.773542600896861 +60014007004,301087,0.226457399103139 +60014008001,300339,1 +60014008002,300766,1 +60014008003,300234,1 +60014009001,300126,1 +60014009002,300825,1 +60014010001,300715,1 +60014010002,300716,1 +60014010003,300127,1 +60014010004,300022,1 +60014010005,300016,1 +60014010006,300023,1 +60014011001,300377,1 +60014011002,300376,1 +60014011003,300177,1 +60014011004,300170,1 +60014012001,300120,1 +60014012002,300173,1 +60014012003,300175,1 +60014013001,300111,1 +60014013002,300112,1 +60014013003,300419,1 +60014014001,300174,1 +60014014002,300128,1 +60014014003,300235,1 +60014015001,300116,1 +60014015002,300480,1 +60014015003,300481,1 +60014016001,300289,1 +60014016002,300287,1 +60014017001,300150,0.0426966292134831 +60014017001,300240,0.957303370786517 +60014017002,300051,1 +60014017003,0,0 +60014017003,300049,1 +60014018001,300231,1 +60014018002,300232,1 +60014022001,300441,1 +60014022002,300442,1 +60014022003,300092,1 +60014024001,300284,1 +60014024002,300670,1 +60014025001,300845,1 +60014025002,300025,1 +60014026001,300331,1 +60014027001,300027,1 +60014027002,300958,1 +60014028001,300239,1 +60014028002,300691,1 +60014029001,300899,0.0760043431053203 +60014029001,301059,0.92399565689468 +60014030001,300028,1 +60014030002,300378,1 +60014031001,300477,0.372325249643367 +60014031001,301058,0.627674750356633 +60014033001,0,0 +60014033001,300855,1 +60014033002,300473,1 +60014034001,0,0 +60014034001,300332,1 +60014034002,300024,0.856978085351788 +60014034002,301092,0.143021914648212 +60014034003,300024,1 +60014034004,300024,1 +60014035011,300693,1 +60014035012,300738,1 +60014035013,300739,1 +60014035021,300740,1 +60014035022,300741,1 +60014036001,300771,1 +60014036002,300742,1 +60014036003,300742,1 +60014037011,300743,1 +60014037012,300744,1 +60014037021,300745,1 +60014037022,300746,1 +60014038001,300344,1 +60014038002,300852,1 +60014038003,300619,1 +60014038004,300256,1 +60014039001,300380,1 +60014039002,300956,1 +60014039003,300618,1 +60014040001,300617,1 +60014040002,300176,1 +60014041011,300095,1 +60014041012,300088,1 +60014041021,300747,1 +60014041022,300748,1 +60014042001,300960,1 +60014042002,300959,1 +60014042003,300943,0.531568228105906 +60014042003,301050,0.346232179226069 +60014042003,301051,0.122199592668024 +60014043001,300445,0.812227074235808 +60014043001,300484,0.187772925764192 +60014043002,300484,1 +60014043003,300574,1 +60014044001,300124,1 +60014044002,300578,1 +60014044003,300576,1 +60014045011,300301,1 +60014045021,300662,1 +60014045022,300026,1 +60014045023,301015,1 +60014045024,300171,1 +60014046001,300172,1 +60014046002,300172,1 +60014046003,300767,1 +60014046004,300021,1 +60014047001,300970,1 +60014047002,300970,1 +60014048001,301017,1 +60014048002,300704,1 +60014049001,300973,1 +60014049002,300961,1 +60014049003,301005,1 +60014049004,301006,1 +60014050001,300443,1 +60014050002,300443,0.0244821092278719 +60014050002,300573,0.975517890772128 +60014050003,300768,1 +60014051001,300168,1 +60014051002,300969,1 +60014051003,300941,1 +60014051004,300375,1 +60014051005,300625,1 +60014052001,300620,1 +60014052002,300887,1 +60014052003,300888,1 +60014052004,300939,1 +60014053011,300096,1 +60014053012,300789,1 +60014053021,300097,1 +60014053022,300089,1 +60014054011,300098,1 +60014054012,300099,1 +60014054013,300100,1 +60014054021,300090,1 +60014054022,300155,1 +60014055001,301000,1 +60014055002,300621,1 +60014055003,300622,1 +60014055004,300561,1 +60014056001,300989,1 +60014056002,301002,1 +60014056003,300485,1 +60014057001,300999,1 +60014057002,301004,1 +60014057003,301003,1 +60014058001,300657,1 +60014058002,300624,1 +60014058003,300770,1 +60014058004,300772,1 +60014059011,300156,1 +60014059012,300146,1 +60014059013,300157,1 +60014059021,300790,1 +60014059022,300147,1 +60014060001,0,0 +60014060001,301048,1 +60014060002,300061,1 +60014060003,300061,1 +60014061001,301016,1 +60014061002,0,0 +60014061002,301001,1 +60014061003,0,0 +60014061003,300575,0.364224137931034 +60014061003,301096,0.635775862068966 +60014061004,300374,1 +60014062011,301008,1 +60014062012,300957,1 +60014062013,301018,1 +60014062014,301019,1 +60014062021,301023,1 +60014062022,300066,1 +60014062023,300791,1 +60014063001,301031,1 +60014063002,301030,1 +60014063003,300792,1 +60014063004,301033,1 +60014064001,300656,1 +60014064002,0,0 +60014064002,301007,1 +60014065001,300158,1 +60014065002,301034,1 +60014065003,300793,1 +60014065004,300159,1 +60014066011,300160,1 +60014066012,300161,1 +60014066013,300162,1 +60014066014,300163,1 +60014066021,300164,1 +60014066022,300165,1 +60014067001,300706,1 +60014067002,300711,1 +60014067003,300761,1 +60014067004,300707,1 +60014067005,300759,1 +60014068001,300009,1 +60014068002,300798,1 +60014068003,300800,1 +60014068004,300710,1 +60014069001,300801,1 +60014069002,300011,1 +60014069003,300758,1 +60014070001,300660,1 +60014070002,301032,1 +60014070003,301035,1 +60014070004,301037,1 +60014070005,301038,1 +60014071011,300221,1 +60014071012,300222,1 +60014071021,300223,1 +60014071022,300224,1 +60014071023,300225,1 +60014071024,300226,1 +60014072001,300819,1 +60014072002,301040,1 +60014072003,300238,1 +60014072004,300237,1 +60014073001,300751,1 +60014073002,0,0 +60014073002,300816,1 +60014074001,300190,1 +60014074002,300813,1 +60014074003,300820,1 +60014075001,300418,1 +60014075002,300835,1 +60014075003,300194,1 +60014076001,300762,1 +60014076002,300191,1 +60014076003,301036,1 +60014076004,300817,1 +60014076005,300136,1 +60014077001,300133,1 +60014077002,300131,1 +60014077003,300193,1 +60014077004,300814,1 +60014078001,300010,0.5 +60014078001,300661,0.5 +60014078002,300010,1 +60014078003,300805,1 +60014079001,300803,0.845659163987138 +60014079001,301095,0.154340836012862 +60014079002,300799,1 +60014079003,300802,1 +60014080001,300708,1 +60014080002,300440,1 +60014081001,300794,1 +60014081002,300839,1 +60014081003,300227,1 +60014081004,300795,1 +60014082001,300836,1 +60014082002,300249,1 +60014082003,300069,1 +60014083001,300757,1 +60014083002,300014,1 +60014083003,300760,1 +60014083004,300355,1 +60014083005,300312,1 +60014084001,300857,1 +60014084002,300254,1 +60014084003,300253,1 +60014085001,300354,1 +60014085002,300858,1 +60014085003,300853,1 +60014085004,300851,1 +60014085005,300252,1 +60014086001,300841,1 +60014086002,300856,1 +60014086003,300754,1 +60014086004,300196,1 +60014087001,300134,1 +60014087002,300868,1 +60014087003,300192,1 +60014087004,300250,1 +60014087005,300821,1 +60014087006,300867,1 +60014088001,300195,1 +60014088002,300188,1 +60014088003,300834,1 +60014088004,301039,1 +60014089001,300955,1 +60014089002,300866,1 +60014090001,300197,1 +60014090002,0,0 +60014090002,300796,1 +60014090003,300562,1 +60014090004,0,0 +60014090004,300560,0 +60014091001,300189,1 +60014091002,300189,1 +60014092001,300963,1 +60014092002,300797,1 +60014093001,300072,1 +60014093002,300251,1 +60014093003,300012,1 +60014093004,300013,1 +60014094001,300255,1 +60014094002,300300,1 +60014094003,300299,1 +60014095001,300303,1 +60014095002,300148,1 +60014095003,300228,1 +60014096001,300236,1 +60014096002,300974,1 +60014096003,300017,1 +60014096004,300304,1 +60014096005,300671,1 +60014097001,300850,1 +60014097002,300343,1 +60014097003,300305,1 +60014097004,300854,1 +60014098001,300292,1 +60014098002,300988,1 +60014098003,300709,1 +60014099001,300444,1 +60014099002,300972,1 +60014099003,300205,1 +60014099004,300204,1 +60014100001,0,0 +60014100001,300945,1 +60014100002,300065,1 +60014100003,300475,1 +60014101001,300387,1 +60014101002,300918,1 +60014102001,300075,1 +60014102002,300139,1 +60014102003,300433,1 +60014103001,300345,1 +60014103002,300074,1 +60014103003,300071,1 +60014104001,300138,1 +60014104002,300860,1 +60014104003,300073,1 +60014105001,300149,0.178066037735849 +60014105001,301093,0.204009433962264 +60014105001,301094,0.617924528301887 +60014201001,301045,1 +60014201002,300911,1 +60014201003,300614,1 +60014202001,300665,1 +60014202002,300613,1 +60014202003,300630,1 +60014203001,301042,1 +60014203002,300041,1 +60014203003,0,0 +60014203003,301046,1 +60014204001,0,0 +60014204001,300437,1 +60014205001,300631,1 +60014205002,300050,1 +60014206001,300632,1 +60014206002,300611,0.791304347826087 +60014206002,300632,0.208695652173913 +60014206003,300243,1 +60014211001,300651,1 +60014211002,300650,1 +60014212001,0,0 +60014212001,300446,1 +60014212002,300654,1 +60014212003,300655,1 +60014212004,300664,1 +60014213001,301044,1 +60014213002,300610,1 +60014213003,300669,1 +60014213004,300669,1 +60014214001,300244,1 +60014214002,300169,1 +60014215001,300567,1 +60014215002,300652,1 +60014215003,0,0 +60014215003,300653,1 +60014216001,300530,1 +60014216002,300698,1 +60014216003,301043,1 +60014216004,300531,1 +60014217001,300003,1 +60014217002,300720,1 +60014217003,300695,1 +60014218001,300847,0.63355408388521 +60014218001,301062,0.36644591611479 +60014218002,300696,0.681293302540416 +60014218002,301061,0.318706697459584 +60014219001,300749,1 +60014219002,300702,0.521739130434783 +60014219002,301063,0.478260869565217 +60014219003,300616,1 +60014219004,300615,1 +60014220001,0,0 +60014220001,300342,0.2 +60014220001,301053,0.0482758620689655 +60014220001,301064,0.303448275862069 +60014220001,301065,0.445977011494253 +60014220001,301066,0.00229885057471264 +60014220002,300042,1 +60014221001,300184,1 +60014221002,301047,1 +60014222001,300937,1 +60014222002,300756,1 +60014222003,300703,1 +60014223001,300697,1 +60014223002,300700,1 +60014223003,300873,1 +60014224001,300701,1 +60014224002,300395,1 +60014224003,300394,1 +60014225001,300699,1 +60014225002,300005,1 +60014225003,300928,1 +60014226001,300004,0.916666666666667 +60014226001,301060,0.0833333333333333 +60014227001,300717,1 +60014227002,300007,1 +60014227003,300006,1 +60014228001,300572,1 +60014228002,300878,1 +60014228003,300927,0.68335146898803 +60014228003,301072,0.31664853101197 +60014229001,300043,0.493854748603352 +60014229001,301070,0.164245810055866 +60014229001,301071,0.341899441340782 +60014229002,300008,0.765202702702703 +60014229002,301069,0.234797297297297 +60014230001,300846,1 +60014230002,300721,1 +60014230003,300053,1 +60014231001,300712,1 +60014231002,300713,1 +60014231003,300714,1 +60014231004,300054,1 +60014232001,300340,1 +60014232002,300719,1 +60014233001,300718,1 +60014233002,300607,1 +60014233003,300607,1 +60014234001,300002,1 +60014234002,300052,1 +60014234003,300058,1 +60014234004,300055,0.644230769230769 +60014234004,301078,0.355769230769231 +60014235001,300938,0.689830508474576 +60014235001,301073,0.310169491525424 +60014235002,300774,0.495934959349593 +60014235002,301074,0.504065040650406 +60014235003,300773,0.361538461538462 +60014235003,301075,0.105769230769231 +60014235003,301076,0.275 +60014235003,301077,0.257692307692308 +60014236011,300333,1 +60014236012,300532,1 +60014236021,300476,1 +60014236022,300334,1 +60014236023,300108,1 +60014237001,300351,1 +60014237002,300877,1 +60014237003,300535,1 +60014238001,300750,1 +60014238002,300122,1 +60014238003,300570,1 +60014239011,300057,0.534883720930233 +60014239011,301080,0.465116279069767 +60014239012,300765,0.774834437086093 +60014239012,301081,0.225165562913907 +60014239021,300121,1 +60014239022,300119,1 +60014240011,300609,0.697604790419162 +60014240011,301079,0.302395209580838 +60014240012,300769,1 +60014240013,300949,1 +60014240014,300612,0.882352941176471 +60014240014,301082,0.117647058823529 +60014240021,300940,1 +60014240022,300056,1 +60014251011,0,0 +60014251011,300044,1 +60014251012,300044,1 +60014251021,300046,1 +60014251022,300047,1 +60014251023,300048,1 +60014251031,300101,1 +60014251032,300102,1 +60014251033,300103,1 +60014251041,300104,1 +60014251042,300152,0.701405152224824 +60014251042,301068,0.298594847775176 +60014261001,300379,1 +60014261002,300105,1 +60014261003,300623,1 +60014261004,300954,1 +60014261005,300467,1 +60014261006,300341,1 +60014262001,300353,1 +60014262002,301013,1 +60014262003,301011,1 +60014271001,0,0 +60014271001,300471,1 +60014271002,300129,1 +60014271003,0,0 +60014271003,300129,1 +60014272001,300063,1 +60014272002,300469,1 +60014272003,300060,1 +60014272004,300563,1 +60014272005,0,0 +60014272005,300336,0 +60014273001,300523,1 +60014273002,0,0 +60014273002,300283,1 +60014273003,300283,1 +60014273004,300352,1 +60014273005,300283,1 +60014276001,300059,1 +60014276002,300106,1 +60014276003,300229,1 +60014277001,300753,1 +60014277002,300752,1 +60014277003,0,0 +60014277003,300483,1 +60014277004,300525,1 +60014278001,300566,1 +60014278002,300019,1 +60014278003,300565,1 +60014278004,300472,1 +60014278005,300015,1 +60014279001,300067,1 +60014279002,300517,1 +60014279003,300518,1 +60014279004,300976,1 +60014279005,300977,1 +60014280001,300804,1 +60014280002,300519,1 +60014281001,0,0 +60014281001,300815,1 +60014281002,300068,1 +60014281003,300425,1 +60014281004,300421,1 +60014282001,300953,1 +60014282002,0,0 +60014282002,300423,1 +60014282003,300062,1 +60014282004,300062,1 +60014282005,300062,1 +60014283011,300107,1 +60014283012,300107,1 +60014283013,300107,1 +60014283014,0,0 +60014283014,300107,0.875581395348837 +60014283014,301097,0.124418604651163 +60014283021,0,0 +60014283021,300391,1 +60014283022,300393,1 +60014283023,0,0 +60014283023,300482,1 +60014284001,0,0 +60014284001,300520,1 +60014284002,300522,1 +60014284003,300320,1 +60014285001,0,0 +60014285001,300564,1 +60014285002,0,0 +60014285002,300153,1 +60014286001,300975,1 +60014286002,0,0 +60014286002,300521,1 +60014286003,0,0 +60014286003,300154,1 +60014287001,0,0 +60014287001,300468,1 +60014287002,0,0 +60014287002,300206,1 +60014301011,300207,1 +60014301012,300208,1 +60014301013,300209,1 +60014301021,0,0 +60014301021,300210,1 +60014302001,300262,1 +60014302002,300261,1 +60014302003,300780,1 +60014302004,300826,1 +60014302005,300263,1 +60014303001,0,0 +60014303001,300033,0.724381625441696 +60014303001,301055,0.275618374558304 +60014303002,300259,1 +60014303003,300274,1 +60014304001,300031,1 +60014304002,0,0 +60014304002,300432,1 +60014305001,300892,1 +60014305002,300891,1 +60014305003,300875,1 +60014306001,300837,1 +60014306002,300864,1 +60014306003,300859,1 +60014306004,300258,1 +60014307001,300264,1 +60014307002,300314,1 +60014307003,300863,1 +60014308001,300902,1 +60014308002,300901,1 +60014308003,300310,1 +60014308004,300308,1 +60014309001,300897,1 +60014309002,300032,0.40117994100295 +60014309002,301102,0.59882005899705 +60014310001,300311,1 +60014310002,300865,1 +60014311001,300293,0.478181818181818 +60014311001,301104,0.134545454545455 +60014311001,301105,0.387272727272727 +60014311002,300211,1 +60014312001,300182,0.399717514124294 +60014312001,301103,0.600282485875706 +60014312002,300350,1 +60014312003,300183,1 +60014321001,300659,1 +60014321002,300349,1 +60014321003,300917,1 +60014322001,300916,1 +60014322002,300076,1 +60014322003,300980,1 +60014323001,300077,1 +60014323002,300079,1 +60014323003,300201,1 +60014324001,300932,1 +60014324002,300931,1 +60014324003,0,0 +60014324003,300930,1 +60014325011,300275,0.519480519480519 +60014325011,301098,0.480519480519481 +60014325012,300276,1 +60014325013,300277,1 +60014325021,300212,1 +60014325022,300212,1 +60014325023,300279,1 +60014326001,300541,1 +60014326002,300142,1 +60014326003,300542,1 +60014326004,300078,1 +60014326005,300540,1 +60014327001,300141,1 +60014327002,300947,1 +60014327003,300946,1 +60014328001,300944,1 +60014328002,300144,1 +60014328003,300431,1 +60014330001,300838,1 +60014330002,300950,1 +60014330003,300948,1 +60014330004,300952,1 +60014331021,300934,1 +60014331021,301100,0 +60014331022,300951,0.912350597609562 +60014331022,301099,0.0876494023904383 +60014331031,300280,1 +60014331032,300213,1 +60014331041,300151,1 +60014331042,300214,1 +60014331043,300215,1 +60014332001,300081,1 +60014332002,300281,1 +60014332003,300323,1 +60014332004,300198,1 +60014333001,300981,1 +60014333002,300216,1 +60014333003,300321,1 +60014333004,300145,1 +60014333005,300658,1 +60014334001,300348,1 +60014334002,300137,1 +60014334003,0,0 +60014334003,300763,1 +60014334004,300140,1 +60014334005,300324,1 +60014334006,300370,1 +60014335001,300979,1 +60014335002,300286,1 +60014335003,300935,1 +60014335004,300914,1 +60014336001,300968,1 +60014336002,300966,1 +60014336003,300199,1 +60014336004,300966,0.547540983606557 +60014336004,300978,0.452459016393443 +60014337001,300890,1 +60014337002,300822,1 +60014337003,300882,1 +60014338001,301009,1 +60014338002,300998,1 +60014338003,300913,1 +60014338004,300903,1 +60014339001,300064,1 +60014339002,300915,1 +60014339003,300346,1 +60014339004,300347,1 +60014340001,300202,1 +60014340002,300130,1 +60014340003,300848,1 +60014351021,300925,1 +60014351022,300527,1 +60014351031,300217,1 +60014351032,300218,1 +60014351033,300219,1 +60014351041,300220,1 +60014351042,300325,1 +60014351043,300326,1 +60014352001,0,0 +60014352001,300422,1 +60014352002,300266,1 +60014353001,300309,1 +60014353002,300908,1 +60014353003,300267,1 +60014354001,300983,1 +60014354002,300990,1 +60014354003,300495,1 +60014355001,300861,1 +60014355002,300991,1 +60014355003,300923,1 +60014356011,300327,1 +60014356012,300371,1 +60014356021,300268,1 +60014356022,300372,1 +60014356023,300328,1 +60014356024,300329,1 +60014357001,301012,1 +60014357002,300628,1 +60014357003,300964,1 +60014357004,300879,0.981029810298103 +60014357004,301101,0.018970189701897 +60014358001,300811,1 +60014358002,300447,1 +60014358003,300451,1 +60014358004,300450,1 +60014359001,300230,0.247148288973384 +60014359001,300233,0.752851711026616 +60014359002,300080,1 +60014359003,0,0 +60014359003,300872,1 +60014359004,300933,1 +60014360001,300200,1 +60014360002,300831,1 +60014360003,300577,1 +60014361001,300448,1 +60014361002,300982,1 +60014361003,300832,1 +60014362001,300470,1 +60014362002,300390,1 +60014363001,300667,1 +60014363002,300666,1 +60014363003,300919,1 +60014363004,300668,1 +60014364011,300809,1 +60014364012,300889,1 +60014364013,300203,1 +60014364014,300924,1 +60014364015,300265,1 +60014364021,300579,1 +60014364022,300942,1 +60014365001,300922,1 +60014365002,300544,1 +60014366011,300909,1 +60014366012,300881,1 +60014366013,300907,1 +60014366021,300884,1 +60014366022,300571,1 +60014367001,300494,1 +60014367002,300536,1 +60014368001,300109,1 +60014368002,300307,1 +60014369001,300876,1 +60014369002,300926,1 +60014369003,300449,1 +60014369004,300453,1 +60014370001,300929,1 +60014370002,300110,1 +60014370003,300936,1 +60014371011,0,0 +60014371011,300269,1 +60014371012,300330,1 +60014371013,300367,0.457013574660633 +60014371013,301114,0.542986425339366 +60014371021,300270,1 +60014371022,300271,1 +60014371023,300368,1 +60014372001,300849,1 +60014372002,300533,1 +60014372003,300496,1 +60014372004,300272,1 +60014373001,300502,1 +60014373002,300502,1 +60014373003,300501,1 +60014374001,300538,1 +60014374002,300539,1 +60014375001,300629,1 +60014375002,300273,1 +60014376001,300543,1 +60014376002,300543,1 +60014377011,300315,1 +60014377012,300369,1 +60014377013,300316,1 +60014377021,300317,1 +60014377022,300459,1 +60014378001,300705,1 +60014378002,300584,1 +60014379001,300635,1 +60014379002,300545,1 +60014380001,300389,1 +60014380002,300637,1 +60014381001,300886,1 +60014381002,300920,1 +60014381003,300898,1 +60014381004,300828,1 +60014381005,300996,1 +60014381006,300827,1 +60014382011,300382,1 +60014382012,300382,1 +60014382013,300382,1 +60014382031,300510,1 +60014382032,300318,1 +60014382041,300415,1 +60014382042,300512,1 +60014382043,300319,1 +60014383001,300499,1 +60014383002,300870,1 +60014383003,300883,1 +60014384001,300335,1 +60014384002,300420,1 +60014401001,300178,0.998857142857143 +60014401001,300416,0.00114285714285714 +60014402001,300528,1 +60014402002,300896,1 +60014402003,300904,1 +60014402004,300589,1 +60014403011,300675,1 +60014403012,300674,1 +60014403013,301028,1 +60014403014,300373,1 +60014403041,300498,1 +60014403042,300586,1 +60014403043,300992,1 +60014403051,300070,1 +60014403052,301029,1 +60014403053,300020,1 +60014403061,300880,1 +60014403062,300590,1 +60014403071,300672,1 +60014403072,300497,1 +60014403073,300497,1 +60014403081,300587,1 +60014403082,300895,1 +60014403083,300460,1 +60014403084,300322,1 +60014403311,300755,1 +60014403312,300493,1 +60014403321,300001,1 +60014403322,300361,1 +60014403331,300362,1 +60014403331,301115,0 +60014403332,300411,1 +60014403341,300363,1 +60014403342,300364,1 +60014403351,300365,1 +60014403352,300366,1 +60014403361,300514,0.770422535211268 +60014403361,301117,0.229577464788732 +60014403362,300515,0.580924855491329 +60014403362,301116,0.419075144508671 +60014411001,300633,1 +60014411002,300438,1 +60014412001,0,0 +60014412001,300726,1 +60014412002,300994,1 +60014412003,300388,1 +60014413011,300297,1 +60014413012,300297,1 +60014413021,300764,1 +60014413022,300985,1 +60014413023,300722,1 +60014413024,300503,1 +60014414011,300143,1 +60014414012,300135,1 +60014414013,300912,1 +60014414014,300504,1 +60014414021,300581,1 +60014414022,300426,1 +60014414023,300427,1 +60014415011,300893,1 +60014415012,300404,0.887179487179487 +60014415012,301119,0.112820512820513 +60014415031,0,0 +60014415031,300180,0.470332850940666 +60014415031,301049,0.3589001447178 +60014415031,301126,0 +60014415031,301127,0.000723589001447178 +60014415031,301128,0.00144717800289436 +60014415031,301129,0.168596237337192 +60014415032,300829,1 +60014415211,300840,1 +60014415212,301020,1 +60014415213,300885,1 +60014415214,300553,1 +60014415221,300588,1 +60014415222,300894,1 +60014415223,300405,1 +60014415231,300406,1 +60014415232,300407,1 +60014415233,300408,1 +60014415241,300409,1 +60014415242,300412,1 +60014415242,301118,0 +60014416011,300997,1 +60014416012,301021,1 +60014416013,300554,1 +60014416021,300984,1 +60014416022,300986,1 +60014416023,300987,1 +60014416024,300723,1 +60014417001,300338,1 +60014417002,300337,0.940880503144654 +60014417002,301125,0.0591194968553459 +60014417003,300776,1 +60014417004,300242,0.454545454545455 +60014417004,301124,0.545454545454546 +60014418001,301026,1 +60014418002,300306,1 +60014418003,300410,1 +60014418004,300454,1 +60014419211,300384,1 +60014419212,300313,1 +60014419231,300555,1 +60014419232,300724,1 +60014419233,300186,1 +60014419241,300455,1 +60014419242,300456,1 +60014419243,300457,1 +60014419244,300458,1 +60014419251,300507,1 +60014419252,300508,1 +60014419252,301120,0 +60014419261,300556,1 +60014419262,300557,1 +60014419271,300546,1 +60014419272,300547,1 +60014420001,300439,1 +60014420002,300548,1 +60014421001,300833,1 +60014421002,300549,1 +60014422001,300558,1 +60014422002,300779,1 +60014422003,300844,1 +60014422004,300559,0.994623655913978 +60014422004,301131,0.00537634408602151 +60014423011,300599,1 +60014423012,300550,1 +60014423013,300600,1 +60014423021,300551,1 +60014423022,300552,1 +60014423023,300591,0.8125 +60014423023,301130,0.1875 +60014424001,300842,1 +60014424002,300843,1 +60014424003,300663,1 +60014424004,301025,1 +60014425001,300290,1 +60014425002,300291,1 +60014425003,300775,1 +60014425004,300778,1 +60014426011,300601,1 +60014426012,300602,1 +60014426021,300592,1 +60014426022,300413,1 +60014427001,300673,1 +60014427002,300676,1 +60014427003,300830,1 +60014428001,300725,1 +60014429001,300777,1 +60014429002,300962,1 +60014429003,300248,1 +60014429004,300593,1 +60014430011,300296,1 +60014430021,300295,1 +60014430022,300029,1 +60014430023,300245,1 +60014431021,300396,1 +60014431022,300187,1 +60014431023,300383,1 +60014431024,301022,1 +60014431031,300634,1 +60014431032,300594,1 +60014431041,300603,1 +60014431042,300595,1 +60014431043,300596,0.990135635018496 +60014431043,301132,0.00986436498150432 +60014431051,300604,1 +60014431052,300414,1 +60014432001,300385,1 +60014432002,300597,1 +60014433011,300397,1 +60014433012,300397,1 +60014433211,300598,1 +60014433212,300605,1 +60014433221,300639,1 +60014433222,300479,1 +60014441001,300398,1 +60014441002,0,0 +60014441002,300398,1 +60014441003,300921,1 +60014441004,300606,1 +60014442001,300298,1 +60014442002,300257,1 +60014442003,300386,1 +60014443011,300640,1 +60014443012,300641,1 +60014443021,300642,1 +60014443022,300678,0 +60014443022,301057,0.859618717504333 +60014443022,301122,0 +60014443022,301123,0.140381282495667 +60014444001,300727,1 +60014444002,300728,1 +60014444003,300729,1 +60014445001,300488,1 +60014445002,300185,1 +60014445003,300179,1 +60014445004,300644,1 +60014446011,300645,1 +60014446012,300646,1 +60014446021,300643,1 +60014446022,300692,1 +60014501011,300417,1 +60014501021,300509,0.216417910447761 +60014501021,301109,0.783582089552239 +60014501021,301110,0 +60014501021,301111,0 +60014501022,300679,0 +60014501023,300680,1 +60014502001,300862,1 +60014502002,300681,1 +60014502003,300682,1 +60014503001,300356,0.413897280966767 +60014503001,301112,0.586102719033233 +60014503002,300810,1 +60014504001,300824,1 +60014504002,300392,1 +60014504003,301027,1 +60014505011,300683,1 +60014505012,300730,0.784646061814556 +60014505012,301113,0.215353938185444 +60014505021,0,0 +60014505021,300731,1 +60014505022,300732,1 +60014506011,300906,1 +60014506012,300181,1 +60014506021,300260,1 +60014506022,300537,1 +60014506023,300647,1 +60014506024,300647,1 +60014506025,300733,1 +60014506031,300359,1 +60014506032,300035,1 +60014506033,300357,1 +60014506034,300807,1 +60014506041,300580,1 +60014506042,300399,1 +60014506043,300360,1 +60014506044,300648,1 +60014506051,300808,1 +60014506052,300358,1 +60014506053,300638,1 +60014506061,300434,1 +60014506062,300030,1 +60014506063,300435,1 +60014506071,300649,1 +60014506072,300487,1 +60014507011,300684,1 +60014507012,300677,1 +60014507013,0,0 +60014507013,300478,0.985374771480804 +60014507013,301121,0.0146252285191956 +60014507014,0,0 +60014507014,300734,1 +60014507411,300302,1 +60014507412,301010,1 +60014507413,300424,1 +60014507421,300034,1 +60014507422,300516,1 +60014507423,0,0 +60014507423,300900,1 +60014507431,300735,1 +60014507432,300461,1 +60014507441,300736,1 +60014507442,300737,1 +60014507451,300781,1 +60014507452,300462,1 +60014507461,300685,1 +60014507462,300686,1 +60014507501,300782,1 +60014507511,300783,1 +60014507521,0,0 +60014507521,300784,0.82051282051282 +60014507521,301108,0.179487179487179 +60014511011,0,0 +60014511011,300430,1 +60014511012,300905,1 +60014511013,0,0 +60014511013,300687,1 +60014511014,300785,1 +60014511015,300463,1 +60014511021,300823,1 +60014511022,300436,1 +60014512011,300132,1 +60014512012,300583,1 +60014512013,300429,1 +60014512021,300428,0.317262830482115 +60014512021,301056,0.682737169517885 +60014512022,300582,1 +60014512023,300247,1 +60014513001,300967,1 +60014513002,300400,1 +60014513003,300474,1 +60014514011,300381,1 +60014514012,300626,1 +60014514013,301014,0.880239520958084 +60014514013,301107,0.119760479041916 +60014514031,300786,1 +60014514032,300787,1 +60014514041,300788,1 +60014514042,300464,1 +60014514043,300036,1 +60014515011,300627,1 +60014515012,300403,1 +60014515031,301041,1 +60014515032,300490,1 +60014515033,300491,1 +60014515034,300806,1 +60014515041,300688,1 +60014515051,300037,1 +60014515052,300689,1 +60014515061,300690,1 +60014515062,300038,1 +60014516011,300401,1 +60014516012,300246,1 +60014516021,300402,1 +60014516022,300452,1 +60014516023,300489,1 +60014516024,301024,1 +60014517011,300082,1 +60014517012,300084,1 +60014517013,300083,1 +60014517031,300039,1 +60014517032,300040,1 +60014517041,300085,0.82680412371134 +60014517041,301106,0.17319587628866 +60014517042,300086,1 +60014517043,300087,1 +60019819001,0,0 +60019819001,300465,1 +60019820001,0,0 +60019820001,300505,1 +60019832001,0,0 +60019832001,300506,1 +60019900000,0,0 +60133010001,400507,1 +60133010002,400507,1 +60133010003,0,0 +60133010003,400507,1 +60133020051,400101,1 +60133020052,400103,1 +60133020053,400108,1 +60133020054,400082,1 +60133020061,0,0 +60133020061,400198,1 +60133020062,0,0 +60133020062,400102,1 +60133020071,400539,1 +60133020072,400011,1 +60133020081,0,0 +60133020081,400196,1 +60133020082,400093,1 +60133020091,400110,1 +60133020092,400111,1 +60133020101,400106,1 +60133020102,400107,1 +60133020103,400258,1 +60133020104,400138,1 +60133031021,400109,1 +60133031022,400114,1 +60133031031,0,0 +60133031031,400092,0.910987482614743 +60133031031,400640,0.0890125173852573 +60133031032,400113,1 +60133031033,400509,1 +60133031034,400510,1 +60133032011,400112,1 +60133032012,400143,1 +60133032013,400241,1 +60133032021,400255,1 +60133032022,400167,1 +60133032023,400256,1 +60133032024,400168,1 +60133032031,400204,1 +60133032041,400537,1 +60133032042,400115,1 +60133032043,400203,1 +60133032051,400195,1 +60133032052,400105,1 +60133040011,0,0 +60133040011,400104,1 +60133040021,0,0 +60133040021,400086,0.10022271714922 +60133040021,400641,0.89977728285078 +60133040031,400209,1 +60133040032,400538,1 +60133040033,0,0 +60133040033,400182,1 +60133040041,0,0 +60133040041,400207,1 +60133040042,0,0 +60133040042,400116,1 +60133040051,400208,1 +60133040052,0,0 +60133040052,400197,0.187908496732026 +60133040052,400518,0.812091503267974 +60133050001,400267,1 +60133050002,400268,1 +60133050003,0,0 +60133050003,400266,1 +60133050004,400511,1 +60133050005,400183,1 +60133060021,400299,1 +60133060022,0,0 +60133060022,400584,1 +60133060031,400270,1 +60133060032,400269,1 +60133060033,400272,1 +60133060041,0,0 +60133060041,400271,1 +60133060042,400583,1 +60133071011,400300,1 +60133071012,400302,1 +60133071013,400301,1 +60133071021,400303,1 +60133071022,400327,1 +60133071023,400304,1 +60133071024,400328,1 +60133072011,400330,1 +60133072012,400329,1 +60133072021,400248,1 +60133072022,400170,1 +60133072023,400213,1 +60133072041,400184,1 +60133072042,400331,1 +60133072043,400332,1 +60133072051,400357,1 +60133072052,400333,1 +60133072053,400603,1 +60133072054,400358,1 +60133080011,400181,1 +60133080012,400385,1 +60133080013,400360,1 +60133080014,400359,1 +60133080021,400199,1 +60133080022,400200,1 +60133090001,0,0 +60133090001,400186,1 +60133090002,0,0 +60133090002,400604,1 +60133100001,400387,1 +60133100002,400386,1 +60133100003,400605,1 +60133110001,400390,1 +60133110002,400388,1 +60133110003,400389,1 +60133120001,400391,1 +60133131011,400416,1 +60133131012,400414,1 +60133131013,400415,1 +60133131014,400125,1 +60133131021,400418,1 +60133131022,400417,1 +60133131031,400419,1 +60133131032,400419,1 +60133131033,400441,1 +60133132031,400216,1 +60133132032,400246,1 +60133132033,400042,0.862745098039216 +60133132033,400607,0.137254901960784 +60133132041,400445,1 +60133132042,400091,1 +60133132043,400446,1 +60133132051,400618,1 +60133132061,400003,1 +60133132062,400443,1 +60133132063,400442,1 +60133141021,0,0 +60133141021,400045,1 +60133141022,400046,1 +60133141023,400464,1 +60133141031,400220,1 +60133141032,400550,1 +60133141033,0,0 +60133141033,400551,1 +60133141041,400581,1 +60133141042,400582,1 +60133141043,400219,1 +60133141044,400218,1 +60133142001,400489,1 +60133142002,400488,1 +60133142003,0,0 +60133142003,400469,1 +60133150001,0,0 +60133150001,400491,1 +60133150001,400512,0 +60133150002,400506,1 +60133160001,0,0 +60133160001,400007,1 +60133170001,400060,1 +60133170002,400008,1 +60133180001,400050,1 +60133180002,0,0 +60133180002,400490,1 +60133180003,400061,1 +60133190001,400520,1 +60133190002,400493,1 +60133190003,400494,1 +60133190004,400492,1 +60133190005,400521,1 +60133190006,400222,1 +60133200011,0,0 +60133200011,400006,1 +60133200012,400062,1 +60133200031,400001,1 +60133200041,400523,1 +60133200042,400124,1 +60133200043,400259,1 +60133211011,400287,1 +60133211012,400066,1 +60133211013,400064,1 +60133211014,400065,1 +60133211021,400525,1 +60133211022,400526,1 +60133211023,400524,1 +60133211024,400288,1 +60133211031,400010,1 +60133211032,400527,1 +60133211033,400289,1 +60133212001,400290,1 +60133212002,400224,1 +60133212003,400155,1 +60133220001,400318,1 +60133220002,400319,1 +60133220003,400225,1 +60133220004,400291,1 +60133220005,400320,1 +60133230001,400346,1 +60133230002,400345,1 +60133230003,400343,1 +60133230004,400309,1 +60133240011,400228,1 +60133240012,400146,1 +60133240013,400145,1 +60133240014,400144,1 +60133240021,400012,1 +60133240022,400128,1 +60133240023,400127,1 +60133250001,400369,1 +60133250002,400348,1 +60133250003,400370,1 +60133250004,400347,1 +60133250005,400368,1 +60133260001,400139,1 +60133260002,400371,1 +60133270001,400341,1 +60133270002,400340,1 +60133270003,400339,1 +60133270004,400338,1 +60133270005,400004,1 +60133280001,400361,1 +60133280002,400342,1 +60133290001,400561,1 +60133290002,400560,1 +60133290003,400363,1 +60133290004,400362,1 +60133300001,400562,1 +60133300002,400563,1 +60133300003,400564,1 +60133300004,400014,1 +60133310001,400366,1 +60133310002,400364,1 +60133310003,400367,1 +60133310004,400392,1 +60133310005,400365,1 +60133310006,400565,1 +60133320001,400394,1 +60133320002,400395,1 +60133320003,400420,1 +60133320004,400421,1 +60133320005,400396,1 +60133320006,400589,1 +60133320007,400393,1 +60133331011,400016,1 +60133331012,400015,1 +60133331013,400422,1 +60133331021,400214,1 +60133331022,400423,1 +60133331023,400424,1 +60133332001,400447,1 +60133332002,400450,1 +60133332003,400449,1 +60133332004,400448,1 +60133332005,400425,1 +60133340011,400397,1 +60133340012,400451,1 +60133340041,400452,1 +60133340042,400470,1 +60133340043,400471,1 +60133340044,400466,1 +60133340061,400465,1 +60133340062,400472,1 +60133340063,400473,1 +60133342001,400613,1 +60133342002,400306,1 +60133342003,400009,1 +60133342004,400612,1 +60133342005,400611,1 +60133350001,400495,1 +60133350002,400475,1 +60133350003,400474,1 +60133361011,400467,1 +60133361012,400147,1 +60133361013,400147,1 +60133361021,400468,1 +60133361022,400444,1 +60133361023,400237,1 +60133361024,400142,1 +60133362011,400005,1 +60133362012,400017,1 +60133362013,400140,1 +60133362021,400141,1 +60133362022,400033,1 +60133362023,400260,1 +60133371001,400497,1 +60133371002,400496,1 +60133372001,400498,1 +60133372002,400500,1 +60133372003,400499,1 +60133372004,400501,1 +60133372005,400502,1 +60133372006,400503,1 +60133373001,400453,1 +60133373002,400530,1 +60133373003,400504,1 +60133373004,400529,1 +60133373005,400528,1 +60133373006,400454,1 +60133381011,400531,1 +60133381012,400239,1 +60133381013,400087,1 +60133381021,400552,1 +60133381022,400240,1 +60133381023,400018,1 +60133382011,400532,1 +60133382012,400533,1 +60133382031,400234,1 +60133382032,400554,1 +60133382033,400242,1 +60133382041,0,0 +60133382041,400180,1 +60133382042,400176,1 +60133382043,400175,1 +60133382044,400032,1 +60133383011,400455,1 +60133383012,400479,1 +60133383021,400223,1 +60133383022,400555,1 +60133383023,400553,1 +60133390011,400132,1 +60133390012,400131,1 +60133390021,400227,1 +60133390022,400133,1 +60133390023,400134,1 +60133390024,400243,1 +60133400011,400456,1 +60133400012,400235,1 +60133400013,400457,1 +60133400014,400476,1 +60133400021,400558,1 +60133400022,400477,1 +60133400023,400586,1 +60133400024,400236,1 +60133400025,400585,1 +60133400026,400557,0.932885906040268 +60133400026,400573,0.0671140939597315 +60133410001,400610,1 +60133410002,400588,1 +60133410003,400587,1 +60133430011,400556,1 +60133430012,400048,1 +60133430013,400478,1 +60133430014,400614,1 +60133430021,0,0 +60133430021,400049,1 +60133430022,400049,1 +60133430031,400056,1 +60133430032,400051,1 +60133451011,400398,1 +60133451012,400399,1 +60133451013,400400,1 +60133451014,400372,1 +60133451021,400403,1 +60133451022,400402,1 +60133451023,400401,1 +60133451031,400427,1 +60133451032,400428,1 +60133451033,400426,1 +60133451051,400052,1 +60133451052,400534,1 +60133451053,400535,1 +60133451054,400559,1 +60133451081,400429,1 +60133451082,400122,1 +60133451083,400053,1 +60133451084,400157,1 +60133451111,400431,1 +60133451112,400430,1 +60133451113,400057,1 +60133451121,400210,1 +60133451122,400123,1 +60133451131,400185,1 +60133451132,400156,1 +60133451141,400591,1 +60133451142,400608,1 +60133451143,400022,1 +60133451144,400590,1 +60133451151,400054,1 +60133451152,400265,1 +60133451161,400118,1 +60133451162,400117,1 +60133452021,400055,1 +60133452022,400130,1 +60133452023,400129,1 +60133452031,400152,1 +60133452032,400592,1 +60133452033,400593,1 +60133452034,400020,1 +60133452041,400232,1 +60133452042,400233,1 +60133461011,400019,1 +60133461012,400307,1 +60133461021,400308,1 +60133461022,400153,1 +60133461023,400335,1 +60133462011,400154,1 +60133462012,400154,1 +60133462013,400058,1 +60133462014,400058,0.125 +60133462014,400310,0 +60133462014,400337,0.875 +60133462031,400021,1 +60133462032,400616,1 +60133462041,400034,1 +60133462042,400077,1 +60133462043,400078,1 +60133470001,400135,1 +60133470002,400274,1 +60133470003,400226,1 +60133480001,400279,1 +60133480002,400619,1 +60133480003,400279,1 +60133490001,400621,1 +60133490002,400615,1 +60133490003,400620,1 +60133500001,400623,1 +60133500002,400622,1 +60133500003,400292,1 +60133500004,0,0 +60133500004,400617,1 +60133511011,400238,1 +60133511012,400231,1 +60133511013,400149,1 +60133511021,400177,1 +60133511022,400150,1 +60133511023,400151,1 +60133511031,400245,1 +60133511032,400013,1 +60133512001,400624,1 +60133512002,400275,1 +60133512003,400625,1 +60133521011,400273,1 +60133521012,0,0 +60133521012,400626,1 +60133521021,0,0 +60133521021,400277,1 +60133521022,400313,1 +60133521023,400293,1 +60133521024,400276,1 +60133522011,400314,1 +60133522012,400161,1 +60133522013,400244,1 +60133522021,400024,1 +60133530011,400278,1 +60133530012,400063,1 +60133530021,400628,1 +60133530022,400627,1 +60133530023,400316,1 +60133530024,400315,1 +60133540011,400025,1 +60133540021,400281,1 +60133540022,400317,1 +60133540023,400630,1 +60133540024,400629,1 +60133551071,0,0 +60133551071,400002,1 +60133551072,400508,1 +60133551081,400126,1 +60133551082,400137,1 +60133551083,400136,1 +60133551091,400254,1 +60133551092,400172,1 +60133551093,400171,1 +60133551101,400202,1 +60133551102,400206,1 +60133551111,400205,1 +60133551112,400083,1 +60133551121,0,0 +60133551121,400158,0.404805914972274 +60133551121,400159,0.177449168207024 +60133551121,400638,0.0646950092421442 +60133551121,400639,0.353049907578558 +60133551122,400159,1 +60133551123,400023,1 +60133551131,400166,1 +60133551132,400165,1 +60133551133,400027,1 +60133551141,400084,1 +60133551142,400075,1 +60133551143,400212,1 +60133551151,400211,1 +60133551161,400074,1 +60133551171,400073,1 +60133552001,400215,1 +60133552002,400217,1 +60133553011,400280,1 +60133553012,400312,1 +60133553013,400311,1 +60133553014,400283,1 +60133553021,400480,1 +60133553022,400505,1 +60133553023,400282,1 +60133553041,400285,1 +60133553042,400120,1 +60133553043,400334,1 +60133553044,400121,1 +60133553045,400076,1 +60133553061,400284,1 +60133553062,400305,1 +60133553063,400286,1 +60133553064,400286,1 +60133553065,400336,1 +60133560011,400487,1 +60133560012,400487,1 +60133560013,400566,1 +60133560021,400609,1 +60133560022,400221,1 +60133560023,400037,1 +60133560024,0,0 +60133560024,400522,1 +60133570001,0,0 +60133570001,400632,1 +60133570002,0,0 +60133570002,400540,1 +60133570003,0,0 +60133570003,400633,1 +60133580001,400515,1 +60133580002,400513,1 +60133580003,400516,1 +60133580004,400514,1 +60133580005,0,0 +60133580005,400081,1 +60133591021,400571,1 +60133591022,400571,1 +60133591023,400298,1 +60133591031,0,0 +60133591031,400036,1 +60133591032,400263,1 +60133591033,400039,1 +60133591041,400080,1 +60133591051,0,0 +60133591051,400035,1 +60133592021,400026,1 +60133592022,400567,1 +60133592023,400321,1 +60133592031,400041,1 +60133592032,400040,1 +60133592033,400568,1 +60133592034,400262,1 +60133592035,400261,1 +60133592041,400264,1 +60133592042,400028,1 +60133592043,400038,1 +60133601011,400578,1 +60133601012,400247,1 +60133601013,400229,1 +60133601021,400163,1 +60133601022,400164,1 +60133601023,400579,1 +60133602001,400580,1 +60133602002,400598,1 +60133602003,400569,1 +60133610001,400599,1 +60133610002,400119,1 +60133610003,400162,1 +60133620001,400634,1 +60133620002,400634,1 +60133620003,400029,1 +60133630001,400601,1 +60133630002,400600,1 +60133630003,400169,1 +60133630004,400230,1 +60133640021,400322,1 +60133640022,400322,1 +60133640023,400322,1 +60133650021,400570,1 +60133650022,400572,1 +60133650023,0,0 +60133650023,400085,1 +60133650031,400324,1 +60133650032,400252,1 +60133650033,400253,1 +60133660011,400043,1 +60133660012,400044,1 +60133660013,400047,1 +60133660021,400059,1 +60133660022,400059,1 +60133660023,400517,1 +60133671001,400574,1 +60133671002,400349,1 +60133671003,400251,1 +60133671004,400350,1 +60133672001,400594,1 +60133672002,400595,1 +60133672003,400596,1 +60133680011,400352,1 +60133680012,400354,1 +60133680013,400547,1 +60133680014,400546,1 +60133680021,400351,1 +60133680022,400353,1 +60133690011,400325,1 +60133690012,400173,1 +60133690013,400548,1 +60133690014,400201,1 +60133690021,400326,1 +60133690022,400597,1 +60133690023,400631,1 +60133700001,400355,1 +60133700002,400636,1 +60133700003,400637,1 +60133710001,400376,1 +60133710002,400377,1 +60133710003,400373,1 +60133710004,400375,1 +60133710005,400374,1 +60133710006,400356,1 +60133720001,400381,1 +60133720002,400380,1 +60133720003,400384,1 +60133720004,400383,1 +60133720005,400382,1 +60133720006,400379,1 +60133720007,400378,1 +60133730001,400406,1 +60133730002,400405,1 +60133730003,400404,1 +60133740001,400408,1 +60133740002,400410,1 +60133740003,400409,1 +60133740004,400407,1 +60133750001,400412,1 +60133750002,400413,1 +60133750003,400411,1 +60133760001,400432,1 +60133760002,400179,1 +60133760003,400434,1 +60133760004,400433,1 +60133770001,400438,1 +60133770002,400437,1 +60133770003,400436,1 +60133770004,400030,1 +60133770005,400435,1 +60133780001,0,0 +60133780001,400174,1 +60133780002,0,0 +60133780002,400439,1 +60133790001,400459,1 +60133790002,400458,1 +60133790003,400440,1 +60133790004,400031,1 +60133800001,0,0 +60133800001,400460,1 +60133800002,0,0 +60133800002,400160,1 +60133800003,400461,1 +60133810001,400481,1 +60133810002,400483,1 +60133810003,400482,1 +60133810004,400462,1 +60133810005,400462,1 +60133820001,400067,1 +60133820002,400484,1 +60133820003,400068,1 +60133820004,400485,1 +60133830001,400069,1 +60133830002,400486,1 +60133830003,400070,1 +60133840001,400095,1 +60133840002,400071,1 +60133840003,400072,1 +60133840004,400094,1 +60133851001,400096,1 +60133851002,400097,1 +60133852001,400187,1 +60133852002,400099,1 +60133860001,400188,1 +60133860002,400098,1 +60133860003,400190,1 +60133860004,400189,1 +60133870001,400191,1 +60133870002,400192,1 +60133870003,400193,1 +60133880001,400194,1 +60133880002,400100,1 +60133891001,400542,1 +60133891002,400543,1 +60133892001,400544,1 +60133892002,400545,1 +60133901001,400576,1 +60133901002,400088,1 +60133901003,400575,1 +60133902001,400577,1 +60133902002,400090,1 +60133910001,400294,1 +60133910002,400257,1 +60133920001,400297,1 +60133920002,0,0 +60133920002,400296,1 +60133920003,400295,1 +60133922001,400079,1 +60133922002,0,0 +60133922002,400250,1 +60133922003,0,0 +60133922003,400178,1 +60133922004,400249,1 +60133923001,0,0 +60133923001,400089,1 +60139900000,0,0 +60411011001,0,0 +60411011001,800051,0.74573055028463 +60411011001,800177,0.25426944971537 +60411012001,0,0 +60411012001,800052,0.356164383561644 +60411012001,800183,0.643835616438356 +60411012001,800185,0 +60411021001,800053,1 +60411021002,800060,1 +60411022021,800050,1 +60411022022,800063,1 +60411022023,800064,1 +60411022024,800035,1 +60411022025,800065,1 +60411022031,800036,0.977908689248895 +60411022031,800182,0.0220913107511046 +60411022032,800066,1 +60411022033,800067,1 +60411031001,800061,1 +60411031002,0,0 +60411031002,800054,1 +60411031003,800055,1 +60411031004,800068,1 +60411032001,800056,1 +60411032002,800069,1 +60411032003,800070,1 +60411041011,800062,1 +60411041012,800057,1 +60411041013,800089,0.585 +60411041013,800186,0.415 +60411041014,800090,0.652132701421801 +60411041014,800187,0.347867298578199 +60411041021,800071,1 +60411041022,800091,0.549952426260704 +60411041022,800184,0.450047573739296 +60411042001,800058,1 +60411042002,800092,1 +60411042003,800093,1 +60411043001,0,0 +60411043001,800088,0 +60411043001,800095,0 +60411043001,800188,1 +60411050001,800094,1 +60411050002,0,0 +60411050002,800095,1 +60411060011,0,0 +60411060011,800032,1 +60411060012,800032,1 +60411060013,0,0 +60411060013,800096,0 +60411060013,800192,0.990873533246415 +60411060013,800193,0.0091264667535854 +60411060021,0,0 +60411060021,800150,1 +60411060022,0,0 +60411060022,800151,0.405044510385757 +60411060022,800198,0.594955489614243 +60411060023,800149,0.61028192371476 +60411060023,800199,0.38971807628524 +60411070001,800163,0.729390681003584 +60411070001,800190,0.270609318996416 +60411070002,800164,1 +60411070003,800153,1 +60411070004,800152,0.968127490039841 +60411070004,800189,0.0318725099601594 +60411070005,800104,0.492935635792779 +60411070005,800191,0.507064364207221 +60411081001,800154,1 +60411081002,800166,1 +60411081003,800167,1 +60411081004,800105,0.720661157024793 +60411081004,800194,0.279338842975207 +60411082001,800169,0.697151424287856 +60411082001,800195,0.302848575712144 +60411082002,800170,1 +60411082003,800168,0 +60411082003,800196,1 +60411082004,800155,0.474164133738602 +60411082004,800197,0.525835866261398 +60411090011,800106,1 +60411090012,800037,1 +60411090013,800107,1 +60411090021,800038,1 +60411090022,0,0 +60411090022,800039,1 +60411090023,800040,1 +60411101001,800158,1 +60411101002,0,0 +60411101002,800156,1 +60411101003,0,0 +60411101003,800156,1 +60411102001,800172,1 +60411102002,0,0 +60411102002,800159,0.770491803278688 +60411102002,800180,0.229508196721311 +60411102003,800160,1 +60411110001,800175,1 +60411110002,800165,1 +60411110003,800171,0.518569463548831 +60411110003,800200,0.481430536451169 +60411110004,800173,1 +60411121001,800001,1 +60411121002,800048,1 +60411121003,800161,1 +60411121004,800048,1 +60411122011,0,0 +60411122011,800108,1 +60411122012,800109,1 +60411122021,800110,1 +60411122022,0,0 +60411122022,800111,0.946428571428572 +60411122022,800201,0.00892857142857143 +60411122022,800202,0.0446428571428571 +60411130001,800082,1 +60411130002,800082,1 +60411130003,800073,1 +60411130004,800081,1 +60411141001,800084,1 +60411141002,800085,1 +60411141003,800085,1 +60411142001,800086,1 +60411142002,800072,1 +60411150001,800087,1 +60411150002,800113,1 +60411150003,800114,1 +60411150004,800041,1 +60411160001,800144,1 +60411160002,800145,0.634146341463415 +60411160002,800147,0.365853658536585 +60411170001,800146,1 +60411170002,800148,1 +60411170003,800157,1 +60411170004,800120,1 +60411181001,800143,1 +60411181002,800142,1 +60411191001,800132,1 +60411191002,800134,1 +60411191003,0,0 +60411191003,800133,1 +60411191004,800059,1 +60411191005,800131,1 +60411192011,800121,1 +60411192012,0,0 +60411192012,800122,1 +60411192013,0,0 +60411192013,800123,1 +60411192021,0,0 +60411192021,800042,1 +60411192022,800043,1 +60411200001,800101,0.526315789473684 +60411200001,800208,0.473684210526316 +60411200002,800100,1 +60411200003,800141,1 +60411200004,0,0 +60411200004,800140,1 +60411200005,0,0 +60411200005,800097,0.3929173693086 +60411200005,800205,0.6070826306914 +60411211001,800117,1 +60411211001,800207,0 +60411211002,800118,1 +60411211003,800116,1 +60411211004,800115,0.73728813559322 +60411211004,800206,0.26271186440678 +60411211005,800103,1 +60411212001,800119,1 +60411212002,0,0 +60411212002,800098,0.402646502835539 +60411212002,800203,0.10586011342155 +60411212002,800204,0.491493383742911 +60411212003,800130,1 +60411212004,800129,1 +60411220001,800203,0 +60411230001,0,0 +60411230001,800014,1 +60411230002,0,0 +60411230002,800013,1 +60411241001,800004,1 +60411241002,0,0 +60411241002,800003,1 +60411241003,0,0 +60411241003,800002,1 +60411241004,800124,1 +60411242001,0,0 +60411242001,800006,1 +60411242002,800005,1 +60411242003,0,0 +60411242003,800005,0.170974155069583 +60411242003,800174,0.829025844930418 +60411242004,0,0 +60411242004,800125,1 +60411242005,800126,1 +60411250001,0,0 +60411250001,800007,1 +60411250002,800007,1 +60411250003,800127,1 +60411261001,800016,1 +60411261002,800017,1 +60411261003,800018,1 +60411261004,800008,0.0967741935483871 +60411261004,800015,0.903225806451613 +60411261005,800008,1 +60411262001,800011,1 +60411262002,0,0 +60411262002,800009,1 +60411262003,800010,1 +60411270001,800020,0.375231053604436 +60411270001,800209,0.624768946395564 +60411270002,800019,1 +60411270003,800012,1 +60411270004,800021,1 +60411270005,800022,1 +60411281001,800029,1 +60411281002,800028,1 +60411281003,800027,1 +60411282001,800023,1 +60411282002,800025,1 +60411282003,800024,1 +60411290001,800099,1 +60411290002,800128,1 +60411302011,800135,1 +60411302012,800044,1 +60411302013,800049,1 +60411302021,0,0 +60411302021,800136,0.767511177347243 +60411302021,800210,0.232488822652757 +60411302022,800045,1 +60411302023,800046,1 +60411302024,800047,1 +60411311001,0,0 +60411311001,800137,1 +60411311002,0,0 +60411311002,800138,1 +60411311003,0,0 +60411311003,800034,1 +60411321001,800031,1 +60411321002,0,0 +60411321002,800030,1 +60411322001,800076,1 +60411322002,0,0 +60411322002,800075,1 +60411322003,0,0 +60411322003,800074,0.585858585858586 +60411322003,800075,0.0151515151515152 +60411322003,800076,0.0252525252525253 +60411322003,800176,0.373737373737374 +60411330001,0,0 +60411330001,800080,0.899262899262899 +60411330001,800181,0.100737100737101 +60411330002,0,0 +60411330002,800079,1 +60411330003,0,0 +60411330003,800078,1 +60411330004,800077,1 +60419901000,0,0 +60552002011,600033,1 +60552002012,600030,1 +60552002013,600032,1 +60552002021,600036,1 +60552002022,0,0 +60552002022,600029,1 +60552002023,600028,1 +60552002031,600001,1 +60552002032,0,0 +60552002032,600001,1 +60552003011,0,0 +60552003011,600059,1 +60552003012,600058,1 +60552003013,600056,1 +60552003021,600057,1 +60552003022,600057,1 +60552004001,600064,1 +60552004002,0,0 +60552004002,600019,1 +60552004003,0,0 +60552004003,600018,1 +60552005011,600051,1 +60552005012,600052,1 +60552005013,600053,1 +60552005031,600055,1 +60552005032,0,0 +60552005032,600035,1 +60552005041,600054,1 +60552005042,600034,1 +60552005043,600069,1 +60552005051,600067,1 +60552005052,600066,1 +60552006011,600085,1 +60552006012,600038,1 +60552006013,600037,1 +60552006014,600084,1 +60552006021,600083,1 +60552006022,600081,1 +60552006023,600082,1 +60552007031,600080,1 +60552007032,600073,1 +60552007041,600079,1 +60552007042,600062,1 +60552007043,600062,1 +60552007051,600075,1 +60552007052,600071,1 +60552007061,600060,1 +60552007062,600078,1 +60552007063,600077,1 +60552007071,600061,1 +60552007072,600089,1 +60552008021,600050,1 +60552008022,600039,1 +60552008023,0,0 +60552008023,600021,1 +60552008031,600041,1 +60552008032,600020,1 +60552008041,600072,1 +60552008042,600086,1 +60552008043,600049,1 +60552008044,600040,1 +60552009001,0,0 +60552009001,600022,1 +60552010031,0,0 +60552010031,600070,1 +60552010032,600093,1 +60552010041,600106,1 +60552010042,0,0 +60552010042,600101,1 +60552010051,0,0 +60552010051,600090,0.0339622641509434 +60552010051,600107,0.966037735849057 +60552010052,600105,1 +60552010061,600095,1 +60552010062,600092,1 +60552010071,600091,1 +60552010072,600094,1 +60552011011,600087,1 +60552011012,600088,1 +60552011021,0,0 +60552011021,600076,1 +60552011022,0,0 +60552011022,600023,1 +60552012001,600044,0.310344827586207 +60552012001,600096,0.689655172413793 +60552012002,600096,1 +60552012003,600024,1 +60552012004,600025,1 +60552013001,600042,1 +60552013002,600042,1 +60552013003,600042,1 +60552014011,0,0 +60552014011,600026,1 +60552014012,0,0 +60552014012,600027,1 +60552014013,600026,1 +60552014021,600002,1 +60552014022,600005,1 +60552014023,600003,1 +60552014031,0,0 +60552014031,600097,1 +60552014032,0,0 +60552014032,600068,1 +60552015001,0,0 +60552015001,600046,1 +60552015002,0,0 +60552015002,600045,1 +60552016011,600048,1 +60552016012,600004,1 +60552016021,600047,1 +60552016022,600099,1 +60552016023,600098,1 +60552016024,600100,1 +60552017001,0,0 +60552017001,600006,1 +60552017002,600007,1 +60552017003,600103,1 +60552017004,0,0 +60552017004,600102,1 +60552017005,600009,1 +60552017006,600008,1 +60552018001,0,0 +60552018001,600011,1 +60552018002,0,0 +60552018002,600010,1 +60552019001,600012,1 +60552019002,600013,1 +60552020001,600017,1 +60552020002,600014,1 +60552020003,600015,1 +60552020004,600015,1 +60750101001,0,0 +60750101001,325,1 +60750101002,324,1 +60750102001,0,0 +60750102001,345,1 +60750102002,342,1 +60750102003,343,1 +60750103001,349,1 +60750103002,347,1 +60750103003,347,1 +60750104001,352,1 +60750104002,350,1 +60750104003,351,1 +60750104004,346,1 +60750105001,0,0 +60750105001,353,1 +60750105002,0,0 +60750105002,401,1 +60750106001,354,1 +60750106002,356,1 +60750106003,355,1 +60750107001,359,1 +60750107002,357,1 +60750107003,358,1 +60750107004,28,1 +60750108001,386,1 +60750108002,385,1 +60750108003,384,1 +60750109001,387,1 +60750109002,388,1 +60750109003,389,1 +60750110001,390,1 +60750110002,391,1 +60750110003,392,1 +60750111001,393,1 +60750111002,394,1 +60750111003,395,1 +60750112001,398,1 +60750112002,396,1 +60750112003,397,1 +60750113001,399,1 +60750113002,400,1 +60750117001,403,0.313953488372093 +60750117001,588,0.0581395348837209 +60750117001,594,0.627906976744186 +60750117002,404,0.123711340206186 +60750117002,595,0.876288659793814 +60750118001,405,1 +60750119011,29,1 +60750119012,334,1 +60750119021,335,1 +60750119022,30,1 +60750120001,423,1 +60750120002,424,1 +60750121001,425,1 +60750121002,402,1 +60750122011,336,1 +60750122012,337,1 +60750122021,338,1 +60750123011,31,1 +60750123012,32,1 +60750123021,33,1 +60750123022,34,1 +60750124011,339,1 +60750124012,340,1 +60750124021,341,1 +60750124022,360,1 +60750124023,361,1 +60750125011,362,1 +60750125012,363,1 +60750125021,35,1 +60750125022,36,1 +60750126011,364,1 +60750126021,0,0 +60750126021,365,0 +60750126021,585,1 +60750126022,366,1 +60750127001,0,0 +60750127001,428,1 +60750127002,426,1 +60750127003,427,1 +60750128001,430,1 +60750128002,429,1 +60750128003,431,1 +60750128004,431,1 +60750129011,367,1 +60750129012,368,1 +60750129021,369,1 +60750129022,370,1 +60750129023,371,1 +60750130001,436,1 +60750130002,435,1 +60750130003,434,1 +60750130004,433,1 +60750131011,372,1 +60750131012,373,1 +60750131021,374,1 +60750131022,375,1 +60750132001,440,1 +60750132002,439,1 +60750132003,438,1 +60750133001,443,1 +60750133002,444,1 +60750133003,442,1 +60750133004,441,1 +60750133005,437,1 +60750134001,463,1 +60750134002,462,1 +60750134003,461,1 +60750135001,464,1 +60750135002,465,1 +60750151001,466,1 +60750151002,467,1 +60750152001,470,1 +60750152002,469,1 +60750152003,468,1 +60750153001,472,1 +60750153002,471,1 +60750154001,474,1 +60750154002,473,1 +60750154003,476,1 +60750154004,475,1 +60750154005,477,1 +60750155001,480,1 +60750155002,479,1 +60750155003,478,1 +60750156001,482,1 +60750156002,483,1 +60750156003,481,1 +60750157001,510,1 +60750157002,509,1 +60750157003,508,0.657393850658858 +60750157003,650,0.342606149341142 +60750157004,484,1 +60750158011,376,1 +60750158012,377,1 +60750158013,378,1 +60750158021,379,1 +60750158022,380,1 +60750159001,511,1 +60750159002,512,1 +60750160001,513,1 +60750161001,516,1 +60750161002,515,0.475555555555556 +60750161002,517,0.524444444444444 +60750161003,515,1 +60750161004,514,0.899336283185841 +60750161004,515,0.100663716814159 +60750162001,293,1 +60750162002,292,1 +60750162003,285,1 +60750163001,518,1 +60750163002,519,1 +60750163003,520,1 +60750164001,522,1 +60750164002,521,1 +60750165001,526,1 +60750165002,525,1 +60750165003,524,1 +60750165004,523,1 +60750166001,527,1 +60750166002,528,1 +60750166003,530,1 +60750166004,529,1 +60750167001,532,1 +60750167002,555,1 +60750167003,554,1 +60750167003,648,0 +60750167004,531,1 +60750168011,381,1 +60750168012,382,1 +60750168013,383,1 +60750168021,406,1 +60750168022,407,1 +60750168023,408,1 +60750169001,556,1 +60750169002,557,1 +60750170001,560,1 +60750170002,558,1 +60750170003,559,1 +60750171011,409,1 +60750171012,647,1 +60750171013,411,1 +60750171021,412,1 +60750171022,413,1 +60750171023,414,1 +60750176011,568,1 +60750176012,566,1 +60750176013,564,1 +60750176014,565,1 +60750176015,37,1 +60750177001,567,0.316176470588235 +60750177001,603,0.617647058823529 +60750177001,604,0.0661764705882353 +60750177002,561,0.580592105263158 +60750177002,598,0.419407894736842 +60750178011,415,1 +60750178012,416,1 +60750178021,417,0.641347424042272 +60750178021,599,0.358652575957728 +60750178022,418,1 +60750179021,0,0 +60750179021,4,0.893292682926829 +60750179021,312,0 +60750179021,327,0 +60750179021,592,0.106707317073171 +60750179021,593,0 +60750180001,571,0.787213740458015 +60750180001,600,0.212786259541985 +60750180002,572,0.376940133037694 +60750180002,601,0.543237250554324 +60750180002,602,0.0798226164079823 +60750201001,562,0.988950276243094 +60750201001,569,0.0110497237569061 +60750201002,563,1 +60750201003,569,1 +60750201004,2,1 +60750202001,1,1 +60750202002,3,1 +60750202003,570,1 +60750203001,5,1 +60750203002,6,1 +60750203003,7,1 +60750204011,420,1 +60750204012,421,1 +60750204013,422,1 +60750204021,301,1 +60750204022,446,1 +60750205001,8,1 +60750205002,9,1 +60750205003,10,1 +60750206001,13,1 +60750206002,12,1 +60750206003,11,1 +60750206004,14,1 +60750207001,17,1 +60750207002,16,1 +60750207003,15,1 +60750208001,20,1 +60750208002,19,0.126153846153846 +60750208002,21,0.873846153846154 +60750208003,19,1 +60750208004,18,1 +60750209001,25,1 +60750209002,23,1 +60750209003,22,1 +60750209004,24,1 +60750210001,47,1 +60750210002,46,1 +60750210003,45,1 +60750210004,26,1 +60750211001,50,1 +60750211002,51,1 +60750211003,49,1 +60750211004,48,1 +60750212001,53,1 +60750212002,54,1 +60750212003,52,1 +60750213001,55,1 +60750213002,56,1 +60750214001,57,1 +60750214002,58,1 +60750214003,59,1 +60750215001,62,1 +60750215002,60,1 +60750215003,61,1 +60750215004,64,1 +60750215005,63,1 +60750216001,65,1 +60750216002,66,0.385701676963813 +60750216002,646,0.614298323036187 +60750217001,67,1 +60750217002,68,1 +60750217003,40,1 +60750218001,83,1 +60750218002,82,1 +60750218003,70,1 +60750218004,69,1 +60750226001,0,0 +60750226001,84,1 +60750226001,610,0 +60750226001,611,0 +60750226002,85,0.730848861283644 +60750226002,612,0.0041407867494824 +60750226002,613,0.262939958592133 +60750226002,614,0.0020703933747412 +60750227021,306,1 +60750227022,88,1 +60750227041,447,1 +60750227042,448,1 +60750228011,86,1 +60750228012,87,1 +60750228013,89,1 +60750228021,94,0.626050420168067 +60750228021,608,0.373949579831933 +60750228022,307,0.0309859154929577 +60750228022,609,0.969014084507042 +60750228031,91,1 +60750228032,92,1 +60750228033,41,1 +60750229011,90,1 +60750229012,93,1 +60750229013,95,1 +60750229021,96,1 +60750229022,97,1 +60750229031,308,1 +60750229032,99,1 +60750229033,309,1 +60750230011,98,1 +60750230012,100,1 +60750230013,42,1 +60750230031,310,1 +60750230032,311,1 +60750231021,623,1 +60750231022,622,1 +60750231031,327,1 +60750231032,44,0.983830845771144 +60750231032,624,0.0161691542288557 +60750232001,117,1 +60750232002,344,0.841075794621027 +60750232002,629,0.158924205378973 +60750232003,116,1 +60750233001,120,0.464516129032258 +60750233001,625,0.0370967741935484 +60750233001,626,0.498387096774194 +60750234001,121,0.855072463768116 +60750234001,627,0.144927536231884 +60750234002,122,0.578181818181818 +60750234002,628,0.421818181818182 +60750251001,124,1 +60750251002,125,1 +60750251003,123,1 +60750252001,126,1 +60750252002,146,1 +60750252003,118,1 +60750252004,119,1 +60750253001,148,1 +60750253002,150,1 +60750253003,149,1 +60750253004,147,1 +60750254011,153,1 +60750254012,313,1 +60750254013,155,1 +60750254021,114,1 +60750254022,115,1 +60750254023,151,1 +60750254031,152,1 +60750254032,154,1 +60750255001,157,1 +60750255002,158,1 +60750255003,161,1 +60750255004,183,1 +60750255005,159,1 +60750255006,160,0.704447632711621 +60750255006,638,0.295552367288379 +60750256001,185,1 +60750256002,187,1 +60750256003,186,1 +60750256004,184,1 +60750257011,449,1 +60750257012,579,1 +60750257013,450,1 +60750257021,451,1 +60750257022,71,1 +60750257023,452,1 +60750258001,189,1 +60750258002,188,1 +60750259001,190,1 +60750259002,191,1 +60750259003,192,1 +60750260011,195,1 +60750260012,316,1 +60750260021,197,1 +60750260022,156,1 +60750260031,314,1 +60750260032,315,1 +60750260041,193,1 +60750260042,196,1 +60750261001,199,0.444214876033058 +60750261001,637,0.555785123966942 +60750261002,200,0.591381872213967 +60750261002,636,0.408618127786033 +60750261003,201,1 +60750261004,198,1 +60750262001,225,1 +60750262002,226,1 +60750262003,227,1 +60750262004,228,1 +60750262005,229,1 +60750263011,231,1 +60750263012,194,1 +60750263013,235,1 +60750263021,233,1 +60750263022,234,1 +60750263023,317,1 +60750263031,318,1 +60750263032,72,1 +60750264011,240,1 +60750264012,239,1 +60750264021,230,1 +60750264022,232,0.712158808933003 +60750264022,630,0.287841191066998 +60750264023,236,1 +60750264031,319,1 +60750264032,237,1 +60750264041,320,1 +60750264042,330,1 +60750301011,270,1 +60750301012,242,1 +60750301013,243,1 +60750301014,241,1 +60750301021,271,1 +60750301022,272,1 +60750301023,291,1 +60750302011,238,1 +60750302012,273,1 +60750302013,275,1 +60750302021,277,1 +60750302022,276,1 +60750302023,331,1 +60750303011,278,1 +60750303012,274,1 +60750303013,280,1 +60750303014,282,1 +60750303021,283,1 +60750303022,332,1 +60750303023,281,1 +60750304001,642,1 +60750304002,297,1 +60750304003,296,1 +60750304004,284,1 +60750304005,299,1 +60750305001,302,1 +60750305002,302,1 +60750305003,300,1 +60750306001,303,1 +60750306002,305,1 +60750306003,304,1 +60750307001,643,0.376757263355201 +60750307001,644,0.623242736644798 +60750307002,645,1 +60750307003,326,1 +60750308001,102,0.701492537313433 +60750308001,641,0.298507462686567 +60750308002,103,1 +60750308003,104,1 +60750308004,101,1 +60750308005,329,1 +60750309001,108,1 +60750309002,109,1 +60750309003,105,1 +60750309004,106,1 +60750309005,107,1 +60750309006,110,1 +60750309007,111,1 +60750310001,112,1 +60750310002,127,1 +60750310003,128,1 +60750311001,129,1 +60750311002,131,1 +60750311003,133,1 +60750311004,132,1 +60750311005,130,1 +60750312011,453,1 +60750312012,454,1 +60750312013,455,1 +60750312014,456,1 +60750312021,457,1 +60750312022,458,1 +60750313011,459,1 +60750313012,460,1 +60750313013,485,1 +60750313021,486,1 +60750313022,487,1 +60750313023,488,0.725788900979325 +60750313023,635,0.274211099020675 +60750314001,135,1 +60750314002,134,1 +60750314003,138,1 +60750314004,137,1 +60750314005,136,1 +60750326011,489,1 +60750326012,490,1 +60750326013,491,1 +60750326021,492,1 +60750326022,493,1 +60750326023,494,1 +60750327001,141,1 +60750327002,140,1 +60750327003,142,1 +60750327004,144,1 +60750327005,145,1 +60750327006,143,1 +60750327007,139,1 +60750328011,495,1 +60750328012,496,1 +60750328013,497,1 +60750328021,498,1 +60750328022,499,1 +60750328023,500,1 +60750329011,501,1 +60750329012,502,1 +60750329013,503,1 +60750329014,504,1 +60750329021,505,1 +60750329022,506,1 +60750329023,507,1 +60750330001,164,1 +60750330002,165,1 +60750330003,166,1 +60750330004,167,1 +60750330005,163,1 +60750330006,162,1 +60750331001,171,1 +60750331002,170,1 +60750331003,169,1 +60750331004,168,1 +60750332011,279,0.221020092735703 +60750332011,640,0.778979907264297 +60750332031,533,0.513186813186813 +60750332031,639,0.486813186813187 +60750332032,533,1 +60750332041,534,1 +60750332042,73,1 +60750332043,535,1 +60750351001,174,1 +60750351002,175,1 +60750351003,176,1 +60750351004,177,1 +60750351005,179,1 +60750351006,178,1 +60750351007,180,1 +60750352011,182,1 +60750352012,0,0 +60750352012,202,1 +60750352013,203,1 +60750352014,536,1 +60750352015,204,1 +60750352021,172,1 +60750352022,173,1 +60750352023,181,1 +60750353001,207,1 +60750353002,208,1 +60750353003,209,1 +60750353004,211,1 +60750353005,210,1 +60750353006,206,1 +60750354001,0,0 +60750354001,213,1 +60750354002,214,1 +60750354003,215,1 +60750354004,537,1 +60750354005,212,1 +60750401001,218,1 +60750401002,219,1 +60750401003,216,1 +60750401004,217,1 +60750402001,223,1 +60750402002,222,1 +60750402003,221,1 +60750402004,220,1 +60750426011,538,1 +60750426012,539,1 +60750426021,540,1 +60750426022,541,1 +60750426023,542,1 +60750427001,245,1 +60750427002,244,1 +60750427003,224,1 +60750428001,247,1 +60750428002,0,0 +60750428002,74,1 +60750428003,246,1 +60750451001,250,1 +60750451002,248,1 +60750451003,249,1 +60750452001,252,1 +60750452002,255,1 +60750452003,253,1 +60750452004,254,1 +60750452005,251,1 +60750476001,256,1 +60750476002,257,1 +60750476003,258,1 +60750476004,259,1 +60750477011,205,1 +60750477012,262,1 +60750477013,263,1 +60750477021,333,1 +60750477022,260,1 +60750477023,264,1 +60750478011,543,1 +60750478012,75,1 +60750478013,544,1 +60750478021,545,1 +60750478022,546,1 +60750478023,547,1 +60750479011,266,1 +60750479012,0,0 +60750479012,76,1 +60750479013,548,1 +60750479014,265,1 +60750479015,268,1 +60750479021,267,1 +60750479022,269,1 +60750479023,261,1 +60750601001,0,0 +60750601001,286,0.630630630630631 +60750601001,584,0.369369369369369 +60750604001,0,0 +60750604001,287,0.688311688311688 +60750604001,633,0.311688311688312 +60750604001,634,0 +60750605021,321,1 +60750605022,322,1 +60750605023,323,1 +60750607001,0,0 +60750607001,288,0.0315423683507084 +60750607001,289,0.0133654103180968 +60750607001,290,0 +60750607001,586,0.554129911788292 +60750607001,605,0.0593424218123496 +60750607001,606,0.134990644212777 +60750607001,607,0.141673349371826 +60750607001,651,0.0649558941459503 +60750607002,289,0 +60750607002,605,1 +60750607003,290,1 +60750610001,0,0 +60750610001,294,0.984463276836158 +60750610001,631,0.0155367231638418 +60750610002,295,0.710407239819005 +60750610002,632,0.289592760180995 +60750611001,549,1 +60750611002,550,1 +60750611003,551,1 +60750612001,43,1 +60750612002,553,1 +60750614001,573,1 +60750614002,574,1 +60750614003,575,1 +60750615001,0,0 +60750615001,581,0.220853858784893 +60750615001,590,0.665024630541872 +60750615001,597,0.114121510673235 +60750615002,27,1 +60750615003,0,0 +60750615003,81,1 +60750615004,38,1 +60750615005,39,1 +60750615006,0,0 +60750615006,419,1 +60759802001,0,0 +60759802001,77,1 +60759803001,0,0 +60759803001,576,0 +60759803001,649,1 +60759804011,0,0 +60759804011,287,0 +60759805011,78,1 +60759806001,0,0 +60759806001,79,1 +60759809001,0,0 +60759809001,578,0.0273972602739726 +60759809001,582,0.0410958904109589 +60759809001,583,0.349315068493151 +60759809001,615,0.410958904109589 +60759809001,616,0 +60759809001,617,0.00684931506849315 +60759809001,618,0.13013698630137 +60759809001,619,0.0342465753424658 +60759809001,620,0 +60759809001,621,0 +60759901000,0,0 +60816001001,0,0 +60816001001,100071,1 +60816001001,100463,0 +60816001002,100071,1 +60816001003,100071,1 +60816002001,100165,1 +60816002002,100166,1 +60816003001,100167,1 +60816003002,100372,1 +60816004011,100201,1 +60816004012,100202,1 +60816004021,100173,1 +60816004022,100110,1 +60816004023,100203,1 +60816005001,100375,1 +60816005002,100168,1 +60816005003,100374,1 +60816005004,100437,1 +60816005005,100347,1 +60816006001,100192,1 +60816006002,100191,1 +60816007001,100195,1 +60816007002,100193,1 +60816007003,100194,1 +60816007004,100196,1 +60816008001,100197,1 +60816008002,100197,1 +60816008003,100246,1 +60816008004,100246,1 +60816009001,100199,1 +60816009002,0,0 +60816009002,100376,1 +60816010001,0,0 +60816010001,100224,1 +60816010002,100224,1 +60816010003,100224,1 +60816010004,100224,1 +60816011001,100227,1 +60816011002,100228,1 +60816011003,100230,1 +60816011004,100226,1 +60816011005,100228,1 +60816012001,100247,1 +60816012002,100073,1 +60816012003,100410,1 +60816012004,100073,1 +60816013001,100413,1 +60816013002,100204,1 +60816013003,100412,1 +60816013004,100204,1 +60816014001,100257,1 +60816014002,100258,1 +60816014003,100259,1 +60816015011,100109,1 +60816015012,100108,1 +60816015013,100107,1 +60816015021,100106,1 +60816015022,100105,1 +60816016011,100451,1 +60816016012,100409,1 +60816016031,100293,1 +60816016032,100294,1 +60816016033,100293,1 +60816016041,100260,1 +60816016051,100271,1 +60816016052,100272,1 +60816016053,100273,1 +60816016054,100274,1 +60816017001,100050,1 +60816017002,100027,1 +60816017003,100051,1 +60816018001,100452,1 +60816018002,100453,1 +60816019011,100111,1 +60816019012,100206,1 +60816019013,100207,1 +60816019021,100231,1 +60816019022,100112,1 +60816019023,100232,1 +60816020001,100454,1 +60816020002,100052,1 +60816020003,100052,1 +60816020004,100052,1 +60816020005,100052,1 +60816021001,100056,1 +60816021002,100057,1 +60816021003,100076,1 +60816022001,100077,1 +60816022002,100078,1 +60816022003,100078,1 +60816022004,100078,1 +60816023001,0,0 +60816023001,100015,0.0586011342155009 +60816023001,100427,0 +60816023001,100466,0.941398865784499 +60816024001,100455,1 +60816024002,100081,1 +60816024003,100233,1 +60816024004,100234,1 +60816025001,100235,1 +60816025002,100082,0.872941176470588 +60816025002,100235,0.127058823529412 +60816025003,100235,1 +60816026001,100083,1 +60816026002,100084,1 +60816026003,100263,1 +60816026004,100264,1 +60816027001,100292,1 +60816027002,100292,1 +60816027003,100385,1 +60816027004,100270,1 +60816028001,100261,1 +60816028002,100261,1 +60816028003,100262,1 +60816029001,0,0 +60816029001,100012,1 +60816029002,100383,1 +60816030001,100384,1 +60816030002,100384,1 +60816030003,100416,1 +60816030004,0,0 +60816030004,100013,1 +60816031001,100417,1 +60816031002,0,0 +60816031002,100014,1 +60816032001,100420,1 +60816032002,100419,1 +60816032003,100418,1 +60816032004,0,0 +60816032004,100016,1 +60816033001,100421,1 +60816033002,100422,1 +60816033003,100017,1 +60816034001,100018,1 +60816034002,100285,1 +60816034003,100286,1 +60816034004,100287,1 +60816037001,100459,1 +60816037002,100458,1 +60816038011,100265,1 +60816038021,100266,1 +60816038022,100137,1 +60816039001,100461,1 +60816039002,100296,1 +60816039003,100021,1 +60816039004,100462,1 +60816039005,100462,1 +60816039006,100021,1 +60816040001,100023,1 +60816040002,100022,1 +60816040003,100024,1 +60816041011,100043,1 +60816041012,100046,1 +60816041013,100019,1 +60816041021,100025,1 +60816041021,100464,0 +60816041021,100465,0 +60816042001,100020,1 +60816042002,100020,1 +60816042003,100042,1 +60816044001,100298,1 +60816044002,0,0 +60816044002,100044,1 +60816044003,100297,1 +60816045001,100332,1 +60816045002,100331,1 +60816045003,100299,1 +60816046001,100045,1 +60816046002,100333,1 +60816047001,100334,1 +60816047002,100335,1 +60816048001,100381,1 +60816048002,100379,1 +60816048003,100380,1 +60816049001,100074,1 +60816049002,100382,1 +60816050001,100099,1 +60816050002,100100,1 +60816050003,100048,1 +60816050004,100047,1 +60816050005,100075,1 +60816051001,100072,1 +60816051002,0,0 +60816051002,100101,1 +60816052001,100103,1 +60816052002,100104,1 +60816052003,100102,1 +60816052004,100128,1 +60816053001,100130,1 +60816053002,100129,1 +60816053003,100049,1 +60816053004,100131,1 +60816054001,100136,1 +60816054002,100133,1 +60816054003,100132,1 +60816054004,100134,1 +60816054005,0,0 +60816054005,100135,1 +60816055001,100162,1 +60816055002,100164,1 +60816055003,100163,1 +60816056001,100116,1 +60816056002,100239,1 +60816056003,100240,1 +60816056004,100307,1 +60816057001,100242,1 +60816057002,100309,1 +60816057003,100308,1 +60816057004,100241,1 +60816058001,100038,1 +60816058002,100037,1 +60816058003,100039,1 +60816059001,100040,1 +60816059002,100041,1 +60816059003,100063,1 +60816060001,100117,1 +60816060002,100064,1 +60816061001,0,0 +60816061001,100065,1 +60816061002,100066,1 +60816061003,100067,1 +60816062001,100091,1 +60816062002,100069,1 +60816062003,100070,1 +60816062004,100068,1 +60816063001,100095,1 +60816063002,100093,1 +60816063003,100092,1 +60816064001,100322,1 +60816064002,100323,1 +60816064003,100324,1 +60816064004,100267,1 +60816065001,100326,1 +60816065002,100328,1 +60816065003,100327,1 +60816065004,100325,1 +60816066001,100329,1 +60816066002,100330,1 +60816066003,100094,1 +60816067001,100276,1 +60816067002,100310,1 +60816068001,100311,1 +60816068002,100311,1 +60816069001,100238,1 +60816069002,100237,1 +60816070001,100097,1 +60816070002,100097,1 +60816071001,100122,1 +60816071002,100098,1 +60816071003,100096,1 +60816072001,100125,1 +60816072002,100124,1 +60816073001,100126,1 +60816073002,100154,1 +60816073003,100126,1 +60816074001,100156,1 +60816074002,100157,1 +60816074003,100155,1 +60816075001,100158,1 +60816076001,100123,1 +60816076002,100123,1 +60816076003,100123,1 +60816076004,100123,1 +60816077011,100186,1 +60816077012,100185,1 +60816077013,100184,1 +60816077021,100187,1 +60816077022,100188,1 +60816078001,0,0 +60816078001,100189,1 +60816078002,100174,1 +60816079001,100200,1 +60816079002,100268,1 +60816079003,0,0 +60816079003,100200,1 +60816080011,100177,1 +60816080012,0,0 +60816080012,100151,1 +60816080021,0,0 +60816080021,100180,1 +60816080022,0,0 +60816080022,100178,1 +60816080023,0,0 +60816080023,100178,1 +60816080041,0,0 +60816080041,100183,1 +60816080042,100182,1 +60816080043,0,0 +60816080043,100198,1 +60816080044,0,0 +60816080044,100300,1 +60816080131,0,0 +60816080131,100179,1 +60816080132,100181,1 +60816080133,0,0 +60816080133,100211,1 +60816080231,0,0 +60816080231,100190,1 +60816080232,100212,1 +60816081001,0,0 +60816081001,100213,1 +60816082001,0,0 +60816082001,100214,1 +60816083001,0,0 +60816083001,100215,1 +60816083002,0,0 +60816083002,100301,1 +60816084001,0,0 +60816084001,100217,1 +60816084002,0,0 +60816084002,100216,1 +60816084003,100216,1 +60816085011,100218,1 +60816085012,100219,1 +60816085013,100221,1 +60816085014,100220,1 +60816085021,100222,1 +60816086001,100032,1 +60816086002,0,0 +60816086002,100032,1 +60816086003,100032,1 +60816087001,100062,1 +60816087002,100059,1 +60816087003,100059,1 +60816087004,100085,1 +60816087005,100061,1 +60816088001,100088,1 +60816088002,100089,1 +60816088003,100087,1 +60816088004,100090,1 +60816088005,100086,1 +60816089001,100344,1 +60816089002,100303,1 +60816089003,0,0 +60816089003,100304,1 +60816089004,100305,1 +60816090001,100115,1 +60816090002,100113,1 +60816091001,100345,1 +60816091002,100009,1 +60816092011,100138,1 +60816092012,100139,1 +60816092013,100139,1 +60816092021,100140,1 +60816092022,100336,1 +60816093001,100011,1 +60816093002,100010,1 +60816094001,100034,1 +60816095001,100036,1 +60816095002,100035,1 +60816096011,100346,1 +60816096021,100438,1 +60816096031,100435,1 +60816096032,100349,1 +60816096033,100348,1 +60816096034,100436,1 +60816097001,100152,1 +60816097002,100351,1 +60816098001,100357,1 +60816098002,100352,1 +60816098003,100356,1 +60816098004,100350,1 +60816099001,100026,1 +60816099002,100354,1 +60816100001,100360,1 +60816100002,100355,1 +60816100003,100361,1 +60816101001,100362,1 +60816102011,100288,1 +60816102012,100288,1 +60816102013,100289,1 +60816102014,100337,1 +60816102021,0,0 +60816102021,100290,1 +60816102031,100402,1 +60816102032,100370,1 +60816103021,0,0 +60816103021,100338,1 +60816103031,100340,1 +60816103032,0,0 +60816103032,100405,1 +60816103033,0,0 +60816103033,100339,1 +60816103034,0,0 +60816103034,100340,1 +60816103041,100407,1 +60816103042,0,0 +60816103042,100225,1 +60816103043,0,0 +60816103043,100236,1 +60816104001,100441,1 +60816104002,100341,1 +60816105001,100467,1 +60816105002,100315,1 +60816105003,100317,1 +60816105004,100318,1 +60816106011,100319,1 +60816106012,100363,1 +60816106013,100320,1 +60816106021,100291,1 +60816106022,100291,1 +60816106023,100291,1 +60816107001,100442,1 +60816107002,100342,1 +60816108001,100443,1 +60816108002,100343,1 +60816109001,100445,1 +60816109002,100446,1 +60816109003,100444,1 +60816109004,100386,1 +60816110001,100448,1 +60816110002,100450,1 +60816110003,100449,1 +60816110004,100447,1 +60816111001,100153,1 +60816111002,100006,1 +60816111003,0,0 +60816111003,100176,1 +60816112001,100007,1 +60816113001,100396,1 +60816113002,100395,1 +60816113003,100395,1 +60816113004,100398,1 +60816114001,100002,1 +60816114002,100003,1 +60816114003,100005,1 +60816114004,100004,1 +60816115001,100028,1 +60816115002,100030,1 +60816115003,100029,1 +60816116001,100277,1 +60816116002,100278,1 +60816117001,100280,1 +60816117002,100279,1 +60816117003,100399,1 +60816117004,0,0 +60816117004,100387,0 +60816118001,0,0 +60816118001,100118,1 +60816118002,100119,1 +60816119001,100121,1 +60816119002,0,0 +60816119002,100146,1 +60816119003,100120,1 +60816119004,0,0 +60816119004,100401,1 +60816119005,100145,1 +60816119006,100144,1 +60816120001,100147,1 +60816120002,100148,1 +60816120003,100149,1 +60816120004,100388,1 +60816121001,100440,1 +60816121002,100150,1 +60816121003,100389,1 +60816121004,100390,1 +60816121005,100391,1 +60816125001,100001,1 +60816125002,100392,1 +60816125003,100248,1 +60816126001,100282,1 +60816126002,100283,1 +60816126003,100284,1 +60816126004,100393,1 +60816127001,100114,1 +60816127002,100281,1 +60816128001,100313,1 +60816128002,100428,1 +60816129001,100243,1 +60816129002,100306,1 +60816129003,100429,1 +60816129004,100314,1 +60816130001,100312,1 +60816130002,0,0 +60816130002,100275,1 +60816132001,0,0 +60816132001,100252,1 +60816132002,100430,1 +60816132003,100433,1 +60816132004,100432,1 +60816132005,100430,1 +60816133001,100008,1 +60816133002,100031,1 +60816134001,100245,1 +60816134002,100244,1 +60816134003,100439,1 +60816135011,0,0 +60816135011,100434,1 +60816135012,0,0 +60816135012,100353,1 +60816135021,100365,1 +60816135022,0,0 +60816135022,100223,1 +60816135023,100223,1 +60816135024,100223,1 +60816136001,0,0 +60816136001,100249,1 +60816136002,100369,1 +60816136003,100371,1 +60816136004,0,0 +60816136004,100371,1 +60816137001,100251,1 +60816137002,0,0 +60816137002,100250,1 +60816137003,0,0 +60816137003,100394,1 +60816137004,0,0 +60816137004,100423,1 +60816137005,100423,1 +60816138001,0,0 +60816138001,100368,1 +60816138002,0,0 +60816138002,100373,1 +60816138003,0,0 +60816138003,100255,1 +60816138004,0,0 +60816138004,100254,1 +60816139001,100141,1 +60816139002,100142,1 +60816139003,100143,1 +60816139004,100170,1 +60816139005,100171,1 +60816140001,100425,1 +60816140002,100169,1 +60816140003,100172,1 +60819843001,0,0 +60819843001,100426,0 +60819901000,0,0 +60855001001,200258,1 +60855001002,200908,1 +60855001003,200257,1 +60855001004,200907,1 +60855002001,200906,1 +60855002002,200905,0 +60855002003,200904,1 +60855002004,200307,1 +60855003001,200158,1 +60855003002,200949,1 +60855004001,200859,1 +60855004002,200972,1 +60855005001,200857,1 +60855005002,200259,1 +60855005003,200855,1 +60855005004,200860,1 +60855005005,200856,1 +60855006001,200808,1 +60855006002,200858,1 +60855006003,200921,1 +60855008001,200160,0.409356725146199 +60855008001,201092,0.590643274853801 +60855008002,200172,1 +60855009011,200920,1 +60855009012,200919,1 +60855009021,200309,1 +60855009022,200128,1 +60855010001,200917,1 +60855010002,200916,1 +60855010003,200915,1 +60855010004,200914,1 +60855010005,200912,1 +60855011011,200869,1 +60855011012,200177,1 +60855011021,200913,1 +60855011022,200312,1 +60855011023,200312,1 +60855012001,200868,1 +60855012002,200870,1 +60855012003,200867,1 +60855012004,200864,1 +60855013001,200866,1 +60855013002,200865,1 +60855013003,200863,1 +60855013004,200762,1 +60855014011,200871,1 +60855014012,200364,1 +60855014021,200817,1 +60855014022,200816,1 +60855015011,200302,1 +60855015012,200302,1 +60855015021,200814,1 +60855015022,200815,1 +60855016001,200813,1 +60855016002,200310,1 +60855016003,200812,1 +60855016004,200811,1 +60855016005,200810,1 +60855017001,200103,1 +60855017002,200809,1 +60855017003,200764,1 +60855017004,200304,1 +60855018001,200162,1 +60855018002,200161,1 +60855018003,200763,1 +60855018004,200760,1 +60855019001,200758,1 +60855019002,200173,1 +60855020011,200757,1 +60855020012,200603,0.00831024930747922 +60855020012,200756,0.991689750692521 +60855020013,200712,1 +60855020014,200192,1 +60855020021,200218,1 +60855020022,200218,1 +60855020023,200218,1 +60855021011,201072,1 +60855021012,200711,1 +60855021013,200708,1 +60855021021,200709,1 +60855021022,200710,1 +60855021023,200707,1 +60855021024,200706,1 +60855022011,200033,1 +60855022012,200831,1 +60855022021,200940,1 +60855022022,200989,1 +60855022023,200664,1 +60855023011,200200,1 +60855023012,200084,1 +60855023021,200663,1 +60855023022,200501,1 +60855024001,200456,1 +60855024002,200452,1 +60855024003,200500,1 +60855024004,200454,1 +60855024005,200032,1 +60855024006,200453,1 +60855024007,200455,1 +60855025001,200406,1 +60855025002,200407,1 +60855025003,200405,1 +60855025004,200404,1 +60855025005,200487,1 +60855025006,200203,1 +60855026011,200457,1 +60855026012,200401,1 +60855026013,200862,1 +60855026031,200054,1 +60855026032,200402,1 +60855026033,200400,1 +60855026041,200204,1 +60855026042,200021,1 +60855026043,200021,1 +60855027011,200403,1 +60855027012,200349,1 +60855027013,0,0 +60855027013,200759,1 +60855027021,200451,1 +60855027022,200416,1 +60855027023,200347,1 +60855027024,200100,1 +60855027025,200071,1 +60855028001,200344,1 +60855028002,200211,1 +60855028003,200345,1 +60855029011,200415,1 +60855029012,200287,1 +60855029013,200287,1 +60855029014,200348,1 +60855029021,200861,1 +60855029022,200286,1 +60855029023,200285,1 +60855029031,200283,1 +60855029032,201054,1 +60855029033,201053,1 +60855029061,200212,1 +60855029062,200088,1 +60855029063,200088,1 +60855029071,201049,1 +60855029072,201052,1 +60855029081,201004,1 +60855029082,201048,1 +60855029083,201002,1 +60855029091,201000,1 +60855029092,201000,1 +60855029093,201000,1 +60855029094,201050,1 +60855029101,200491,1 +60855029102,200491,1 +60855029103,200221,1 +60855029104,201051,1 +60855030011,200999,1 +60855030012,200488,1 +60855030013,200284,1 +60855030021,200998,1 +60855030022,200953,1 +60855030031,200903,1 +60855030032,200903,1 +60855030033,200956,1 +60855030034,200951,1 +60855031051,200189,1 +60855031081,200901,1 +60855031082,200092,1 +60855031083,200303,1 +60855031084,200113,1 +60855031101,200365,1 +60855031102,200615,1 +60855031103,200051,1 +60855031111,200112,1 +60855031112,200030,1 +60855031113,200747,1 +60855031121,200900,1 +60855031122,200898,1 +60855031131,200191,1 +60855031132,200899,1 +60855031151,200159,0.538554703270085 +60855031151,201082,0 +60855031151,201083,0.346790472345579 +60855031151,201084,0.114654824384336 +60855031161,200110,1 +60855031162,200109,1 +60855031171,200111,1 +60855031172,200111,1 +60855031181,200174,1 +60855031182,200311,1 +60855031183,200368,1 +60855031211,200188,1 +60855031212,200369,1 +60855031221,200102,1 +60855031222,200102,1 +60855031231,200052,1 +60855031232,200052,1 +60855032041,200849,1 +60855032042,200854,1 +60855032043,201027,1 +60855032044,200982,1 +60855032045,200854,1 +60855032071,200614,1 +60855032072,200614,1 +60855032081,200852,1 +60855032082,200850,1 +60855032101,200696,1 +60855032102,200981,1 +60855032111,200133,1 +60855032112,200542,1 +60855032121,200848,1 +60855032122,200226,1 +60855032123,200851,1 +60855032131,200873,1 +60855032132,200873,1 +60855032141,200798,1 +60855032142,200902,1 +60855032171,200801,1 +60855032172,200853,1 +60855032173,200799,1 +60855032181,201028,1 +60855032182,200797,1 +60855033041,200535,1 +60855033042,200748,1 +60855033043,200748,1 +60855033044,200571,1 +60855033051,200796,1 +60855033052,200450,1 +60855033053,200840,1 +60855033061,200136,1 +60855033062,200050,1 +60855033063,200544,1 +60855033121,200141,1 +60855033122,200980,1 +60855033123,200139,1 +60855033131,200569,1 +60855033132,200567,1 +60855033133,200692,1 +60855033151,200694,1 +60855033152,200570,1 +60855033153,200497,1 +60855033211,0,0 +60855033211,200494,1 +60855033212,200646,1 +60855033221,200818,1 +60855033222,200495,1 +60855033223,200566,1 +60855033231,200595,1 +60855033232,200645,1 +60855033241,200597,1 +60855033242,200593,1 +60855033251,200151,1 +60855033252,200151,1 +60855033261,200305,1 +60855033262,200163,1 +60855033271,200596,1 +60855033272,200745,1 +60855033273,200979,1 +60855033291,200150,1 +60855033292,200231,1 +60855033301,200155,1 +60855033302,200155,1 +60855033303,200306,1 +60855033311,200642,1 +60855033312,200642,1 +60855033321,200165,1 +60855033322,200126,1 +60855033323,200121,1 +60855033324,200164,1 +60855033331,200153,1 +60855033332,200122,1 +60855033341,200154,1 +60855033342,200123,1 +60855033343,200127,1 +60855033361,200693,1 +60855033362,200230,1 +60855033371,200978,1 +60855033372,200697,1 +60855034011,200034,1 +60855034012,200034,1 +60855034013,200034,1 +60855034021,200049,1 +60855034022,200029,1 +60855034023,200029,1 +60855035041,200716,1 +60855035042,200547,1 +60855035043,200138,1 +60855035044,200138,1 +60855035045,200228,1 +60855035061,200445,1 +60855035062,200548,1 +60855035063,200137,1 +60855035071,200232,1 +60855035072,200229,1 +60855035081,200643,1 +60855035082,200698,1 +60855035091,200568,1 +60855035092,200132,1 +60855035093,200140,1 +60855035101,200800,1 +60855035102,200695,1 +60855035103,200886,1 +60855035111,200449,1 +60855035112,200496,1 +60855036011,200543,1 +60855036012,200498,1 +60855036021,200446,1 +60855036022,200367,1 +60855036023,200366,1 +60855037031,200187,1 +60855037032,200546,1 +60855037033,200545,1 +60855037071,200520,1 +60855037072,200398,1 +60855037073,200447,1 +60855037081,200397,1 +60855037082,200954,1 +60855037091,200396,1 +60855037092,200179,1 +60855037093,200182,1 +60855037101,200166,1 +60855037102,200167,1 +60855037111,200142,1 +60855037112,200143,1 +60855037113,200448,1 +60855037121,200399,1 +60855037122,200168,1 +60855037131,200170,1 +60855037132,200169,1 +60855038021,200444,1 +60855038022,200395,1 +60855038023,200969,1 +60855038024,200233,1 +60855038031,200342,1 +60855038032,200968,1 +60855038041,200171,1 +60855038042,200394,1 +60855038043,200178,1 +60855039021,200181,1 +60855039022,200185,1 +60855039023,200690,1 +60855039024,200180,1 +60855039031,200245,1 +60855039032,200244,1 +60855040011,200186,1 +60855040012,200282,1 +60855040013,200145,1 +60855040021,200341,1 +60855040022,200519,1 +60855041011,200967,1 +60855041012,200340,1 +60855041021,200339,1 +60855041022,200281,1 +60855041023,200338,1 +60855042011,200279,1 +60855042012,200966,1 +60855042013,200278,1 +60855042021,200277,1 +60855042022,200277,1 +60855042023,200964,1 +60855043071,200183,1 +60855043072,200184,1 +60855043081,200275,1 +60855043082,200274,1 +60855043083,200276,1 +60855043111,201074,1 +60855043112,200807,1 +60855043113,200040,1 +60855043141,200802,1 +60855043142,200803,1 +60855043143,200755,1 +60855043144,200190,1 +60855043151,200754,1 +60855043152,200753,1 +60855043153,200751,1 +60855043154,200031,1 +60855043155,200280,1 +60855043161,200752,1 +60855043162,200804,1 +60855043163,200750,1 +60855043171,200201,1 +60855043172,200705,1 +60855043181,200703,1 +60855043182,201073,1 +60855043183,200057,1 +60855043191,200700,1 +60855043192,200699,1 +60855043193,200994,1 +60855043201,200246,1 +60855043202,200246,1 +60855043211,200652,1 +60855043212,200193,1 +60855043213,200653,1 +60855043221,200196,1 +60855043222,200202,1 +60855043223,200195,1 +60855043231,200806,1 +60855043232,200053,1 +60855043233,200130,1 +60855044101,200651,1 +60855044102,200247,1 +60855044111,200702,1 +60855044112,200649,1 +60855044121,200197,1 +60855044122,200650,1 +60855044123,200650,1 +60855044124,200650,1 +60855044131,200819,1 +60855044141,0,0 +60855044141,200823,1 +60855044142,200821,1 +60855044143,0,0 +60855044143,200250,1 +60855044151,200872,1 +60855044152,200208,1 +60855044153,200147,1 +60855044161,200648,1 +60855044162,200718,1 +60855044171,200106,1 +60855044181,200198,1 +60855044182,200518,1 +60855044183,200209,1 +60855044201,200248,1 +60855044202,200248,1 +60855044203,200248,1 +60855044211,200206,1 +60855044212,200822,1 +60855044213,200207,1 +60855044221,200874,1 +60855044222,200805,1 +60855044231,200194,1 +60855045041,200105,1 +60855045042,200220,0 +60855045043,200144,1 +60855045044,200249,0.381647549530761 +60855045044,201079,0.238269030239833 +60855045044,201080,0.328988529718457 +60855045044,201081,0.0510948905109489 +60855045051,200104,1 +60855045052,200824,1 +60855045053,200770,1 +60855045061,200148,1 +60855045062,200219,1 +60855045063,200146,1 +60855045071,200771,1 +60855045072,200771,1 +60855045073,200771,1 +60855045074,200771,1 +60855046011,0,0 +60855046011,200768,0.997109826589595 +60855046011,201087,0.00289017341040462 +60855046021,0,0 +60855046021,200626,1 +60855046021,201088,0 +60855046021,201089,0 +60855047001,200933,1 +60855048021,200932,1 +60855048022,200929,1 +60855048023,200884,1 +60855048031,200654,1 +60855048032,200930,1 +60855048051,200606,1 +60855048052,200606,1 +60855048061,200640,1 +60855048062,200640,1 +60855049011,200486,1 +60855050011,200883,1 +60855050012,200485,1 +60855050013,200234,1 +60855050014,200881,1 +60855050015,200235,1 +60855050061,200251,1 +60855050062,200236,0.934253780407627 +60855050062,201076,0.0657462195923734 +60855050071,200010,1 +60855050072,200010,1 +60855050081,200224,1 +60855050082,200225,0 +60855050091,200223,1 +60855050092,200120,1 +60855050093,200131,1 +60855051001,200833,1 +60855051002,200879,1 +60855052021,200605,1 +60855052022,200604,1 +60855052023,200484,1 +60855052023,201077,0 +60855052023,201078,0 +60855052031,200432,1 +60855052032,200480,1 +60855053011,200434,1 +60855053012,200433,1 +60855053013,200435,1 +60855053014,200934,1 +60855053021,200430,1 +60855053022,200431,1 +60855053031,200384,1 +60855053032,200383,1 +60855053033,200382,1 +60855053034,200326,1 +60855053041,200380,1 +60855053042,200379,1 +60855053043,200378,1 +60855053044,200385,1 +60855053051,200238,1 +60855053052,200328,1 +60855053053,200381,1 +60855053054,200327,1 +60855054011,200324,1 +60855054012,200325,1 +60855054013,200273,1 +60855054014,200322,1 +60855054015,200329,1 +60855054021,200323,1 +60855054022,200321,1 +60855054031,201047,1 +60855054032,201046,1 +60855054033,201043,1 +60855055001,201044,1 +60855055002,201042,1 +60855055003,200012,1 +60855056001,200011,1 +60855056002,200011,1 +60855056003,201040,1 +60855057001,201039,1 +60855057002,200997,1 +60855057003,200992,1 +60855057004,200991,1 +60855058001,200990,1 +60855058002,200629,1 +60855058003,200948,1 +60855058004,200602,1 +60855059001,200993,1 +60855059002,200947,1 +60855059003,200601,1 +60855059004,200600,1 +60855059005,200945,1 +60855060001,200946,1 +60855060002,200944,1 +60855060003,200896,1 +60855060004,200386,1 +60855061011,200897,1 +60855061012,200943,1 +60855061013,200556,1 +60855061021,200895,1 +60855061022,200894,1 +60855061031,200847,1 +60855061032,200845,1 +60855061033,200846,1 +60855061034,200846,1 +60855062021,200844,1 +60855062022,200598,1 +60855062023,200893,1 +60855062031,200243,1 +60855062032,200554,1 +60855062033,200243,1 +60855062041,200843,1 +60855062042,200599,1 +60855062043,200551,1 +60855062044,200553,1 +60855063011,200555,1 +60855063012,200308,1 +60855063013,200550,1 +60855063014,200505,1 +60855063021,200503,1 +60855063022,200503,1 +60855063023,200503,1 +60855063041,200003,1 +60855063042,200003,1 +60855063043,200003,1 +60855063051,200557,1 +60855063052,200641,1 +60855063053,200002,1 +60855063054,200004,1 +60855064011,200242,1 +60855064012,200156,1 +60855064021,200638,1 +60855064022,200636,1 +60855064023,200637,1 +60855064024,200363,1 +60855065011,200589,1 +60855065012,200589,1 +60855065013,200589,1 +60855065021,200070,1 +60855065022,200070,1 +60855065023,0,0 +60855065023,200067,1 +60855065031,200362,1 +60855065032,200639,1 +60855065033,200429,1 +60855066011,200590,1 +60855066012,200634,1 +60855066013,200481,1 +60855066031,200832,1 +60855066032,200878,1 +60855066033,200482,1 +60855066041,200588,1 +60855066042,200635,1 +60855066043,200779,1 +60855066044,200586,1 +60855066045,200361,1 +60855066051,200793,1 +60855066052,200587,1 +60855066061,200360,1 +60855066062,200584,1 +60855066063,200585,1 +60855067011,200541,1 +60855067012,200358,1 +60855067013,200538,1 +60855067021,200357,1 +60855067022,200069,1 +60855067023,200068,1 +60855067031,200536,1 +60855067032,200300,1 +60855067033,200359,1 +60855068011,200971,1 +60855068012,200970,1 +60855068013,200928,1 +60855068014,200677,1 +60855068021,200493,1 +60855068022,200927,1 +60855068023,200955,1 +60855068024,200086,1 +60855068025,200086,1 +60855068031,200087,1 +60855068032,200346,1 +60855068033,200489,1 +60855068034,200490,1 +60855068041,200442,1 +60855068042,200442,1 +60855068043,200213,1 +60855068044,200441,1 +60855069001,200537,1 +60855069002,200254,1 +60855069003,201041,1 +60855069004,200926,1 +60855070011,200007,1 +60855070012,200007,1 +60855070013,200767,1 +60855070014,200007,1 +60855070021,200516,1 +60855070022,200255,1 +60855071001,0,0 +60855071001,200996,1 +60855071002,200925,1 +60855072031,200517,1 +60855072032,200443,1 +60855072051,200301,1 +60855072052,200922,1 +60855072053,200766,1 +60855072054,200877,1 +60855072061,200723,1 +60855072062,200723,1 +60855073011,200792,1 +60855073012,200791,1 +60855073013,200790,1 +60855073014,200515,1 +60855073015,200722,1 +60855073016,200788,1 +60855073021,200743,1 +60855073022,200743,1 +60855074011,200786,1 +60855074012,200739,1 +60855074013,200744,1 +60855074014,200741,1 +60855074015,200741,1 +60855074021,200740,1 +60855074022,200688,1 +60855074023,200689,1 +60855075001,200687,1 +60855075002,200264,1 +60855075003,200685,1 +60855075004,200265,1 +60855076001,200261,1 +60855076002,200876,1 +60855076003,201030,1 +60855076004,200260,1 +60855077011,200765,1 +60855077012,201032,1 +60855077013,200262,1 +60855077021,200263,1 +60855077022,200263,1 +60855077023,0,0 +60855077023,201031,1 +60855077031,200299,1 +60855077032,201071,1 +60855077033,200995,1 +60855077034,0,0 +60855077034,200298,1 +60855077035,200298,1 +60855078051,200297,1 +60855078052,200479,1 +60855078053,200830,1 +60855078061,200295,1 +60855078062,200439,1 +60855078063,200440,1 +60855078071,201068,1 +60855078072,200438,1 +60855078081,201066,1 +60855078082,200829,1 +60855078083,200437,1 +60855078084,200540,1 +60855079031,201065,1 +60855079032,201064,1 +60855079041,200393,1 +60855079042,200436,1 +60855079051,200390,1 +60855079052,200389,1 +60855079053,200391,1 +60855079061,200388,1 +60855079062,200387,1 +60855079063,200337,1 +60855079064,201063,1 +60855080011,201062,1 +60855080012,201062,1 +60855080013,200016,1 +60855080014,200042,1 +60855080031,200018,1 +60855080032,201020,1 +60855080041,200013,1 +60855080042,200019,1 +60855080043,200336,1 +60855081011,201019,1 +60855081012,200296,1 +60855081013,201033,1 +60855081021,200827,1 +60855082021,201018,1 +60855082022,200885,1 +60855082023,200778,1 +60855082024,200778,1 +60855082025,200776,1 +60855082031,200777,1 +60855082032,201015,1 +60855082033,200841,1 +60855082041,200774,1 +60855082042,200773,1 +60855082043,200730,1 +60855083011,201093,1 +60855083012,200017,1 +60855083013,200775,1 +60855083031,201014,1 +60855083032,200678,1 +60855083041,200726,1 +60855083042,200725,1 +60855083043,200724,1 +60855083044,200676,1 +60855083045,200676,1 +60855084011,201013,1 +60855084012,201012,1 +60855084013,200673,1 +60855084014,200673,1 +60855084015,200672,1 +60855084016,200731,1 +60855084031,200727,1 +60855084032,200627,1 +60855084033,200647,1 +60855084041,200271,0.10495867768595 +60855084041,200625,0.89504132231405 +60855084042,200624,1 +60855084043,200620,1 +60855085031,200469,1 +60855085032,200578,1 +60855085033,200577,1 +60855085041,200622,1 +60855085042,200621,1 +60855085043,200842,1 +60855085044,200575,1 +60855085051,200576,1 +60855085052,200572,1 +60855085053,200623,1 +60855085071,200014,1 +60855085072,200014,1 +60855085081,200573,1 +60855085082,201017,1 +60855085083,200020,1 +60855085084,200020,0.37962962962963 +60855085084,200041,0.62037037037037 +60855086011,200528,1 +60855086012,200526,1 +60855086013,200527,1 +60855086021,200525,1 +60855086022,200524,1 +60855086023,200478,1 +60855087031,200522,1 +60855087032,200521,1 +60855087033,200477,1 +60855087034,200475,1 +60855087035,200474,1 +60855087041,200780,1 +60855087042,200237,0.391739674593242 +60855087042,201090,0.591989987484355 +60855087042,201091,0.016270337922403 +60855087043,200149,1 +60855088001,200472,1 +60855088002,200476,1 +60855089001,200473,1 +60855089002,200426,1 +60855089003,200425,1 +60855090001,200470,1 +60855090002,200424,1 +60855090003,200423,1 +60855090004,200471,1 +60855091021,200376,1 +60855091022,200377,1 +60855091051,200374,1 +60855091052,200374,1 +60855091053,200769,1 +60855091054,200610,1 +60855091061,200427,1 +60855091062,200612,1 +60855091063,200422,1 +60855091071,200320,1 +60855091072,200320,1 +60855091081,200607,1 +60855091082,200609,1 +60855091083,200611,1 +60855091084,200023,1 +60855091091,200428,1 +60855091092,200421,1 +60855092011,200613,1 +60855092012,200562,1 +60855092013,200564,1 +60855092014,200608,1 +60855092021,200563,1 +60855092022,200561,1 +60855092023,200560,1 +60855092024,200794,1 +60855093021,200009,1 +60855093031,200559,1 +60855093032,200558,1 +60855093033,200514,1 +60855093034,200512,1 +60855093041,200222,1 +60855093042,200022,1 +60855094011,200035,1 +60855094012,200037,1 +60855094013,200039,1 +60855094031,200354,1 +60855094032,200565,1 +60855094041,200036,1 +60855094042,200510,1 +60855094043,200355,1 +60855094044,200038,1 +60855095001,200511,1 +60855095002,200508,1 +60855095003,200024,1 +60855096001,200025,1 +60855096002,200509,1 +60855097001,200507,1 +60855097002,200506,1 +60855097003,200026,1 +60855098011,200463,1 +60855098012,200461,1 +60855098013,200460,1 +60855098014,200027,1 +60855098021,200458,1 +60855098022,200462,1 +60855099011,200413,1 +60855099012,200459,1 +60855099021,200411,1 +60855099022,200410,1 +60855099023,200318,1 +60855100011,200319,1 +60855100012,200317,1 +60855100013,201069,1 +60855100014,201070,1 +60855100015,200409,1 +60855100016,200523,1 +60855100021,200574,1 +60855100022,201026,1 +60855100023,200375,1 +60855101001,200028,1 +60855101002,201025,1 +60855101003,200675,1 +60855102001,201024,1 +60855102002,200408,1 +60855102003,200046,1 +60855103001,201023,1 +60855103002,200875,1 +60855103003,200048,1 +60855104001,201022,1 +60855104002,201021,1 +60855104003,200974,1 +60855105001,200973,1 +60855105002,200513,1 +60855105003,200047,1 +60855106001,200356,1 +60855106002,200353,1 +60855106003,200205,1 +60855106004,200199,1 +60855107001,200351,1 +60855107002,200293,1 +60855107003,200350,1 +60855108011,200294,1 +60855108012,200292,1 +60855108013,200352,1 +60855108021,200290,1 +60855108022,200290,1 +60855108031,201061,1 +60855108032,201059,1 +60855109001,200289,1 +60855109002,201058,1 +60855109003,201056,1 +60855110001,201057,1 +60855110002,201060,1 +60855110003,201055,1 +60855110004,201011,1 +60855110005,200910,1 +60855111001,200061,1 +60855111002,201010,1 +60855111003,201008,1 +60855111004,201009,1 +60855112001,200062,1 +60855112002,200062,1 +60855112003,200062,1 +60855112004,201007,1 +60855113011,200063,1 +60855113012,200961,1 +60855113021,200043,1 +60855113022,200043,1 +60855113023,200043,1 +60855114001,200959,1 +60855114002,200957,1 +60855114003,200960,1 +60855114004,200958,1 +60855115001,200911,1 +60855115002,200977,1 +60855115003,200216,1 +60855115004,200107,1 +60855115005,200686,1 +60855116081,200044,0 +60855116081,201085,1 +60855116082,200056,1 +60855116091,200055,1 +60855117011,200976,1 +60855117012,200935,1 +60855117013,200313,1 +60855117021,200045,1 +60855117022,200371,1 +60855117041,200227,1 +60855117042,200210,1 +60855117043,200135,1 +60855117051,200093,0.191740412979351 +60855117051,201075,0.808259587020649 +60855117071,0,0 +60855117071,200134,1 +60855118001,0,0 +60855118001,200256,1 +60855118002,0,0 +60855118002,200314,1 +60855118003,0,0 +60855118003,200315,1 +60855119051,200333,1 +60855119071,200735,1 +60855119072,200331,1 +60855119091,200272,1 +60855119092,0,0 +60855119092,200316,1 +60855119093,200335,1 +60855119101,200330,1 +60855119102,200288,1 +60855119103,200721,1 +60855119111,0,0 +60855119111,200090,1 +60855119112,0,0 +60855119112,200270,1 +60855119113,200077,1 +60855119121,200269,1 +60855119122,200268,1 +60855119123,200267,1 +60855119131,200468,1 +60855119132,201038,1 +60855119133,200266,1 +60855119141,201037,1 +60855119142,201036,1 +60855119143,201035,1 +60855119151,200332,1 +60855119152,200214,1 +60855119152,200239,0 +60855119161,200392,1 +60855119162,200616,1 +60855120011,200152,1 +60855120012,200152,1 +60855120013,200152,1 +60855120051,200985,1 +60855120052,200984,1 +60855120053,200983,1 +60855120054,200942,1 +60855120055,200334,1 +60855120171,200785,1 +60855120172,200784,1 +60855120173,200124,1 +60855120191,200838,1 +60855120192,200837,1 +60855120193,200836,1 +60855120201,200114,1 +60855120202,200781,1 +60855120203,200115,1 +60855120211,200987,1 +60855120212,0,0 +60855120212,200887,1 +60855120213,200835,1 +60855120214,200098,1 +60855120221,200079,1 +60855120222,200834,1 +60855120223,200839,1 +60855120231,200738,1 +60855120232,200888,1 +60855120233,200783,1 +60855120241,200782,1 +60855120242,200736,1 +60855120251,200080,1 +60855120252,200737,1 +60855120261,200066,1 +60855120262,200066,1 +60855120271,200412,1 +60855120272,200681,1 +60855120291,200684,1 +60855120292,200680,1 +60855120293,200466,1 +60855120294,200581,1 +60855120301,200732,1 +60855120302,200632,1 +60855120311,200633,1 +60855120312,200631,1 +60855120313,200467,1 +60855120314,200467,1 +60855120321,200583,1 +60855120322,200628,1 +60855120323,200215,1 +60855120331,200580,1 +60855120332,200097,1 +60855120333,200534,1 +60855120334,200683,1 +60855120341,200630,1 +60855120342,200733,1 +60855120351,200582,1 +60855120352,200533,1 +60855120361,200679,1 +60855120371,200682,1 +60855120372,200579,1 +60855120381,200091,1 +60855120391,200065,1 +60855120392,200078,1 +60855120393,200005,1 +60855120421,200720,1 +60855120422,200125,1 +60855120431,200094,1 +60855120432,200094,1 +60855120451,200095,1 +60855120452,200938,1 +60855120453,200108,1 +60855120454,200986,1 +60855120471,200936,1 +60855120472,200939,1 +60855120473,201034,1 +60855120521,200941,1 +60855120522,200089,1 +60855120523,200089,1 +60855120531,200890,1 +60855120532,200889,1 +60855120533,200085,1 +60855121001,0,0 +60855121001,200006,1 +60855122001,0,0 +60855122001,200532,1 +60855122002,0,0 +60855122002,200465,1 +60855123051,200531,1 +60855123052,200661,1 +60855123071,200072,1 +60855123072,200659,1 +60855123073,200464,1 +60855123081,200529,1 +60855123082,200058,1 +60855123083,0,0 +60855123083,200734,1 +60855123091,200656,1 +60855123092,200657,1 +60855123101,200008,1 +60855123102,200060,1 +60855123111,200059,1 +60855123121,200099,1 +60855123131,200015,1 +60855123132,200530,1 +60855123141,200660,1 +60855123142,200074,1 +60855123143,200075,1 +60855123144,200076,1 +60855124011,200658,1 +60855124012,200081,1 +60855124021,200419,1 +60855124022,200419,1 +60855124023,0,0 +60855124023,200617,1 +60855125031,200662,1 +60855125032,200420,1 +60855125051,200665,1 +60855125052,200666,1 +60855125061,200116,1 +60855125062,200667,1 +60855125063,200157,1 +60855125081,200714,1 +60855125082,200671,1 +60855125083,200668,1 +60855125084,200619,1 +60855125091,200118,1 +60855125092,200082,1 +60855125101,200101,1 +60855125102,200669,1 +60855125103,200715,1 +60855126021,200253,1 +60855126022,200670,1 +60855126031,200119,1 +60855126032,200117,1 +60855126033,200618,1 +60855126041,200713,1 +60855126042,200241,1 +60855126043,200240,1 +60855130001,200217,0.999117387466902 +60855130001,201086,0.00088261253309797 +60855130002,200975,1 +60855130003,200909,1 +60855135001,0,0 +60855135001,200825,1 +60952501031,500189,1 +60952501032,500124,1 +60952501033,500188,1 +60952501041,500120,1 +60952501042,500251,1 +60952501051,500191,1 +60952501052,500252,1 +60952501053,500190,1 +60952501061,500256,1 +60952501062,500067,1 +60952502001,500068,1 +60952502002,500125,1 +60952502003,500126,1 +60952503001,500127,1 +60952503002,500258,1 +60952503003,500259,1 +60952504001,500070,1 +60952504002,500069,1 +60952504003,500071,1 +60952505011,500053,1 +60952505012,500053,1 +60952505021,500073,1 +60952505022,500276,1 +60952506011,500074,1 +60952506012,500083,1 +60952506013,500192,1 +60952506041,500278,1 +60952506042,0,0 +60952506042,500277,1 +60952506043,500234,1 +60952506051,500249,1 +60952506052,500235,1 +60952506053,0,0 +60952506053,500250,1 +60952507011,0,0 +60952507011,500128,1 +60952507012,500084,1 +60952508011,0,0 +60952508011,500279,1 +60952508012,500176,1 +60952508013,500280,1 +60952509001,0,0 +60952509001,500130,1 +60952509002,500129,1 +60952510001,500131,1 +60952510002,500141,1 +60952510003,500142,1 +60952511001,500086,1 +60952511002,500143,1 +60952512001,500146,1 +60952512002,500144,1 +60952512003,500145,1 +60952513001,500148,1 +60952513002,500147,1 +60952513003,500132,1 +60952514001,500150,1 +60952514002,500149,1 +60952514003,500281,1 +60952515001,500152,1 +60952515002,500153,1 +60952515003,500178,1 +60952516001,500160,1 +60952516002,0,0 +60952516002,500158,1 +60952517011,500161,1 +60952517012,0,0 +60952517012,500087,1 +60952517021,500162,1 +60952517022,500159,1 +60952518021,0,0 +60952518021,500198,1 +60952518031,0,0 +60952518031,500209,1 +60952518032,500090,1 +60952518033,500163,1 +60952518034,500164,1 +60952518041,500208,1 +60952518042,500089,1 +60952518043,0,0 +60952518043,500088,1 +60952519011,0,0 +60952519011,500166,1 +60952519012,500172,1 +60952519013,500165,1 +60952519021,500167,1 +60952519022,500168,1 +60952519023,500173,1 +60952519024,500174,1 +60952519031,500171,1 +60952519032,500169,1 +60952519033,500170,1 +60952520001,0,0 +60952520001,500105,1 +60952520002,0,0 +60952520002,500104,1 +60952520003,0,0 +60952520003,500103,1 +60952520004,0,0 +60952520004,500102,1 +60952521021,0,0 +60952521021,500122,1 +60952521022,0,0 +60952521022,500123,1 +60952521031,500107,1 +60952521032,500206,1 +60952521033,500207,1 +60952521041,500108,1 +60952521042,500257,1 +60952521043,0,0 +60952521043,500177,1 +60952521051,500085,1 +60952521052,500175,1 +60952521061,500052,1 +60952521062,500121,1 +60952521063,500151,1 +60952521071,500106,1 +60952521072,500109,1 +60952521081,500035,1 +60952521082,500049,1 +60952522011,0,0 +60952522011,500182,1 +60952522012,0,0 +60952522012,500183,1 +60952522013,0,0 +60952522013,500195,1 +60952522014,500184,1 +60952522021,500197,1 +60952522022,500253,1 +60952522023,0,0 +60952522023,500255,1 +60952522024,0,0 +60952522024,500287,1 +60952523051,0,0 +60952523051,500157,1 +60952523052,500199,1 +60952523053,500199,1 +60952523061,500200,1 +60952523062,500200,1 +60952523101,500007,1 +60952523102,500096,1 +60952523111,500008,1 +60952523112,500023,1 +60952523113,500006,1 +60952523121,500133,1 +60952523122,500285,1 +60952523131,500012,1 +60952523132,500010,1 +60952523132,500012,0 +60952523133,500021,1 +60952523141,500009,1 +60952523142,500011,1 +60952523143,500222,1 +60952523151,500026,1 +60952523152,500115,1 +60952523153,500116,1 +60952523161,500229,1 +60952523162,500230,1 +60952523171,0,0 +60952523171,500134,1 +60952523172,0,0 +60952523172,500119,1 +60952524011,500040,1 +60952524012,500040,1 +60952524013,500223,1 +60952524014,500040,1 +60952524021,500264,1 +60952524022,0,0 +60952524022,500204,1 +60952524023,500233,1 +60952525011,500239,1 +60952525012,500238,1 +60952525021,500240,1 +60952525022,500237,1 +60952526041,500243,1 +60952526042,500217,1 +60952526043,500227,1 +60952526051,500244,1 +60952526052,500228,1 +60952526053,500226,1 +60952526061,500246,1 +60952526062,500245,1 +60952526063,500248,1 +60952526071,500225,1 +60952526072,500247,1 +60952526081,500260,1 +60952526082,500260,1 +60952526101,500027,1 +60952526102,500140,1 +60952526111,500201,1 +60952526112,500043,1 +60952526113,500117,1 +60952527021,0,0 +60952527021,500215,1 +60952527022,500203,1 +60952527023,0,0 +60952527023,500202,1 +60952527024,500282,1 +60952527025,500155,1 +60952527026,0,0 +60952527026,500214,1 +60952527031,500042,1 +60952527032,500213,1 +60952527033,500082,1 +60952527041,500057,1 +60952527042,500047,1 +60952527043,500265,1 +60952527044,500212,1 +60952527045,500211,1 +60952527051,500059,1 +60952527052,500058,1 +60952527053,500186,1 +60952527054,500056,1 +60952527055,500210,1 +60952527061,0,0 +60952527061,500218,1 +60952527071,500220,1 +60952527072,500263,1 +60952527073,500219,1 +60952528011,500114,0 +60952528012,500114,0 +60952528013,0,0 +60952528013,500113,1 +60952528014,500112,1 +60952528015,0,0 +60952528015,500156,1 +60952528021,500136,1 +60952528022,500111,1 +60952529031,0,0 +60952529031,500275,1 +60952529032,0,0 +60952529032,500274,1 +60952529033,500273,1 +60952529034,0,0 +60952529034,500272,1 +60952529041,0,0 +60952529041,500003,1 +60952529042,0,0 +60952529042,500002,1 +60952529043,0,0 +60952529043,500001,1 +60952529081,500179,1 +60952529082,500019,1 +60952529083,500020,1 +60952529091,500241,1 +60952529092,500216,1 +60952529101,500028,1 +60952529102,500028,1 +60952529103,500269,1 +60952529104,500004,1 +60952529111,500044,1 +60952529112,500063,1 +60952529113,500063,1 +60952529114,500063,1 +60952529121,500045,1 +60952529122,500062,1 +60952529123,500046,1 +60952529124,500101,1 +60952529125,500041,1 +60952529131,500077,1 +60952529132,500037,1 +60952529133,500076,1 +60952529134,500079,1 +60952529141,500039,1 +60952529142,500038,1 +60952529143,500038,1 +60952529151,500078,1 +60952529152,500138,1 +60952530001,0,0 +60952530001,500266,0 +60952531011,500061,1 +60952531012,500081,1 +60952531013,500029,1 +60952531014,500029,1 +60952531015,500029,1 +60952531016,500013,1 +60952531051,500060,1 +60952531052,500033,1 +60952531053,500032,1 +60952531054,500283,1 +60952531055,500284,1 +60952531061,500193,1 +60952531062,500194,1 +60952531063,500205,1 +60952531071,500050,1 +60952531072,500048,1 +60952531073,500036,1 +60952531074,500051,1 +60952531081,500034,1 +60952531082,500110,1 +60952531083,0,0 +60952531083,500022,1 +60952532011,500015,1 +60952532012,500014,1 +60952532013,500005,1 +60952532014,500005,1 +60952532031,500017,1 +60952532032,500018,1 +60952532033,500066,1 +60952532041,0,0 +60952532041,500135,1 +60952532042,500024,1 +60952532043,500064,1 +60952532044,500080,1 +60952532045,500080,1 +60952532051,500065,1 +60952532052,500098,1 +60952532053,500054,1 +60952532061,500075,1 +60952532062,0,0 +60952532062,500025,1 +60952533001,0,0 +60952533001,500231,1 +60952533002,0,0 +60952533002,500232,1 +60952534021,500187,1 +60952534022,500094,1 +60952534023,500094,1 +60952534024,500180,1 +60952534025,500181,1 +60952534031,500055,1 +60952534032,500093,1 +60952534033,500100,1 +60952534041,500154,1 +60952534042,500185,1 +60952534043,500091,1 +60952534044,500091,1 +60952535001,0,0 +60952535001,500267,0.981481481481482 +60952535001,500286,0.0185185185185185 +60952535002,0,0 +60952535002,500271,1 +60952535003,0,0 +60952535003,500270,1 +60952535004,0,0 +60952535004,500268,1 +60959800001,500196,1 +60971501001,700210,1 +60971501002,0,0 +60971501002,700209,1 +60971501003,0,0 +60971501003,700208,1 +60971502021,700212,1 +60971502022,700214,1 +60971502023,700211,1 +60971502024,700213,1 +60971502025,700228,1 +60971502031,700267,1 +60971502032,700249,1 +60971502033,700279,1 +60971502041,700268,1 +60971502042,700280,1 +60971502043,700195,1 +60971503031,0,0 +60971503031,700229,1 +60971503032,700231,1 +60971503033,700230,1 +60971503034,700264,1 +60971503041,700266,1 +60971503042,700263,1 +60971503043,700238,1 +60971503044,700265,1 +60971503051,700290,1 +60971503052,700086,1 +60971503053,700288,1 +60971503054,700287,1 +60971503061,700273,1 +60971503062,700273,1 +60971503063,700073,1 +60971505001,700232,1 +60971505002,700235,1 +60971505003,700233,1 +60971505004,700234,1 +60971505005,700237,1 +60971505006,700236,1 +60971506011,700094,1 +60971506012,700103,1 +60971506013,700103,1 +60971506014,700095,1 +60971506021,700105,1 +60971506022,700106,1 +60971506023,700108,1 +60971506024,700107,1 +60971506031,700109,1 +60971506032,700110,1 +60971506033,700110,1 +60971506034,700368,1 +60971506035,700110,1 +60971506036,700110,1 +60971506071,700042,1 +60971506072,700289,1 +60971506073,700321,1 +60971506091,700322,1 +60971506092,700323,1 +60971506093,700370,1 +60971506094,700281,1 +60971506101,700121,1 +60971506102,700074,1 +60971506103,700369,1 +60971506111,700269,1 +60971506112,700271,1 +60971506113,700270,1 +60971506121,700272,1 +60971506122,0,0 +60971506122,700072,1 +60971507011,0,0 +60971507011,700128,1 +60971507012,0,0 +60971507012,700130,1 +60971507013,0,0 +60971507013,700011,1 +60971507014,700256,1 +60971507021,700113,1 +60971507022,700123,1 +60971507023,700012,1 +60971507024,700371,1 +60971508001,700132,1 +60971508002,700133,1 +60971508003,700131,1 +60971508004,700013,1 +60971509011,0,0 +60971509011,700010,1 +60971509012,0,0 +60971509012,700135,1 +60971509013,700145,1 +60971509014,700136,1 +60971509015,0,0 +60971509015,700122,1 +60971509021,700152,1 +60971509022,700014,1 +60971509023,700134,1 +60971509024,700015,1 +60971510001,700016,1 +60971510002,700017,1 +60971510003,700017,1 +60971511001,700049,1 +60971511002,700048,1 +60971511003,0,0 +60971511003,700047,1 +60971512011,700053,1 +60971512012,700052,1 +60971512013,700051,1 +60971512014,700050,1 +60971512015,0,0 +60971512015,700076,1 +60971512031,700216,1 +60971512032,700217,1 +60971512033,700079,1 +60971512034,700197,0.173216885007278 +60971512034,700218,0.826783114992722 +60971512041,700219,1 +60971512042,700077,1 +60971512043,700078,1 +60971513011,700093,1 +60971513012,700146,1 +60971513013,700200,1 +60971513051,700282,1 +60971513052,700283,1 +60971513053,700284,1 +60971513054,700285,1 +60971513061,700147,1 +60971513062,700148,0.792613636363636 +60971513062,700150,0.207386363636364 +60971513063,700149,1 +60971513064,700150,1 +60971513071,700090,1 +60971513072,700160,1 +60971513073,700080,1 +60971513074,700090,1 +60971513081,700311,1 +60971513082,700162,1 +60971513083,700312,1 +60971513084,700313,1 +60971513085,700164,1 +60971513091,700163,1 +60971513092,700089,1 +60971513093,700091,1 +60971513101,700314,1 +60971513102,700315,1 +60971513103,700316,1 +60971513104,700317,1 +60971513111,700161,1 +60971513112,700326,1 +60971513113,700043,1 +60971513114,700324,1 +60971513115,700325,1 +60971514011,700092,1 +60971514012,700220,1 +60971514013,700222,1 +60971514021,0,0 +60971514021,700239,1 +60971514022,700221,1 +60971514023,700221,1 +60971514024,700221,1 +60971514025,700071,1 +60971515021,700250,1 +60971515022,0,0 +60971515022,700226,1 +60971515023,700225,1 +60971515024,700023,1 +60971515025,700022,1 +60971515026,700227,1 +60971515031,700242,1 +60971515032,700243,1 +60971515033,700241,1 +60971515041,700240,1 +60971515042,700021,1 +60971515043,700244,1 +60971516011,700355,1 +60971516012,700292,1 +60971516013,700024,1 +60971516021,700251,1 +60971516022,700293,1 +60971516023,0,0 +60971516023,700075,1 +60971517001,700026,1 +60971517002,0,0 +60971517002,700025,1 +60971517003,700026,1 +60971517004,700027,1 +60971517005,700054,1 +60971517006,700025,1 +60971518001,700058,1 +60971518002,700055,1 +60971518003,700057,1 +60971518004,700059,1 +60971518005,700056,1 +60971519001,700098,1 +60971519002,700060,1 +60971519003,700061,1 +60971519004,700099,1 +60971520001,700100,1 +60971520002,700101,1 +60971521001,700102,1 +60971521002,700111,1 +60971521003,700112,1 +60971522011,700333,1 +60971522012,700124,1 +60971522013,700125,1 +60971522014,700116,1 +60971522021,700083,0.976588628762542 +60971522021,700084,0.0234113712374582 +60971522022,700082,1 +60971522023,700081,1 +60971522024,700084,1 +60971522025,700081,1 +60971522031,700118,1 +60971522032,700118,1 +60971522033,700190,1 +60971522034,700191,1 +60971523001,700126,1 +60971523002,700097,1 +60971523003,700252,1 +60971523004,700127,1 +60971524001,700254,1 +60971524002,700253,1 +60971524003,0,0 +60971524003,700357,1 +60971524004,700356,1 +60971524005,700358,1 +60971525011,700036,1 +60971525012,700255,1 +60971525013,700255,1 +60971525021,700114,1 +60971525022,700115,1 +60971525023,700117,1 +60971526001,0,0 +60971526001,700262,1 +60971526002,700261,1 +60971526003,700260,1 +60971526004,700260,1 +60971526005,700259,1 +60971526006,700274,1 +60971527011,700318,1 +60971527012,700319,1 +60971527013,700319,1 +60971527014,700277,1 +60971527015,700278,1 +60971527021,700320,1 +60971527022,700347,1 +60971527023,700276,1 +60971527024,700346,1 +60971527025,700087,1 +60971528011,700348,1 +60971528012,700302,1 +60971528013,700348,1 +60971528014,700350,1 +60971528015,700351,1 +60971528021,700352,1 +60971528022,700137,1 +60971528023,700353,1 +60971528024,700139,1 +60971528025,700138,1 +60971529031,700129,1 +60971529032,700354,1 +60971529033,700306,1 +60971529034,700304,1 +60971529041,700382,1 +60971529042,700383,1 +60971529043,700384,1 +60971529044,700385,1 +60971529051,700363,1 +60971529052,700044,1 +60971529053,700045,1 +60971529061,700291,1 +60971529062,0,0 +60971529062,700303,1 +60971530011,700140,1 +60971530012,700309,1 +60971530013,700308,1 +60971530021,700310,1 +60971530022,700142,1 +60971530023,700144,1 +60971530024,700141,1 +60971530025,700143,1 +60971530031,700151,1 +60971530032,700342,1 +60971530033,700343,1 +60971530034,700046,1 +60971530051,700307,1 +60971530052,700305,1 +60971530053,700386,1 +60971530054,700372,1 +60971530055,700345,1 +60971530056,700387,1 +60971530061,700028,1 +60971530062,700029,1 +60971530063,700029,1 +60971530064,700030,1 +60971530065,700030,1 +60971530066,700030,1 +60971531021,700031,1 +60971531022,700031,1 +60971531023,700032,1 +60971531024,700381,1 +60971531031,700364,1 +60971531032,700088,1 +60971531033,700002,1 +60971531041,700019,1 +60971531042,700085,1 +60971531043,700373,1 +60971532001,700070,1 +60971532002,700196,1 +60971532003,700069,1 +60971532004,700001,1 +60971533001,700377,1 +60971533002,700376,1 +60971533003,700375,1 +60971533004,700377,1 +60971534011,700379,1 +60971534012,700157,1 +60971534013,700155,1 +60971534014,700156,1 +60971534015,700206,1 +60971534016,700207,1 +60971534031,700020,1 +60971534032,700177,1 +60971534033,700178,1 +60971534034,700176,1 +60971534041,700180,1 +60971534042,700175,1 +60971534043,700174,1 +60971534044,700158,1 +60971535011,700374,1 +60971535012,700187,1 +60971535013,700186,1 +60971535014,700181,1 +60971535021,700184,1 +60971535022,700033,1 +60971535023,700183,1 +60971535024,0,0 +60971535024,700182,1 +60971536001,700380,1 +60971536002,700203,1 +60971536003,700202,1 +60971536004,700204,1 +60971536005,700205,1 +60971537031,0,0 +60971537031,700179,1 +60971537032,700003,1 +60971537033,0,0 +60971537033,700003,1 +60971537034,700003,1 +60971537035,0,0 +60971537035,700003,1 +60971537041,700168,1 +60971537042,0,0 +60971537042,700169,1 +60971537043,0,0 +60971537043,700201,1 +60971537044,0,0 +60971537044,700167,1 +60971537051,0,0 +60971537051,700165,1 +60971537052,700170,1 +60971537053,700171,1 +60971537054,700170,1 +60971537061,700245,1 +60971537062,0,0 +60971537062,700246,1 +60971537063,0,0 +60971537063,700247,1 +60971537064,700248,1 +60971538011,0,0 +60971538011,700185,1 +60971538012,700301,1 +60971538013,700063,1 +60971538014,700034,1 +60971538041,700009,1 +60971538042,700009,1 +60971538061,700361,1 +60971538062,700360,1 +60971538063,700008,1 +60971538071,700068,1 +60971538072,0,0 +60971538072,700359,1 +60971538081,700300,1 +60971538082,700366,1 +60971538083,700330,1 +60971538091,700035,1 +60971538092,700062,1 +60971538093,700331,1 +60971539011,700367,1 +60971539012,700334,1 +60971539013,700335,1 +60971539014,700332,1 +60971539021,700064,0.581613508442777 +60971539021,700065,0.418386491557223 +60971539022,700065,1 +60971539023,700065,1 +60971539024,700065,1 +60971539031,700340,1 +60971539032,700066,1 +60971539033,700341,1 +60971539034,700066,1 +60971540001,700337,1 +60971540002,0,0 +60971540002,700339,1 +60971540003,0,0 +60971540003,700338,1 +60971541001,0,0 +60971541001,700297,1 +60971541002,0,0 +60971541002,700295,1 +60971541003,0,0 +60971541003,700296,1 +60971541004,700294,1 +60971542011,700041,1 +60971542012,700037,1 +60971542013,700039,1 +60971542014,700298,1 +60971542021,0,0 +60971542021,700040,1 +60971542022,0,0 +60971542022,700038,1 +60971542023,700299,1 +60971543021,700172,1 +60971543022,700173,1 +60971543023,700192,1 +60971543024,0,0 +60971543024,700193,1 +60971543031,0,0 +60971543031,700199,1 +60971543032,0,0 +60971543032,700005,1 +60971543041,0,0 +60971543041,700006,1 +60971543042,0,0 +60971543042,700007,1 +60971543043,0,0 +60971543043,700198,1 +60979901000,0,0 diff --git a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R new file mode 100644 index 000000000..e41394eca --- /dev/null +++ b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R @@ -0,0 +1,81 @@ +# Create Census 2010 MAZ and TAZ shares of blockgroups.R +# SI + +# Notes + +" + +2010 decennial census household data at the block level were used to develop the share of households by block group. +That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. + +" +# Import Libraries + +suppressMessages(library(tidyverse)) +library(tidycensus) + +# Set up directories, import TAZ/census block equivalence, install census key, set ACS year + +censuskey <- readLines("M:/Data/Census/API/api-key.txt") +census_api_key(censuskey, install = TRUE, overwrite = TRUE) +baycounties <- c("01","13","41","55","75","81","85","95","97") + + +sf1_year <- 2010 +state_code ="06" + +# Set input path locations and working directory + +USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) +block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") + +wd <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","crosswalks") +setwd(wd) + +# Make decennial census calls, configure file for later joining + +totalhhs <- "H016001" # 2010 variable for decennial total households + +sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, + state = state_code, county=baycounties, + year=2010, + output="wide", + key=censuskey) %>% + rename(GEOID10 = GEOID,hhs=H016001) %>% + mutate(GEOID10 = as.numeric(GEOID10)) %>% + select(-NAME) + +# Bring in block to MAZ/TAZ equivalence and join with census HH file + +block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% + left_join(.,sf1_block_hhs,by="GEOID10") + +# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) +# Summarize household total by block group +# Calculate block share of total block group hhs +# The calculated shares will be used to apportion block group households to MAZs and TAZs +# Watch for divide-by-zero error when calculating shares in if/else statement +# Rename and order variables + +bg_MAZ_TAZ <- block_MAZ_TAZ %>% + mutate(bg=as.numeric(substr(GEOID10,1,11))) + +bg_total <- bg_MAZ_TAZ %>% + group_by(bg) %>% + summarize(total_bg_hhs=sum(hhs)) %>% + ungroup() + +block_share <- bg_MAZ_TAZ %>% + left_join(.,bg_total,by="bg") %>% + mutate(sharebg=if_else(total_bg_hhs==0,0,hhs/total_bg_hhs)) %>% + rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% + select(block,block_hhs,blockgroup,total_bg_hhs,sharebg,maz,taz2) + +# Create files for maz and taz and output + +maz_share_bg <- block_share %>%group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) +taz_share_bg <- block_share %>%group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) + +write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) +write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) + From 7601f9c855c7c48df756dbf4dd71145cb2b4eee8 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Wed, 29 Sep 2021 18:16:47 -0700 Subject: [PATCH 12/27] Deal with 0-HH block groups for Census 2010 and add logger --- ...nsus 2010 hhs maz share of blockgroups.csv | 4 +- ...sus 2010 hhs taz2 share of blockgroups.csv | 2 +- ...s 2010 MAZ and TAZ shares of blockgroups.R | 61 ++++++++++++++++--- 3 files changed, 57 insertions(+), 10 deletions(-) diff --git a/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv index c6a19e4be..f9ef7b27e 100644 --- a/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv +++ b/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv @@ -29105,8 +29105,8 @@ 60855050081,214953,0.247117601844735 60855050081,227412,0.0830130668716372 60855050081,227449,0.451575710991545 -60855050082,226376,0 -60855050082,227251,0 +60855050082,226376,0.5 +60855050082,227251,0.5 60855050091,210413,1 60855050091,210724,0 60855050091,220720,0 diff --git a/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv index 99b40dfb5..5d8563b8b 100644 --- a/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv +++ b/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv @@ -3946,7 +3946,7 @@ 60855050071,200010,1 60855050072,200010,1 60855050081,200224,1 -60855050082,200225,0 +60855050082,200225,1 60855050091,200223,1 60855050092,200120,1 60855050093,200131,1 diff --git a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R index e41394eca..451c4bda3 100644 --- a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R +++ b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R @@ -1,5 +1,6 @@ # Create Census 2010 MAZ and TAZ shares of blockgroups.R -# SI +# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable +# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") # Notes @@ -7,12 +8,21 @@ 2010 decennial census household data at the block level were used to develop the share of households by block group. That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. + +This script checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have +households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases +that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done +by the number of blocks in that block group. " + # Import Libraries +# Remove scientific notation suppressMessages(library(tidyverse)) library(tidycensus) +library(logger) +options(scipen=999) # Set up directories, import TAZ/census block equivalence, install census key, set ACS year @@ -20,10 +30,22 @@ censuskey <- readLines("M:/Data/Census/API/api-key.txt") census_api_key(censuskey, install = TRUE, overwrite = TRUE) baycounties <- c("01","13","41","55","75","81","85","95","97") - +ACS_year <- as.numeric(Sys.getenv("ACS_eval_year")) sf1_year <- 2010 state_code ="06" +# Set up logger + +logfile <- (paste0("ACS_",Sys.getenv("ACS_eval_year"),"_MAZ_TAZ_Crosswalk.log")) + +if (file.exists(logfile)) { + #Delete file if it exists + file.remove(logfile) +} + +log_appender(appender_tee(logfile)) +log_info('Bringing in relevant files.') + # Set input path locations and working directory USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) @@ -62,19 +84,44 @@ bg_MAZ_TAZ <- block_MAZ_TAZ %>% bg_total <- bg_MAZ_TAZ %>% group_by(bg) %>% - summarize(total_bg_hhs=sum(hhs)) %>% + summarize(total_bg_hhs_2010=sum(hhs),total_blocks=n()) %>% ungroup() block_share <- bg_MAZ_TAZ %>% left_join(.,bg_total,by="bg") %>% - mutate(sharebg=if_else(total_bg_hhs==0,0,hhs/total_bg_hhs)) %>% + mutate(sharebg=if_else(total_bg_hhs_2010==0,0,hhs/total_bg_hhs_2010)) %>% rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% - select(block,block_hhs,blockgroup,total_bg_hhs,sharebg,maz,taz2) + select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) + +log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups.') + +# Create apportionment for mazs with no households +# Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year + +acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", + state = state_code, county=baycounties, + year=ACS_year, + output="wide", + survey = "acs5", + key = censuskey) %>% + select(-B19001_001M) %>% + rename(bg=GEOID,total_bg_hhs_ACS=B19001_001E) %>% + mutate(bg=as.numeric(bg)) %>% + left_join(.,bg_total,by="bg") %>% + filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% + mutate(bad_sharebg=1/total_blocks) + +log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") + +block_share <- block_share %>% + left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% + mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) + # Create files for maz and taz and output -maz_share_bg <- block_share %>%group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) -taz_share_bg <- block_share %>%group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) +maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) +taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) From 1e010de4c94b4554676e5ea342f04180188f4603 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 10:18:27 -0700 Subject: [PATCH 13/27] Updated documentation. --- maz_taz/crosswalks/.Rhistory | 512 ++++++++++++++++++ ...s 2010 MAZ and TAZ shares of blockgroups.R | 16 +- 2 files changed, 524 insertions(+), 4 deletions(-) create mode 100644 maz_taz/crosswalks/.Rhistory diff --git a/maz_taz/crosswalks/.Rhistory b/maz_taz/crosswalks/.Rhistory new file mode 100644 index 000000000..0c4f418c8 --- /dev/null +++ b/maz_taz/crosswalks/.Rhistory @@ -0,0 +1,512 @@ +View(A102106) +View(A102106) +# CTPP Spread Example.R +# Import CTPP data and spread from list to matrix format +# Import Libraries +suppressMessages(library(tidyverse)) +library(CTPPr) +# California County Means of Transportation +# A102106 - MEANS OF TRANSPORTATION (18) (WORKERS 16 YEARS AND OVER) +A102106 <- download_ctpp( +id = "A102106", +dataset = "2016", +geography = "County", +state = "California", +output = "FIPS Code" +) %>% +select(-SE) %>% +spread("Means of Transportation 18","Estimate") +View(A102106) +CA_A102106 <- download_ctpp( +id = "A102106", +dataset = "2016", +geography = "County", +state = "California", +output = "FIPS Code" +) +data_estimate <- CA_A102106 %>% +select(-SE) %>% +spread("Means of Transportation 18","Estimate") +data_SE <- CA_A102106 %>% +select(-ESTIMATE) %>% +spread("Means of Transportation 18","Estimate") +final <- left_join(data_estimate,data_SE,by="RESIDENCE") +View(CA_A102106) +data_SE <- CA_A102106 %>% +select(-Estimate) %>% +spread("Means of Transportation 18","Estimate") +final <- left_join(data_estimate,data_SE,by="RESIDENCE") +View(CA_A102106) +View(CA_A102106) +names(CA_A102106) +data_SE <- CA_A102106 %>% +select(-Estimate) %>% +spread("Means of Transportation 18","Estimate") +data_SE <- CA_A102106 %>% +select(-"Estimate") %>% +spread("Means of Transportation 18","Estimate") +View(CA_A102106) +install.packages("xlsx") +library(xlsx) +library(tidycensus) +get_pums( +state="CA", +survey="acs1") +install.packages("tidycensus") +library(tidycensus) +get_pums( +state="CA", +survey="acs1") +get_pums( +variables = NULL, +state = NULL, +puma = NULL, +year = 2019, +survey = "acs1", +variables_filter = NULL, +rep_weights = NULL, +recode = FALSE, +show_call = FALSE, +key = NULL +) +get_pums( +variables = NULL, +state = "CA", +puma = NULL, +year = 2019, +survey = "acs1", +variables_filter = NULL, +rep_weights = NULL, +recode = FALSE, +show_call = FALSE, +key = NULL +) +get_pums( +state = "CA", +year = 2019, +survey = "acs1" +) +get_pums( +state = "CA", +year = 2019, +survey = "acs1", +key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" +) +get_pums( +state = "CA", +year = 2019, +key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" +) +library(tidyverse) +library(tidycensus) +get_pums( +state = "CA", +year = 2019, +key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" +) +pums_vars_2018 <- pums_variables %>% +filter(year == 2018, survey == "acs1") +View(pums_vars_2018) +vt_pums <- get_pums( +variables = c("PUMA", "SEX", "AGEP", "SCHL"), +state = "VT", +survey = "acs1", +year = 2018 +) +View(vt_pums) +View(vt_pums) +library(tidyverse) +library(tidycensus) +# The load_variables is important, since the variable names between +# the 2000-2020 censuses have changed! Be careful! +# 1990 PL94-171 isn't in the Census Bureau's API. Use NHGIS and the ipumsr package. +# varlist90 <- load_variables(1990,"pl",cache=FALSE) +varlist00 <- load_variables(2000,"pl",cache=FALSE) +varlist10 <- load_variables(2010,"pl",cache=FALSE) +varlist20 <- load_variables(2020,"pl",cache=FALSE) +remotes::install_github("walkerke/tidycensus") +library(tidyverse) +library(tidycensus) +# The load_variables is important, since the variable names between +# the 2000-2020 censuses have changed! Be careful! +# 1990 PL94-171 isn't in the Census Bureau's API. Use NHGIS and the ipumsr package. +# varlist90 <- load_variables(1990,"pl",cache=FALSE) +varlist00 <- load_variables(2000,"pl",cache=FALSE) +varlist10 <- load_variables(2010,"pl",cache=FALSE) +varlist20 <- load_variables(2020,"pl",cache=FALSE) +install.packages("rio") +library(dplyr) +library(tidyverse) +library(tidycensus) +library(xlsx) +library(rio) +varlist00 <- load_variables(2000,"pl",cache=FALSE) +varlist10 <- load_variables(2010,"pl",cache=FALSE) +varlist20 <- load_variables(2020,"pl",cache=FALSE) +varlist20 <- load_variables(2020,"pl",cache=FALSE) +Sys.getenv("Census_API_Key") +readRenviron("~/.Renviron") +varlist00 <- load_variables(2000,"pl",cache=FALSE) +varlist10 <- load_variables(2010,"pl",cache=FALSE) +varlist20 <- load_variables(2020,"pl",cache=FALSE) +selvars <- c(TotalPop = "P2_001N", # Total Population +Hispanic = "P2_002N", # Hispanic or Latino +NH_White = "P2_005N", # Non-Hispanic, White alone +NH_Black = "P2_006N", # Non-Hispanic, Black or African American alone +NH_AIAN = "P2_007N", # Non-Hispanic, American Indian, Alaskan Native alone +NH_Asian = "P2_008N", # Non-Hispanic, Asian alone +NH_NHOPI = "P2_009N", # Non-Hispanic, Native Hawaiian, Other Pac Islander alone +NH_Other = "P2_010N", # Non-Hispanic, Other race alone +NH_Multi = "P2_011N", # Non-Hispanic, Two-or-More Races +VAP_Total = "P4_001N", # Total Population +VAP_Hisp = "P4_002N", # Hispanic or Latino +VAP_White = "P4_005N", # Non-Hispanic, White alone +VAP_Black = "P4_006N", # Non-Hispanic, Black or African American alone +VAP_AIAN = "P4_007N", # Non-Hispanic, American Indian, Alaskan Native alone +VAP_Asian = "P4_008N", # Non-Hispanic, Asian alone +VAP_NHOPI = "P4_009N", # Non-Hispanic, Native Hawaiian, Other Pac Islander alone +VAP_Other = "P4_010N", # Non-Hispanic, Other race alone +VAP_Multi = "P4_011N", # Non-Hispanic, Two-or-More Races +# New to the Census 2020 PL 94-171 is Group Quarters Population!!! +GQ_Total = "P5_001N", # Group Quarters Population, Total +GQ_Instit = "P5_002N", # GQ Pop, Institutionalized, Total +GQ_Correct = "P5_003N", # GQ Pop, Correctional Facilities for Adults +GQ_Juvie = "P5_004N", # GQ Pop, Correctional Facilities for Juveniles +GQ_Nursing = "P5_005N", # GQ Pop, Nursing Facilities, Skilled-nursing Fac. +GQ_Instit_Oth = "P5_006N", # GQ Pop, Institutionalized, Other +GQ_NonInstit = "P5_007N", # GQ Pop, Noninstitutionalized, Total +GQ_College = "P5_008N", # GQ Pop, College/University student housing +GQ_Military = "P5_009N", # GQ Pop, Military Quarters +GQ_NonInst_Oth = "P5_010N", # GQ Pop, Other noninstitutionalized +HousingUnits = "H1_001N", # Total Housing Units +Occ_DU = "H1_002N", # Occupied Housing Units +Vacant_DU = "H1_003N") # Vacant Housing Units +b_CalPlace <- get_decennial(year=2020, sumfile="pl", +geography = "place", state = "CA", +show_call = TRUE,output="wide", variables = selvars) +varlist00 <- load_variables(2000,cache=FALSE) +varlist00 <- load_variables(2000,dataset = "pl",cache=FALSE) +View(b_CalPlace) +install.packages("tidycensus") +library(tidycensus) +varlist <- load_variables(2020,"pl",cache=FALSE) +View(varlist) +ms_pums <- get_pums( +variables = c("SEX", "AGEP"), +state = "MS", +survey = "acs5", +year = 2019, +recode = TRUE +) +View(ms_pums) +ms_pums <- get_pums( +variables = c("SEX", "AGEP"), +survey = "acs5", +year = 2019, +recode = TRUE +) +library(tidycensus) +options(tigris_use_cache = TRUE) +dc_income <- get_acs( +geography = "tract", +variables = "B19013_001", +state = "DC", +geometry = TRUE +) +dc_income +View(dc_income) +plot(dc_income["estimate"]) +library(tigris) +library(tidyverse) +library(sf) +options(tigris_use_cache = TRUE) +# CRS used: NAD83(2011) Kansas Regional Coordinate System +# Zone 11 (for Kansas City) +ks_mo_tracts <- map_dfr(c("KS", "MO"), ~{ +tracts(.x, cb = TRUE, year = 2020) +}) %>% +st_transform(8528) +kc_metro <- core_based_statistical_areas(cb = TRUE, year = 2020) %>% +filter(str_detect(NAME, "Kansas City")) %>% +st_transform(8528) +ggplot() + +geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + +geom_sf(data = kc_metro, fill = NA, color = "red") + +theme_void() +# CRS used: NAD83(2011) Kansas Regional Coordinate System +# Zone 11 (for Kansas City) +ks_mo_tracts <- map_dfr("CA", ~{ +tracts(.x, cb = TRUE, year = 2020) +}) %>% +st_transform(8528) +kc_metro <- core_based_statistical_areas(cb = TRUE, year = 2020) %>% +filter(str_detect(NAME, "San Francisco")) %>% +st_transform(8528) +ggplot() + +geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + +geom_sf(data = kc_metro, fill = NA, color = "red") + +theme_void() +View(ks_mo_tracts) +View(ks_mo_tracts) +ggplot() + +geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + +geom_sf(data = kc_metro, fill = "yes", color = "red") + +theme_void() +ggplot() + +geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + +geom_sf(data = kc_metro, fill = "red", color = "red") + +theme_void() +View(kc_metro) +View(ks_mo_tracts) +library(tidycensus) +library(tidyverse) +library(segregation) # remotes::install_github("elbersb/segregation") +library(tigris) +library(sf) +# Get California tract data by race/ethnicity +ca_acs_data <- get_acs( +geography = "tract", +variables = c( +white = "B03002_003", +black = "B03002_004", +asian = "B03002_006", +hispanic = "B03002_012" +), +state = "CA", +geometry = TRUE, +year = 2019 +) +# Use tidycensus to get urbanized areas by population with geometry, +# then filter for those that have populations of 750,000 or more +us_urban_areas <- get_acs( +geography = "urban area", +variables = "B01001_001", +geometry = TRUE, +year = 2019, +survey = "acs1" +) %>% +filter(estimate >= 750000) %>% +transmute(urban_name = str_remove(NAME, +fixed(", CA Urbanized Area (2010)"))) +# Compute an inner spatial join between the California tracts and the +# urbanized areas, returning tracts in the largest California urban +# areas with the urban_name column appended +ca_urban_data <- ca_acs_data %>% +st_join(us_urban_areas, left = FALSE) %>% +select(-NAME) %>% +st_drop_geometry() +View(ca_urban_data) +View(ca_urban_data) +View(ca_acs_data) +View(ca_urban_data) +View(us_urban_areas) +us_urban_areas <- get_acs( +geography = "urban area", +variables = "B01001_001", +geometry = TRUE, +year = 2019, +survey = "acs1" +) %>% +filter(estimate >= 750000) +View(us_urban_areas) +View(us_urban_areas) +View(us_urban_areas) +us_urban_areas <- get_acs( +geography = "urban area", +variables = "B01001_001", +geometry = TRUE, +year = 2019, +survey = "acs1" +) %>% +filter(estimate >= 750000) %>% +transmute(urban_name = str_remove(NAME, +fixed(", CA Urbanized Area (2010)"))) +View(us_urban_areas) +View(pums_variables) +# Create Census 2010 MAZ and TAZ shares of blockgroups.R +# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable +# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") +# Notes +" +2010 decennial census household data at the block level were used to develop the share of households by block group. +That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. +This script checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have +households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases +that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done +by the number of blocks in that block group. +" +# Import Libraries +# Remove scientific notation +suppressMessages(library(tidyverse)) +library(tidycensus) +library(logger) +options(scipen=999) +# Set up directories, import TAZ/census block equivalence, install census key, set ACS year +censuskey <- readLines("M:/Data/Census/API/api-key.txt") +census_api_key(censuskey, install = TRUE, overwrite = TRUE) +baycounties <- c("01","13","41","55","75","81","85","95","97") +ACS_year <- as.numeric(Sys.getenv("ACS_eval_year")) +sf1_year <- 2010 +state_code ="06" +# Set up logger +logfile <- (paste0("ACS_",Sys.getenv("ACS_eval_year"),"_MAZ_TAZ_Crosswalk.log")) +if (file.exists(logfile)) { +#Delete file if it exists +file.remove(logfile) +} +log_appender(appender_tee(logfile)) +log_info('Bringing in Census 2010 block-level total households.') +# Set input path locations and working directory +USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) +block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") +wd <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","crosswalks") +setwd(wd) +# Make decennial census calls, configure file for later joining +totalhhs <- "H016001" # 2010 variable for decennial total households +sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, +state = state_code, county=baycounties, +year=2010, +output="wide", +key=censuskey) %>% +rename(GEOID10 = GEOID,hhs=H016001) %>% +mutate(GEOID10 = as.numeric(GEOID10)) %>% +select(-NAME) +# Bring in block to MAZ/TAZ equivalence and join with census HH file +block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% +left_join(.,sf1_block_hhs,by="GEOID10") +# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) +# Summarize household total by block group +# Calculate block share of total block group hhs +# The calculated shares will be used to apportion block group households to MAZs and TAZs +# Watch for divide-by-zero error when calculating shares in if/else statement +# Rename and order variables +bg_MAZ_TAZ <- block_MAZ_TAZ %>% +mutate(bg=as.numeric(substr(GEOID10,1,11))) +bg_total <- bg_MAZ_TAZ %>% +group_by(bg) %>% +summarize(total_bg_hhs_2010=sum(hhs),total_blocks=n()) %>% +ungroup() +block_share <- bg_MAZ_TAZ %>% +left_join(.,bg_total,by="bg") %>% +mutate(sharebg=if_else(total_bg_hhs_2010==0,0,hhs/total_bg_hhs_2010)) %>% +rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% +select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) +log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') +# Create apportionment for mazs with no households +# Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year +acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", +state = state_code, county=baycounties, +year=ACS_year, +output="wide", +survey = "acs5", +key = censuskey) %>% +select(-B19001_001M) %>% +rename(bg=GEOID,total_bg_hhs_ACS=B19001_001E) %>% +mutate(bg=as.numeric(bg)) %>% +left_join(.,bg_total,by="bg") %>% +filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% +mutate(bad_sharebg=1/total_blocks) +log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") +log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") +block_share <- block_share %>% +left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% +mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) +# Create files for maz and taz and output +maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) +taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) +write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) +write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) +# Create Census 2010 MAZ and TAZ shares of blockgroups.R +# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable +# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") +# Notes +" +2010 decennial census household data at the block level were used to develop the share of households by block group. +That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. +This script checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have +households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases +that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done +by the number of blocks in that block group. +" +# Import Libraries +# Remove scientific notation +suppressMessages(library(tidyverse)) +library(tidycensus) +library(logger) +options(scipen=999) +# Set up directories, import TAZ/census block equivalence, install census key, set ACS year +censuskey <- readLines("M:/Data/Census/API/api-key.txt") +census_api_key(censuskey, install = TRUE, overwrite = TRUE) +baycounties <- c("01","13","41","55","75","81","85","95","97") +ACS_year <- as.numeric(Sys.getenv("ACS_eval_year")) +sf1_year <- 2010 +state_code ="06" +# Set up logger +logfile <- (paste0("ACS_",Sys.getenv("ACS_eval_year"),"_MAZ_TAZ_Crosswalk.log")) +if (file.exists(logfile)) { +#Delete file if it exists +file.remove(logfile) +} +log_appender(appender_tee(logfile)) +log_info('Bringing in Census 2010 block-level total households.') +# Set input path locations and working directory +USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) +block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") +wd <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","crosswalks") +setwd(wd) +# Make decennial census calls, configure file for later joining +totalhhs <- "H016001" # 2010 variable for decennial total households +sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, +state = state_code, county=baycounties, +year=2010, +output="wide", +key=censuskey) %>% +rename(GEOID10 = GEOID,hhs=H016001) %>% +mutate(GEOID10 = as.numeric(GEOID10)) %>% +select(-NAME) +# Bring in block to MAZ/TAZ equivalence and join with census HH file +block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% +left_join(.,sf1_block_hhs,by="GEOID10") +# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) +# Summarize household total by block group +# Calculate block share of total block group hhs +# The calculated shares will be used to apportion block group households to MAZs and TAZs +# Watch for divide-by-zero error when calculating shares in if/else statement +# Rename and order variables +bg_MAZ_TAZ <- block_MAZ_TAZ %>% +mutate(bg=as.numeric(substr(GEOID10,1,11))) +bg_total <- bg_MAZ_TAZ %>% +group_by(bg) %>% +summarize(total_bg_hhs_2010=sum(hhs),total_blocks=n()) %>% +ungroup() +block_share <- bg_MAZ_TAZ %>% +left_join(.,bg_total,by="bg") %>% +mutate(sharebg=if_else(total_bg_hhs_2010==0,0,hhs/total_bg_hhs_2010)) %>% +rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% +select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) +log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') +# Create apportionment for mazs with no households +# Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year +acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", +state = state_code, county=baycounties, +year=ACS_year, +output="wide", +survey = "acs5", +key = censuskey) %>% +select(-B19001_001M) %>% +rename(bg=GEOID,total_bg_hhs_ACS=B19001_001E) %>% +mutate(bg=as.numeric(bg)) %>% +left_join(.,bg_total,by="bg") %>% +filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% +mutate(bad_sharebg=1/total_blocks) +log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") +log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") +block_share <- block_share %>% +left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% +mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) +# Create files for maz and taz and output +maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) +taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) +write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) +write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) +Sys.setenv(ACS_eval_year="2017") diff --git a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R index 451c4bda3..3f51cdcbd 100644 --- a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R +++ b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R @@ -1,6 +1,10 @@ # Create Census 2010 MAZ and TAZ shares of blockgroups.R + +# NOTE!!!!!!!!!!!!!! # ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable -# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") +# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017"). This will be the default set below. + +Sys.setenv(ACS_eval_year="2017") # Notes @@ -13,9 +17,12 @@ This script checks ACS year blockgroups against 2010 blockgroups to see if any o households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done by the number of blocks in that block group. - + " +# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable +# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") + # Import Libraries # Remove scientific notation @@ -44,7 +51,7 @@ if (file.exists(logfile)) { } log_appender(appender_tee(logfile)) -log_info('Bringing in relevant files.') +log_info('Bringing in Census 2010 block-level total households and then summing to block group.') # Set input path locations and working directory @@ -93,7 +100,7 @@ block_share <- bg_MAZ_TAZ %>% rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) -log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups.') +log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') # Create apportionment for mazs with no households # Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year @@ -112,6 +119,7 @@ acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", mutate(bad_sharebg=1/total_blocks) log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") +log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") block_share <- block_share %>% left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% From f3ceab6607680b27b8cd54a27ef9acf6305aaeea Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:17:23 -0700 Subject: [PATCH 14/27] Add README and clean up directory --- ... hhs maz share of blockgroups_ACS2017.csv} | 0 ... hhs taz share of blockgroups_ACS2017.csv} | 0 ...s 2010 MAZ and TAZ shares of blockgroups.R | 17 ++++++++++--- maz_taz/crosswalks/README.md | 25 +++++++++++++++++++ 4 files changed, 38 insertions(+), 4 deletions(-) rename maz_taz/crosswalks/{Census 2010 hhs maz share of blockgroups.csv => Census 2010 hhs maz share of blockgroups_ACS2017.csv} (100%) rename maz_taz/crosswalks/{Census 2010 hhs taz2 share of blockgroups.csv => Census 2010 hhs taz share of blockgroups_ACS2017.csv} (100%) create mode 100644 maz_taz/crosswalks/README.md diff --git a/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups_ACS2017.csv similarity index 100% rename from maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups.csv rename to maz_taz/crosswalks/Census 2010 hhs maz share of blockgroups_ACS2017.csv diff --git a/maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv b/maz_taz/crosswalks/Census 2010 hhs taz share of blockgroups_ACS2017.csv similarity index 100% rename from maz_taz/crosswalks/Census 2010 hhs taz2 share of blockgroups.csv rename to maz_taz/crosswalks/Census 2010 hhs taz share of blockgroups_ACS2017.csv diff --git a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R index 3f51cdcbd..5ea152343 100644 --- a/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R +++ b/maz_taz/crosswalks/Create Census 2010 MAZ and TAZ shares of blockgroups.R @@ -51,6 +51,7 @@ if (file.exists(logfile)) { } log_appender(appender_tee(logfile)) +log_info('Create Census 2010 MAZ and TAZ shares of blockgroups.R') log_info('Bringing in Census 2010 block-level total households and then summing to block group.') # Set input path locations and working directory @@ -101,6 +102,7 @@ block_share <- bg_MAZ_TAZ %>% select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') +log_info('Calculate 2010 household block share of block groups for later summing at MAZ/TAZ2 level.') # Create apportionment for mazs with no households # Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year @@ -118,19 +120,26 @@ acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% mutate(bad_sharebg=1/total_blocks) -log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") +log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: Blockgroup {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") block_share <- block_share %>% left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) - + +log_info('Sum block shares to MAZ and TAZ2, respectively.') # Create files for maz and taz and output maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) -write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) -write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) +maz_output <- paste0("Census 2010 hhs maz share of blockgroups_ACS",ACS_year,".csv") +taz_output <- paste0("Census 2010 hhs taz share of blockgroups_ACS",ACS_year,".csv") + +log_info('Output maz crosswalk: {maz_output}') +log_info('Output taz crosswalk: {taz_output}') + +write.csv(maz_share_bg,maz_output,row.names = F) +write.csv(taz_share_bg,taz_output,row.names = F) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md new file mode 100644 index 000000000..d8985927b --- /dev/null +++ b/maz_taz/crosswalks/README.md @@ -0,0 +1,25 @@ +## ACS Household Block Group to MAZ Crosswalk + +American Community Survey (ACS) data are available at block group and above. However, TM2 geographies (MAZ/TAZ2) are +built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalk. +This README describes the process for creating a crosswalk to use with household-level variables, though in the future +other types of crosswalks may be developed. For the HH-level crosswalk files, 2010 decennial census household data at +the block level are used to develop the share of households by block group. The block group shares are generated as a +simple calculation of block HHs/block group HHs. That share can then be applied to any household-level distribution for +TM2 MAZ/TAZ2 data development. + +The [script](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Create%20Census%202010%20MAZ%20and%20TAZ%20shares%20of%20blockgroups.R) also checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have households +where Census 2010 were zero. This is important to ensure full apportionment of ACS data. In cases +that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done +by the number of blocks in that block group. For example, if the block group has 10 blocks, each block is +apportioned a share of 0.1. + +### Steps + +* Data for 2010 total households is downloaded using the [Census API](https://api.census.gov/data/2010.html) with [R's TidyCensus Package](https://walker-data.com/tidycensus/articles/basic-usage.html) +* Sum block group total households and calculate block shares +* Bring in ACS five-year data with the [ACS API](https://www.census.gov/data/developers/data-sets/acs-5year.2017.html) for the relevant year and determine if block group totals are non-zero where they were zero in 2010. + + If not block groups fit this criterion, make no changes to the block-level shares + + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares. +* Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files. +* Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv). From 7de19be0c117f58f651bcbefabe457550356985a Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:18:38 -0700 Subject: [PATCH 15/27] Update README.md --- maz_taz/crosswalks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index d8985927b..3d85d4396 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -1,6 +1,6 @@ ## ACS Household Block Group to MAZ Crosswalk -American Community Survey (ACS) data are available at block group and above. However, TM2 geographies (MAZ/TAZ2) are +American Community Survey (ACS) data are available at block group and above geographies. However, TM2 geographies (MAZ/TAZ2) are built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalk. This README describes the process for creating a crosswalk to use with household-level variables, though in the future other types of crosswalks may be developed. For the HH-level crosswalk files, 2010 decennial census household data at From 9d00bceb59d4030257d6b378ea98ec78879e31b7 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:25:13 -0700 Subject: [PATCH 16/27] Updated documentation. --- .gitignore | 1 + maz_taz/crosswalks/README.md | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 236b6a14b..35fb0cc3e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,6 @@ core/release/ *.log *.bak *.exe +*.Rhistory model-files/runtime/config/pskill.exe utilities/vta_expresslane_feed_saver/vta_expresslanes_2018* diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index 3d85d4396..934993c70 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -1,15 +1,15 @@ ## ACS Household Block Group to MAZ Crosswalk American Community Survey (ACS) data are available at block group and above geographies. However, TM2 geographies (MAZ/TAZ2) are -built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalk. +built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalks. This README describes the process for creating a crosswalk to use with household-level variables, though in the future other types of crosswalks may be developed. For the HH-level crosswalk files, 2010 decennial census household data at the block level are used to develop the share of households by block group. The block group shares are generated as a simple calculation of block HHs/block group HHs. That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. -The [script](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Create%20Census%202010%20MAZ%20and%20TAZ%20shares%20of%20blockgroups.R) also checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have households -where Census 2010 were zero. This is important to ensure full apportionment of ACS data. In cases +The [script](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Create%20Census%202010%20MAZ%20and%20TAZ%20shares%20of%20blockgroups.R) also checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have a non-zero household count +where Census 2010 had zero households. Addressing this is important to ensure full apportionment of ACS data. In cases that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done by the number of blocks in that block group. For example, if the block group has 10 blocks, each block is apportioned a share of 0.1. @@ -23,3 +23,4 @@ apportioned a share of 0.1. + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares. * Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files. * Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv). +* A log file for the appropriate ACS year is produced to document block groups fitting the above condtions (log not included in the GitHub repository) From 0f7731c3ffb48e3cb10963ada9105ce280e7f03c Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:26:03 -0700 Subject: [PATCH 17/27] Delete .Rhistory --- maz_taz/crosswalks/.Rhistory | 512 ----------------------------------- 1 file changed, 512 deletions(-) delete mode 100644 maz_taz/crosswalks/.Rhistory diff --git a/maz_taz/crosswalks/.Rhistory b/maz_taz/crosswalks/.Rhistory deleted file mode 100644 index 0c4f418c8..000000000 --- a/maz_taz/crosswalks/.Rhistory +++ /dev/null @@ -1,512 +0,0 @@ -View(A102106) -View(A102106) -# CTPP Spread Example.R -# Import CTPP data and spread from list to matrix format -# Import Libraries -suppressMessages(library(tidyverse)) -library(CTPPr) -# California County Means of Transportation -# A102106 - MEANS OF TRANSPORTATION (18) (WORKERS 16 YEARS AND OVER) -A102106 <- download_ctpp( -id = "A102106", -dataset = "2016", -geography = "County", -state = "California", -output = "FIPS Code" -) %>% -select(-SE) %>% -spread("Means of Transportation 18","Estimate") -View(A102106) -CA_A102106 <- download_ctpp( -id = "A102106", -dataset = "2016", -geography = "County", -state = "California", -output = "FIPS Code" -) -data_estimate <- CA_A102106 %>% -select(-SE) %>% -spread("Means of Transportation 18","Estimate") -data_SE <- CA_A102106 %>% -select(-ESTIMATE) %>% -spread("Means of Transportation 18","Estimate") -final <- left_join(data_estimate,data_SE,by="RESIDENCE") -View(CA_A102106) -data_SE <- CA_A102106 %>% -select(-Estimate) %>% -spread("Means of Transportation 18","Estimate") -final <- left_join(data_estimate,data_SE,by="RESIDENCE") -View(CA_A102106) -View(CA_A102106) -names(CA_A102106) -data_SE <- CA_A102106 %>% -select(-Estimate) %>% -spread("Means of Transportation 18","Estimate") -data_SE <- CA_A102106 %>% -select(-"Estimate") %>% -spread("Means of Transportation 18","Estimate") -View(CA_A102106) -install.packages("xlsx") -library(xlsx) -library(tidycensus) -get_pums( -state="CA", -survey="acs1") -install.packages("tidycensus") -library(tidycensus) -get_pums( -state="CA", -survey="acs1") -get_pums( -variables = NULL, -state = NULL, -puma = NULL, -year = 2019, -survey = "acs1", -variables_filter = NULL, -rep_weights = NULL, -recode = FALSE, -show_call = FALSE, -key = NULL -) -get_pums( -variables = NULL, -state = "CA", -puma = NULL, -year = 2019, -survey = "acs1", -variables_filter = NULL, -rep_weights = NULL, -recode = FALSE, -show_call = FALSE, -key = NULL -) -get_pums( -state = "CA", -year = 2019, -survey = "acs1" -) -get_pums( -state = "CA", -year = 2019, -survey = "acs1", -key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" -) -get_pums( -state = "CA", -year = 2019, -key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" -) -library(tidyverse) -library(tidycensus) -get_pums( -state = "CA", -year = 2019, -key = "11b225edbbc4b7add43683c63297ee9a9d5e3d1e" -) -pums_vars_2018 <- pums_variables %>% -filter(year == 2018, survey == "acs1") -View(pums_vars_2018) -vt_pums <- get_pums( -variables = c("PUMA", "SEX", "AGEP", "SCHL"), -state = "VT", -survey = "acs1", -year = 2018 -) -View(vt_pums) -View(vt_pums) -library(tidyverse) -library(tidycensus) -# The load_variables is important, since the variable names between -# the 2000-2020 censuses have changed! Be careful! -# 1990 PL94-171 isn't in the Census Bureau's API. Use NHGIS and the ipumsr package. -# varlist90 <- load_variables(1990,"pl",cache=FALSE) -varlist00 <- load_variables(2000,"pl",cache=FALSE) -varlist10 <- load_variables(2010,"pl",cache=FALSE) -varlist20 <- load_variables(2020,"pl",cache=FALSE) -remotes::install_github("walkerke/tidycensus") -library(tidyverse) -library(tidycensus) -# The load_variables is important, since the variable names between -# the 2000-2020 censuses have changed! Be careful! -# 1990 PL94-171 isn't in the Census Bureau's API. Use NHGIS and the ipumsr package. -# varlist90 <- load_variables(1990,"pl",cache=FALSE) -varlist00 <- load_variables(2000,"pl",cache=FALSE) -varlist10 <- load_variables(2010,"pl",cache=FALSE) -varlist20 <- load_variables(2020,"pl",cache=FALSE) -install.packages("rio") -library(dplyr) -library(tidyverse) -library(tidycensus) -library(xlsx) -library(rio) -varlist00 <- load_variables(2000,"pl",cache=FALSE) -varlist10 <- load_variables(2010,"pl",cache=FALSE) -varlist20 <- load_variables(2020,"pl",cache=FALSE) -varlist20 <- load_variables(2020,"pl",cache=FALSE) -Sys.getenv("Census_API_Key") -readRenviron("~/.Renviron") -varlist00 <- load_variables(2000,"pl",cache=FALSE) -varlist10 <- load_variables(2010,"pl",cache=FALSE) -varlist20 <- load_variables(2020,"pl",cache=FALSE) -selvars <- c(TotalPop = "P2_001N", # Total Population -Hispanic = "P2_002N", # Hispanic or Latino -NH_White = "P2_005N", # Non-Hispanic, White alone -NH_Black = "P2_006N", # Non-Hispanic, Black or African American alone -NH_AIAN = "P2_007N", # Non-Hispanic, American Indian, Alaskan Native alone -NH_Asian = "P2_008N", # Non-Hispanic, Asian alone -NH_NHOPI = "P2_009N", # Non-Hispanic, Native Hawaiian, Other Pac Islander alone -NH_Other = "P2_010N", # Non-Hispanic, Other race alone -NH_Multi = "P2_011N", # Non-Hispanic, Two-or-More Races -VAP_Total = "P4_001N", # Total Population -VAP_Hisp = "P4_002N", # Hispanic or Latino -VAP_White = "P4_005N", # Non-Hispanic, White alone -VAP_Black = "P4_006N", # Non-Hispanic, Black or African American alone -VAP_AIAN = "P4_007N", # Non-Hispanic, American Indian, Alaskan Native alone -VAP_Asian = "P4_008N", # Non-Hispanic, Asian alone -VAP_NHOPI = "P4_009N", # Non-Hispanic, Native Hawaiian, Other Pac Islander alone -VAP_Other = "P4_010N", # Non-Hispanic, Other race alone -VAP_Multi = "P4_011N", # Non-Hispanic, Two-or-More Races -# New to the Census 2020 PL 94-171 is Group Quarters Population!!! -GQ_Total = "P5_001N", # Group Quarters Population, Total -GQ_Instit = "P5_002N", # GQ Pop, Institutionalized, Total -GQ_Correct = "P5_003N", # GQ Pop, Correctional Facilities for Adults -GQ_Juvie = "P5_004N", # GQ Pop, Correctional Facilities for Juveniles -GQ_Nursing = "P5_005N", # GQ Pop, Nursing Facilities, Skilled-nursing Fac. -GQ_Instit_Oth = "P5_006N", # GQ Pop, Institutionalized, Other -GQ_NonInstit = "P5_007N", # GQ Pop, Noninstitutionalized, Total -GQ_College = "P5_008N", # GQ Pop, College/University student housing -GQ_Military = "P5_009N", # GQ Pop, Military Quarters -GQ_NonInst_Oth = "P5_010N", # GQ Pop, Other noninstitutionalized -HousingUnits = "H1_001N", # Total Housing Units -Occ_DU = "H1_002N", # Occupied Housing Units -Vacant_DU = "H1_003N") # Vacant Housing Units -b_CalPlace <- get_decennial(year=2020, sumfile="pl", -geography = "place", state = "CA", -show_call = TRUE,output="wide", variables = selvars) -varlist00 <- load_variables(2000,cache=FALSE) -varlist00 <- load_variables(2000,dataset = "pl",cache=FALSE) -View(b_CalPlace) -install.packages("tidycensus") -library(tidycensus) -varlist <- load_variables(2020,"pl",cache=FALSE) -View(varlist) -ms_pums <- get_pums( -variables = c("SEX", "AGEP"), -state = "MS", -survey = "acs5", -year = 2019, -recode = TRUE -) -View(ms_pums) -ms_pums <- get_pums( -variables = c("SEX", "AGEP"), -survey = "acs5", -year = 2019, -recode = TRUE -) -library(tidycensus) -options(tigris_use_cache = TRUE) -dc_income <- get_acs( -geography = "tract", -variables = "B19013_001", -state = "DC", -geometry = TRUE -) -dc_income -View(dc_income) -plot(dc_income["estimate"]) -library(tigris) -library(tidyverse) -library(sf) -options(tigris_use_cache = TRUE) -# CRS used: NAD83(2011) Kansas Regional Coordinate System -# Zone 11 (for Kansas City) -ks_mo_tracts <- map_dfr(c("KS", "MO"), ~{ -tracts(.x, cb = TRUE, year = 2020) -}) %>% -st_transform(8528) -kc_metro <- core_based_statistical_areas(cb = TRUE, year = 2020) %>% -filter(str_detect(NAME, "Kansas City")) %>% -st_transform(8528) -ggplot() + -geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + -geom_sf(data = kc_metro, fill = NA, color = "red") + -theme_void() -# CRS used: NAD83(2011) Kansas Regional Coordinate System -# Zone 11 (for Kansas City) -ks_mo_tracts <- map_dfr("CA", ~{ -tracts(.x, cb = TRUE, year = 2020) -}) %>% -st_transform(8528) -kc_metro <- core_based_statistical_areas(cb = TRUE, year = 2020) %>% -filter(str_detect(NAME, "San Francisco")) %>% -st_transform(8528) -ggplot() + -geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + -geom_sf(data = kc_metro, fill = NA, color = "red") + -theme_void() -View(ks_mo_tracts) -View(ks_mo_tracts) -ggplot() + -geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + -geom_sf(data = kc_metro, fill = "yes", color = "red") + -theme_void() -ggplot() + -geom_sf(data = ks_mo_tracts, fill = "white", color = "grey") + -geom_sf(data = kc_metro, fill = "red", color = "red") + -theme_void() -View(kc_metro) -View(ks_mo_tracts) -library(tidycensus) -library(tidyverse) -library(segregation) # remotes::install_github("elbersb/segregation") -library(tigris) -library(sf) -# Get California tract data by race/ethnicity -ca_acs_data <- get_acs( -geography = "tract", -variables = c( -white = "B03002_003", -black = "B03002_004", -asian = "B03002_006", -hispanic = "B03002_012" -), -state = "CA", -geometry = TRUE, -year = 2019 -) -# Use tidycensus to get urbanized areas by population with geometry, -# then filter for those that have populations of 750,000 or more -us_urban_areas <- get_acs( -geography = "urban area", -variables = "B01001_001", -geometry = TRUE, -year = 2019, -survey = "acs1" -) %>% -filter(estimate >= 750000) %>% -transmute(urban_name = str_remove(NAME, -fixed(", CA Urbanized Area (2010)"))) -# Compute an inner spatial join between the California tracts and the -# urbanized areas, returning tracts in the largest California urban -# areas with the urban_name column appended -ca_urban_data <- ca_acs_data %>% -st_join(us_urban_areas, left = FALSE) %>% -select(-NAME) %>% -st_drop_geometry() -View(ca_urban_data) -View(ca_urban_data) -View(ca_acs_data) -View(ca_urban_data) -View(us_urban_areas) -us_urban_areas <- get_acs( -geography = "urban area", -variables = "B01001_001", -geometry = TRUE, -year = 2019, -survey = "acs1" -) %>% -filter(estimate >= 750000) -View(us_urban_areas) -View(us_urban_areas) -View(us_urban_areas) -us_urban_areas <- get_acs( -geography = "urban area", -variables = "B01001_001", -geometry = TRUE, -year = 2019, -survey = "acs1" -) %>% -filter(estimate >= 750000) %>% -transmute(urban_name = str_remove(NAME, -fixed(", CA Urbanized Area (2010)"))) -View(us_urban_areas) -View(pums_variables) -# Create Census 2010 MAZ and TAZ shares of blockgroups.R -# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable -# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") -# Notes -" -2010 decennial census household data at the block level were used to develop the share of households by block group. -That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. -This script checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have -households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases -that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done -by the number of blocks in that block group. -" -# Import Libraries -# Remove scientific notation -suppressMessages(library(tidyverse)) -library(tidycensus) -library(logger) -options(scipen=999) -# Set up directories, import TAZ/census block equivalence, install census key, set ACS year -censuskey <- readLines("M:/Data/Census/API/api-key.txt") -census_api_key(censuskey, install = TRUE, overwrite = TRUE) -baycounties <- c("01","13","41","55","75","81","85","95","97") -ACS_year <- as.numeric(Sys.getenv("ACS_eval_year")) -sf1_year <- 2010 -state_code ="06" -# Set up logger -logfile <- (paste0("ACS_",Sys.getenv("ACS_eval_year"),"_MAZ_TAZ_Crosswalk.log")) -if (file.exists(logfile)) { -#Delete file if it exists -file.remove(logfile) -} -log_appender(appender_tee(logfile)) -log_info('Bringing in Census 2010 block-level total households.') -# Set input path locations and working directory -USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) -block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") -wd <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","crosswalks") -setwd(wd) -# Make decennial census calls, configure file for later joining -totalhhs <- "H016001" # 2010 variable for decennial total households -sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, -state = state_code, county=baycounties, -year=2010, -output="wide", -key=censuskey) %>% -rename(GEOID10 = GEOID,hhs=H016001) %>% -mutate(GEOID10 = as.numeric(GEOID10)) %>% -select(-NAME) -# Bring in block to MAZ/TAZ equivalence and join with census HH file -block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% -left_join(.,sf1_block_hhs,by="GEOID10") -# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) -# Summarize household total by block group -# Calculate block share of total block group hhs -# The calculated shares will be used to apportion block group households to MAZs and TAZs -# Watch for divide-by-zero error when calculating shares in if/else statement -# Rename and order variables -bg_MAZ_TAZ <- block_MAZ_TAZ %>% -mutate(bg=as.numeric(substr(GEOID10,1,11))) -bg_total <- bg_MAZ_TAZ %>% -group_by(bg) %>% -summarize(total_bg_hhs_2010=sum(hhs),total_blocks=n()) %>% -ungroup() -block_share <- bg_MAZ_TAZ %>% -left_join(.,bg_total,by="bg") %>% -mutate(sharebg=if_else(total_bg_hhs_2010==0,0,hhs/total_bg_hhs_2010)) %>% -rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% -select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) -log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') -# Create apportionment for mazs with no households -# Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year -acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", -state = state_code, county=baycounties, -year=ACS_year, -output="wide", -survey = "acs5", -key = censuskey) %>% -select(-B19001_001M) %>% -rename(bg=GEOID,total_bg_hhs_ACS=B19001_001E) %>% -mutate(bg=as.numeric(bg)) %>% -left_join(.,bg_total,by="bg") %>% -filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% -mutate(bad_sharebg=1/total_blocks) -log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") -log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") -block_share <- block_share %>% -left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% -mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) -# Create files for maz and taz and output -maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) -taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) -write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) -write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) -# Create Census 2010 MAZ and TAZ shares of blockgroups.R -# ACS input data year should be set using the last year of a five year range using the ACS_eval_year variable -# e.g., for 2013-2017 - Sys.setenv(ACS_eval_year="2017") -# Notes -" -2010 decennial census household data at the block level were used to develop the share of households by block group. -That share can then be applied to any household-level distribution for TM2 MAZ/TAZ2 data development. -This script checks ACS year blockgroups against 2010 blockgroups to see if any of the ACS block groups have -households where Census 2010 was zero. This is important to ensure full apportionment of ACS data. In cases -that ACS block groups are >0 while Census 2010 values were zero, a straight apportionment to blocks is done -by the number of blocks in that block group. -" -# Import Libraries -# Remove scientific notation -suppressMessages(library(tidyverse)) -library(tidycensus) -library(logger) -options(scipen=999) -# Set up directories, import TAZ/census block equivalence, install census key, set ACS year -censuskey <- readLines("M:/Data/Census/API/api-key.txt") -census_api_key(censuskey, install = TRUE, overwrite = TRUE) -baycounties <- c("01","13","41","55","75","81","85","95","97") -ACS_year <- as.numeric(Sys.getenv("ACS_eval_year")) -sf1_year <- 2010 -state_code ="06" -# Set up logger -logfile <- (paste0("ACS_",Sys.getenv("ACS_eval_year"),"_MAZ_TAZ_Crosswalk.log")) -if (file.exists(logfile)) { -#Delete file if it exists -file.remove(logfile) -} -log_appender(appender_tee(logfile)) -log_info('Bringing in Census 2010 block-level total households.') -# Set input path locations and working directory -USERPROFILE <- gsub("\\\\","/", Sys.getenv("USERPROFILE")) -block_MAZ_TAZ_in <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","blocks_mazs_tazs_v2.2.csv") -wd <- file.path(USERPROFILE,"Documents","GitHub","travel-model-two","maz_taz","crosswalks") -setwd(wd) -# Make decennial census calls, configure file for later joining -totalhhs <- "H016001" # 2010 variable for decennial total households -sf1_block_hhs <- get_decennial(geography = "block", variables = totalhhs, -state = state_code, county=baycounties, -year=2010, -output="wide", -key=censuskey) %>% -rename(GEOID10 = GEOID,hhs=H016001) %>% -mutate(GEOID10 = as.numeric(GEOID10)) %>% -select(-NAME) -# Bring in block to MAZ/TAZ equivalence and join with census HH file -block_MAZ_TAZ <- read.csv(block_MAZ_TAZ_in,header = T) %>% -left_join(.,sf1_block_hhs,by="GEOID10") -# Generate block group ID from block strings (note that leading zero for state FIPS falls off in numeric conversion) -# Summarize household total by block group -# Calculate block share of total block group hhs -# The calculated shares will be used to apportion block group households to MAZs and TAZs -# Watch for divide-by-zero error when calculating shares in if/else statement -# Rename and order variables -bg_MAZ_TAZ <- block_MAZ_TAZ %>% -mutate(bg=as.numeric(substr(GEOID10,1,11))) -bg_total <- bg_MAZ_TAZ %>% -group_by(bg) %>% -summarize(total_bg_hhs_2010=sum(hhs),total_blocks=n()) %>% -ungroup() -block_share <- bg_MAZ_TAZ %>% -left_join(.,bg_total,by="bg") %>% -mutate(sharebg=if_else(total_bg_hhs_2010==0,0,hhs/total_bg_hhs_2010)) %>% -rename(block=GEOID10,block_hhs=hhs,blockgroup=bg,taz2=taz) %>% -select(block,block_hhs,blockgroup,total_bg_hhs_2010,sharebg,maz,taz2) -log_info('There are {nrow(block_share)} blocks and {nrow(bg_total)} block groups in 2010.') -# Create apportionment for mazs with no households -# Start by creating a block group file with number block group ID, number of hhs in 2010 and the ACS year -acs_hhs <- get_acs(geography = "block group", variables = "B19001_001E", -state = state_code, county=baycounties, -year=ACS_year, -output="wide", -survey = "acs5", -key = censuskey) %>% -select(-B19001_001M) %>% -rename(bg=GEOID,total_bg_hhs_ACS=B19001_001E) %>% -mutate(bg=as.numeric(bg)) %>% -left_join(.,bg_total,by="bg") %>% -filter(total_bg_hhs_2010==0 & total_bg_hhs_ACS>0) %>% -mutate(bad_sharebg=1/total_blocks) -log_info("BG(s) with no hhs in Census 2010, yet some in ACS {ACS_year}: {acs_hhs$bg} with {acs_hhs$total_blocks} blocks") -log_info("Any such block groups will be apportioned to constituent blocks proportionately by number of blocks.") -block_share <- block_share %>% -left_join(.,select(acs_hhs,bg,bad_sharebg),by=c("blockgroup"="bg")) %>% -mutate(sharebg=if_else(!is.na(bad_sharebg),bad_sharebg,sharebg)) -# Create files for maz and taz and output -maz_share_bg <- block_share %>% group_by(blockgroup,maz) %>% summarize(maz_share=sum(sharebg)) -taz_share_bg <- block_share %>% group_by(blockgroup,taz2) %>% summarize(taz2_share=sum(sharebg)) -write.csv(maz_share_bg,file = "Census 2010 hhs maz share of blockgroups.csv",row.names = F) -write.csv(taz_share_bg,file = "Census 2010 hhs taz2 share of blockgroups.csv",row.names = F) -Sys.setenv(ACS_eval_year="2017") From 5be120951c5ba71d8cd65fe1fa245f95a10e3811 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:27:02 -0700 Subject: [PATCH 18/27] Update README.md --- maz_taz/crosswalks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index 934993c70..6aaf6b134 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -19,7 +19,7 @@ apportioned a share of 0.1. * Data for 2010 total households is downloaded using the [Census API](https://api.census.gov/data/2010.html) with [R's TidyCensus Package](https://walker-data.com/tidycensus/articles/basic-usage.html) * Sum block group total households and calculate block shares * Bring in ACS five-year data with the [ACS API](https://www.census.gov/data/developers/data-sets/acs-5year.2017.html) for the relevant year and determine if block group totals are non-zero where they were zero in 2010. - + If not block groups fit this criterion, make no changes to the block-level shares + + If no block groups fit this criterion, make no changes to the block-level shares + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares. * Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files. * Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv). From 63ab1d082e2a706649232824c49b96ecd375087d Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:34:23 -0700 Subject: [PATCH 19/27] Update README.md --- maz_taz/crosswalks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index 6aaf6b134..03f11bec6 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -1,4 +1,4 @@ -## ACS Household Block Group to MAZ Crosswalk +## ACS Household Block Group to MAZ and TAZ2 Crosswalks American Community Survey (ACS) data are available at block group and above geographies. However, TM2 geographies (MAZ/TAZ2) are built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalks. From 65751cd651423d52eb018b34dc7c0b630d8421cd Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:37:10 -0700 Subject: [PATCH 20/27] Update README.md --- maz_taz/crosswalks/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index 03f11bec6..d9ab51bc1 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -18,9 +18,9 @@ apportioned a share of 0.1. * Data for 2010 total households is downloaded using the [Census API](https://api.census.gov/data/2010.html) with [R's TidyCensus Package](https://walker-data.com/tidycensus/articles/basic-usage.html) * Sum block group total households and calculate block shares -* Bring in ACS five-year data with the [ACS API](https://www.census.gov/data/developers/data-sets/acs-5year.2017.html) for the relevant year and determine if block group totals are non-zero where they were zero in 2010. +* Bring in ACS five-year data with the [ACS API](https://www.census.gov/data/developers/data-sets/acs-5year.2017.html) for the relevant year and determine if block group totals are non-zero where they were zero in 2010 + If no block groups fit this criterion, make no changes to the block-level shares - + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares. -* Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files. + + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares +* Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files * Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv). * A log file for the appropriate ACS year is produced to document block groups fitting the above condtions (log not included in the GitHub repository) From 8da5816217f53bb872e8510e16c3e36b8bb02d1c Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Thu, 30 Sep 2021 14:38:02 -0700 Subject: [PATCH 21/27] Update README.md --- maz_taz/crosswalks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index d9ab51bc1..e72701a09 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -22,5 +22,5 @@ apportioned a share of 0.1. + If no block groups fit this criterion, make no changes to the block-level shares + For block group that do fit the above description, divide 1/number of blocks to get the respective block shares * Sum block shares for each block group/MAZ and block group/TAZ2 combination to produce final crosswalk files -* Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv). +* Output crosswalks for [MAZ](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20maz%20share%20of%20blockgroups.csv) and [TAZ2](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/crosswalks/Census%202010%20hhs%20taz2%20share%20of%20blockgroups.csv) * A log file for the appropriate ACS year is produced to document block groups fitting the above condtions (log not included in the GitHub repository) From 5985b698147aaa278fd23809d01ebd0094b82173 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Mon, 4 Oct 2021 16:16:20 -0700 Subject: [PATCH 22/27] Adding log file to repository for sharing --- .gitignore | 1 - maz_taz/crosswalks/ACS_2017_MAZ_TAZ_Crosswalk.log | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 maz_taz/crosswalks/ACS_2017_MAZ_TAZ_Crosswalk.log diff --git a/.gitignore b/.gitignore index 35fb0cc3e..cbd57f10d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ core/build/ core/release/ /bin/ -*.log *.bak *.exe *.Rhistory diff --git a/maz_taz/crosswalks/ACS_2017_MAZ_TAZ_Crosswalk.log b/maz_taz/crosswalks/ACS_2017_MAZ_TAZ_Crosswalk.log new file mode 100644 index 000000000..3a198c0c1 --- /dev/null +++ b/maz_taz/crosswalks/ACS_2017_MAZ_TAZ_Crosswalk.log @@ -0,0 +1,9 @@ +INFO [2021-09-30 14:27:57] Create Census 2010 MAZ and TAZ shares of blockgroups.R +INFO [2021-09-30 14:27:57] Bringing in Census 2010 block-level total households and then summing to block group. +INFO [2021-09-30 14:28:19] There are 109228 blocks and 4756 block groups in 2010. +INFO [2021-09-30 14:28:19] Calculate 2010 household block share of block groups for later summing at MAZ/TAZ2 level. +INFO [2021-09-30 14:28:21] BG(s) with no hhs in Census 2010, yet some in ACS 2017: Blockgroup 60855050082 with 2 blocks +INFO [2021-09-30 14:28:21] Any such block groups will be apportioned to constituent blocks proportionately by number of blocks. +INFO [2021-09-30 14:28:21] Sum block shares to MAZ and TAZ2, respectively. +INFO [2021-09-30 14:28:21] Output maz crosswalk: Census 2010 hhs maz share of blockgroups_ACS2017.csv +INFO [2021-09-30 14:28:21] Output taz crosswalk: Census 2010 hhs taz share of blockgroups_ACS2017.csv From ce455b060a3a65e70e2f24912fe3d820a4c3f5e4 Mon Sep 17 00:00:00 2001 From: Shimon Israel Date: Mon, 4 Oct 2021 16:19:09 -0700 Subject: [PATCH 23/27] Added link to block/MAZ crosswalk --- maz_taz/crosswalks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maz_taz/crosswalks/README.md b/maz_taz/crosswalks/README.md index e72701a09..69efb0dde 100644 --- a/maz_taz/crosswalks/README.md +++ b/maz_taz/crosswalks/README.md @@ -1,7 +1,7 @@ ## ACS Household Block Group to MAZ and TAZ2 Crosswalks American Community Survey (ACS) data are available at block group and above geographies. However, TM2 geographies (MAZ/TAZ2) are -built on clusters of blocks. The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalks. +built on [clusters of blocks](https://github.com/BayAreaMetro/travel-model-two/blob/master/maz_taz/blocks_mazs_tazs_v2.2.csv). The script in this folder creates a block-group-to-MAZ and block-group-to-TAZ2 crosswalks. This README describes the process for creating a crosswalk to use with household-level variables, though in the future other types of crosswalks may be developed. For the HH-level crosswalk files, 2010 decennial census household data at the block level are used to develop the share of households by block group. The block group shares are generated as a From 9f36d905e24f0e88a3dd4cbeba627f0b1837064d Mon Sep 17 00:00:00 2001 From: Lisa Zorn Date: Fri, 2 Sep 2022 10:23:56 -0700 Subject: [PATCH 24/27] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76b9ff9f4..be90cfc5c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ travel-model-two Development plan: * [**TM2.0**](https://github.com/BayAreaMetro/travel-model-two/releases/tag/TM2.0): Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. -* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [transit-ccr](https://github.com/BayAreaMetro/travel-model-two/tree/transit-ccr) +* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [develop](https://github.com/BayAreaMetro/travel-model-two/tree/develop) * **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. This work is being performed in [the tm2py repository](https://github.com/BayAreaMetro/tm2py) * **TM2.3**: TM2 with Emme only and ActivitySim core. This work has not been started yet. From e129b46fdaa59a2bd0bf0eec00cb203d83c5f897 Mon Sep 17 00:00:00 2001 From: yuqi Date: Mon, 10 Apr 2023 11:31:26 -0700 Subject: [PATCH 25/27] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be90cfc5c..864948fca 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ travel-model-two Development plan: * [**TM2.0**](https://github.com/BayAreaMetro/travel-model-two/releases/tag/TM2.0): Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. -* **TM2.1**: TM2 with transit CCR implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [develop](https://github.com/BayAreaMetro/travel-model-two/tree/develop) +* **TM2.1**: TM2 with transit CCR (capacity, crowding, reliability) implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [develop](https://github.com/BayAreaMetro/travel-model-two/tree/develop) * **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. This work is being performed in [the tm2py repository](https://github.com/BayAreaMetro/tm2py) * **TM2.3**: TM2 with Emme only and ActivitySim core. This work has not been started yet. From ced0a27a9a850f9ae59adf030d506c34d4863884 Mon Sep 17 00:00:00 2001 From: Lisa Zorn Date: Mon, 10 Apr 2023 11:33:34 -0700 Subject: [PATCH 26/27] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 864948fca..1e17dba7d 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ Development plan: * [**TM2.0**](https://github.com/BayAreaMetro/travel-model-two/releases/tag/TM2.0): Initial TM2 with Cube, CTRAMP core, 3-zone system. In use by TAM. * **TM2.1**: TM2 with transit CCR (capacity, crowding, reliability) implemented in Emme (uses Cube _and_ Emme), CTRAMP core. Anticipated release: Fall/Winter 2021. This work is being performed in the branch [develop](https://github.com/BayAreaMetro/travel-model-two/tree/develop) * **TM2.2**: TM2 with Emme only (not Cube). CTRAMP core. This work is being performed in [the tm2py repository](https://github.com/BayAreaMetro/tm2py) -* **TM2.3**: TM2 with Emme only and ActivitySim core. This work has not been started yet. +* **TM2.3**: TM2 with Emme only and ActivitySim core. This work is also in progress in [ActivitySim / BayDAG](https://github.com/BayAreaMetro/activitysim/tree/BayDAG) From aea001eed4b3c216bb124cd424e96254ef7208e2 Mon Sep 17 00:00:00 2001 From: David Hensle Date: Tue, 2 Jan 2024 11:28:17 -0800 Subject: [PATCH 27/27] auto ownership calibration --- .../verification/zero_auto_coef_changes.ipynb | 3072 +++++++++++++++++ 1 file changed, 3072 insertions(+) create mode 100644 model-files/verification/zero_auto_coef_changes.ipynb diff --git a/model-files/verification/zero_auto_coef_changes.ipynb b/model-files/verification/zero_auto_coef_changes.ipynb new file mode 100644 index 000000000..70c32d95e --- /dev/null +++ b/model-files/verification/zero_auto_coef_changes.ipynb @@ -0,0 +1,3072 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import os\n", + "import numpy as np\n", + "pd.options.display.max_columns = 50\n", + "\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "import seaborn as sns\n", + "sns.set()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "project_dir = r'F:\\Projects\\Clients\\mtc\\updated_networks\\version_final'\n", + "iteration = 3\n", + "\n", + "census_auto_ownership_file = os.path.join(project_dir,r'input\\visualizer\\data\\census\\ACS_2017_5yr_auto_ownership\\ACSDT5Y2017.B08201_data_with_overlays_2021-09-21T122354.csv')\n", + "ct_ao = pd.read_csv(census_auto_ownership_file, header=1)\n", + "\n", + "hh = pd.read_csv(os.path.join(project_dir, r'ctramp_output\\householdData_' + str(iteration) + '.csv'))\n", + "xwalk = pd.read_csv(os.path.join(project_dir, r'input\\visualizer\\data\\SHP\\census_tracts_mazs_tazs_v2.2.csv'))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# ct_ao = pd.read_csv(r'F:\\Projects\\Clients\\mtc\\updated_networks\\MTC_Visualizer\\data\\census\\ACS_2017_5yr_auto_ownership\\ACSDT5Y2017.B08201_data_with_overlays_2021-09-21T122354.csv',\n", + "# header=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idGeographic Area NameEstimate!!TotalMargin of Error!!TotalEstimate!!Total!!No vehicle availableMargin of Error!!Total!!No vehicle availableEstimate!!Total!!1 vehicle availableMargin of Error!!Total!!1 vehicle availableEstimate!!Total!!2 vehicles availableMargin of Error!!Total!!2 vehicles availableEstimate!!Total!!3 vehicles availableMargin of Error!!Total!!3 vehicles availableEstimate!!Total!!4 or more vehicles availableMargin of Error!!Total!!4 or more vehicles availableEstimate!!Total!!1-person householdMargin of Error!!Total!!1-person householdEstimate!!Total!!1-person household!!No vehicle availableMargin of Error!!Total!!1-person household!!No vehicle availableEstimate!!Total!!1-person household!!1 vehicle availableMargin of Error!!Total!!1-person household!!1 vehicle availableEstimate!!Total!!1-person household!!2 vehicles availableMargin of Error!!Total!!1-person household!!2 vehicles availableEstimate!!Total!!1-person household!!3 vehicles availableMargin of Error!!Total!!1-person household!!3 vehicles availableEstimate!!Total!!1-person household!!4 or more vehicles available...Margin of Error!!Total!!2-person household!!4 or more vehicles availableEstimate!!Total!!3-person householdMargin of Error!!Total!!3-person householdEstimate!!Total!!3-person household!!No vehicle availableMargin of Error!!Total!!3-person household!!No vehicle availableEstimate!!Total!!3-person household!!1 vehicle availableMargin of Error!!Total!!3-person household!!1 vehicle availableEstimate!!Total!!3-person household!!2 vehicles availableMargin of Error!!Total!!3-person household!!2 vehicles availableEstimate!!Total!!3-person household!!3 vehicles availableMargin of Error!!Total!!3-person household!!3 vehicles availableEstimate!!Total!!3-person household!!4 or more vehicles availableMargin of Error!!Total!!3-person household!!4 or more vehicles availableEstimate!!Total!!4-or-more-person householdMargin of Error!!Total!!4-or-more-person householdEstimate!!Total!!4-or-more-person household!!No vehicle availableMargin of Error!!Total!!4-or-more-person household!!No vehicle availableEstimate!!Total!!4-or-more-person household!!1 vehicle availableMargin of Error!!Total!!4-or-more-person household!!1 vehicle availableEstimate!!Total!!4-or-more-person household!!2 vehicles availableMargin of Error!!Total!!4-or-more-person household!!2 vehicles availableEstimate!!Total!!4-or-more-person household!!3 vehicles availableMargin of Error!!Total!!4-or-more-person household!!3 vehicles availableEstimate!!Total!!4-or-more-person household!!4 or more vehicles availableMargin of Error!!Total!!4-or-more-person household!!4 or more vehicles available
01400000US06001400100Census Tract 4001, Alameda County, California125465171928766571105289859042248598131935640267120...12212770129141045772552722177450121516653241275634
11400000US06001400200Census Tract 4002, Alameda County, California82843643336560327545428181622059402816248710358...1211335012672828191211610134220128119925231846
21400000US06001400300Census Tract 4003, Alameda County, California24581213931719501789401721076468631007191306139604184796518290...5627111501763581558553470172766601724292195815281828
31400000US06001400400Census Tract 4004, Alameda County, California178674163659371184929715377413558694101534428943290120...242959601281471247168662226242740129061106544635012
41400000US06001400500Census Tract 4005, Alameda County, California162557224837141224861031486853445101091246235910011185911...12356980126549158701045829432165201234291394830281321
\n", + "

5 rows × 62 columns

\n", + "
" + ], + "text/plain": [ + " id Geographic Area Name \\\n", + "0 1400000US06001400100 Census Tract 4001, Alameda County, California \n", + "1 1400000US06001400200 Census Tract 4002, Alameda County, California \n", + "2 1400000US06001400300 Census Tract 4003, Alameda County, California \n", + "3 1400000US06001400400 Census Tract 4004, Alameda County, California \n", + "4 1400000US06001400500 Census Tract 4005, Alameda County, California \n", + "\n", + " Estimate!!Total Margin of Error!!Total \\\n", + "0 1254 65 \n", + "1 828 43 \n", + "2 2458 121 \n", + "3 1786 74 \n", + "4 1625 57 \n", + "\n", + " Estimate!!Total!!No vehicle available \\\n", + "0 17 \n", + "1 64 \n", + "2 393 \n", + "3 163 \n", + "4 224 \n", + "\n", + " Margin of Error!!Total!!No vehicle available \\\n", + "0 19 \n", + "1 33 \n", + "2 171 \n", + "3 65 \n", + "4 83 \n", + "\n", + " Estimate!!Total!!1 vehicle available \\\n", + "0 287 \n", + "1 365 \n", + "2 950 \n", + "3 937 \n", + "4 714 \n", + "\n", + " Margin of Error!!Total!!1 vehicle available \\\n", + "0 66 \n", + "1 60 \n", + "2 178 \n", + "3 118 \n", + "4 122 \n", + "\n", + " Estimate!!Total!!2 vehicles available \\\n", + "0 571 \n", + "1 327 \n", + "2 940 \n", + "3 492 \n", + "4 486 \n", + "\n", + " Margin of Error!!Total!!2 vehicles available \\\n", + "0 105 \n", + "1 54 \n", + "2 172 \n", + "3 97 \n", + "4 103 \n", + "\n", + " Estimate!!Total!!3 vehicles available \\\n", + "0 289 \n", + "1 54 \n", + "2 107 \n", + "3 153 \n", + "4 148 \n", + "\n", + " Margin of Error!!Total!!3 vehicles available \\\n", + "0 85 \n", + "1 28 \n", + "2 64 \n", + "3 77 \n", + "4 68 \n", + "\n", + " Estimate!!Total!!4 or more vehicles available \\\n", + "0 90 \n", + "1 18 \n", + "2 68 \n", + "3 41 \n", + "4 53 \n", + "\n", + " Margin of Error!!Total!!4 or more vehicles available \\\n", + "0 42 \n", + "1 16 \n", + "2 63 \n", + "3 35 \n", + "4 44 \n", + "\n", + " Estimate!!Total!!1-person household \\\n", + "0 248 \n", + "1 220 \n", + "2 1007 \n", + "3 586 \n", + "4 510 \n", + "\n", + " Margin of Error!!Total!!1-person household \\\n", + "0 59 \n", + "1 59 \n", + "2 191 \n", + "3 94 \n", + "4 109 \n", + "\n", + " Estimate!!Total!!1-person household!!No vehicle available \\\n", + "0 8 \n", + "1 40 \n", + "2 306 \n", + "3 101 \n", + "4 124 \n", + "\n", + " Margin of Error!!Total!!1-person household!!No vehicle available \\\n", + "0 13 \n", + "1 28 \n", + "2 139 \n", + "3 53 \n", + "4 62 \n", + "\n", + " Estimate!!Total!!1-person household!!1 vehicle available \\\n", + "0 193 \n", + "1 162 \n", + "2 604 \n", + "3 442 \n", + "4 359 \n", + "\n", + " Margin of Error!!Total!!1-person household!!1 vehicle available \\\n", + "0 56 \n", + "1 48 \n", + "2 184 \n", + "3 89 \n", + "4 100 \n", + "\n", + " Estimate!!Total!!1-person household!!2 vehicles available \\\n", + "0 40 \n", + "1 7 \n", + "2 79 \n", + "3 43 \n", + "4 11 \n", + "\n", + " Margin of Error!!Total!!1-person household!!2 vehicles available \\\n", + "0 26 \n", + "1 10 \n", + "2 65 \n", + "3 29 \n", + "4 18 \n", + "\n", + " Estimate!!Total!!1-person household!!3 vehicles available \\\n", + "0 7 \n", + "1 3 \n", + "2 18 \n", + "3 0 \n", + "4 5 \n", + "\n", + " Margin of Error!!Total!!1-person household!!3 vehicles available \\\n", + "0 12 \n", + "1 5 \n", + "2 29 \n", + "3 12 \n", + "4 9 \n", + "\n", + " Estimate!!Total!!1-person household!!4 or more vehicles available ... \\\n", + "0 0 ... \n", + "1 8 ... \n", + "2 0 ... \n", + "3 0 ... \n", + "4 11 ... \n", + "\n", + " Margin of Error!!Total!!2-person household!!4 or more vehicles available \\\n", + "0 12 \n", + "1 12 \n", + "2 56 \n", + "3 24 \n", + "4 12 \n", + "\n", + " Estimate!!Total!!3-person household \\\n", + "0 212 \n", + "1 113 \n", + "2 271 \n", + "3 295 \n", + "4 356 \n", + "\n", + " Margin of Error!!Total!!3-person household \\\n", + "0 77 \n", + "1 35 \n", + "2 115 \n", + "3 96 \n", + "4 98 \n", + "\n", + " Estimate!!Total!!3-person household!!No vehicle available \\\n", + "0 0 \n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 0 \n", + "\n", + " Margin of Error!!Total!!3-person household!!No vehicle available \\\n", + "0 12 \n", + "1 12 \n", + "2 17 \n", + "3 12 \n", + "4 12 \n", + "\n", + " Estimate!!Total!!3-person household!!1 vehicle available \\\n", + "0 9 \n", + "1 67 \n", + "2 63 \n", + "3 81 \n", + "4 65 \n", + "\n", + " Margin of Error!!Total!!3-person household!!1 vehicle available \\\n", + "0 14 \n", + "1 28 \n", + "2 58 \n", + "3 47 \n", + "4 49 \n", + "\n", + " Estimate!!Total!!3-person household!!2 vehicles available \\\n", + "0 104 \n", + "1 28 \n", + "2 155 \n", + "3 124 \n", + "4 158 \n", + "\n", + " Margin of Error!!Total!!3-person household!!2 vehicles available \\\n", + "0 57 \n", + "1 19 \n", + "2 85 \n", + "3 71 \n", + "4 70 \n", + "\n", + " Estimate!!Total!!3-person household!!3 vehicles available \\\n", + "0 72 \n", + "1 12 \n", + "2 53 \n", + "3 68 \n", + "4 104 \n", + "\n", + " Margin of Error!!Total!!3-person household!!3 vehicles available \\\n", + "0 55 \n", + "1 11 \n", + "2 47 \n", + "3 66 \n", + "4 58 \n", + "\n", + " Estimate!!Total!!3-person household!!4 or more vehicles available \\\n", + "0 27 \n", + "1 6 \n", + "2 0 \n", + "3 22 \n", + "4 29 \n", + "\n", + " Margin of Error!!Total!!3-person household!!4 or more vehicles available \\\n", + "0 22 \n", + "1 10 \n", + "2 17 \n", + "3 26 \n", + "4 43 \n", + "\n", + " Estimate!!Total!!4-or-more-person household \\\n", + "0 177 \n", + "1 134 \n", + "2 276 \n", + "3 242 \n", + "4 216 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household \\\n", + "0 45 \n", + "1 22 \n", + "2 66 \n", + "3 74 \n", + "4 52 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!No vehicle available \\\n", + "0 0 \n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 0 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household!!No vehicle available \\\n", + "0 12 \n", + "1 12 \n", + "2 17 \n", + "3 12 \n", + "4 12 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!1 vehicle available \\\n", + "0 15 \n", + "1 8 \n", + "2 24 \n", + "3 90 \n", + "4 34 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household!!1 vehicle available \\\n", + "0 16 \n", + "1 11 \n", + "2 29 \n", + "3 61 \n", + "4 29 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!2 vehicles available \\\n", + "0 65 \n", + "1 99 \n", + "2 219 \n", + "3 106 \n", + "4 139 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household!!2 vehicles available \\\n", + "0 32 \n", + "1 25 \n", + "2 58 \n", + "3 54 \n", + "4 48 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!3 vehicles available \\\n", + "0 41 \n", + "1 23 \n", + "2 15 \n", + "3 46 \n", + "4 30 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household!!3 vehicles available \\\n", + "0 27 \n", + "1 18 \n", + "2 28 \n", + "3 35 \n", + "4 28 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!4 or more vehicles available \\\n", + "0 56 \n", + "1 4 \n", + "2 18 \n", + "3 0 \n", + "4 13 \n", + "\n", + " Margin of Error!!Total!!4-or-more-person household!!4 or more vehicles available \n", + "0 34 \n", + "1 6 \n", + "2 28 \n", + "3 12 \n", + "4 21 \n", + "\n", + "[5 rows x 62 columns]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ct_ao.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "error_cols = [col for col in ct_ao.columns if \"Margin of Error\" in col]\n", + "error_cols\n", + "ct_ao.drop(error_cols, axis='columns', inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idGeographic Area NameEstimate!!TotalEstimate!!Total!!No vehicle availableEstimate!!Total!!1 vehicle availableEstimate!!Total!!2 vehicles availableEstimate!!Total!!3 vehicles availableEstimate!!Total!!4 or more vehicles availableEstimate!!Total!!1-person householdEstimate!!Total!!1-person household!!No vehicle availableEstimate!!Total!!1-person household!!1 vehicle availableEstimate!!Total!!1-person household!!2 vehicles availableEstimate!!Total!!1-person household!!3 vehicles availableEstimate!!Total!!1-person household!!4 or more vehicles availableEstimate!!Total!!2-person householdEstimate!!Total!!2-person household!!No vehicle availableEstimate!!Total!!2-person household!!1 vehicle availableEstimate!!Total!!2-person household!!2 vehicles availableEstimate!!Total!!2-person household!!3 vehicles availableEstimate!!Total!!2-person household!!4 or more vehicles availableEstimate!!Total!!3-person householdEstimate!!Total!!3-person household!!No vehicle availableEstimate!!Total!!3-person household!!1 vehicle availableEstimate!!Total!!3-person household!!2 vehicles availableEstimate!!Total!!3-person household!!3 vehicles availableEstimate!!Total!!3-person household!!4 or more vehicles availableEstimate!!Total!!4-or-more-person householdEstimate!!Total!!4-or-more-person household!!No vehicle availableEstimate!!Total!!4-or-more-person household!!1 vehicle availableEstimate!!Total!!4-or-more-person household!!2 vehicles availableEstimate!!Total!!4-or-more-person household!!3 vehicles availableEstimate!!Total!!4-or-more-person household!!4 or more vehicles available
01400000US06001400100Census Tract 4001, Alameda County, California12541728757128990248819340706179703621697212091047227177015654156
11400000US06001400200Census Tract 4002, Alameda County, California8286436532754182204016273836124128193160113067281261340899234
21400000US06001400300Census Tract 4003, Alameda County, California2458393950940107681007306604791809048725948721502710631555302760242191518
31400000US06001400400Census Tract 4004, Alameda County, California17861639374921534158610144243006636232421939192950811246822242090106460
41400000US06001400500Census Tract 4005, Alameda County, California1625224714486148535101243591151154310025617890356065158104292160341393013
\n", + "
" + ], + "text/plain": [ + " id Geographic Area Name \\\n", + "0 1400000US06001400100 Census Tract 4001, Alameda County, California \n", + "1 1400000US06001400200 Census Tract 4002, Alameda County, California \n", + "2 1400000US06001400300 Census Tract 4003, Alameda County, California \n", + "3 1400000US06001400400 Census Tract 4004, Alameda County, California \n", + "4 1400000US06001400500 Census Tract 4005, Alameda County, California \n", + "\n", + " Estimate!!Total Estimate!!Total!!No vehicle available \\\n", + "0 1254 17 \n", + "1 828 64 \n", + "2 2458 393 \n", + "3 1786 163 \n", + "4 1625 224 \n", + "\n", + " Estimate!!Total!!1 vehicle available \\\n", + "0 287 \n", + "1 365 \n", + "2 950 \n", + "3 937 \n", + "4 714 \n", + "\n", + " Estimate!!Total!!2 vehicles available \\\n", + "0 571 \n", + "1 327 \n", + "2 940 \n", + "3 492 \n", + "4 486 \n", + "\n", + " Estimate!!Total!!3 vehicles available \\\n", + "0 289 \n", + "1 54 \n", + "2 107 \n", + "3 153 \n", + "4 148 \n", + "\n", + " Estimate!!Total!!4 or more vehicles available \\\n", + "0 90 \n", + "1 18 \n", + "2 68 \n", + "3 41 \n", + "4 53 \n", + "\n", + " Estimate!!Total!!1-person household \\\n", + "0 248 \n", + "1 220 \n", + "2 1007 \n", + "3 586 \n", + "4 510 \n", + "\n", + " Estimate!!Total!!1-person household!!No vehicle available \\\n", + "0 8 \n", + "1 40 \n", + "2 306 \n", + "3 101 \n", + "4 124 \n", + "\n", + " Estimate!!Total!!1-person household!!1 vehicle available \\\n", + "0 193 \n", + "1 162 \n", + "2 604 \n", + "3 442 \n", + "4 359 \n", + "\n", + " Estimate!!Total!!1-person household!!2 vehicles available \\\n", + "0 40 \n", + "1 7 \n", + "2 79 \n", + "3 43 \n", + "4 11 \n", + "\n", + " Estimate!!Total!!1-person household!!3 vehicles available \\\n", + "0 7 \n", + "1 3 \n", + "2 18 \n", + "3 0 \n", + "4 5 \n", + "\n", + " Estimate!!Total!!1-person household!!4 or more vehicles available \\\n", + "0 0 \n", + "1 8 \n", + "2 0 \n", + "3 0 \n", + "4 11 \n", + "\n", + " Estimate!!Total!!2-person household \\\n", + "0 617 \n", + "1 361 \n", + "2 904 \n", + "3 663 \n", + "4 543 \n", + "\n", + " Estimate!!Total!!2-person household!!No vehicle available \\\n", + "0 9 \n", + "1 24 \n", + "2 87 \n", + "3 62 \n", + "4 100 \n", + "\n", + " Estimate!!Total!!2-person household!!1 vehicle available \\\n", + "0 70 \n", + "1 128 \n", + "2 259 \n", + "3 324 \n", + "4 256 \n", + "\n", + " Estimate!!Total!!2-person household!!2 vehicles available \\\n", + "0 362 \n", + "1 193 \n", + "2 487 \n", + "3 219 \n", + "4 178 \n", + "\n", + " Estimate!!Total!!2-person household!!3 vehicles available \\\n", + "0 169 \n", + "1 16 \n", + "2 21 \n", + "3 39 \n", + "4 9 \n", + "\n", + " Estimate!!Total!!2-person household!!4 or more vehicles available \\\n", + "0 7 \n", + "1 0 \n", + "2 50 \n", + "3 19 \n", + "4 0 \n", + "\n", + " Estimate!!Total!!3-person household \\\n", + "0 212 \n", + "1 113 \n", + "2 271 \n", + "3 295 \n", + "4 356 \n", + "\n", + " Estimate!!Total!!3-person household!!No vehicle available \\\n", + "0 0 \n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 0 \n", + "\n", + " Estimate!!Total!!3-person household!!1 vehicle available \\\n", + "0 9 \n", + "1 67 \n", + "2 63 \n", + "3 81 \n", + "4 65 \n", + "\n", + " Estimate!!Total!!3-person household!!2 vehicles available \\\n", + "0 104 \n", + "1 28 \n", + "2 155 \n", + "3 124 \n", + "4 158 \n", + "\n", + " Estimate!!Total!!3-person household!!3 vehicles available \\\n", + "0 72 \n", + "1 12 \n", + "2 53 \n", + "3 68 \n", + "4 104 \n", + "\n", + " Estimate!!Total!!3-person household!!4 or more vehicles available \\\n", + "0 27 \n", + "1 6 \n", + "2 0 \n", + "3 22 \n", + "4 29 \n", + "\n", + " Estimate!!Total!!4-or-more-person household \\\n", + "0 177 \n", + "1 134 \n", + "2 276 \n", + "3 242 \n", + "4 216 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!No vehicle available \\\n", + "0 0 \n", + "1 0 \n", + "2 0 \n", + "3 0 \n", + "4 0 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!1 vehicle available \\\n", + "0 15 \n", + "1 8 \n", + "2 24 \n", + "3 90 \n", + "4 34 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!2 vehicles available \\\n", + "0 65 \n", + "1 99 \n", + "2 219 \n", + "3 106 \n", + "4 139 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!3 vehicles available \\\n", + "0 41 \n", + "1 23 \n", + "2 15 \n", + "3 46 \n", + "4 30 \n", + "\n", + " Estimate!!Total!!4-or-more-person household!!4 or more vehicles available \n", + "0 56 \n", + "1 4 \n", + "2 18 \n", + "3 0 \n", + "4 13 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ct_ao.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEO_IDTractIDCensusTractCountyStateCensus_HHCensus_A0Census_A1Census_A2Census_A3Census_A4
01400000US0600140010006001400100Census Tract 4001Alameda CountyCalifornia12541728757128990
11400000US0600140020006001400200Census Tract 4002Alameda CountyCalifornia828643653275418
21400000US0600140030006001400300Census Tract 4003Alameda CountyCalifornia245839395094010768
31400000US0600140040006001400400Census Tract 4004Alameda CountyCalifornia178616393749215341
41400000US0600140050006001400500Census Tract 4005Alameda CountyCalifornia162522471448614853
....................................
80521400000US0611504080006115040800Census Tract 408Yuba CountyCalifornia150346385468368236
80531400000US0611504090106115040901Census Tract 409.01Yuba CountyCalifornia105618293372242131
80541400000US0611504090206115040902Census Tract 409.02Yuba CountyCalifornia355083262100
80551400000US0611504100006115041000Census Tract 410Yuba CountyCalifornia2913994421204969199
80561400000US0611504110006115041100Census Tract 411Yuba CountyCalifornia212012566478545492
\n", + "

8057 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " GEO_ID TractID CensusTract County \\\n", + "0 1400000US06001400100 06001400100 Census Tract 4001 Alameda County \n", + "1 1400000US06001400200 06001400200 Census Tract 4002 Alameda County \n", + "2 1400000US06001400300 06001400300 Census Tract 4003 Alameda County \n", + "3 1400000US06001400400 06001400400 Census Tract 4004 Alameda County \n", + "4 1400000US06001400500 06001400500 Census Tract 4005 Alameda County \n", + "... ... ... ... ... \n", + "8052 1400000US06115040800 06115040800 Census Tract 408 Yuba County \n", + "8053 1400000US06115040901 06115040901 Census Tract 409.01 Yuba County \n", + "8054 1400000US06115040902 06115040902 Census Tract 409.02 Yuba County \n", + "8055 1400000US06115041000 06115041000 Census Tract 410 Yuba County \n", + "8056 1400000US06115041100 06115041100 Census Tract 411 Yuba County \n", + "\n", + " State Census_HH Census_A0 Census_A1 Census_A2 Census_A3 \\\n", + "0 California 1254 17 287 571 289 \n", + "1 California 828 64 365 327 54 \n", + "2 California 2458 393 950 940 107 \n", + "3 California 1786 163 937 492 153 \n", + "4 California 1625 224 714 486 148 \n", + "... ... ... ... ... ... ... \n", + "8052 California 1503 46 385 468 368 \n", + "8053 California 1056 18 293 372 242 \n", + "8054 California 355 0 83 262 10 \n", + "8055 California 2913 99 442 1204 969 \n", + "8056 California 2120 125 664 785 454 \n", + "\n", + " Census_A4 \n", + "0 90 \n", + "1 18 \n", + "2 68 \n", + "3 41 \n", + "4 53 \n", + "... ... \n", + "8052 236 \n", + "8053 131 \n", + "8054 0 \n", + "8055 199 \n", + "8056 92 \n", + "\n", + "[8057 rows x 11 columns]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ct_ao_output = pd.DataFrame()\n", + "ct_ao_output['GEO_ID'] = ct_ao['id']\n", + "ct_ao_output['TractID'] = ct_ao['id'].apply(lambda x: x.split('US')[1])\n", + "ct_ao_output['CensusTract'] = ct_ao['Geographic Area Name'].apply(lambda x: x.split(',')[0])\n", + "ct_ao_output['County'] = ct_ao['Geographic Area Name'].apply(lambda x: x.split(',')[1])\n", + "ct_ao_output['State'] = ct_ao['Geographic Area Name'].apply(lambda x: x.split(',')[2])\n", + "ct_ao_output['Census_HH'] = ct_ao['Estimate!!Total']\n", + "ct_ao_output['Census_A0'] = ct_ao['Estimate!!Total!!No vehicle available']\n", + "ct_ao_output['Census_A1'] = ct_ao['Estimate!!Total!!1 vehicle available']\n", + "ct_ao_output['Census_A2'] = ct_ao['Estimate!!Total!!2 vehicles available']\n", + "ct_ao_output['Census_A3'] = ct_ao['Estimate!!Total!!3 vehicles available']\n", + "ct_ao_output['Census_A4'] = ct_ao['Estimate!!Total!!4 or more vehicles available']\n", + "ct_ao_output" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# ct_ao_output.to_csv('../data/census/ACS_2017_5yr_CA_CT_AutoOwn.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Some Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# hh = pd.read_csv(r'F:\\Projects\\Clients\\mtc\\updated_networks\\version_11_v5_newer_population\\ctramp_output\\householdData_3.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# xwalk = pd.read_csv(r'F:\\Projects\\Clients\\mtc\\updated_networks\\MTC_Visualizer\\data\\SHP\\census_tracts_mazs_tazs_v2.2.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
hh_idhome_mgraincomeautosautomated_vehiclestranspondercdap_patternjtf_choicesampleRatesizeworkers
0179811115977101NM000.522
1179971215535101NN000.520
217980115396201NNMj100.531
3180051479007200N000.511
4179741116477201MMNHMM000.562
\n", + "
" + ], + "text/plain": [ + " hh_id home_mgra income autos automated_vehicles transponder \\\n", + "0 17981 1 115977 1 0 1 \n", + "1 17997 1 215535 1 0 1 \n", + "2 17980 1 15396 2 0 1 \n", + "3 18005 1 479007 2 0 0 \n", + "4 17974 1 116477 2 0 1 \n", + "\n", + " cdap_pattern jtf_choice sampleRate size workers \n", + "0 NM0 0 0.5 2 2 \n", + "1 NN0 0 0.5 2 0 \n", + "2 NNMj 10 0.5 3 1 \n", + "3 N0 0 0.5 1 1 \n", + "4 MMNHMM0 0 0.5 6 2 " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hh.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
hh_idhome_mgraincomeautosautomated_vehiclestranspondercdap_patternjtf_choicesampleRatesizeworkershas_zero_autoMAZ_ORIGINALTAZ_ORIGINALCOUNTYFP10TRACTCE10CTIDFP10MAZSEQTAZSEQ
0179811115977101NM000.5220100015675213006075021300156
1179971215535101NN000.5200100015675213006075021300156
217980115396201NNMj100.5310100015675213006075021300156
3180051479007200N000.5110100015675213006075021300156
4179741116477201MMNHMM000.5620100015675213006075021300156
\n", + "
" + ], + "text/plain": [ + " hh_id home_mgra income autos automated_vehicles transponder \\\n", + "0 17981 1 115977 1 0 1 \n", + "1 17997 1 215535 1 0 1 \n", + "2 17980 1 15396 2 0 1 \n", + "3 18005 1 479007 2 0 0 \n", + "4 17974 1 116477 2 0 1 \n", + "\n", + " cdap_pattern jtf_choice sampleRate size workers has_zero_auto \\\n", + "0 NM0 0 0.5 2 2 0 \n", + "1 NN0 0 0.5 2 0 0 \n", + "2 NNMj 10 0.5 3 1 0 \n", + "3 N0 0 0.5 1 1 0 \n", + "4 MMNHMM0 0 0.5 6 2 0 \n", + "\n", + " MAZ_ORIGINAL TAZ_ORIGINAL COUNTYFP10 TRACTCE10 CTIDFP10 MAZSEQ \\\n", + "0 10001 56 75 21300 6075021300 1 \n", + "1 10001 56 75 21300 6075021300 1 \n", + "2 10001 56 75 21300 6075021300 1 \n", + "3 10001 56 75 21300 6075021300 1 \n", + "4 10001 56 75 21300 6075021300 1 \n", + "\n", + " TAZSEQ \n", + "0 56 \n", + "1 56 \n", + "2 56 \n", + "3 56 \n", + "4 56 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hh['has_zero_auto'] = np.where(hh['autos'] == 0, 1, 0)\n", + "hh_xwalk = pd.merge(hh, xwalk, how='left', left_on='home_mgra', right_on='MAZSEQ')\n", + "hh_xwalk.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "ct_ao_output['TractID'] = ct_ao_output['TractID'].astype('int64')\n", + "hh_xwalk_county = pd.merge(hh_xwalk, ct_ao_output[['County', 'TractID']], how='left', left_on='CTIDFP10', right_on='TractID')" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.5" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model_sample_rate = hh['sampleRate'].value_counts().index[0]\n", + "assert len(hh['sampleRate'].value_counts()) == 1, \"Need more sophisticated model scaling to handle non-uniform sample rates\"\n", + "model_sample_rate" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "model_zero_auto = hh_xwalk_county.groupby('County').agg({'has_zero_auto': sum, 'hh_id': 'count'})\n", + "model_zero_auto.columns = ['Model_A0', 'Model_HH']\n", + "model_zero_auto = model_zero_auto / model_sample_rate" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Model_A0Model_HHCensus_A0Census_HH
County
Alameda County5441457903855649569070
Contra Costa County2187838721421869389597
Marin County59681122565171104846
Napa County250052446250849044
San Francisco County121504385844109259358772
San Mateo County1331627047213902261796
Santa Clara County3031264597431923630451
Solano County73241443728049147352
Sonoma County87261943249242190058
Total26594227719402575722700986
\n", + "
" + ], + "text/plain": [ + " Model_A0 Model_HH Census_A0 Census_HH\n", + "County \n", + " Alameda County 54414 579038 55649 569070\n", + " Contra Costa County 21878 387214 21869 389597\n", + " Marin County 5968 112256 5171 104846\n", + " Napa County 2500 52446 2508 49044\n", + " San Francisco County 121504 385844 109259 358772\n", + " San Mateo County 13316 270472 13902 261796\n", + " Santa Clara County 30312 645974 31923 630451\n", + " Solano County 7324 144372 8049 147352\n", + " Sonoma County 8726 194324 9242 190058\n", + "Total 265942 2771940 257572 2700986" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "census_zero_auto = ct_ao_output.groupby('County')[['Census_A0', 'Census_HH']].sum()\n", + "model_v_census_A0 = pd.merge(model_zero_auto, census_zero_auto, how='left', left_index=True, right_index=True)\n", + "model_v_census_A0.loc['Total'] = model_v_census_A0.sum()\n", + "model_v_census_A0 = model_v_census_A0.astype(int)\n", + "model_v_census_A0" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Census_A0Model_A0differencepercent_diff
County
Alameda County5564954414-1235-2.22
Contra Costa County218692187890.04
Marin County5171596879715.41
Napa County25082500-8-0.32
San Francisco County1092591215041224511.21
San Mateo County1390213316-586-4.22
Santa Clara County3192330312-1611-5.05
Solano County80497324-725-9.01
Sonoma County92428726-516-5.58
Total25757226594283703.25
\n", + "
" + ], + "text/plain": [ + " Census_A0 Model_A0 difference percent_diff\n", + "County \n", + " Alameda County 55649 54414 -1235 -2.22\n", + " Contra Costa County 21869 21878 9 0.04\n", + " Marin County 5171 5968 797 15.41\n", + " Napa County 2508 2500 -8 -0.32\n", + " San Francisco County 109259 121504 12245 11.21\n", + " San Mateo County 13902 13316 -586 -4.22\n", + " Santa Clara County 31923 30312 -1611 -5.05\n", + " Solano County 8049 7324 -725 -9.01\n", + " Sonoma County 9242 8726 -516 -5.58\n", + "Total 257572 265942 8370 3.25" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "A0_df = model_v_census_A0[['Census_A0', 'Model_A0']].copy()\n", + "A0_df['difference'] = A0_df['Model_A0'] - A0_df['Census_A0']\n", + "A0_df['percent_diff'] = round((A0_df['difference'] / A0_df['Census_A0']) * 100, 2)\n", + "A0_df" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Census_HHModel_HHdifferencepercent_diff
County
Alameda County56907057903899681.75
Contra Costa County389597387214-2383-0.61
Marin County10484611225674107.07
Napa County490445244634026.94
San Francisco County358772385844270727.55
San Mateo County26179627047286763.31
Santa Clara County630451645974155232.46
Solano County147352144372-2980-2.02
Sonoma County19005819432442662.24
Total27009862771940709542.63
\n", + "
" + ], + "text/plain": [ + " Census_HH Model_HH difference percent_diff\n", + "County \n", + " Alameda County 569070 579038 9968 1.75\n", + " Contra Costa County 389597 387214 -2383 -0.61\n", + " Marin County 104846 112256 7410 7.07\n", + " Napa County 49044 52446 3402 6.94\n", + " San Francisco County 358772 385844 27072 7.55\n", + " San Mateo County 261796 270472 8676 3.31\n", + " Santa Clara County 630451 645974 15523 2.46\n", + " Solano County 147352 144372 -2980 -2.02\n", + " Sonoma County 190058 194324 4266 2.24\n", + "Total 2700986 2771940 70954 2.63" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "HH_df = model_v_census_A0[['Census_HH', 'Model_HH']].copy()\n", + "HH_df['difference'] = HH_df['Model_HH'] - HH_df['Census_HH']\n", + "HH_df['percent_diff'] = round((HH_df['difference'] / HH_df['Census_HH']) * 100, 2)\n", + "HH_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Region Wide Comparison" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "hh['weight'] = 1 / hh['sampleRate']" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Model
autos
0265932
1861872
21010316
3414290
4219324
Total2771734
\n", + "
" + ], + "text/plain": [ + " Model\n", + "autos \n", + "0 265932\n", + "1 861872\n", + "2 1010316\n", + "3 414290\n", + "4 219324\n", + "Total 2771734" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hh['weight'] = 1 / hh['sampleRate']\n", + "model_ao_regionwide = hh.groupby('autos')['weight'].sum().to_frame().astype(int)\n", + "model_ao_regionwide.loc['Total'] = model_ao_regionwide.sum()\n", + "model_ao_regionwide.columns = ['Model']\n", + "model_ao_regionwide" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Census
Total2700961
0257569
1837738
2981769
3409090
4214795
\n", + "
" + ], + "text/plain": [ + " Census\n", + "Total 2700961\n", + "0 257569\n", + "1 837738\n", + "2 981769\n", + "3 409090\n", + "4 214795" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "census_ao_regionwide = ct_ao_output.loc[ \n", + " ct_ao_output['TractID'].isin(hh_xwalk_county['CTIDFP10']),\n", + " ['Census_HH', 'Census_A0', 'Census_A1', 'Census_A2', 'Census_A3', 'Census_A4']].sum().to_frame()\n", + "census_ao_regionwide.index= ['Total', 0, 1, 2, 3, 4]\n", + "census_ao_regionwide.columns = ['Census']\n", + "census_ao_regionwide" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ModelCensusdifferencepercent_diff
026593225756983633.246897
1861872837738241342.880853
21010316981769285472.907710
341429040909052001.271114
421932421479545292.108522
Total27717342700961707732.620290
\n", + "
" + ], + "text/plain": [ + " Model Census difference percent_diff\n", + "0 265932 257569 8363 3.246897\n", + "1 861872 837738 24134 2.880853\n", + "2 1010316 981769 28547 2.907710\n", + "3 414290 409090 5200 1.271114\n", + "4 219324 214795 4529 2.108522\n", + "Total 2771734 2700961 70773 2.620290" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ao_regionwide = pd.concat([model_ao_regionwide, census_ao_regionwide], axis=1)\n", + "ao_regionwide['difference'] = ao_regionwide['Model'] - ao_regionwide['Census']\n", + "ao_regionwide['percent_diff'] = ao_regionwide['difference'] / ao_regionwide['Census'] * 100\n", + "ao_regionwide" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Calculating Coefficient Changes" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Model_A0Model_HHCensus_A0Census_HHModel_A0_shareCensus_A0_sharecoef_change
County
Alameda County54414579038556495690700.2046090.2160520.054422
Contra Costa County21878387214218693895970.0822660.0849040.031567
Marin County596811225651711048460.0224410.020076-0.111367
Napa County2500524462508490440.0094010.0097370.035174
San Francisco County1215043858441092593587720.4568820.424188-0.074247
San Mateo County13316270472139022617960.0500710.0539730.075045
Santa Clara County30312645974319236304510.1139800.1239380.083762
Solano County732414437280491473520.0275400.0312500.126370
Sonoma County872619432492421900580.0328120.0358810.089430
Total265942277194025757227009860.0959410.095362-0.006048
\n", + "
" + ], + "text/plain": [ + " Model_A0 Model_HH Census_A0 Census_HH \\\n", + "County \n", + " Alameda County 54414 579038 55649 569070 \n", + " Contra Costa County 21878 387214 21869 389597 \n", + " Marin County 5968 112256 5171 104846 \n", + " Napa County 2500 52446 2508 49044 \n", + " San Francisco County 121504 385844 109259 358772 \n", + " San Mateo County 13316 270472 13902 261796 \n", + " Santa Clara County 30312 645974 31923 630451 \n", + " Solano County 7324 144372 8049 147352 \n", + " Sonoma County 8726 194324 9242 190058 \n", + "Total 265942 2771940 257572 2700986 \n", + "\n", + " Model_A0_share Census_A0_share coef_change \n", + "County \n", + " Alameda County 0.204609 0.216052 0.054422 \n", + " Contra Costa County 0.082266 0.084904 0.031567 \n", + " Marin County 0.022441 0.020076 -0.111367 \n", + " Napa County 0.009401 0.009737 0.035174 \n", + " San Francisco County 0.456882 0.424188 -0.074247 \n", + " San Mateo County 0.050071 0.053973 0.075045 \n", + " Santa Clara County 0.113980 0.123938 0.083762 \n", + " Solano County 0.027540 0.031250 0.126370 \n", + " Sonoma County 0.032812 0.035881 0.089430 \n", + "Total 0.095941 0.095362 -0.006048 " + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model_v_census_A0['Model_A0_share'] = model_v_census_A0['Model_A0'] / model_v_census_A0.loc['Total', 'Model_A0']\n", + "model_v_census_A0['Census_A0_share'] = model_v_census_A0['Census_A0'] / model_v_census_A0.loc['Total', 'Census_A0']\n", + "\n", + "model_v_census_A0.loc['Total', 'Census_A0_share'] = model_v_census_A0.loc['Total', 'Census_A0'] / model_v_census_A0.loc['Total', 'Census_HH']\n", + "model_v_census_A0.loc['Total', 'Model_A0_share'] = model_v_census_A0.loc['Total', 'Model_A0'] / model_v_census_A0.loc['Total', 'Model_HH']\n", + "model_v_census_A0['coef_change'] = np.log(model_v_census_A0['Census_A0_share'] / model_v_census_A0['Model_A0_share'])\n", + "model_v_census_A0" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmMAAAIGCAYAAAAY8YiUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzde3zO9f/H8ee1Xa6Z3zBjG9/SgaEUlpxPEdmXDENIQgeH8NNXiCaHnM8SFfkqh4jJWJNmjRIZITk1p1J8i5k5bman6/r94ef6tphrm13XtV173G83N/ucX+/rmu3p/Xlf74/BYrFYBAAAAKdwc3YBAAAARRlhDAAAwIkIYwAAAE5EGAMAAHAiwhgAAIATEcYAAACciDAGFCKHDh1Shw4dsvxp0KCBnnnmGbted8WKFapWrZp++umnHB+zYMECxcTE5Oo64eHh6t+//23rX3zxRUVFReXqXPfq6aef1qFDh3J1zKhRo7RkyZLb1l+8eFHVqlXL9fWDgoLUoUMHBQcH69lnn9WaNWtydQ5Jio+P16hRoxQcHKz27dvrueeey/X7kht5ed+Bos7o7AIA5FyNGjUUERFhXf7ll1/Uo0cPjRw50q7XXb16tYKDg7Vs2TIFBgbm6Jjdu3crICDArnW5ulmzZqlGjRqSpLNnzyooKEjNmjVThQoVcnT8xYsX1b17d73++uuaOnWqDAaDjh49qpdeekmenp5q3LhxvtfM+w7kHj1jQCF1+fJl9e/fXy+//LJatWol6WYvyKBBg9SpUycFBwdr4cKFkqT//Oc/euqpp/Tyyy8rKChI58+fV0xMjDp27Kj27dvr+eef18GDB+94nd27d+vKlSsaMWKEtmzZorNnz1q3/b3H6tbyypUrdfjwYc2YMUNff/21rl27puHDh6tdu3YKDg7WjBkzlJGRkad27927V127dlVwcLA6deqk7777TtLtvWp/Xd67d6+6dOmiTp06qVOnTtq8ebMkKS0tTVOmTFFISIjat2+vUaNGKSkpyXqONWvWqFOnTmrevLnmzp2bZX27du3Uvn17vfzyyzp16tRtdUZHR6tNmzbq1KmT3n33Xev6hIQEvfzyywoJCVFISEiWbXdz5coVeXp6qkSJEvriiy/UvXt367Y///xTTZo0UVpaWpZjVq1apdq1a6tjx44yGAySpEceeUTvvfeeypUrl+fXc9SoUZo0aZJefPFFPfPMMxo8eLCSk5OzvO9ffPGF6tatm+W16dOnD71mwB3QMwYUQhkZGXr99dcVGBiY5RfmiBEj1KdPHz399NNKTU1V37599cADD6hmzZo6d+6cZs+erTp16uiXX37RuHHjtHr1alWsWFGxsbEaOHCgoqKi5OXlleVaq1atUnBwsPz9/dWgQQN9+umnGjFixF3re+GFFxQVFaUXXnhBzzzzjEaOHClvb29FRkYqPT1dr732mj7++GP169fvtmP37t2rDh06ZFl3+vRpSdKlS5c0ZMgQffjhh6pVq5ZOnDihnj176vPPP79rPfPnz9dLL72kZ599VkePHtWaNWsUFBSkjz76SO7u7goPD5fBYNCcOXM0a9YsjR8/XpLk4eGh8PBwJSQk6Omnn1b37t3122+/6d///rfWrFkjHx8fhYeHa9CgQfryyy+t17tw4YJCQ0O1evVqBQQEaNGiRdZtYWFhuv/++/Xxxx/r+vXrGj16tK5du6aSJUveVvfw4cNVvHhxpaam6vfff1e/fv1UunRp/fOf/9S0adN04sQJValSRWvXrlVISIhMJlOW4w8fPqymTZvedt66deve0+t569zLly+XwWBQ165dre/3rb//+c9/6tChQ1q7dq3efPNNnT59Wr/99ptatGhh89xAUUPPGFAITZ48WSkpKZo8ebJ13fXr17Vnzx7NmzdPHTp0UNeuXXX27FkdPXpUkmQ0Gq23GHft2qUGDRqoYsWKkqSGDRvKx8dHhw8fznKdhIQEbdmyRR07dpQkdezYUWvXrtX169dzVe93332nnj17ymAwyGQyqXv37tYemL+rU6eOIiIisvx5/PHHJUkHDx7UAw88oFq1akmSqlSpotq1a+uHH3646/XbtGmjCRMmaNiwYTpy5IjeeOMNSdK3336rrVu3qmPHjurQoYNiYmL0yy+/WI9r166dJMnX11flypVTYmKitm/frrZt28rHx0eS1KlTJ8XHx+s///mP9bh9+/apatWq1tt13bp1s25r2rSpoqOj1bdvX61Zs0bDhg27YxCTbt6mjIiIUFRUlKKjo7Vx40Zt3LhRJpNJzz33nNauXavMzEytX79eXbt2ve14g8Gguz3xLq+v5612mEwmFStWTFWrVtWVK1du26dHjx6KiIhQenq61qxZoy5dusjd3d3muYGihp4xoJBZvXq1tm7dqs8//1weHh7W9WazWRaLRatXr5anp6ekm2OGPDw8dOnSJZlMJhmNRuu+t25b3WKxWG67dRgWFiZJeu2116zHJSUlaf369XrhhResx92Snp5+x5r/fj2z2Zyn25SZmZnZ1m0ymbKtpXv37mrRooW+//57bd++XQsWLFBUVJTMZrNCQ0P11FNPSZKSk5OVmppqPe7W6yX9N9iYzebb6rrTa/fXWv56npo1a2rLli2KjY3Vrl279Nxzz2nx4sXWwJmdihUr6umnn9aePXvUrl07de/eXV26dFG9evVUpUoVa7D+q8DAQP3000/q2bNnlvWrV69WSkqKHnzwwTy9npJUvHhx69fZhb6HH35Y1apV05YtW7Rx40br9xOArOgZAwqRPXv2aM6cOfrggw/k6+ubZZuXl5cCAwP1ySefSJKuXr2q559/Xlu2bLntPA0bNtSOHTt05swZSVJsbKzOnj1r7SGRbgaftWvX6p133tHWrVu1detWffvtt+rfv7+WL18ui8WSpTft5MmTOnbsmPV4d3d3a0Bp0qSJPv30U1ksFqWlpSksLEyNGjXKdfsDAwP166+/Wse3nThxQnv27FG9evXk4+OjEydOKDU1Venp6dZxYdLNMBYXF6dOnTpp4sSJunr1qhISEtSkSROtXLlSaWlpMpvNGjNmjObMmXPXGpo2bapNmzbp4sWLkqR169bJ29tbDz74oHWfunXr6uTJk9ZeyfDwcOu2WbNm6YMPPlCrVq00evRoBQQE6MSJEzbbfqvns2bNmpKkChUqKDAwUFOmTNHzzz9/x2O6deumH374QV988YU1LB0+fFjvvfeeqlatmufX827++r5LN3vHZsyYoZo1a8rf3z9H5wCKGnrGgEJkwYIFkqTQ0NDbtoWHh2vWrFmaOHGigoODlZaWZh1k/tdbaJIUEBCgcePGafDgwcrMzFTx4sW1cOHCLLfLvvnmG5nNZgUHB2c5tk+fPlq+fLm2bdum1157TaNGjdK2bdtUqVIl1alTx7rf008/rTlz5ig9PV1vv/22Jk2apODgYKWnp6tp06YaMGBArtvv4+OjefPmaeLEibpx44YMBoOmTp2qhx9+WBUrVlTdunXVpk0b+fr6qn79+tZwOHz4cE2ZMkXvvvuuDAaDBg8erPvvv18DBw7U9OnTFRISoszMTD366KMaNWrUXWto3Lix+vTpo969e8tsNsvHx0eLFi2Sm9t//2/r4+OjWbNmafjw4SpWrJh1jJYk9e7dW6NGjVK7du1kMplUrVo1Pfvss3e81q0xYwaDQSkpKWrTpo06d+5s3X4rXN7q2fs7b29vrVixQjNnzrTW6OnpqcmTJ1s/SZmX1/Nu/vq+h4SEqEWLFnr77bezfOAAQFYGy90GFAAACiSz2awJEyboH//4xx0/CFFQ7N+/X2+//bY2btx42y1RADfRMwYAhUxSUpJatGih2rVr2+zJc6aRI0fqhx9+0Ny5cwliwF3QMwYAAOBEDOAHAABwIsIYAACAExHGAAAAnIgwBgAA4ESF+tOUly4ly2x2zOcPypb1UmJiku0dCynaV3i5ctsk2lfY0b7Cy5XbJjm2fW5uBpUp8z/Zbi/UYcxstjgsjN26niujfYWXK7dNon2FHe0rvFy5bVLBaR+3KQEAAJyIMAYAAOBEhfo2JQAABYnFYtGlSwlKS7shqWDcAsur8+fdZDabnV2G3dijfe7uRnl5ecvTM/vxYXdCGAMAIJ8kJV2RwWCQv//9MhgK980no9FNGRmuG8byu30Wi0Xp6Wm6fDlBknIVyAr3dwoAAAVISkqSSpb0LvRBDLlnMBhkMnnI29tXSUmXc3Us3y0AAOQTszlT7u7cdCrKihUzKTMzI1fHEMYAAMhHBoPB2SXAifLy/hPfAQCwk5KlPFXcI/9/1d5IzdC1qyn5fl44B2EMAAA7Ke5hVPCwiHw/b+TsDrqWg/3Onv1Tzz3XXu3bh+jNN0db1584cUwvvfSCQkPHqW3bYJvn+fHHvfr444+0YMFH2e4zefJ4PfHEkzbPl5GRoc6dn1Xz5i01dOib1vXp6emaNm2Cjh6Nk4eHh8aNm6wHH3zIdiP/pkmTOtqxY2+uj3MmblMCAODCSpcurd27Y5WZmWldt2XL1/L2LuOUenbt+l6PPvqYtm6N0Y0bN6zr165dreLFPbVy5ecaMmSYJk8e75T6nIGeMQAAXJinZwlVqVJVBw7sV+3adSRJP/ywS3Xq1JMkff/9di1e/KEsFrP+8Y/7NGJEqHx8ymr37ljNnTtbJpMpSw/Vf/5zRrNmTdXVq1fk4VFcQ4eOUNWqj+S4ni+/jFSzZi1kNlsUE7NZ7dp1kCTFxu7Qq68OkCQFBtbW5cuXdO7cOZUvX/6O5zl58oRmzJiszMxMmUwmhYaOU8WKD0iSZs6cosOHD0mSJk+eofvvr6itW2O0evWnSk1NVXp6mt5+e7yqV6+hwYP7qVSp0jp16hdNmDBViYmJWrJkoTIyMlShwn0aOXK0Spf2zt2Lnkv0jAEA4OJatHhG33yzRZIUF3dEAQFVVKxYMV26dFEzZ07R1KmztGzZatWoUUtz5sxQWlqaJkwYp0mTpuvjjz+Vh4eH9VyTJ4/TwIFD9PHHK/Xmm6M1blxojuu4dOmS9u7drSZNnlLLls8oIiLcuu3ChQSVLVvOuly2bDklJMRne66wsFXq3r2nlixZofbtQ3TkyCHrtjp16mnZss9Ut259RUSEy2w2KyJinWbMeFfLln2mHj16admyj637V64coM8+C1e5cn5auHCBZs9eoE8+WaV69Rroww/n57h9eUXPGAAALq5Jk2ZavPhDmc1mbdnytZ5++hlt2RKt4sWL69FHH1OFCv+QJLVv30krVizVr7+eVLly5fTQQw9Lktq0aafFiz/U9evXFRf3s6ZMmWA9d0pKiq5cydm8WtHRm/Tkk3VVqlQpNW36lKZPn6zjx4+qatVHZLFY/vZJRMtd52tr2LCx5syZod27d6px42Zq3LipdVvTps0lSQ8/XEkHDuyXm5ubpkyZqe+/367Tp3/X/v375O7ubt2/evXHJUk//3xY8fHnNGTIzR46szlTpUqVzlHb7gVhDAAAF1eiRAkFBFTRwYM/6ccf92jAgMHasiVaZnPWRzZZLJb/H1tmkOUvm24FF7PZLJPJQ0uXrrJuO38+PseBZdOmjUpMTFCXLjcH+bu5GRQREa4RI0Ll6+unCxcu6L777pckJSYmqlw532zP1aJFKz3+eE19//12hYWtUmzsDo0c+bYkyWi8GW8MBoMsFouuX7+uvn17q3XrNqpV6wlVrhyg8PC11nPd6vkzmzNVs2YtTZ8+V5KUmpqqlBT7f2qV25QAABQBTz/dSgsXLlC1atWtYSU19YZ+/vmQzp79U5L0xRfhql37SQUEVNGlS4k6ceK4JCkmZrMkycvLS/ffX1GbN2+SJO3Zs0uDBvXL0fWPHo3T+fPxWrduoz7/PFKffx6pGTPeVXR0lK5fT1bDho0VFfWlJOnAgZ9kMnlkO15MksaOfUtxcT+rY8fOevXVATp27Gi2+545c1oGg0G9er2s2rXraNu2b2Q2Z962X/Xqj+vIkUM6ffp3SdLSpf/W+++/m6P23Qt6xgA4RF7nW0pLv/0HJlBY3EjNUOTsDnY5b241btxM06ZNtA6SlyQfn7IaMWK0QkOHKz09Q+XLl9eoUWNlNBo1YcIUTZo0Vu7u7lkG6I8bN0kzZ07RqlXLZTQW04QJU3I00emmTV+obdtgeXgUt66rXbuOKlZ8QNHRX6lz526aOXOKevbsKpOpmMaMmXCXs0kvvviSpk+fpKVLF8toLKbhw0dlu29AQBUFBFRVjx5d5OZmUL16DXXo0IHb9itbtpxGjRqrsWPfktmcKV9ff40de/c68oPBYrEU2sfKJyYm3dbFai++viWVkJCTWV0KJ9pXeBWWtvn6lszTfEuRszsUivblVWF5//KqqLXv3LnfVb78g06sKP/woPC8+/v3gZubQWXLemVfi12qAAAARU5q6g317//yHbe9+mp/NWnyVK7Ot2VLtFasWHrHbX8dt1bYEcYAAEC+8PAonq8hqWXL1mrZsnW+na+gYgA/AACAExHGAAAAnIgwBgAA4ESEMQAAACdiAD8AAHZSprRJRpOH7R1zKSMtVZeupOX7eeEchDEAAOzEaPLQr5M75/t5K41eJ8l2GEtOTtLChe/rp5/2yd3dqJIlS2rw4KGqVu0Rm8c6WkZGhjp3flbNm7fU0KFvWtenp6dr2rQJOno0Th4eHho3brIefPChXJ+/SZM62rFjbz5WnH+4TQkAgAsym80aPvx1lSpVSp98skpLl67SSy/11fDhQ3L8YG9H2rXrez366GPaujVGN27csK5fu3a1ihf31MqVn2vIkGGaPHm884q0E3rGAABwQT/+uFfx8ef0yiv95eZ2s++ldu06Cg0dK7PZrBUrluqbb75WZqZZ9es30GuvDdG5c2cVGjpclSpV1okTx1WmjI8mTpymEiX+R1OnvqNff/1FkhQS8pzatw/R5Mnj9cQTT6pt25sP/r7V+7R37w/64IP3ZDAYVLJkSY0fP0Xe3t53rffLLyPVrFkLmc0WxcRsVrt2Nx8jFRu7w/oIp8DA2rp8+ZLOnTuX7XMrT548oRkzJiszM1Mmk0mhoeNUseIDkqSZM6fo8OFDkqRp02aqQoX7tXVrjFav/lSpqalKT0/TW2+NVY0atTR4cD+VKlVap079ogkTpioxMVFLlixURkaGKlS4TyNHjlbp0ndvU07RMwYAgAs6fvyYqlSpag1itzRs2ETHjh3VsWNxWrx4uT75ZKUSEhIUHf2VpJthplu3F7Rq1Vp5eXkpOvorHTp0QFevXtUnn6zSzJnzdODA/rtee9myJRox4i0tWbJCdevW1/Hj2T/EW5IuXbqkvXt3q0mTp9Sy5TOKiAi3brtwIUFly5azLpctW04JCfHZnissbJW6d++pJUtWqH37EB05csi6rU6delq27DPVrVtfGzask9lsVkTEOs2Y8a6WLftMPXr0yjLjf+XKAfrss3CVK+enhQsXaPbsBfrkk1WqV6+BPvxw/l3blBv0jAEA4ILc3AwyZfPhgb17f9DPPx/WK6+8KOnmY4z8/curZs1AlSnjY30weKVKAbp69aoqVaqs06d/1xtvDFaDBo01aNDrd712kybNFBo6Qk2bPqWmTZ9S3boN7rp/dPQmPflkXZUqVUpNmz6l6dMn6/jxo6pa9RFZLJa/PYjcIoMh+76khg0ba86cGdq9e6caN26mxo2bWrc1bdpckvTww5V08OB+ubm5acqUmfr+++06ffp37d+/L0t4rV79cUnSzz8fVnz8OQ0ZcrOHzmzOVKlSpe/aptwgjAEA4IIeeaS61q///LYws2jR+9q37wd17fq8unfvKUm6du2a3N3ddeXKZZlMpiznsVgsKl3aWytWhGnPnt2Kjf1eL7/cUytWhMlgMMhisUi6OQD/lm7dXlDjxs20c+d2ffDBe2re/Ih6934l21o3bdqoxMQEdely83anm5tBERHhGjEiVL6+frpw4YLuu+9+SVJiYqLKlfPN9lwtWrTS44/X1Pffb1dY2CrFxu7QyJFvS5KMxpux52bd0vXr19W3b2+1bt1GtWo9ocqVA7RuXZj1XB4eN8Os2ZypmjVrafr0uZKk1NRUpaSk3O3lzxXCGAAAdpKRlvr/n3zM//PaUqvWEypTxkcff/yR+vR5Ve7u7tq9O1abNn2hAQP+V2Fhq9S+fSeZTCa99dYwtW0brCeeePKO59qxY5s2b/5KEyZMVf36DbVv3w86fz5epUt769SpXyVJ3333rXX/vn17a8SIt9S1aw+VLFlKO3Zsy7bOo0fjdP58vDZs2CQPj+KSbo53GznyDQ0a9LoaNmysqKgvVatWoA4c+Ekmk0e248UkaezYt9SqVZA6duyshx56WO+9Nyfbfc+cOS2DwaBevV6WxWLRxIk3x9P9XfXqj2v69Ek6ffp3PfDAg1q69N+6cCFBo0ePz/bcuUEYAwDATm7OBeac+cAMBoOmTZuj+fNnq1evbjIajSpd2lszZ85T1aqPKD7+nPr16yOzOVP16zdSmzbtdO7c2Tueq0GDxvr226168cWuMplMCgpqq8qVA9SxY2eNHfuWevfurtq161rHdvXvP0iTJ78jd3d3lShRwtozdSebNn2htm2DrUFMuvlBg4oVH1B09Ffq3LmbZs6cop49u8pkKqYxYybctd0vvviSpk+fpKVLF8toLKbhw0dlu29AQBUFBFRVjx5d5OZmUL16DXXw4E+37Ve2bDmNGjVWY8e+JbM5U76+/ho79u515IbBcqt/sRBKTEyS2eyY8n19Syoh4ZpDruUMtK/wKixt8/UtqeBhEbk+LnJ2h0LRvrwqLO9fXhW19p0797vKl3/QiRXlH6PRTRkZt/cSuQp7tu/v3wdubgaVLeuVfS12qQIAAOD/pabeUP/+L99x26uv9leTJk/l6nxbtkRn+dTjXy1duiq35TkdYQwAANiVh0fxfA1JLVu2VsuWrfPtfM7GPGMAAOSjQjz6B/nAYjFLMtjc768IYwAA5BOj0aTk5KsEsiLIYrEoIyNdly9fkMlU3PYBf8FtSgAA8kmZMr66dClBSUkF79mPueXm5nbHaR5chT3a5+bmLk9PL3l55W5CWMIYAAD5xN3dqHLlKji7jHxR1D4J60zcpgQAAHAiwhgAAIATcZsSQIFmzkiTr2/JXB+XkZb6/7OfA0DBRhgDUKC5GU36dXLnXB9383mAhDEABR+3KQEAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiQhjAAAATkQYAwAAcCLCGAAAgBMRxgAAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiewaxiIjI9W2bVu1bt1aK1euzHa/b7/9Vk8//bQ9SwEAACiQjPY6cXx8vObOnavw8HCZTCZ1795d9evXV0BAQJb9Lly4oOnTp9urDAAAgALNbj1jO3fuVIMGDeTt7a0SJUooKChIUVFRt+339ttva/DgwfYqAwAAoECzWxg7f/68fH19rct+fn6Kj4/Pss/y5ctVvXp11apVy15lAAAAFGh2u01pNptlMBisyxaLJcvy8ePHFR0draVLl+rcuXN5ukbZsl73XGdu+PqWdOj1HI32FV6u3LZ7UVhel8JSZ17RvsLLldsmFZz22S2MlS9fXnv37rUuJyQkyM/Pz7ocFRWlhIQEde7cWenp6Tp//rx69OihVatW5fgaiYlJMpst+Vp3dnx9Syoh4ZpDruUMtK/wKixtc8YPvcLyuhSGOvOK9hVertw2ybHtc3Mz3LUDyW63KRs1aqTY2FhdvHhRKSkpio6OVrNmzazbhwwZos2bNysiIkIfffSR/Pz8chXEAAAAXIHdwpi/v7+GDh2qXr16qWPHjmrXrp1q1qypvn376tChQ/a6LAAAQKFit9uUkhQcHKzg4OAs6xYvXnzbfvfff7+2bt1qz1IAAAAKJGbgBwAAcCLCGAAAgBMRxgAAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiQhjAAAATkQYAwAAcCLCGAAAgBMRxgAAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiQhjAAAATkQYAwAAcCLCGAAAgBMRxgAAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiQhjAAAATkQYAwAAcKIchbGkpCRJ0s8//6wNGzYoPT3drkUBAAAUFUZbO8ybN0+nT5/WsGHD9OqrryogIEB79uzR5MmTHVEfAACAS7PZM7Zt2zZNmjRJ0dHRevbZZ7V8+XIdPXrUEbUBAAC4vBzdpvT09NTOnTvVoEEDSVJaWppdiwIAACgqbIaxMmXKaPz48Tp8+LAaNWqkWbNmyc/PzxG1AQAAuDybYWz69Ony8/PTokWL5OnpKYPBoOnTpzuiNgAAAJdncwB/uXLlNHDgQOvysGHD7FoQAABAUZJtGHvkkUdkMBiyPTAuLs4uBQEAABQl2Yax2NhYWSwWzZs3T/fdd5+6desmd3d3hYeH688//3RkjQAAAC4r2zFjZcqUkY+Pjw4fPqx+/fqpdOnS8vLyUq9evfTDDz84skYAAACXZXMAf0pKin799Vfr8rFjx5iBHwAAIJ/YHMD/r3/9S926dVO1atVkNpv1yy+/aNasWY6oDQAAwOXZDGOtW7fWk08+qX379kmS6tSpIx8fH7sXBgAAUBRkG8Y++eSTO67/448/JEkvvfSSfSoCAAAoQrINY8ePH3dkHQAAAEVStmFs6tSpWZb/+OMPZWRk6MEHH7R7UQAAAEWFzTFjv//+uwYOHKjz58/LbDarTJkyWrRokSpXruyI+gAAAFyazaktJkyYoFdffVV79uzRvn379Nprr+mdd95xRG0AAAAuz2YYS0xMVEhIiHW5c+fOunTpkl2LAgAAKCpshrHMzExdvnzZunzx4kW7FgQAAFCU2Bwz1rNnT3Xr1k1t2rSRwWDQpk2b1Lt3b0fUBgAA4PJshrFu3brpgQce0I4dO2Q2mzVu3Dg1atTIEbUBAAC4PJthTJIqVaqk0qVLy2KxSJKOHDmixx57zK6FAQAAFAU2w9jcuXP1ySefqFy5ctZ1BoNBW7ZssWthAAAARYHNME0n8g0AACAASURBVBYZGamtW7dmCWMAAADIHzY/TVmmTBmCGAAAgJ1k2zN25MgRSVL16tU1adIkBQcHy2j87+6MGQMAALh32Yax//3f/82yvHXrVuvXjBkDAADIH9mGsb+GLwAAANiHzTFjycnJmjBhgnr37q3Lly9r7NixSk5OdkRtAAAALs9mGJs0aZJKliypxMREeXh4KCkpSWPHjnVEbQAAAC7PZhiLi4vT0KFDZTQa5enpqVmzZikuLs4RtQEAALg8m2HMzS3rLpmZmbetAwAAQN7YnPS1bt26mjlzpm7cuKHt27dr5cqVql+/viNqAwAAcHk2u7iGDx+uEiVKqGTJkpo7d66qVaumN9980xG1AQAAuDybPWPFihXToEGDNGjQIKWlpenChQvy8PBwRG0AAAAuz2bP2Ndff62JEycqKSlJ//znP9WhQwctW7bMEbUBAAC4PJthbNGiReratauio6MVGBiob775RhEREY6oDQAAwOXZDGMWi0XVqlXTzp071axZM3l5eclisTiiNgAAAJeXo6ktNm3apB07dqhx48batm2bDAaDI2oDAABweTbD2MiRIxUWFqahQ4fK19dXH374oUaPHu2I2gAAAFyezU9T1qlTR0uXLrUur1692p71AAAAFCk2w9iAAQPuuH7hwoX5XgwAAEBRYzOMBQUFWb9OT0/X5s2b9fjjj9u1KAAAgKLCZhgLCQm5bfnFF1+0W0EAAABFSa6f+G2xWHT+/Hl71AIAAFDk5HrM2PHjx1WvXr0cnTwyMlIffvihMjIy1Lt3b73wwgtZtn/99dd67733ZDabVaNGDU2YMEEmkykX5QMAABRuuRozZjAY9Pzzz6tJkyY2TxwfH6+5c+cqPDxcJpNJ3bt3V/369RUQECBJun79uiZMmKD169erXLlyGjp0qNavX69u3brdQ3MAAAAKF5u3KUNCQqw9Yenp6XrooYfk7u5u88Q7d+5UgwYN5O3trRIlSigoKEhRUVHW7SVKlNDWrVtVrlw5paSkKDExUaVKlbqHpgAAABQ+NsPY9u3b1blzZ8XExGjLli3q0qWLYmJibJ74/Pnz8vX1tS77+fkpPj4+yz7FihXTtm3b1Lx5c126dClHPW4AAACuxOZtynnz5unTTz+13l48ceKERowYoVatWt31OLPZnOWxSRaL5Y6PUXrqqae0e/duzZkzR+PHj9fs2bNzXHzZsl453jc/+PqWdOj1HI32FV6u3LZ7UVhel8JSZ17RvsLLldsmFZz22Qxj6enp1iAmSVWqVFFmZqbNE5cvX1579+61LickJMjPz8+6fPnyZR0+fNjaGxYcHKyhQ4fmqvjExCSZzY55aLmvb0klJFxzyLWcgfYVXoWlbc74oVdYXpfCUGde0b7Cy5XbJjm2fW5uhrt2INm8TVm8eHEdOnTIunzo0CF5enravHCjRo0UGxurixcvKiUlRdHR0WrWrJl1u8Vi0YgRI/Tnn39KkqKiolS7dm2b5wUAAHAlNnvGRowYoQEDBujBBx+UJJ06dUrz5s2zeWJ/f38NHTpUvXr1Unp6urp06aKaNWuqb9++GjJkiGrUqKGJEyeqf//+MhgMCggI0DvvvHPvLQIAAChEcvSg8C+//FIHDhyQ2WxWYGCgypQpk6OTBwcHKzg4OMu6xYsXW79u1aqVzbFnAAAArizbMBYdHX3H9Xv27JEktW7d2j4VAQAAFCHZhrEVK1ZYvz5y5Igee+wx67LBYCCMAQAA5IMchbGOHTtmWQYAAED+yNGDwu80PxgAAADuXY7CGAAAAOyDMAYAAOBE2Y4ZGzBggPXrM2fOZFmWpIULF9qvKgAAgCIi2zAWFBR0x68BAACQf7INYyEhIY6sAwAAoEhizBgAAIATEcYAAACciDAGAADgRDYfFG42m7VkyRJ99913ysjIUOPGjTVgwAAZjTYPBQAAgA02e8Zmz56tXbt2qXfv3nrppZe0f/9+zZgxwxG1AQAAuDyb3Vvbt2/XunXrVKxYMUlS8+bN1b59e4WGhtq9OAAAAFdns2fMYrFYg5gkmUymLMsAAADIO5th7JFHHtGUKVN0+vRpnTlzRlOnTlXVqlUdURsAAIDLsxnGxo0bp6tXr6p79+567rnndPHiRY0dO9YRtQEAALg8m2PGdu3apWnTpmVZt2HDBnXs2NFuRQEAABQV2YaxrVu3KiMjQzNmzJDFYpHFYpEkZWRkaP78+YQxAACAfJBtGIuLi9OuXbuUmJio5cuX//cAo1F9+vRxRG0AAAAuL9swNmjQIA0aNEgrV67UCy+84MiaAAAAigybY8Z8fX0VHR192/rWrVvbpSAAAICixGYYW7FihfXr9PR0HTt2TPXq1SOMAQAA5INchTFJOnnypObPn2+3ggAAAIoSm/OM/V1AQIB+/fVXe9QCAABQ5NjsGfvreDGLxaLDhw/LaLR5GAAAAHIgV7cpDQaDfHx8bpsEFgAAAHmT6zFjkrRt2zZVq1bNLgUBAAAUJTm+33jjxg2tX79ey5cv14ULF7Rnzx571gUAAFAk2Axj8fHx+vTTTxUWFqbk5GT169ePGfgBAADySbafpjx48KDeeOMNtW7dWidOnNC4cePk5+enIUOGqFSpUo6sEQAAwGVlG8a6du0qo9GomJgYLVy4UG3btpXBYHBkbQAAAC4v2zA2evRo/fzzz+rUqZNmzpypEydOOLIuAACAIiHbMPbiiy9q48aNmjVrlv744w+FhIQoISFBGzZsUEZGhiNrBAAAcFk2B/DXr19f9evX14ULF7RmzRrNmzdP7777rr799lsHlAcAAODacjy1Rbly5TRo0CC99tpr+uabb+xZEwAAQJGR62dTurm5qWXLlvaoBQAAoMjJdRgDAABA/snRbcrk5GQdOXJEGRkZqlmzpry8vOxdFwAAQJFgM4wdPHhQAwcOVNmyZWU2mxUfH6+FCxeqdu3ajqgPAADApdkMY9OnT9esWbPUoEEDSVJsbKymTZumsLAwuxcHAADg6myOGUtOTrYGMUlq2LChUlJS7FoUAABAUWEzjBkMBv3xxx/W5f/85z9yd3e3a1EAAABFhc3blIMGDVK3bt3UsGFDGQwG7dixQ+PGjXNEbQAAAC7PZhgLDAzU8uXLtWvXLpnNZvXv31+VK1d2RG0AAAAuz2YY69mzp6KiolSpUiVH1AMAAFCk2Bwzdt999+nHH3+U2Wx2RD0AAABFis2esV9++UU9evSQ0WiUyWSSxWKRwWDQjz/+6Ij6AAAAXJrNMLZy5UpH1AEAAFAk5eg25aFDhxQWFiYfHx/t379f9913nyNqAwAAcHk2w9hHH32kzz77TFFRUbpx44YWLFig999/3xG1AQAAuDybYezLL7/U4sWL5enpqTJlyigsLEwbN250RG0AAAAuz2YYuzVw/5ZSpUrJaLQ51AwAAAA5YDNVVahQQd9++60MBoPS0tK0ZMkSxowBAADkE5thbMyYMXrzzTd17NgxBQYGqlatWpo1a5YjagMAAHB5NsOYv7+/li1bppSUFGVmZsrLy0sWi8URtQEAALi8bMeMBQUF6ZtvvrEue3p6ysvLS5LUqVMn+1cGAABQBGQbxq5evarQ0FAtXrz4tm30jAEAAOSPbMOYv7+/Pv30U4WFhWnkyJFKS0uzbjMYDA4pDgAAwNVlG8YMBoMqV66stWvX6ty5c+rVq5cuXrwoiZ4xAACA/GJzAL+3t7c+/vhjTZo0SZ07d9YHH3xQJHvGzBlp8vUtmevjMtJSdelKmu0dAQBAkZRtGPtr75e7u7vGjRunatWqqU+fPo6oq8BxM5r06+TOuT6u0uh1kghjAADgzrINY5MmTbptXffu3VW5cmWeTQkAAJBPsh0z9vjjj99xfd26dbV06VJ71QMAAFCk2Hw2JQAAAOyHMAYAAOBEhDEAAAAnynYAf3Bw8F0PjIyMzPdiAAAAippsw9iYMWMcWQcAAECRlG0Yq1evnvXry5cvKyUlRRaLRZmZmTp9+nSOTh4ZGakPP/xQGRkZ6t27t1544YUs22NiYjR//nxZLBbdf//9mjp1qkqXLp3HpuRMyVKeKu5hc65bAAAAh7CZSubNm6ePPvpI0s3JX9PT0xUQEGDzNmV8fLzmzp2r8PBwmUwmde/eXfXr11dAQIAkKSkpSePHj9e6devk7++vefPmaf78+Xr77bfzoVnZK+5hVPCwiFwfFzm7gx2qAQAARZ3NAfwRERH65ptvFBQUpOjoaE2dOtUaqO5m586datCggby9vVWiRAkFBQUpKirKuj09PV3jxo2Tv7+/JKlatWo6e/bsPTQFAACg8LEZxnx8fOTn56dKlSrp6NGj6tixo44fP27zxOfPn5evr6912c/PT/Hx8dblMmXK6JlnnpEk3bhxQx999JFatWqVlzYAAAAUWjZvUxqNRp0+fVqVKlXS3r171aRJE6Wmpto8sdlszvJAcYvFcscHjF+7dk2DBg3SI488opCQkFwVX7asV672d5a8PGDcGQpLnXnlyu1z5bbdi8LyuhSWOvOK9hVertw2qeC0z2YY69+/v8aMGaMPP/xQ8+bN04YNG9S8eXObJy5fvrz27t1rXU5ISJCfn1+Wfc6fP69XXnlFDRo0UGhoaK6LT0xMktlssb3jXzjjhU9IuObwa+aWr2/JQlFnXrly+wpL2/i3d2eF5f3LK9pXeLly2yTHts/NzXDXDiSbYax69epatmyZJGnDhg36/fff5eZme67YRo0aaf78+bp48aI8PT0VHR2tiRMnWrdnZmZqwIABatOmjQYOHJiTtgAAALicbMPY5cuXJUl9+/bVihUrZLHc7IEqV66cevbsmWUw/p34+/tr6NCh6tWrl9LT09WlSxfVrFlTffv21ZAhQ3Tu3Dn9/PPPyszM1ObNmyXdfDj55MmT86ttAAAABV62YWzYsGH6/vvvJUn169f/7wFGo4KCgnJ08uDg4Ntm8l+8eLEkqUaNGjp69GiuCwYAAHAl2YaxJUuWSJLeeustTZ061WEFAQAAFCU2x4xNnTpVBw4c0Pbt25Wenq4mTZqobt26jqgNAADA5dkcib9hwwYNGTJEV65cUXJyst544w2FhYU5ojYAAACXZ7NnbOnSpVq7dq11Woq+ffvqlVdeUdeuXe1eHAAAgKuz2TNmNpuzzA/m7++fo6ktAAAAYJvNVOXt7a2YmBjrckxMjEqXLm3XogAAAIqKbG9TLlu2TL1799aYMWM0cOBATZw4UQaDQUajUe+//74jawQAAHBZ2YaxDRs2qHfv3qpSpYqioqL022+/KTMzU5UqVZLRaHOoGQAAAHIgR6nK3d1dlStXtnctAAAARU62YezMmTMaMGBAtgcuXLjQLgUBAAAUJdmGsZIlS+b4sUcAAADIm2zDmLe3t0JCQhxZCwAAQJGT7dQWFovFkXUAAAAUSdmGsdmzZzuyDgAAgCIp2zDGpycBAADsj+caAQAAOFG2Yezdd9+VJO3bt89hxQAAABQ12YaxjRs3Kj4+Xu+8846uXLmiy5cvZ/kDAACAe5ft1BaNGzdW8+bNJUn169fPss1gMCguLs6uhQEAABQF2faMvfPOO4qLi1Pt2rV19OjRLH8IYgAAAPnD5rMpV65cqQMHDmj79u1KT09XkyZNVLduXUfUBgAA4PJsfpoyIiJCQ4YM0ZUrV5ScnKw33nhDYWFhjqgNAADA5dnsGfvkk0+0du1a+fn5SZL69u2rV155RV27drV7cQAAAK7OZs+Y2Wy2BjFJ8vf3l5sb05MBAADkB5upytvbWzExMdblmJgYlS5d2q5FAQAAFBU2b1OOGTNGAwcO1MSJE2UwGGQ0GvX+++87ojYAAACXZzOMValSRVFRUfrtt9+UmZmpSpUqyWi0eRgAAAByIEepyt3dnQeHAwAA2AEj8QEAAJyIMAYAAOBEOQpjBw8e1OrVq5WWlqb9+/fbuyYAAIAiw2YYCw8P11tvvaV///vfunbtmgYOHMgM/AAAAPnEZhhbsWKF1qxZIy8vL5UtW1bh4eFatmyZI2oDAABweTbDmJubm7y8vKzLFSpUkLu7u12LAgAAKCpyNAN/XFycDAaDJOmLL75gBn4AAIB8YnOesdDQUL3++us6ffq0mjRpIg8PD33wwQeOqA0AAMDl2QxjN27cUEREhHUG/ocffljFihVzRG0AAAAuz+ZtyuHDh1tn4K9atSpBDAAAIB/ZDGPVqlVTZGSk/vzzT12+fNn6BwAAAPfO5m3KLVu2KCoqKss6g8GguLg4uxUFAABQVNgMY4cOHXJEHQAAAEWSzTCWlpambdu2KTk5WZKUmZmp06dPa+jQoXYvDgAAwNXZDGNDhw7VmTNnlJCQoOrVq+vAgQOqV6+eI2oDAABweTYH8MfFxSk8PFwtW7ZUaGioPvvsM125csURtQEAALg8m2HMz89PRqNRDz30kI4fP64qVaro2rVrjqgNAADA5dkMYyVKlFBkZKQeeeQRffXVVzp27JiuX7/uiNoAAABcns0wNnbsWMXFxalx48Zyc3NTz5499fLLLzuiNgAAAJdncwD/Qw89pDfffFOS9O6779q9IAAAgKLEZhjbt2+fFixYoMTERFksFuv6yMhIuxYGAABQFNgMY2PGjFHXrl316KOPymAwOKImAACAIsNmGDOZTOrTp48DSgEAACh6bA7gr1SpEo9EAgAAsJNse8aCg4MlScnJyXr++edVsWJFGY3/3Z0xYwAAAPcu2zA2ZswYR9YBAABQJGUbxurVqyeLxaLMzEwZjUYlJSVp586dqlq1qh566CEHlggAAOC6sg1jJ0+eVL9+/TRmzBg1bNhQzz33nCQpKSlJ06ZNU+PGjR1WJACgcDJnpMnXt2Suj8tIS9WlK2l2qAgoeLINYzNmzNC//vUvtWjRQuvWrZPFYtGmTZsUHx+voUOHEsYAADa5GU36dXLnXB9XafQ6SYQxFA3Zfpry7Nmzat++vSRp9+7datWqldzc3FShQgUlJSU5rEAAAABXlm0Yc3P776b9+/erbt261uXU1FT7VgUAAFBEZHubsnTp0jp69KiSkpKUkJBgDWM//vij/P39HVYgAACAK8s2jL3xxhvq06ePkpKSNHz4cJUoUUJLlizRwoUL9f777zuyRgAAAJeVbRgLDAzUd999pxs3bqhUqVKSpCeeeEJr165lagsAAIB8ctdnU5pMJplMJuty7dq17V4QAABAUWLzQeEAAJQs5aniHvzKAOyBf1kAAJuKexgVPCwi18dFzu5gh2oA15Lt1BYAAACwP8IYAACAExHGAAAAnIgwBgAA4ESEMQAAACeyaxiLjIxU27Zt1bp1a61cuTLb/d58802Fh4fbsxQAAIACyW5hLD4+XnPnztWqVau0YcMGrVmzRidPnrxtnwEDBmjz5s32KgMAAKBAs1sY27lzpxo0aCBvb2+VKFFCQUFBioqKyrJPZGSkWrZsqTZt2tirDAAAgALNbpO+nj9/Xr6+vtZlPz8/HTx4MMs+r776qiRp37599ioDAACgQLNbGDObzTIYDNZli8WSZTk/lC3rla/nsxdf35LOLiFHCkudeeXK7XPltt2LwvK6FJY6Ha2wvC6Fpc68cOW2SQWnfXYLY+XLl9fevXutywkJCfLz88vXayQmJslstuTqGGe88AkJ1xx+zdzy9S1ZKOrMK1duX2FpG//27oz3L3uF5XUpDHXmhSu3TXJs+9zcDHftQLLbmLFGjRopNjZWFy9eVEpKiqKjo9WsWTN7XQ4AAKBQslvPmL+/v4YOHapevXopPT1dXbp0Uc2aNdW3b18NGTJENWrUsNelAQBAEVGylKeKe+Q+zqSlZ9qhmryxWxiTpODgYAUHB2dZt3jx4tv2mzZtmj3LAAAALqq4h1HBwyJyfVzE9DZ5uv2ekZaqS1fScn3c3dg1jAEAABREbkaTfp3cOdfHVRq9TlL+hjEehwQAAOBEhDEAAAAnIowBAAA4EWEMAADAiQhjAAAATkQYAwAAcCKmtoAkyZyRVmDmWwEAoCghjEFSwZpvBQCAooQw5mLy+lgIAADgHPzWdjF5fSxE5OwOdqgGAADYwgB+AAAAJyKMAQAAOBFhDAAAwIkIYwAAAE5EGAMAAHAiwhgAAIATEcYAAACciDAGAADgRIQxAAAAJyKMAQAAOBFhDAAAwIkIYwAAAE5EGAMAAHAiwhgAAIATEcYAAACciDAGAADgRIQxAAAAJyKMAQAAOBFhDAAAwIkIYwAAAE5EGAMAAHAio7MLAICizJyRJl/fkrk+LiMtVZeupNmhIgCORhgDACdyM5r06+TOuT6u0uh1kghjgCvgNiUAAIAT0TMGAPmgZClPFffgRyqA3OMnBwDkg+IeRgUPi8j1cZGzO9ihGgCFCbcpAQAAnIgwBgAA4ESEMQAAACcijAEAADgRYQwAAMCJCGMAAABORBgDAABwIsIYAACAExHGAAAAnIgZ+AEAwG3MGWny9S2Z6+My0lJ16QoPsc8NwhgAALiNm9GkXyd3zvVxlUavk0QYyw3CGAAALoyH2Bd8vDsAALgwHmJf8BHGAADII8ZVIT8QxgAAyCPGVSE/MLUFAACAE9EzBgAo8hjkDmfiOw8AUOQxyB3OxG1KAAAAJyKMAQAAOBG3KVGo5HVcR1p6ph2qAQDg3hHGUKgwrgMA4GoIYygSmJgRAFBQEcZQJDAxIwCgoGIAPwAAgBMRxgAAAJyIMAYAAOBEhDEAAAAnIowBAAA4EWEMAADAiZjaAigg8vp0AXM6c6gBQGFGGAMKiHt5ugBzqAFA4cVtSgAAACcijAEAADiRXcNYZGSk2rZtq9atW2vlypW3bY+Li1OnTp0UFBSk0aNHKyMjw57lAAAAFDh2C2Px8fGaO3euVq1apQ0bNmjNmjU6efJkln1GjBihsWPHavPmzbJYLAoLC7NXOQAAAAWS3Qbw79y5Uw0aNJC3t7ckKSgoSFFRURo8eLAk6Y8//tCNGzcUGBgoSerUqZPee+899ejRI8fXcHMz5Kk2vzKeeTrOWNo3T8fltc68on13Vhja58ptk2hfdmjfndG+/OPKbZMKfvts7W+wWCyWPFViw6JFi3T9+nUNHTpUkrR27VodPHhQEydOlCTt379fM2bM0GeffSZJ+v3339WvXz9t3rzZHuUAAAAUSHa7TWk2m2Uw/DcJWiyWLMu2tgMAABQFdgtj5cuXV0JCgnU5ISFBfn5+2W6/cOFClu0AAABFgd3CWKNGjRQbG6uLFy8qJSVF0dHRatasmXX7fffdJw8PD+3bt0+SFBERkWU7AABAUWC3MWPSzaktFi1apPT0dHXp0kV9+/ZV3759NWTIENWoUUNHjx7V22+/raSkJD322GOaOnWqTCaTvcoBAAAocOwaxgAAAHB3zMAPAADgRIQxAAAAJyKMAQAAOBFhDAAAwIkIYyhQ+DwJABQtt37uF4Sf/86qgTCGAuX8+fPOLiHH0tPTnV1CvisIPwwLKld5bVylHXAdZ86ckSSnPYXn2LFj+vzzz51aA2GsgPnpp58UGxvr7DKc4tKlSwoNDdXPP//s7FJsOnXqlNasWSPJtX65GQwG7d27V2vXrnV2KQXOrddm7ty5zi7lnhgMBu3fv7/QtyMnTp486ewS8uzYsWPKzMx0dhl2d+PGDb3++uuKiYlxyvUzMjJ0+PBhffvtt1q/fr1TapAIYwWKxWLR0aNHtWvXLkk3n9/p6v7aRoPBoMqVK+vq1au3bSsobgWvgwcPaufOnZKc9z8pezGbzVq+fLlOnTrl7FIKHH9/f/3000/65ZdfnF3KPalQoYK+++477d2719ml2IXFYpHFYtHo0aO1YMECZ5eTK7d+xkyaNElz5sxxcjX28def7cWLF1dISIiuXbt22zZ7s1gsMhqNatGihVq1aqUdO3ZYe8gcjTBWgBgMBj344IP66aeflJSUJDc313170tLSZLFY5ObmpiNHjkiSvL29VaNGDU2ePFmXLl0qUO2/9QPiypUrkqQOHTooMzNTixcvdmZZ+So1NVVpaWmqV6+eWrZsqd9//12SisT/zu/krz2et25J33fffapSpYp+++03SQXzPwx/99d2JCcnKzk5WeXLl9ezzz5rvT1UGNqRE3/9XjUYDAoNDVVCQoISExMLfA/23/+djR49WteuXdP58+cLfO05df36daWlpcnNzU0//vijNYDVqlVLixYt0pkzZxz2c99isVj/I+3j46O2bduqcePGio2NzXJnwFGvvfv48ePHO+RKyOLWP7LSpUvr0KFDmjVrlp588klVrVpVp0+f1vbt29WkSROX63WRpKSkJEVERKh8+fLKzMzUzJkztWLFCklSvXr1VKJECV2/fl0PP/ywzGazU1+D+Ph4/fbbb/L399eZM2c0bdo0nTp1SnXr1pWPj48SEhIUGBgog8FQ6N6ry5cva9OmTXr00Ud1+PBhzZ8/X2fOnNHDDz+s5ORkffrppwoJCSlQodhRrl27pq+++krVqlXT0aNH9a9//Utms1mlSpVS+fLlNWPGDAUFBalEiRLOLvWurl27ps8++0yBgYE6fvy4Jk2apFOnTsnb21tly5bVu+++q6CgIP3P//yPs0u9J5cvX1Zqaqo8PT118OBBHTt2TJIUEBCg9evXq1KlSvrHP/6R5RdwQXHp0iUlJyfLy8tLBw4c0KFDh5SZmalq1app/fr1qlChgh544AFnl3nPbty4oYiICKWkpMhgMGjWrFmKiIj4P/bOPC6qsv3/72HY9x0F3NhEMQQFBRUVJQrNxNRcy1yyxSVFTbPUyNxyy8zMPXGJ3DJNcE0UFxQBQZF1QEERRJBl2Jfz+8PvnEf79dRjmjNDvv9RzgwvPte5l3Od+77u6yI9PR1PT08sLCxITU2lU6dO//i8/2g/2LlzJ9u3b6eoqIgBAwZQW1vLxYsXqaiooF27Q+wuWgAAIABJREFUds+tv7xwxpRAY2Mj+/fv58aNG8jlcszMzDhz5gxXrlzht99+o0OHDpSVldGlSxekUqlKTiBPgyAIHDp0iN27d3P+/HlWrVqFtrY2ubm5LFmyhLy8PO7fv8/LL7+sdLtTU1N55513qKurIz4+nqCgIMLDw8nMzCQmJoarV6/i4uKCra2tUnX+HfLy8oiKiuLs2bMUFRXRqlUrbt++zddff03Pnj05ffo0NjY2ODg4NLk++FdkZ2dz5coVoqKiqK+vx9HRkZKSEhYvXoybmxt5eXnY2trSqlUrpb8w/BnFxcXEx8ezb98+iouL8fX1pb6+ni+//BJ3d3euXr2KkZERbm5uKm3Hn9HQ0MDRo0c5ceIEenp67Nq1i6ysLHbv3o2NjQ0NDQ0cOXKEPn36oKOjo2y5j9HY2MjJkyeJjIxER0eHffv2cevWLcLDwzEwMEBPT4+DBw/i7++Prq6usuU+FRoaGiQlJbFz505OnDjBmjVr8PT0RC6X8+WXX1JaWopMJuONN954Lv1QIpGwZ88eDh48yOjRo/n4448xMzOjX79+CILA8ePHqa+vx9XV9R/XAi+cMaUgkUhwcHBg1apVbNmyhYEDBzJhwgTatGmDXC4XnRR9fX1x1aWp0NjYiJaWFjY2NuzduxdtbW2CgoJwd3fHx8cHNzc3JBIJsbGxmJiY4OzsrFS9tra21NXVsW7dOnr37s2gQYMICAjAwsKC8vJyEhISqKiooEuXLmpX5N7Y2JirV6+yZcsWXnrpJSZOnIifnx9mZmbcvXuX+Ph46uvr6dOnT5Pqg/8LlpaWxMTEsGXLFpydnXnvvffw9vbGzc2N+Ph4rl+/TmpqKoMGDVLpe2NkZERGRgZbtmzBzs6O9957Dw8PDzw8PLh37x4ZGRnk5OQwcOBAlbbjz9DQ0EBPT4+9e/dy4MABPv30U4YPH469vT0HDhygsbGR+Ph4+vbti7m5uUo5nRKJBH19fQ4cOMDevXuZPXs2I0aMwNnZmYMHD1JXV0dcXBz+/v5YWVmplPYnobGxEQ0NDaytrTly5Aiampq4ubnh4uJCp06d8PX1xdramnPnzlFeXo6Xl9c/oqOgoAA9PT00NDQoLCxk7dq1LFy4ECMjI4qKijh16hT19fX06tULExMTunbtiqGh4T+i5fe8cMaeM4oVBm1tbUpKSqivr6e+vp6WLVvSqlUrPD096dGjhzjpe3l5oaOjo5YD8PcoYsRKSkrQ0dGhX79+yGQyoqKiaNOmDebm5tja2ooDsaGhATc3N6VpVdzzxsZGnJ2dWb16Na6urri5udG8eXN8fHxwdHQkPj6ebt26qc1Wj8I2DQ0NLC0tsbe3p6CggPT0dLy8vHB2dsbDw4O+ffuyceNGnJ2dsbOzU7bs58Kj7W5mZkbr1q0pLi4mOzsbBwcH2rRpg4+PD2+++SYRERFYWlqq5BbSo3a0aNECV1dXSktLOX/+PC+99BKtW7fGzc2NwYMHs2/fPrS1tXFxcVGy6idHYaeBgQEXLlxAR0eHkpISHB0dadeuHV26dKFTp06kpqYSGxtLUFCQysylCu1GRkZcuXIFHR0dioqKaN26NW3btsXHx4fOnTtz8+ZNzpw5w4ABA1RG+5OgmPcLCgqQSCQMHDgQQRA4deoUWlpaODg4YGFhgbOzM05OTty+fZsuXbo8cx1yuZyDBw+Sl5dHVVWVeL9btWrFyZMnGTduHO3atWPBggXY29vz+uuvY2pq+sx1/DdeOGPPGcWx8ps3b9K2bVvGjx/Pzp07kclkeHp6UlNTg7W1Nba2tkRGRtK9e/fn5pn/00gkEqKiopgzZw63bt3C0NCQt99+m9OnT5OWlkZZWRn37t2jdevWHD9+nGvXrhEYGKiUeCyJRMLFixcJDw+nWbNmvPHGG7i4uDB16lT8/PzQ19dHR0eHVq1a8fPPP2NlZYWDg8Nz1fh3kUgkREdHc+DAAUpLS3n77bdpaGjg8uXL3L9/H1NTU6qqqrC1tSUrKws7Oztat26tbNnPBYlEwpkzZzhw4AD5+fmMHz+e6upq4uLiqK6uRiKRUFVVhbm5OXFxcVhbWyt99faPUIy1rVu3cu3aNcaNG4eJiQkJCQnIZDL09PQoKSnB0tKSrKws9PX1lfbi83dRODMZGRkUFhYyYsQIunbtyrlz57h69Srdu3fHwMAAIyMj+vfvz9GjR/H390dTU1PZ0kXtaWlp5OXlMXToUPz8/Lh48SKxsbF07doVAwMDDA0NeeWVVzh58iS9evVCS0tL2dKfGEVfnD59OqmpqeTl5TFhwgRycnK4evUqaWlpZGRk8NJLL3HixAlOnz7NgAEDkEqlz3Tel0qlFBQUsHHjRi5evMibb76Jl5cXNTU1REREMGzYMG7cuEFdXR1jx47F3Nz8mf3t/4V/X2SuklCcyIiLi2P69Ons3r2bb7/9lgsXLrB06VJycnKYN28ekyZNori4mMzMTJKSkpSs+tmSmprKr7/+ynvvvYerqyuRkZEcP36chQsXoqWlxc6dO8Xvamtr88EHHzzzAfm/EhcXx7Jly5DL5WzatIkdO3YQGBjI6tWreeedd3jllVe4fv06xcXF3L59G0dHx+eu8e+SlJTEl19+iampKWvWrOGLL74gICCAV199lQsXLjBmzBhKSkooKCjg1q1b2NvbK1vyP45ifKakpPDVV19hZGTE2bNnmTFjBoGBgeKD8sMPP6SiooKioiLu3r2rko4YQHJyMitXrsTDw4OYmBjGjBmDu7s7Q4cOJS8vj8mTJ1NdXS0eJPLw8FC25CdGIpFw9uxZJkyYwMKFCxkyZAjNmzfnrbfeoqGhgUmTJjFnzhzkcjlnz57l2rVr1NTUKFs28J8XonfffZcVK1YwYMAATE1NGTNmDNra2kydOpWZM2dSVlbGhQsXVEr7kyKTyTh79iwLFizgrbfeIi0tja+//prx48fTsWNHkpOTxZV3ExMTFi5c+Ex3gxRpTqRSKR06dMDQ0BBra2uio6PR1tbm9u3b5Ofn88MPP7B27Vpmz56tnJ0A4QXPjZiYGGHevHlCcnKyUFNTI+zZs0eYNm2acP78eaGqqkr4+eefhUuXLonfv337thLVPlsKCwsFLy8v4csvvxQEQRCKioqEw4cPCzNnzhT27t0rCIIglJaWKlOiSHZ2tjBq1CghJiZGEARBiIyMFEJCQoQdO3YIgiAIt27dElJSUsTvV1ZWKkXn3yElJUX44osvhJ9//lkQhIf3vHv37mK7FBcXi7Y1NjYK5eXlStP6vElMTBTmzZsn3puSkhJh/PjxwscffywIwsN7lZ6eLn5fVe9NSkqKMG/ePOGHH34Qrw0dOlQYN26c+HNWVpb4f3Xqv4+SlZUlzJkzR0hOThYEQRDGjRsnDBo0SBAEQcjPzxfWrFkjnD17VhAEQUhNTRVyc3OVpvX3yGQy4ZNPPhGuX78uCIIgTJ48WQgKChLq6+uFoqIiYcOGDUJ0dLQgCIKQmZkp3LlzR5ly/zbFxcVC9+7dhZCQEEEQBKG2tlZISkoSpkyZIixZskQQBEGoqan5x/6+XC4X/3/nzh0hNzdXqKmpEQ4dOvTYWF+7dq2wYcMGITU19R/T8le8WBl7jiQnJ7Nnzx6qqqrQ1tamZ8+edOvWjbCwMKKioggODqZLly6P5TRqCuTm5mJqasr06dP58ccfSU9Px9zcnO7du9OtWzfOnz/P3bt3MTY2BpSb0b6yspLi4mLkcjm7du0C4NVXX+WVV17h/PnzbN++HTs7O/GEjSAI6OnpKU3vk1BXV0dpaSnJyckkJCSQl5eHsbExERER7Nu3j08++QQzMzNcXV3FQOGmskX+V1RWViKVSsXg/JKSEkxMTFi5ciW3b99m0qRJGBsb4+zsLOaDUsV7I5fL0dPT486dOyQmJooZ6Pfs2cO9e/cYNmwYgJg2BlCb/gv/mRtqa2v59ttvyczMpKKiAoAtW7ZgYWHBK6+8go2NjRhSANC2bVulr/AqtNfV1bF+/XrS0tIoKSkBYO3atTg7O+Pv74+xsTETJ06kR48eADg6OqrlaW1FBYFFixaRkJAgxoi1b9+e8ePHc+vWLWQymXjw6VnP+xcuXBDzhe3YsYOQkBBmzJjB3LlzcXJywtXVlbi4OObNm4eBgQHvvPMObdu2faYanoQXMWPPgYyMDA4fPszYsWOpqalhxYoVDB06FAsLCywsLJBIJLRt2xYrKyvg4d52U6G4uJjvvvuOpKQkJk6ciL6+PiEhIQQGBmJra4uNjQ3dunWjWbNm4u8oK0j1xo0b/PDDD3h5edG9e3diY2O5fv06PXr0wNHREalUipubG9bW1krX+qTcvHmTMWPG8M477+Du7k5MTAwSiQRLS0ssLCwYOXIk5ubmtGjRAlAfu54Fim07f39/AgMD2b9/P9ra2rRs2RJjY2MCAgJwcnLCxsYGQGXzrhUUFDB48GD8/PwYMGAAFy9eFFPnmJmZMXLkSBwdHWnevDmgnm2sOGmdm5vLoEGDuHbtGhUVFWLetNdff51Tp05hb2+vcg6MQntqaiojR44kJSWFkpISTE1NsbKyIigoiNjYWKytrZXuOD4tFRUVhIeH88svvzBs2DBcXFxYtGgRrVq1wsHBASsrK/z9/f+xef/cuXMsW7aM4cOHc+vWLTZt2sS6desYNWoU0dHRJCQk8N5776Grq0t2djYDBw4Un7/K4oUz9g+iWF04f/48sbGxFBQU8P7773P//n1CQ0MZNGgQVlZWuLi4PNYp1R3hkZNcenp61NbWIpPJSE5OFh2yDz74gFdffRU7OzuVWWGQSqX89NNPFBQU0KlTJ9zc3Dh37hyXLl2id+/eODs7K33A/l1MTU25desWGzduZPTo0djZ2XH8+HGqqqqwtrbGwsKCFi1a/OvyicHDU7tVVVXs2rULf39/unbtyg8//EBDQwNt2rTB2NhYdMRUGUNDQ7S1tVm5ciU9evSgZ8+eHD16lMLCQiwsLDA3NxcdMXUmMTGRuXPn4u3tzWuvvUZERAQPHjzAyMgIS0tLgoODVTbBa3p6OnPnzqVdu3YMHjyYY8eOUVhYiIGBAdbW1vTv3x97e3uV1P5XPKpZW1sbIyMjysrKiIyMZMiQIbi4uPDJJ5/Qpk0bHB0d/7FUQNHR0bz//vu8//77vPLKKyQnJ2NmZoa/vz9SqZS+ffuydu1adHR0eO211+jVqxcWFhb/iJYn4YUz9g+i2AZq27YtdXV1JCUlkZOTw+TJk7l16xYLFixg7NixSgtS/6eQSCTEx8cTFhZGjx49cHJyorGxkZSUFFJTU5kwYQL6+vpoaWnRqlUrZcslPT2de/fu0bJlS/z8/Pjll1/IycnBx8cHJycnzp07h6ur63M/XfMsyM7OpqqqCiMjI/z8/MjLy2PNmjWMHz8eCwsLjh8/To8ePTAyMgLUc7Xk75Kamoq+vj5GRkY4ODjQ0NDA5s2bCQoKwsPDg61bt9KnTx/x3qgq6enpPHjwADMzM9zd3dHT02PhwoUEBgbStWtXIiMj8fPzw8TERNlSn4qKigo0NTVxcXHB3t6ehQsX0qlTJ/r37y+eDO7QoYP4kFelviyXy5FKpTg4OODs7MyiRYtwcnJi6NCh/PzzzxQXF/PSSy+ppPb/FcXK3+LFi+nfvz/W1taYmJhw//59jh07xrBhw2jbti2Ghob/2MpfdHQ0K1asoG/fvhw7doz27dujr6/PihUrCA4OFrfk7927h7W1NW3btlWde62sYLWmTENDg1BSUiIEBAQI3333nXj98OHDwujRo4WtW7cKgvAwMLOpkpaWJgQGBgrLli0Tr+3cuVMICgoS1q5dK15rbGxUhjyRyspKYeXKlcK0adPEwPWioiLh9ddfF0JCQoT09HSVOVjwJNTX1wvV1dXChAkThM8//1zIy8sTP5s2bZoQFBQkFBUVCcXFxUpUqRzq6+sFQRCEMWPGCOPHjxcqKioEQRCEBw8eCJ9++qkQHBwsZGZmCmVlZcqU+Zc0NDQIjY2NwscffyxMmTJFyMjIEBoaGgRBEIQlS5YIXbp0Ea5fv662AfqPkpGRIUydOlW4du2aaGNkZKTQp08f4dKlS8KdO3eEGzduKFnlH5OZmSl88MEHQkJCgtj3oqKiBH9/f+H06dPC/fv3HzsQpM7U1dUJvXr1EiZPnixeO3funBAcHCzMmDFDqK2tFQThn5n35XK5MGXKFCE2NlYQBEH44YcfhICAACE7O1vYvn270KtXLyEqKkrYsWOH8NprrwkymeyZa3gaXqyMPUOER5ZpdXV1ad++PVu3bqWiooJOnTrh4uLC2bNnkcvltG3btknlblLYnp2dTWFhISYmJgQFBbFz504yMzPp0aMHmpqa5ObmMnr0aMzMzADlvAEqtNbU1KCrq4ulpSWlpaVER0fTrFkzWrVqhaamJnFxcfTr10+ttiYVtlVXV6Onp0fv3r2JiIggKysLBwcHjIyMqKmpoaCgAAcHB7VKyfG0KO6NXC5HR0eH4OBgoqKiiIyMxN/fX8zCDQ+DplVh1faPUNhRUlKCnp4eL7/8MgkJCZw/fx4HBwfMzc2pqamhoaFBTFSrjjw6n5qbmxMbG8uFCxdo3bo1pqamODk5ERsbS1hYGGPGjBHjHVWB32u/ceMGUVFRtGjRAjMzMxwdHUlMTGTHjh2MHDlSpbQ/CQo7U1JSxID96dOns3nzZqKionjttdeoqKjg7t27vPfee1haWgL/zLyvra1N7969xRJlnp6eCILA4sWLee+993B0dOTMmTPcvn2befPmqdzcJxGEJlIOXskoOuXly5c5ffo0VlZWYozRxx9/TFBQEL1792bhwoXMnz//udW7ep6cPHmSDRs2YGJigqGhIe3atSMoKIh3330Xe3t7srKy+Pzzz+nVq5fSNCra6fTp0xw+fJiSkhKCg4PR0NDg7t27XL58GT8/PyIiIpg1axadO3dWmtYnRWFbdHQ027dvR1tbm/bt2zNixAgWLFggxoVFRESwfPlylZuMngfnzp1j69atmJubY2RkxIIFCwgJCUEul+Pn50d4eDgrVqygXbt2ypb6p0RHR7N+/XpMTU3R1dUlNDSUVatWUVRUhIODA8eOHRMrRghqHH90+fJlMjMzEQSBN998k6+//pq8vDzGjh1LZWUlp06dYvjw4SrVlxXaL126REpKCg0NDYwePZpNmzaJtW5ra2s5ceIEo0ePVintf4eTJ0/y3Xff4eDgwIMHD2jTpg2fffYZwcHBGBkZcfPmTb744gv8/f2Voi8sLIzw8HBWrVqFq6srDQ0NKnlI7oUz9gw5d+4coaGhjBkzhjt37nD79m18fHzw8vJi9uzZ6OnpiQlDmxq5ublMmzaN5cuXY2try/Xr19m1axeBgYH4+vpy+vRpHBwc6Nixo7KlEhcXx+eff86iRYtIS0tDJpNhbGyMj48P165d49KlS7z55pv07t1b2VL/ZxQPgCtXrjB//nw+/vhjmjVrxqxZs/Dx8eGjjz5i+/bt5OXl4e/vT0BAgLIlPzcU9yY+Pp45c+bw6aefYmNjw+rVq6mvr2fLli18++23lJSU4OvrS9++fZUt+Q9R2JGYmMicOXOYN28erq6uzJ07l4aGBtatW8cvv/zC7du38fT0VKv++0ecOXOGVatWMWDAAC5cuEBNTQ3r1q1j27ZtZGVlkZyczNy5c1WyLyu0Dxo0iNjYWO7evcumTZvYt28fycnJ3Lhxgzlz5qik9iehuLiYKVOmEBoaipOTE/fv32fevHl4eXkxbtw4YmJiMDc3p23btkp9Kdi4cSORkZH8+OOPaGtrq+aJ6Oe2IdrEqampEUJDQ4XIyEhBEB4mhDx79qwwefJkoby8XJDL5UJRUZEgCMqPk3oWyOVyobKyUoy3kclkwsiRI8WfKysrhW+++UZYvny5MmX+Idu3bxeWLl0q/nz58mVh6NChYgLG6upqQRDUo50UGhWxKIcOHRK2bdsmfl5fXy/4+/sLJ0+eFARBEONt1MG2p0Vho+LfI0eOPBbDKQiCMGLECOHo0aOCIPznHqravamrqxME4T/9Mjo6Wvj6668f+87QoUOFnTt3PnZN1ex4Empra4UpU6YIFy5cEK/NnDlTTFx7//59MRGqqtlZX18vhISECOfOnROvLViwQBg2bJggCA8Toebn5wuCoHra/4qSkhIhPz9fTKBbVFQkvPHGG0JOTo4gCA/nl4iICOGTTz5Rpsw/pKSkRNkS/hQVdA/Vg9zcXI4fP863335LZWUl2tra6Ovrk5CQQE1NDYaGhri5uSGXy8Wjy4rTeOq2ZfB7srKyeP/995k8eTLTpk2juLgYc3NzWrZsSVRUlJh40t7enuLiYurq6sQEk8+bmzdvsmzZMubOnSsmADQ1NaWiooLa2loaGxvx9vbG0dGRO3fuAIj131S9nbKysli1ahVz587l2LFj1NXVUVFRwf79+8XSKVKplNdee038HcUboarb9rTIZDKWL1/O1KlTOXXqFHV1dWhpaYknZRV06NBBTLKs2LpQpXsjk8lYuHAhU6ZM4eeff6aiooKGhgb279//mB19+/b9/1IFqJIdf0VBQQEXL14kKiqKgoICNDU1KSkpoba2VvzO559/jqamJuXl5VhYWIh5xJRtZ35+PtHR0Zw4cYI7d+4glUopLi6mtLRU/M7cuXMxNTWlpKQEMzMzMVWKsrU/CVlZWYwfP54FCxYwd+5ccnNzMTc3x9vbm0OHDlFQUICGhgZaWloUFxdTWVmptHn/j1D108QvnLG/gUwmY9q0aaSkpJCSksK1a9eoq6ujc+fONDQ0EB0dDUB5efljA7IpcPPmTUJCQggODmbdunXMmDEDQ0NDTE1Nad++PfHx8SxbtoyDBw+ydu1agoKC0NLSUsqysKKdTExM8PLywszMDEEQ8PT05MaNG+zatYu0tDSSkpKIjY0VJ3eVXML+HTKZjBkzZtC8eXNat24t5ggbPnw4nTt3Zvr06RQUFIiZr1V9InqWyGQyPv74Y1q1akXnzp2xtramvr6egIAA+vfvz3fffce1a9dISUnh4sWLKpvjT2GHu7s7ffv2pWPHjkgkEnr16sWIESP45JNPuHLlCleuXOHw4cNqmyhUJpPx7rvvcuDAAfbv309+fj4SiYRXX32V9evXk5KSAjysYFJYWEh1dbWSFf+HrKws3n33XSIiIjh06BCFhYUADBw4kG3bthEXFwc8zI2Wn5+vtvUlc3JymD59OqNGjeL7779n0aJFokPp6+tLTU0NM2fOJCwsjCVLljBixAj09fXVYi5VFV7EjD0h9+7dY/Lkybzzzjv069cPQHzrlsvlbNu2jZs3b3L//n3KysrExHPqjvB/+/1Lly7FxsaGsWPHPvZ5Y2MjV69epbKykqtXr4oB0d27d1eK3vLyciZPnkxwcDCDBg36/z6/ceMGGzZsQENDg8LCQsaNG0efPn2UoPTJqaioYOrUqbz++usMHDjwsc/kcjm3b9/mwIEDXL9+HYlEwrhx41Q2DupZU1FRQUhICK+99hoDBgx47LOqqipiYmKQyWQcOXIEc3Nzhg8fzssvv6wktf+dmpoaZs2aRZ8+fQgODn7sM7lcTlZWFteuXePXX3/FxMSEoUOHqmUb3717lw8//JAxY8YQHBxMWVkZBgYGSKVSysrKOHr0KF9//TWDBg3i1KlTzJ49W2mB4L8nPz+fDz74QNQul8tFB0Qul3Pq1CmWLVvGa6+9xtmzZ1VK+5OyadMmamtrmTRp0mPX6+vriYqKwt7ensTERKqqqmjXrh1du3ZVy4MjykRT2QLUjcLCQpycnOjXr5/ohEmlUqqrqzlx4gRBQUFYWlqSk5ODoaEhDg4OTaJTKvRXVlaKb+C1tbXi1khMTAzff/8969evp0ePHko/saKhoYGFhYXorNTX1yORSJBKpSxfvhw7OzvWrFlDdXU1paWl2NjYqE07Kd6uFRP7o7qjo6PJyclh7ty5PHjwAE1NTYyMjNTGtqdF8W7ZpUsX8f8SiYTGxkbOnz/P7du3mTBhAkOGDEFTUxNDQ0OVvDeNjY1UVFTw0ksvAY+3sSKNxZw5cwgODkZTUxMdHR2VtOOvSEtLo0uXLqLDaWRkhEQiob6+nvDwcPr164eDgwN1dXW88soruLu7q4ydMpmMTp06idoNDAyQSCQ0NDSwe/duAgMD2bhxI9XV1QwcOBA3NzeV0f6kVFZWipVSHp33MzMz2bJlC8uWLRPrnipQRzuVyYs1xCckNzeXjIwM4GFskSAIaGhooKury7Fjx9i3bx+mpqa4u7vj4OAANK1OWVFRwZEjR4CHeV3q6+sB6Nq1q5jDCZS/1VdRUUF8fDyXLl0CQFNTU2yHDh06cPHiReBhPjh1i99oaGigtrZW3BJ5dHG7uLiY5ORkAMzMzP51mfXlcjmlpaXU1taKD0ZAXAGNioqioaEBU1NT8eGiivemvr4eqVTKgwcPAB6LvamsrCQtLY3GxkYMDAzQ0dEBVNOOv6K8vJzs7Gzq6+vF8nHw8IXj2rVrJCcn4+Xlha+vL+7u7oDq2CmXy7l586YYE/uo9uTkZJKSkujQoQNeXl64ubkBqqP9SWloaHhs3lfEWbq6umJiYkJVVZUy5TUJXjhjT0i3bt2orq5my5YtwMPBpeiI3bt3Fx2wpobiYfD2229TXFzM1q1bgYdODkB8fDzV1dUqESAuCAIWFhb4+/tz9uxZcnNzH9NUXV0tJp1Vx116KysrNDQ0WL58OfDQ0VDYYW9vj5mZGXV1dWpp29PSrFkzrKysmDZtGvCwfyqCwFu2bEnLli3V4r4o6iyGhoaKjplCt5mZmZjYVR1s+TOMjY25ffs2RUVFaGho0NDQgCAIGBgYiGNUVTE2NiY3N5e8vLzHtOvr64tjVN1R9C9FCbv58+ffuRxKAAAgAElEQVQD/znkFBcXx927d9HX11eaxqaC+veW54hioA0fPpz4+Hh27doFPCyGnZqayt69e1U2a/fTophYnJyc6Nu3L5cvX+bTTz8lISGB48ePExoaygcffKAS2eoV25E9e/YkOTmZX375haSkJCQSCXFxcWzevJnAwEDxu+qEwilevXo1KSkpTJ06VTyxmpSUxIoVK+jTpw9aWlpqZ9vTorg3oaGhGBgYMGrUKMrLy6mrq+P69et89dVX+Pv7iy8QqoriAbh48WIMDQ0ZMmQIWVlZ3Lt3j8TERBYtWkT//v3R09NT+zbu1asXDg4OjBo1irKyMrFO79WrV4mNjVXpQwm+vr54enoyatQo7t27J2pXbCO3bNlS2RKfGkX/MjQ05N133yUvL4+RI0fy66+/sm/fPubNm8f06dPVtoKAKvEigP9vUFBQwIkTJzh48CB6enq0bduWS5cuMW3aNLUMon1S5HI5aWlpbNu2jfr6enR1dRk0aBC9evVSiZiIxsZG0Xk8deoUZ86cISYmBhcXF/Ly8pg6dapaJ8Ssr69HU1OT4uJiJk+ejJaWFvX19dTU1PDhhx/Sp08flWiH58Uf2VpYWMj8+fMpKCjAyMiI6upqJk6cSN++fVX23jyqS9HGADNnzqSoqIjKykq0tLQYO3asStvxv/JoXOmHH35ITk4OHTt2xNbWll9//ZXZs2er7Dh9VPusWbNISkrCw8ODZs2acfz4cZXW/ndpaGigvLyctWvXUl1djba2Nn379qVHjx5q3xdVgRfO2J+g6GCPPtwV1NbWIpfL+fXXX7G3t8fS0lKlgkufFoUdMpkMQRBwdHT8r3YpAjqVZbvi71ZXV4sHKh4NMq2urqawsFA8cKFIA6EO7aTQqcjdpngAPPqwvnnzJg0NDejq6mJnZ6c2tj0tj7a7rq6ueP3R8ZqZmYmuri4SiURl741CU0VFBQYGBuL1R/twQUEBEokEDQ0NLC0tVdKOv+KPND/aj48cOUJhYSFSqZR27drh5eWlDJn/M4r5BB6WBCosLEQikeDi4kKnTp2UrO7voWij69evU1lZSatWrcSY2t+3nzr2QVXmhTP2X1B0tHPnznHixAl8fX3p1asXenp6j33elDl58iRfffUVOjo6vPzyy7z11ltiHMejk6gq3ItTp07xyy+/UFtby+LFizE3N1e6k/i0KHRHRUWxYcMGOnbsiLe3t7j6+ujD4N+G4t5cuHCBPXv2YGlpiampKZMnTwYed2RUmUfnmbCwMKysrJBKpXzxxReA+tjxVyjsvHjxItnZ2VhbW4ulgFTdRoX2hIQE8vLyqKur4/XXX0dDQ0Pltf8dTp06xZIlS7C1taVFixaMHj1arNX66Iqgus6rqsqLmLH/gkQi4fz58yxcuBB7e3tCQ0M5cOCAmMRVIpGoffDsn5GYmMjmzZsJDw9nxIgRhIeHs2/fPsrLywEei7tR9oBMT09nw4YNBAcHY2ZmxoABA3jw4IF42lPZ+v4uCmdj9erVvP3229y7d4+ffvqJ48ePAw+DaFUpw/XzRCKREBsby/z583n11Vfp2LEjaWlpzJw5E0BtHpCKeqILFy7kzTffZOjQoWRnZzN+/HhAfez4KyQSCadPn+aLL77g1q1b7Nq1S4y5ffRUNqjeoRqJRMJvv/1GaGgo169fJzIykiFDhtDY2Ii2trZ4YrcpkJqaytatW9m3bx+jR48mJiaGw4cPk5aWBvBYuiJ1nVdVlRfO2CMUFBSIqRmKiorYuHEjy5cvZ+TIkTg5OXH48GEOHz5MUVER0LQ6Y2lpKQcOHBB/Li8vp0OHDtTW1lJQUEBISAh79+5lzZo1JCUlKVHpw2zQv/zyCwAZGRls3boVX19f+vTpw5IlSwgICCA4OJji4mKVD9b+M2pra4mOjubTTz/F398fqVSKh4cHv/76KxEREYDyU4gokxs3bvD222/z6quv0r9/fz777DMePHhATEyMsqU9Ebdv32b48OEEBATg4eHBjh07kMvlYhs3Be7du8eOHTvYvn07QUFB1NTUkJCQIDpkqvRy93sqKysJDw9n4cKFzJ49mw0bNtCyZUs+/PBDAKXmU3zWlJeXY2VlRUVFBampqYSEhJCUlMTXX3/dpPqjKvLvncn/gK+++or3339frH3m5uZGTU0Nu3btYtasWQwbNowVK1awe/du0WlrKhQVFZGSkkJoaCibN2/GxMQEPz8/kpOT0dPTY8iQIfTs2ZO0tDQxd5WyqKyspGXLlpSVlYmnrVJTU0lISAAenqbz9fUlKChI7VI8PKpVW1sbMzMzcnJy2LdvH3379qVPnz7k5OSwefNmbt++rUSlzx/FvVGsBlpZWXHixAkxLYKNjQ2mpqbKlPi30NLSYv/+/dy7d0+81qFDh8fi4NSZnJwcSktLqampQS6Xc/78ed555x3s7OwICwtj4cKFypb4pzQ0NFBcXPxYKaMpU6ZgYGAg5ttSVxRj6u7duzQ2NuLk5MRbb73FnTt3qK+vp3///vj5+SEIAk5OTkpW27R54Yzxnw65cuVKNDU1WbBgAQ8ePGDEiBHY2toSHx+Pg4MDrVu3xtXVlYCAADFhZFOhZcuWGBkZ8eOPP1JUVMRLL71Er169iImJQVdXl6SkJJKTk5k6dSpt2rRRmk5BEHB1dcXFxYWhQ4dy4MABvvjiC2xsbDh58qS4ard06VJ27NihdikeJBIJly5dYtu2bURERPDGG28wZMgQfvnlFzp27IihoSEWFhYsX75cpY/9P2sU8SlnzpxhxowZzJ49GyMjI1xdXdm7dy/5+flkZ2eTnp6u0mNTMdfExsaybds2jhw5QsuWLXnttddYu3YtOTk5pKamcvnyZbV0LH9PQkICEyZMwM7Ojs8++wypVEphYSGBgYG0bdsWb29vXn/9dWXLfAxFG8lkMvLy8tDT02Pw4MGEh4cjk8mAh6WQ8vLykMvlavWy93sUY2rixImMHTsWmUyGp6cnSUlJlJSUcPnyZY4dO8Y777yDi4uLsuU2aaSff/7558oWoWweLTOSnp7OhQsXuHr1KsHBweTk5BAXF4cgCKxevZrp06fTuXNnJSt+digechoaGlhZWWFra0txcTHp6el07tyZzMxMkpOT2bx5M9OmTcPPz0/pWs+cOcOhQ4d46623+Pbbb9HX12fs2LFERUWRkZGBiYkJzZo1w8zMTG0cMYVt8fHxhIaGYmJiQlpaGmFhYfj6+pKVlUVUVBRhYWGMGzcOb29vZUt+rihixJYsWcKoUaPo1q0bXbp0EU/KfvPNN0RHRzNx4kS6deumbLl/iKKNf/vtN7766iu8vLz46aefKCkpISAggPz8fL7//nsuXbrExIkT6dGjh7IlPxWpqaksXboUf39//Pz8sLKy4sKFCxw8eBAbGxtWrVrF+PHj6dKli7Kliija6Pz584SEhBAbG8utW7do3bo1enp6LF26lAcPHrBp0yamT59Ou3bt1GaOeRSFnUVFRXz33XfMnj2buro6IiIisLa2pqGhgYKCAsLCwpg+fTo9e/ZUtuQmz4vTlP9Heno6U6ZMYfXq1djZ2TFv3jy0tbWZNWsWP/74I8XFxfTs2VM8AdQUePQk19GjR+nYsSNDhw7l6NGj/Pbbb3Tr1g0PDw8KCwtp3rw59vb2Sj9Bc/nyZXbv3s3AgQPx9/cnLi6OuXPn8v777xMYGMjixYsZN24cjo6OStP4d7l+/TqLFi3io48+wsfHh+rqatavX8+dO3cYPnw4N27cwMXFBR8fH6W3gzIIDw/n7t27TJ8+XTxJGhoayqBBg7CxsUEqlapk2oeqqir09PQQBIHa2lpCQ0OZNm0aGRkZrFmzhvXr15OUlISvry9yuRxtbW2MjY1Vzo7/hUc1l5eX8+mnnwIwbdo02rRpQ1FREbt27SImJoaJEyeqZOHsq1ev8uOPPzJ+/HjKysr47bff0NbW5uWXX6aiooKioiJsbGzo1KmTWraRggsXLnD9+nUSExNZt24dAN9++y3p6ekMHz4cFxcXGhoa1KpurzrzYpvy/9DU1MTNzQ1HR0dMTEz45ptvuHXrFvPnz+ftt9/m888/JyAgQK2XpH+PRCLh8uXLLF68mH79+qGrq0ttbS1du3ald+/eREVFMWHCBIyMjMQtMWUPyJMnT3Lx4kUxbq1z584sXbqUlStXcuTIERYuXKiWjhg8jIW7fv26WDdTS0sLf39/dHR08PLy4u2338bHxwdQfjs8DxRjTVFuTFdXl+vXrwP/KccilUrR1NTExsYGS0tLQLXuTW1tLQsXLiQ6OpqysjJ0dHTQ1NRk/vz5rF27ltWrV9PQ0MDWrVsRBAFLS0uMjY0B1bLjf+HRVaWwsDASEhJYuXIlWlpa7Nixg7y8PCwtLfnoo4/YuHEj/v7+KjWfKpzlnTt3cvnyZVxcXPDy8sLPz4+amhoOHjyIlZUVQUFBYh4xdWsjBYpKDvDQ+VTE7U2ePJlWrVqxZcsWcVyB+tqpTvxrnTHFJFBbW0t1dTXGxsYUFhaSmJj4WB3GtLQ0iouLVaLm4rOksbGRhoYGzp07x+jRo3F2diYrK4tBgwYRGhpKmzZt+Oyzz/j2229xdXVVmk5FO+Xk5FBZWcncuXMZPnw4y5Yt4+7duwB4enqyZs0aWrdurVanCxW2paWlIZPJ6NixI5s2beLMmTMcPHgQqVRKfX09MpmMwsJClXpw/dM0NDSIW9JLlixh48aNBAcHc+/ePaZNm0Z+fj6XL1/m/Pnzypb6p2hrazNkyBBmz57NG2+8QU1NDd27dyc/P59hw4ZhZ2dHfn4+1dXVYtocdURRKDsqKoovvviCsrIyVq1axZEjR1iyZAkVFRViTBygUkXaFeOqvLxc3A2xsrLio48+Ah6WPVIEsTeFMZidnU14eDhDhgxh4sSJ7Nq1i6tXr/Lll18CMGPGDObPn98kYhbViX9lzJjiDe7UqVN8//33HDp0CBsbG4yMjNi8eTNVVVWkpKSwb98+Fi5ciJubm7IlPzMerSoglUrR0tLiyy+/JDIyEnd3dyZMmEBiYiL29va0b99eXG1QBopM6oqg7dTUVNLT0/noo4/Iyspix44d+Pj4YGxsjK2trcpmWP8jFDpPnjzJp59+ypUrV8jJyaFnz554eHgwf/58Ll++zNWrV3n77bdxc3NTC7ueloqKCrS1tdHQ0ODy5cssW7aMiRMnoquri6OjIwMHDuT48ePEx8cTGRnJ9OnTVT5+TldXl2PHjiGXy3Fzc6NXr16UlpZy5MgRTp8+zU8//cTUqVNxd3dXttQn5v79+zx48AATExMKCwtZunQpa9aswcbGhsTERG7cuIGGhgbvv/8+R48epVOnTlhYWKhMX1aMQ0UOtIyMDOzt7RkyZAiRkZFER0cTGBhIixYtcHd3p3nz5sqW/NTcunWL+Ph4MjMzcXFxwcnJia5du7J+/XoyMzPp3bs3JiYmKtNG/xb+lc6Y4sTamjVrWLx4MbGxsZw/f54vv/ySFi1acPv2bbKzsxk+fLi4LdQUeDQL9rp167h06RLa2tosXryY4cOH06JFC4yNjdm1axf9+vXD2tpaKToVb9mKgsFLlizhq6++orCwkDNnznDv3j1mzJhBcnIy27ZtIzg4WMxTpOoTiKINFCVH1qxZw7Zt22hsbOTAgQMIgkD37t3x9vbm559/xtvbm5EjR4pv5Kpu39Pw4MEDwsPDad26Nfr6+hw8eBAXFxc8PDw4ffo0ixcv5sSJEyxYsIBBgwbh7+9P+/btlS37D1G08+3btzExMWHgwIF4e3szd+5c7OzsGDZsGN7e3jg7OzNw4EC6dOmiNi8SCmpqaggLCyMiIoL27dtjYmLCkSNHCAgI4Pjx4wQEBGBsbMw333xDfX098+fPx8LCQtmyH0MikRATE8OKFSuYNm0ahw4dIjMzk9atW/PGG2+wb98+zpw5Q1BQEDo6OmrVPgoU/So1NZWbN29iampK+/btKSkpISsrCwsLCxwdHenevTstW7bE1tZWLe1Ud/6VzhjAxYsX8fPzIz8/n7Nnz7J06VK+//57XF1dGThwIH369KF169ZqN0H+GY9WFXj99dexs7NjxYoVyOVy2rRpw3vvvUdkZCTvvvsuvr6+StGYlZVFeHg49vb2GBkZcfbsWVq0aMGrr75KVFQUfn5+nD9/ntTUVObOnUuXLl2wsrJSitYnpaCggC+++IKuXbuio6NDYmIiDx48oFu3bmJ/jIyMJCMjg/bt2+Pv78/y5cuxsLCgffv2TaYf/jeqq6tp06YNgiAQHx+Pk5MTu3fvZs+ePXh5efHxxx+TnJyMgYEBzs7O6OnpqeQ9eXTVc/bs2Rw+fBhdXV38/f1p1aoVixYtorCwkLy8PAYMGKCSsW7/C5qampiamnLnzh0uXLiAr68vXbt2BeDSpUuMGTOGu3fvYmRkRI8ePWjRooWSFT8kPz+fuLg4rKys0NTUZP369aJzHxcXh6amJomJiTRv3pxhw4bh6uqKjY2N2rWPAolEwtmzZ5k7dy5VVVV89913tG7dGmtrawoKCkhOTsbGxgYnJydsbW2VLfdfy7/GGVNMkPX19WhoaIhlHzIyMvjqq6+wt7cXc/60bt0aQFzBaEocPXqUgIAABg4ciIuLCy+//DKrV6/G29ub0aNH88orr+Dp6ak0JzQsLIx169ZhaWmJra0tpqamlJaWkpubi7GxMUOGDOHUqVPk5OSI+cbUBUNDQ7Zt20ZMTAw9e/bE2NgYS0tLCgoKKC8vZ8yYMaSnp3P//n169eqFu7s77u7uuLi4NPn4jcbGRvT19TE2Nmbnzp0kJiZiYWHBpEmTGDt2LGZmZgiCQFhYGIMGDcLa2lplx6YiRcnatWvZvHkzxcXFhIeHY2ZmRr9+/Wjbti0RERH4+/srNWff3yU3N5eoqCiOHTuGn58fzZo14+bNm5w5cwZvb2+ys7PZvHkzLi4uLFq0iPfee0+lTgCfOnWKDRs20Lx5cxwdHSktLUVXV5fY2Fg6d+5M//79WbduHSUlJfj6+qrtgSB4+NwrLCzk888/57PPPmPUqFG0bduWo0eP0rZtW7p27UpycjIeHh5i3eEXKId/jTOmCC7du3cvWVlZjBgxgoiICExNTQkKCuLKlSvs3LlTPCavCpPG03Lz5k0iIiI4duwY5ubmWFpacvr0aS5evMiAAQMAMDExITk5GU9PTxwcHJR+ksvY2Jhr166hpaVFSUkJbm5u+Pj4sGTJEtq0aYONjQ1hYWEsWrRIqQcLnhTF1uvgwYM5cOAAUVFRBAUF4eLiwo8//kh9fT2Ghob8+OOPTJkyBXd3dwRBwN7evsk7YoIgoKGhQXJyMrm5uVhYWFBTU0NycjKamprU1NSwYsUK9u/fz4cffqiSoQNZWVls3LhRzA128uRJzMzM8PT0JDExkU6dOrF9+3aqq6vp2bMnQ4cOxcnJSWUclP8VmUzGzJkzMTAwoKCgAGNjY7y8vDA1NSUnJ0dc4TU2Nmb//v189NFHYm5CVbHT1dUVqVTKTz/9hLGxMd7e3rRr146VK1fSp08fpFIp58+fZ8aMGWrpLD+KRCJBU1OTuLg4+vfvj76+Pvb29lRWVrJjxw4+/PBDPD09adasmbKl/uv51zhjOTk5zJ49Gx8fHyIjI0lPT+err77i0KFD/Pbbb5w+fZqZM2eqVALCp0EmkxESEkLr1q3Jy8ujXbt2WFtb4+zsTHJyMteuXcPHx4fU1FR27dpFYGCgSmz3WVlZcePGDXJycqipqeH+/fvY2dkhkUg4fvw4YWFhTJs2TW3aqaCggLKyMnR1dcVDE6+//jrHjh3j2LFj9OjRg8LCQm7evMnmzZuZNWsWPXr0ULuH9NOg2NJbvHgx6enpuLm5iWWfcnJyqKurY9q0afTp04eOHTuq3L1paGhg+/btbNmyhfLycvz8/GhoaMDMzIybN28ilUoZN24cV65cISsrC19fX8zNzQHVcVD+FxSxmmPHjmXMmDEEBARga2sr5nczMDDg7t27nDlzhgkTJjBkyBCcnZ1Vpr0e1dG+fXsMDQ0JCwvDxsYGAwMDUlJSuHPnDt988w0hISEqfzDkv6GwU1Fr2dTUlJ9++om7d++KCZFramrIyMigb9++6OvrK1nxC+BfkvRV8cZdUlLC8OHDKSwsZOrUqXh4eDB79mwACgsLVcIZeRY8ePCADz74gFGjRokrYApKSkpISEjg559/prCwkOrqaiZNmqS0ZLa3bt0iOjqagQMHirnD8vLyOHbsGDY2Npw6dYoOHTrw0ksvYW5uTmVlJR06dFCZCf7PqKurY+jQoaSmptKhQwccHBzE1ZJOnToxfvx4fH19GT9+PFpaWpSWlooxU6pu27NELpczdepUPv7448dWO48fP05KSgr37t1j1qxZKr1CmJaWxieffMKNGzcYMmSImCZgzpw5dO3aVdyyCwkJwcvLS8lq/x4ZGRns3r2bBQsWiEl36+vrxTxp/fr1o76+nj179jB48GCVCiFQjKkLFy4QFRVFTU0NY8aMQSaTsWPHDsaPH09FRQV1dXVYWlrSvXt3ZUt+Kk6fPs2SJUuwtbXFy8uLsWPH8sYbb9CxY0datmzJ8ePHmTp1apNKYq7uNNmVMcXgu3LlCiEhIWRlZZGeno6zszMODg707t2b77//nsuXL/PKK6+obDDw36GgoICEhASmT5/+2IO9vr6eU6dOIZVKmTRpEt7e3gQHB4tbYs/b/rq6Oj788EP27NlDYmIixsbGyOVynJycOHjwIN7e3vTo0YMDBw5QX19Pnz59xOV0dWgrqVSKt7c3MpmM6upqpkyZQnp6OmfPnuXixYsUFhZy9uxZbty4wfDhw9VyteRZUFVVxe7du/Hy8qJFixbU1dVx9OhRkpOTeffdd+nQoYOYfFJVsbS0xNTUlJdffpmff/6ZS5cu0a9fP2JjY8nIyGDDhg2EhISo9UP+ypUr7N27l9GjRyOVSgHQ0NBAU1OTn376ifT0dIKDg/Hw8FC5QHBFEPvy5cvp27cvjY2NLFiwQAzQ//7778V4sZYtW6r1C9HNmzcJDw9nypQpBAUFsWnTJkpLS1mxYgUlJSUIgsDgwYPp2bOnWtvZ1NBUtoB/ColEQlxcHGfOnGHVqlXY2tqyfft2jh49CoC7uzsbNmzgzp07AGqVLPSvqKys5MGDB2KeLsW/UqmUK1euABAQEECrVq3E31HGgNTS0mLRokUsX76cGzducPfuXcLDwwkMDMTPz481a9awYcMGxowZg6GhofgAUCccHR0JDQ1l5syZXLx4USwPU1hYSHl5OXfu3EFHR6dJ9b+/QvEAyMjIQEdHh2bNmjFixAj279+Pqakp7dq1w9DQkMzMTHR0dFTmFN6jZGdnk5ycTMeOHUV9DQ0NXL9+nWPHjjFgwAAWLFhAaGgomZmZjB07lnbt2qn1w6979+7s3buXbdu28dZbb6GpqUl1dTW6urq0b98ebW1tAHGFW9WIiYlh0qRJBAYGAtCqVSsmTZrEiRMnKCwsfMzhV8c2EgSBe/fuMXv2bGxsbHB1dcXIyIivv/6aGTNmUFRUxPz58x/7HXW0s6nSZFfGALZs2cK+ffvo3bs37du3x9TUFJlMRlJSEmZmZjg4ODTJwEU9PT02bNjA/fv36d69OxKJhLq6OqRSKeXl5QAqs1Vibm7OSy+9RHx8PBoaGsydO5ewsDCqqqo4d+4c7du3x9fXV623kE1NTfH29mb9+vVkZGTQs2dPDAwMMDMzo1WrVmqVrPZpebRkzowZM7hy5QrZ2dnY2dlhbGzM8uXLxULMkyZNUsmTbFVVVcyZM4ctW7aQmppKUVER7u7uuLq6EhUVxZ07dwgNDeXTTz8lOTmZkSNHiv1X3du4sLCQ5ORkysrK6NChA5qamqSmpvLNN98waNAgsWyassnNzRVXV01MTDAxMeHAgQOUlZXRo0cPGhsbcXV15caNG3Ts2JFu3bqp7bPg0dyFhoaGmJubc/bsWSwsLLC1tcXCwgIfHx+2b9+Oh4eHSiXdfcF/aFLOmKJT5uTkoKWlRUBAABUVFRw4cAA/Pz8cHBwwMjIiKysLT09PcVuoKdHY2IiOjg7t27dn/fr1lJaW4uPjg1Qq5dq1ayxfvpzBgwfTsmVLZUsVMTU1xdPTkx9++IHa2lrmzZuHra0t2dnZeHh4qOTKyJNiZmZGly5d2L17N8nJyfTu3fuxz/8tk6Mike/+/fuZP38+Xbp0ISsrS8y3pqjFOWjQIHx9fVXSSdXS0sLQ0BBNTU2srKy4ePEi+fn5JCUliQcPFLVELSwsVMZBeRoaGxvR1NTEycmJvLw8YmNj2bRpE7m5uWzevJlp06aJpyaVjUwmY8qUKRgbG5Oeni7O9W3atGHv3r1UVFTg4eFBQkICe/bsITAwUG2fBY/Gwu3YsYMTJ07Qu3dvHBwc2LFjB+bm5jRv3hxLS0uCg4ObTKaApkiTCeB/tHTOwoUL8fT0pFWrVkyePJmlS5eSmJjIihUrsLOzQy6Xi7XRmiqNjY1cvnyZmTNn4ujoiKGhITk5OUyfPp0+ffooW94fkp2dzaxZs+jYsSPz5s0Tr6viA/nvIpPJmDFjBitXrsTBwaHJ2PW/IAiCmIk9Ojqa6OhoMa7zt99+o7a2luHDh+Pk5KRsqf+VR/tiREQE6enpaGpq4uzsjEwm4+DBg5SVlTFr1iwGDx78//2OuvBoXkZFdYuGhgakUik1NTVUVFQQERFBixYtMDMzU1rc6e8pLi5m/PjxjBo1iiFDhlBZWYkgCKSlpWFgYEBlZSWfffYZTk5OZGZmMnPmzP/X3p1HRXWfjx9/D8uwiIK4gJAxOQqiRiuuMQIRKUqJsS0uEZSoQYMmxxUsHpUoIi7Rui/hJMYlatIkUDHowTUYNAlL6oKKeBAkilEIwaq4hBm4v9yDwZgAABUkSURBVD/8zVS/TZqllpk7PK+/ZHHmc/XOvc/9fJ7P8zBo0CCzjvm/lZOTw6pVqxg3bhzXr19n165dpKamcuvWLdavX09sbCyDBw9uUqkQaqT6YOyHH37AwcEBeNh9fuHChaSkpHDkyBGOHz/OoEGDmDZtGsnJyZw+fZoPP/wQrVZr9ovGk2K8ABp3N/1fd+7cobCwEK1Wi5ubm0VtNf8xxpIcxmDFGi8g9+/fx8nJydzDaDTG8+2f//wnbm5ufP/998ycOZNmzZqRmpoKQH5+PocPHyYyMtIilyYf9ejnZ//+/Zw+fRpPT09effVVzpw5Q1ZWFoMGDTJbF4v/lvH4cnJyOH78OD4+PowePfqxn1mq0tJSUlNTWblyJQAbNmygqKiIvLw8+vbty5AhQwgLC6OyshI7Ozuefvppiz+mn7NixQr8/f1NuXCZmZksX76cw4cPs3//fjp16kSPHj3MPErxc1S9TFlTU8N7772Hra0t3t7eHD9+nKeeeupnW+eo+YP3KONF5PPPP2ft2rV89913ODo6mtqrGAwGnJycaN++Pd7e3qa+cJZ8/O7u7lY/nf5jQbO1Mp6jn332GYsWLaK4uBhPT09Gjx5NdnY2hw4dIjw8HG9vb3r06KGKRsyPdvLo1KkTd+/epaioiIsXLzJo0CBCQkLQ6XSqvMkbVxi++OILlixZwuDBg1m4cCGOjo706tXLdDyWemy2trasWbOGoqIiVq9ebcoRi4uLw97enmvXrjFw4EDc3d1NpVIs8Th+yq/NhXv++edVmwvX1Kh62qGmpobbt2/z2WefUVxcjL+/P25ubhw4cIBOnToxatQonJ2dOXfuHBcuXKBDhw7mHvITpdFoOHHiBCtWrKBPnz4cOnSITz75hPPnzwMPe8epceKzKc0aWTuNRkNeXh7r169n5syZFBUVsXXrVkpLS0lJSeHOnTtMmTIFwNT9wdIYP0OVlZVUVlYCDz9ber0egPDwcHr37k1FRQU3b9403dzVdJOvra01BWK3bt0iNTWV5ORk/vCHPxAYGMgHH3zApk2bqKurAyz32FxdXVm3bp2ps8rGjRsZM2YMvr6+NGvWjDt37lBfX6/K62JpaSlvvPEG5eXl5Ofn88MPPwAwefJkzp07x86dO7GxseHUqVMUFxeb/q+EOqh+mbK4uJjMzEzq6uqIiIiga9euxMTEMHjwYH7/+98zceJEVq1aZVEFCJ8UY/5DbGwsOp2OWbNm4e3tjaOjIy+++CLdu3c39xBFE/XozMmCBQvo1asXw4YNIzExEY1GQ21tLSNHjsTPz4/q6mqeffZZM4/4PzMW0dTpdLRv356FCxcCPJYeoNbC0XV1daSlpeHm5maqTL9jxw4GDx5Mbm4ugYGBVFZW8vrrrzN16lRiYmJUU7W9srISDw8PCgoKSExMJDEx0WI2GvwaTTEXrqlRXZ2xyspKKioq6N27N/Cwz5jBYCArK4uMjAw0Gg3h4eFkZWWxfft24uPjrSoQM97k8vLy0Ol0uLu7U1FRwRdffMHYsWPR6/UsWbKEK1eusHjxYtXuEhLqZUz6PnbsGPX19fTt2xetVktaWhphYWE8++yzREVFsXfvXuLi4iw+ECsvL+fAgQMsWbKEVq1aMW/ePJKSkkhKSsLe3t4UkKkxEIOHNRZbtWrFrl27uH//Phs2bCAyMhIbGxuKioqIiori7t279OvXj8DAQIsPxBoaGgDIy8vjvffew9nZmYsXL5KQkKDKQAwedlXx8fFh5MiRwMOyTf83F+6jjz6yqly4pkZVOWN3795l0qRJbN26FXjYSqdr1660bdsWLy8vLly4QElJCTqdjlGjRhEcHGyx2+N/K41Gw9mzZ1myZAkBAQG89NJLtG7dmtTUVCZPnoyNjQ1nz54lISEBb29vcw9XNCE3b97EyckJGxsbcnNz2bZtGwEBAQQHB+Pt7c3q1at54YUXsLOzIycnh/j4eItO1jcW0YyPj8fBwYHRo0fj6elJ//79+dvf/sbXX39NaGioKosRGymKgq2tLc2aNSMjIwMXFxfatWtHt27dKCkp4cCBA7Ru3ZqUlBQSEhJU0a/RWHOrZcuW+Pn54efnx8iRI+nTp49q7wXWngsnVBaMabVaDAYDtbW1uLq6kpeXx44dO7C3t8fHx4fevXvzj3/8gxs3bhASEmIKRtR+UtbU1FBdXY2rqys1NTVER0fTo0cPxowZg52dHbdv3+bYsWN88803vPvuu0yaNMliirqKpqGsrIx58+bRqVMn2rRpQ2JiImVlZcyfPx+NRsOtW7coLCzk2rVrbNiwgbi4OItt9m68YdfX19OiRQtatmxpKqJp3AjTr18/du/eTc+ePU0bY9TGeJw3btxAo9EwevRoXFxcyMnJ4d69e4SEhFBWVkZVVRWjRo1i4MCB5h7yr6LVavHw8ECn06li89J/YtxAceXKFbp27cr8+fPx9/enbdu2lJWVceXKFYKCgkyBqFAf1QRjxguHg4MD169fZ/jw4UycOJGvv/6arVu3kp6ejp2dHY6OjkRERKh2yeDHHDlyhM2bN1NXV4eTkxPdu3cnIyMDT09POnbsiI2NDY6Ojty4cYOXX36ZkJAQ1T4BCvUpKyvjL3/5C8OHDzcVsx06dCjp6enk5eURHh6Os7MzdnZ2uLq6MnToUItdLjJ+brKzs1m3bh2nT59m2LBheHl58f777/9oEU21Mh5nfHw8+fn5XLlyhQkTJlBTU8PJkyc5f/487u7ujB8/ns6dO8s1xcw8PDwICgriueee4+bNm7i6ulJQUMBbb73F+PHjeeaZZ+T/R80Ulamvr1diYmKUpUuXKnq9XomIiFB27typHD58WHn99deV8+fPm3uI/xNxcXGKn5+fsmfPHkVRFGXPnj1KSEiIcuTIkX/73YaGhsYenmiiLl26pPzxj39U9u3bpyiKohgMBiU9PV1RFEWpq6tTQkNDlZkzZ5pziL/asWPHlD//+c/Knj17lNjYWGXy5MnK999/rxw9elSJiIhQsrKylPr6enMP8792+fJlJSEhQcnPz1dKS0uVUaNGKcuXL1cURVEOHTqkTJ06VcnJyTHzKIVRfX29Ul9fr3z55ZfKxIkTlWnTpilDhgz50XuAUB9V7aY0br3+5ptvmDp1KlVVVUycOJHY2FjA+oppKo88iWZmZlJQUMCFCxdYtmwZPj4+fPrppyxbtozFixcTGhpq5tGKpub+/fvMnz+f27dvs2XLFgBiYmLo0KEDiYmJwMPdhsHBwfTq1YsNGzaYc7i/iF6vJzk5mejoaNzc3FixYgXu7u5cu3aNlJQUzpw5Q8uWLfH39zf3UH8z5f/nwk2fPh0PDw+WLFlC8+bNqaioYPbs2XTu3JmkpCRTxX1FZsQsSm1tLZcvX6a2tpbWrVtbfCFv8cuoZpkS/rXeb0xS9/X1Zc6cOSiKQkNDA/b29lZ1Qmo0GnJzc8nOzkan0/HKK6/w7bffkpqaSnh4OD169KB169a4u7tbRf87oS729vYYDAYMBgNFRUWsX78ef39/EhISgIclE7RaLePGjaNNmzYWeY4+WkTTzc0NV1dXPv30U9q3b09ubi7du3ena9eupKWlkZ6ezpw5cyzyOH4J5Rfkwj333HPs2LGDXr16mYpHW9M11RpYUy6c+BdVzYw9Kjs7m9mzZ/PJJ59YXTFX40Xz1KlTLFiwAB8fH/R6PQEBAURFRbFq1Sqys7N58OABu3fvxsPDQ56MRKN69HzLyspi37591NTUsHPnTlNBVGOwZuxtaGnnaGlpKTNnziQwMJCqqiqmTJmCr68v9+/fR6PRMG3aNN59913Onz/Phx9+SFRUlMWX4fgpyiO5cHv27KFdu3ZMnjyZkydPsn37dsaPH09AQADOzs6PtZgTQjQOVc2MPcrb25urV6/Ss2dPq6ulpdFoOHfuHKtXr2bBggWMGzeOuro6CgsLqaqqIjY2li5duhAeHm4qDWBJNzlh/TQajekG7+vri4ODAw8ePKC8vBydTkfz5s1NZRMe/TuWoqamhqlTp/LKK68QGxtLUFAQzZs359y5c9TV1eHi4sI777zD1atXSU1NJTo6mv79+5t72L+ZsW3aunXriIiIMDVnj46Opl27dmzevJnWrVvToUOHJtWuSwhLodpgzNbWFn9/f9UuGfyc8vJytmzZgqurK/3798fPz4/bt2+Tl5fH9evXCQsLk55jwqwe7dHYoUMH7t27x4ULF7h8+TIdO3a06OKg3377LWVlZcycOROA1NRUdu/ezdtvv82lS5fQ6/VERUVx6dIlXn31VQYOHGhxM3u/hl6vZ9u2bcTFxeHr60tBQQGenp7s3buXMWPG8PTTT9OmTRtV9AYVwhqpcplSzRfFn2I8poqKCuzs7HBycqKkpIS5c+cyYcIExo4dC8Df//53unXrZlVdBYQ6GM9RY39GY1mHR1sCGTeavPbaa+h0OrON9efcunWLiIgI+vbtS2FhIR4eHgQHBxMYGEh+fj7V1dVMnz7d3MP8za5evcqXX34JQEBAAF5eXsyaNYsRI0ZQUlKCp6cn7u7uvPnmm9jY2JCZmSlLk0KYkSqDMWt19OhRtmzZgrOzMy1btiQgIICOHTsyf/58RowYwYQJE8w9RNHEWVOPxrNnz7Jv3z6aNWtGTEwMWq0WrVZLRkYGZ86cMRWsVVuF/aaUCyeEtZBgzEKUlZUxY8YM1q5di7OzM8XFxXz00UdER0djY2NDYmIiu3btwtPTExsbG3MPVzRB5eXlvP3224wcOdLUo9FYBgEeD8jUpik0lG7RogVeXl5EREQwcOBAsrOzmTNnjpTFEcICqK5RuLWoq6vDxsbGtNPszp07tG3b1pSQ7+LiwldffcXFixeZOHEiaWlpVrdRQaiDsS7VnDlz8PDwoHPnzjRv3py//vWvJCQkMHfuXJYtW6a6QKypNZTu2bMnoaGhvPXWW2RlZZGcnGx1vXuFUCvVJvCrWVlZGXPnzmXPnj3k5+fTv39/HBwcyM/Px8nJCS8vL5ydnSktLaWqqorAwEAcHBzkgika1S+pS6XmHo1NqaG0sdl5dXU1f/rTnwgKCjLl9KnxOIWwNjIz1sjKysqIj49nzJgxvPDCC1RWVqLVanFxccHX15fc3FwKCgro06cPO3fuZPHixQCyNCka1U/VpXrttdfYvn07tra2BAQEoNPp+OCDD1Sd/O3i4kL37t0f+55aAxRXV1fWrVvHvn37CA8PfywX7ty5c9y8eRODwaDKXDghrJnkjDUSRVGor68nKSmJLl26mHZHPqqgoIDq6moKCgrQ6/WEhoYycOBAM4xWCPj8889Zu3Yt48ePJysrC41Gw9KlSzl9+jQbN24kNjaWIUOGyIOCBbOWXDghrJ3MjDUSjUaDnZ0dBoMBPz8/4F/tYgAOHjzIwYMHWb16NeHh4Y/9TIjGptfrOXLkCMuXL8fNzY3jx4/j7u5OYmIiKSkpTJs2jZYtW0ogZoGsMRdOCGsnwVgju3btGkePHqVPnz5otVpTu5i+ffuybds2ampqcHd3V10ytFC3H6tLdfv2bSorKzlx4gQhISGmulSRkZFSl8qCGQPk7t27M2PGDGkoLYQKyGNtIzE+rU6aNInTp0+TkZEBYNpNefHiRezt7U1fywVTNJbS0lLeeOMNysvLyc/P5/79+9jY2LB8+XL69etHbm4uQ4cOpUWLFvTv3581a9ZIIKYCxly4559/Hl9fX0CuK0JYKpkZayTGp9Vu3boREBDA/v37uXbtGi+++CJXr15l5cqVxMfH06JFCzOPVDQlNTU1zJ49m/Hjxz9Wl+rkyZOmulRXrlxh6dKlprpUUiBUCCGeLEngN4OqqirOnj3LO++8g5ubG4qiMGbMGIKDg2UZQTSq0tJSUlNTWblyJQAbNmz4t7pUXbp0ISsri+DgYKlLJYQQ/wMSjJmZwWDgwYMHuLi4yE1ONDpr79EohBBqIMuUZtLQ0GCqwO/s7AxIPodofFKXSgghzE9mxoQQJlKXSgghGp/MjAnRxEldKiGEMC+ZGRNCAFBbW8vly5elLpUQQjQyCcaEEEIIIcxIir4KIYQQQpiRBGNCCCGEEGYkwZgQQgghhBlJMCaEEEIIYUYSjAkhhBBCmJEEY0IIIYQQZiTBmBBCCCGEGUkFfiGE1aivr+f9998nMzOT+vp69Ho9gwYNYsaMGWi12if6XoWFhaSlpZGcnPxEX1cI0fTIzJgQwmokJSVx6tQpduzYwd69e0lLS+Py5cvMnz//ib/XpUuXqKysfOKvK4RoeqQCvxDCKlRUVPDSSy9x4sQJXFxcTN//7rvvOHnyJAMGDGDRokUUFxej0WgICgoiLi4OOzs7/Pz8+Oqrr3B3dwcwfV1SUsKaNWvQ6XSUlJRgMBhYtGgRXl5eREVFcefOHYYMGYKtrS2tWrVi1qxZAOzdu5dDhw6xadMms/xbCCHURWbGhBBW4fz58/j4+DwWiAG0adOGsLAwUlJScHNzIzMzk/T0dC5evMjWrVt/9nULCwuJiYkhIyOD4cOHs2bNGtq1a8f06dPp06cPy5YtY+zYsaSnp2MwGAD4+OOPiYyM/J8cpxDC+kgwJoSwCjY2NjQ0NPzkz3NycoiOjkaj0aDVaomMjCQnJ+dnX9fLy4suXboA0LVrV27duvVvv9OlSxeeeuopjh07RmlpKVVVVQQGBv72gxFCNCmSwC+EsAq/+93vKCsro7a29rHZscrKSt58800aGhrQaDSm7zc0NJhmsh5VV1f32NeOjo6mP2s0Gn4qs8M4O/bMM8/w8ssvP/ZeQgjxn8jMmBDCKnh4eDBs2DDmzZtHbW0tALW1tSQlJeHm5kZgYCC7du1CURTq6ur4+OOPGTBgAADu7u6cPXsWgH379v2i97O1tX0smAsLC+PChQscPHiQESNGPOGjE0JYM5kZE0JYjYULF7J582YiIyOxtbWlrq6O0NBQpk2bxt27d0lJSWHYsGHo9XqCgoKYMmUKAImJiSQnJ9OiRQsGDBhAmzZtfva9/P392bRpE1OnTmXjxo1otVrCwsKorq42bQQQQohfQnZTCiHEE3Dv3j2io6NZsGAB/v7+5h6OEEJFZJlSCCH+S8ePHyc4OJigoCAJxIQQv5rMjAkhhBBCmJHMjAkhhBBCmJEEY0IIIYQQZiTBmBBCCCGEGUkwJoQQQghhRhKMCSGEEEKYkQRjQgghhBBm9P8ATMWysdmrIRoAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ax = model_v_census_A0[['Model_A0_share', 'Census_A0_share']].plot.bar(rot=0, figsize=(10,7))\n", + "plt.xticks(rotation=45)\n", + "plt.title(\"Zero Auto Households By County\")\n", + "plt.ylabel(\"Share of Total Zero Auto Households\")\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "County\n", + " Alameda County 0.054422\n", + " Contra Costa County 0.031567\n", + " Marin County -0.111367\n", + " Napa County 0.035174\n", + " San Francisco County -0.074247\n", + " San Mateo County 0.075045\n", + " Santa Clara County 0.083762\n", + " Solano County 0.126370\n", + " Sonoma County 0.089430\n", + "Total -0.006048\n", + "Name: coef_change, dtype: float64" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model_v_census_A0['coef_change']" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ModelCensusdifferencepercent_diffModel_shareCensus_sharecoef_change
026593225756983633.2468970.0959440.095362-0.006088
1861872837738241342.8808530.3109500.310163-0.002536
21010316981769285472.9077100.3645070.363489-0.002797
341429040909052001.2711140.1494700.1514610.013234
421932421479545292.1085220.0791290.0795250.004999
Total27717342700961707732.6202901.0000001.0000000.000000
\n", + "
" + ], + "text/plain": [ + " Model Census difference percent_diff Model_share Census_share \\\n", + "0 265932 257569 8363 3.246897 0.095944 0.095362 \n", + "1 861872 837738 24134 2.880853 0.310950 0.310163 \n", + "2 1010316 981769 28547 2.907710 0.364507 0.363489 \n", + "3 414290 409090 5200 1.271114 0.149470 0.151461 \n", + "4 219324 214795 4529 2.108522 0.079129 0.079525 \n", + "Total 2771734 2700961 70773 2.620290 1.000000 1.000000 \n", + "\n", + " coef_change \n", + "0 -0.006088 \n", + "1 -0.002536 \n", + "2 -0.002797 \n", + "3 0.013234 \n", + "4 0.004999 \n", + "Total 0.000000 " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ao_regionwide['Model_share'] = ao_regionwide['Model'] / ao_regionwide.loc['Total', 'Model']\n", + "ao_regionwide['Census_share'] = ao_regionwide['Census'] / ao_regionwide.loc['Total', 'Census']\n", + "ao_regionwide['coef_change'] = np.log(ao_regionwide['Census_share'] / ao_regionwide['Model_share'])\n", + "ao_regionwide" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.00608751, -0.00253588, -0.0027969 , 0.01323445, 0.00499948,\n", + " 0. ])" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ao_regionwide['coef_change'].values" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmkAAAGsCAYAAACGvDBIAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdeViVdf7/8deBAyrjgtoBnWb6mnullmaKyrjkQqKIkjamuUzKaGoUhY7jhktqYykquaSt4zZpAsZk5NLimkn2c5k0p8zcAVEQVGQ55/eH45kYxQPmOdxwno/r6rrOfe7l8z735xx59bk3k81mswkAAACG4lHaBQAAAOBmhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGuDm8vLyFBgYqOHDhxdr+ZMnT+r555+/o7Y++eQT9evXT0FBQQoJCdHo0aP1/fff39G2nGHQoEFKSkq66f2UlBT179+/RNvas2ePmjVrptDQUPt/Xbp00ciRI3Xx4sU7rnHr1q165ZVX7nj9klqzZo2WLVt2y3nNmzfXqVOnXFYL4G7MpV0AgNK1efNmNW7cWIcOHdKPP/6oevXq3Xb5M2fO6KeffipxOytXrtT69ev12muvqX79+pKkL7/8Us8++6zeeustPfDAA3dUvyv4+/vrH//4R4nXu++++7Rhwwb7dEFBgZ5//nm98847evnll++ols6dO6tz5853tO6dePrpp13WFoDCGEkD3NyaNWvUuXNnBQcH6/3335d0fRSoZ8+e9mVuTBcUFGjSpEk6ceKEhg0bJknasmWLevfurV69eunpp5/WgQMHbmojNzdXMTExev311+0BTZI6dOig8PBwxcTEaMuWLRowYIB9XlBQkBYuXChJOnfunAIDA3Xy5El16dJFM2bMUN++fdWtWzdt3rzZvs6SJUvUp08fhYaGatSoUUpJSZF0fYRszJgxCg4O1ooVK7Rp0yb16dNHYWFh6tevn/bu3WvfxtatW9WvXz916tRJEyZMkNVq1alTp9S8eXNJUmxsrKKiovTMM88oKChIL7zwgrKzs4u1r7Ozs3XhwgVVq1ZNkpSVlaXx48crLCxMISEhmjVrlvLz8yVdD7AhISEKDQ3V+PHj1b59e506dUpxcXEaMWKEfb+MHDlSISEh6tmzp9566y1J0qlTp267n24YNWqU1q1bJ0n69ttv1ahRI508eVKStHjxYr322muKjY3V9OnTJUnJyckKDQ1V7969NXnyZFmtVvu2PvvsM/Xr10+9e/dW//799e233xZrnwAoGiENcGM//PCDvv32Wz3xxBPq3bu3NmzYcNtDcZ6ennrllVd033336e2339aPP/6o6OhoxcbG6qOPPlJERIRGjRp1U2g5evSovLy8bjlK16ZNG33zzTcKDAzU999/r0uXLunUqVO6fPmydu3aJel6cOrSpYtMJpNOnjypwMBAffjhh3r55Zc1a9YsSVJCQoKOHj2qdevWacOGDerQoYMmTZpkb6dq1arauHGjBg0apDlz5ig6OlpxcXF64YUXtGfPHvtyly9f1j/+8Q9t3LhR27Zt0759+26qee/evZo/f74++eQTmc1mLVq06Jb768SJEwoNDVWPHj3Upk0bDR06VI8//riGDBkiSZo1a5YeeughxcXFKSEhQRcvXtS7776rixcvaty4cXrttde0YcMGtW7d2h44fykqKkqtW7dWYmKi1qxZo48++kgff/yxJBW5n36pW7du2r59uyRp+/btslgs9n3+2WefKSgoyL5sbm6uXnjhBY0fP14JCQlq3bq1cnJyJEnHjx9XTEyMli1bpoSEBM2YMUPPP/+8rly5csv9AqB4CGmAG1uzZo06deqk6tWrq1mzZvrd736ntWvXFnv9r776SgEBAfr9738v6XrgqlGjhg4dOnTTsjdGiP5Xbm6uTCaTKlasqLZt22rnzp3atm2b/vjHP+rUqVPKysoqFBi8vLzUoUMHSdKDDz6ojIwMSdLnn3+u/fv368knn1RoaKhWrlxZ6LBsy5Yt7a979OihMWPGaOLEibp06ZLCw8Pt84KDg+Xp6alKlSqpTp06Sk9Pv6nmJ554Qvfcc488PDzUt29f7dix45af7cbhzo8//lhRUVFKS0tT9+7d5eXlJUn64osv9MEHHyg0NFRhYWE6cOCAjh49quTkZNWrV0+NGzeWJPXp00eVK1cutO0rV65o3759GjhwoCSpSpUqCgsL07Zt2267n36pU6dO2rNnj/Lz87Vjxw4999xz2rlzp1JSUnThwgU1bdrUvuzRo0dlNpvVpk0bSVLPnj31m9/8RpK0c+dOpaamaujQoQoNDVVUVJRMJpNOnDhxy/0CoHg4Jw1wU1euXNGGDRvk7e2txx9/XNL1w3ErV65U8+bN9cvH+ubl5d1yG1arVSaTqdB7NpvtpkDWoEEDSdLhw4dvOvdsz5499kOJXbp00bZt23Tp0iUNHz5cx44d05YtW3T06FG1atVKZ8+elZeXlzw8rv//5S/btlqtGj58uP2QaW5urjIzM+3zfXx87K8jIyP15JNPaufOnYqLi9M777yjDz/8UJJkNv/3n0WTyaRbPd7Y09OzULs36rmdJ598Uvv379cLL7ygtWvXymw2y2q1asGCBfYRxkuXLslkMmnv3r03tfu/bVit1puWsVqt9n1f1H76pWrVqumBBx7Q559/ruzsbIWGhmrx4sXasmWLfeTyl/63vRv7ymq1qk2bNpo/f7593tmzZ+Xn5+dwvwAoGiNpgJtKTEyUr6+vtm/frs8++0yfffaZtmzZYh+hOXPmjNLT02Wz2eyH0KTrAeVGaGvTpo127NhhP49p9+7dOnv2rB5++OFCbVWoUEFRUVEaN26cfvzxR/v7X3zxhd5++2298MILkqTHH39cu3fv1uHDh9WsWTO1a9dOCxYsUPv27QsFo1u5cWjvxqHWBQsWaNy4cTctl5+fr8cff1xXr17V008/rejoaH3//ffKzc0t9r7bunWrsrKyZLVatXbtWnXq1KlY60VFRens2bNatWqVveb33ntPNptNubm5eu6557Ry5Uq1aNFCx48f15EjRyRJn376qT3A3VC5cmU9/PDD9m1lZWUpISFBbdu2LfbnkKSuXbtq3rx5atOmjSpXrqw6depo+fLl6tatW6HlGjVqJJvNpi+//NK+D26E4DZt2mjnzp32vv3yyy/Vq1cv++FQAHeGkTTATa1Zs0Z/+tOfCoWfqlWratCgQdq8ebP69++vJ598UhaLRR07dtTBgwclSfXr11eFChXUt29frVu3TtHR0RozZowKCgpUsWJFLV26VFWqVLmpvf79++uee+7RpEmTdOnSJeXn5+v+++/XO++8Yx9dq1KliurVq6dKlSrJ09NTf/jDHzRx4sSbAsOt9OvXTykpKXrqqadkMplUu3ZtvfrqqzctZzabNWHCBEVFRclsNstkMmnWrFny9vYu9r675557FB4erosXL+qxxx7TyJEji7Ve1apVFRUVpdmzZ6tHjx6aOHGiZs6cqZCQEOXl5alt27YaPny4vLy8NG/ePP3lL3+Rh4eHmjRpIrPZrEqVKhXa3uuvv67p06crLi5Oubm5CgkJUVhYmE6fPl3sz3LjAoOoqChJ14PjqlWr1KJFi0LLeXl5adGiRZo6darmzZunBx54QDVr1pR0/Tsxffp0vfTSS7LZbDKbzVqyZIn9cCiAO2Oy3WosHwBwS7Gxsbp48aKmTJnitDays7O1ePFiPf/886pUqZL+9a9/acSIEdq+fXuRhy4BlD+MpAGAwVSuXFleXl7q27evzGazzGaz5s+fT0AD3AwjaQAAAAbEhQMAAAAGREgDAAAwIEIaAACAARHSAAAADKhcXt158eJlWa3l83qImjUrKz29eA9zhvHQf2UXfVe20X9lV3nuOw8Pk6pXL/p+guUypFmttnIb0iSV68/mDui/sou+K9vov7LLXfuOw50AAAAGREgDAAAwoHJ5uBMAgPLKZrMpOztTV69my2otKO1ynC411UNWq7W0y/hVPDw8ValSZVWuXK1ETw4hpAEAUIZcvJgmk8mkGjX85elpLvePCzObPZSfX3ZDms1mU0FBvrKyMnTxYppq1PAr9roc7gQAoAzJzc2Rr29Nmc1e5T6glQcmk0lms5d8fWsqNzenROsS0gAAKFNsMpn4813WXO+zkl2lSi8DAAAYEOekAQBQxlWpWkkVK9z9P+k51/KVdenqXd8uioeQBgBAGVexglkhL2+469tNnBuqLAfLnD17Rv369VKvXn00btxE+/v//vf3+tOfBmrChGgFB4c4bGvfvmS9884yvfHGsiKXmTlzqpo3f7RY27sb65U2DncCAIBfpVq1atqzZ7cKCv57S5CtWzfL17d6KVZV9jGSBgAAfpVKlXzUoEFD7d//rVq0aClJ+vrrr9SyZStJ0s6d27V8+RLZbFb99rf3auzYCapRo6a+/vorLVw4T97e3vq//6tj396pUyf1+uuzdelSpipWrKQXX4xSw4aNHdaRn5+v2bOn6dixHyVJffr0U69efSRJu3btUHz8Ol24cEGDBz+r0NAwpaWlavbsGcrOztL582kKDg7R8OEjtXFjoj755J/KzMxQu3bt1a9ff7322iylpKTIw8NDI0aM1mOPtb7Le/FmhDQAAPCrderUVZ9/vlUtWrTU4cP/Uv36DWSz2XTx4gUtW7ZYS5a8rdq1f6vVq/+uefPmaMqUGZo5M1oLFixVnTr369VXZ9i3NXNmtCIjx6lhw8Y6efK4xo17SWvWxDms4eDB/bp06ZLefXe1zp9P05IlsfaQlpubq2XL3tdPP/2oiIiRCg0N0+bNn6pr1yB1795T2dnZCgvrob59+0uS0tJStXLlOpnNZkVH/1U9evRSYGAHnT9/XqNGDdN7762Wj0/RD0e/GwhpAADgVwsMbK/ly5fIarVq69bNevzxrtq6dZMqVqyoBx54SLVr/1aS1KtXmFaseE/Hjv2gmjUtqlPnfklS9+49tXz5El25ckWHD3+nWbOmS5JMJunq1avKzMxwWEPduvV04sTPeumlMQoIaKfRo1+wz/vDHzrIZDLp/vvrKSPj+rYGDBikffuStXr1Cv3004/Kz89TTs71CyUaNmwss/l6TEpO/lo///yz3nrrTUnXR+xOnz6lBg0a3aW9d2uENAAA8Kv5+Piofv0GOnDg/2nfvr0aOXKMtm7dJKu18L3Brt+Bv0CSSb+8b5inp6ckyWq1ytu7gt57b7Wk608cOHPmrKpWreawhmrVfLVixVrt3btHu3fv1LPPPqMVK9YW2v4vbwAcGxujM2dOq2vXJ9S+fUclJ38tm+16TRUqVLAvV1Bg1cKFS+w1nD9/XtWrO/98Oy4cAAAAd8Xjj3fR0qVvqFGjB+2jUNeu5ei77w7q7NkzkqSPPopTixaPqn79Brpw4YL+/e+jkqQtWz6VJFWuXFm/+93v9emnGyVJe/Z8pdGj/1ys9nfs+FIzZkxR27aBevHFKFWqVEmpqSlFLp+cvEcDBgzS44930YkTPystLfWWzwl99NGWiotbJ0n66adjGjz4j7p2rWRPD7gTjKQBKJOcdV+oouTmlf8HWaPsyrmWr8S5oU7Zbkm0a9der746Q8OHj7S/V6NGTY0dO1ETJkQpLy9ftWrV0vjxU2Q2mzV16ky98soUeXp6FrowIDr6Fb322iytXv13eXl5afr0WcV6BFZAQDt98cVnGjToKXl7eysoKFj16tUvcvlnnhmqGTOmqEKFCvLzq6XGjR/UmTOnb1ouMnKc5syZqSFD+stms2ny5OlOPx9Nkky2G+N65Uh6evZNw6vlhcVSRWlpju5aA6Oi/+4ei6WKU+4LVZQNf+suD7O3y9rLz72mi5m5LmuvvCtPv71z535WrVr/V9pluExZf8D6L/1v33l4mFSzZuUil2ckDQCKwcPsrWMzn3RZe3UnrpdESAP+17VrORox4tlbzhs+fIQCAzu4uCLnIaQBAIAyo0KFivaLCso7LhwAAAAwIEIaAACAARHSAAAADIhz0gAAKOOqV/OW2buC4wVLiKuMSxchDQCAMs7sXcEpVx9zlXHpIqQBAIBf5fLlbC1dukj/7/99I09Ps6pUqaIxYyLVqFFjxyuXspkzp6p580cVHBxS2qXchJAGAADumNVqVVTUC2rRoqXefXe1zGaz9u1LVlRUhFauXKtq1XxLu8Qyy6khLTExUUuWLFF+fr6GDBmigQMHFpq/efNmLVy4UFarVU2bNtX06dPl7e2t+Ph4zZ07VzVr1pQkdezYUZGRkc4sFQAA3IF9+5KVknJOw4aNkIfH9esRW7RoqQkTpshqtWrFivf0+eebVVBgVevWAXruuQidO3dWEyZEqW7dejp69HvVqFFTM2a8Kh+f32j27Gk6duxHSVKfPv0UFvbkTaNdgYEttWNHspKTv9bixQtlMplUpUoVTZ06S76+tw6F+fn5N227V68+kqRdu3YoPn6dLly4oMGDn1VoaJjS0lI1e/YMZWdn6fz5NAUHh2j48JHauDFRn3zyT2VmZqhdu/bq16+/XnttllJSUuTh4aERI0brscda35V967SQlpKSopiYGMXFxcnb21v9+/dX69atVb/+9WdoXblyRdOnT1d8fLzuueceRUZGKj4+Xn/84x916NAhjR8/Xj179nRWeQAA4C44evR7NWjQ0B7QbmjTJlBffbVL339/WMuX/10mk0kzZkzRpk2fqFmzR/TDD//WX/86RQ0bNtbEiWO1adMnqlevgS5duqR3312t8+fTtGRJrMLCij7X7v3339bYsX/VAw88pFWr3tfRo0fUqlXALZc9eHD/Tdu+EdJyc3O1bNn7+umnHxURMVKhoWHavPlTde0apO7deyo7O1thYT3Ut29/SVJaWqpWrlwns9ms6Oi/qkePXgoM7KDz589r1Khheu+91Xfl2Z5OC2m7du1SQECAPdEGBQUpKSlJY8aMkST5+Pjos88+k5eXl65evar09HRVrVpVknTw4EEdP35cb775pho1aqTJkyerWrVqzioVAADcIQ8Pk7yLuLI0OflrfffdIQ0bNkjS9Uc6+fvXUrNmj6h69Rr2h6rXrVtfly5dUt269XTixM966aUxCghop9GjX7ht24GB7TVhwlj94Q8d9Ic/dNBjj906oF1vo+ht/+EPHWQymXT//fWUkZEhSRowYJD27UvW6tUr9NNPPyo/P085OVclSQ0bNpbZbLZ/xp9//llvvfWmpOsjdqdPn1KDBo2Ks/tuy2khLTU1VRaLxT7t5+enAwcOFFrGy8tLX375pcaNGyc/Pz8FBgZKkiwWi5599lm1aNFC8+bN0/Tp0zV37txit327h5WWBxZLldIuAb8C/Yfi4rtyd5WX/Zma6iGz2XW3OXXU1kMPPaSEhA/l6WmSyWSyv79kSaz27dur/v0HasCAZyRJWVlZ8vT0VEZGhry9ve3b9vC4vl7NmjW0Zs2H+vrrr7Rr104NG/aMVq/+UB4eJnl43HjYep69roEDB6l9+w7auXO7liyJ1ZEj3+lPfxp+yzqL2rbJZJKXl7nQ5zSbPbRgwTydOXNa3bo9oU6dOik5+ev/1GFSxYoV7ctbrVYtWvSmfTDp/Pk0Va9eQ56eN+83Dw+PEn0PnRbSrFZroc6y2WyFpm/o0KGD9uzZo3nz5mnq1KmaO3euFi1aZJ8/fPhwde3atURtp6dny2q13XnxBmaxVFFaWlZpl4E7RP/dPeXlD+7t8F25e8rTb89qtSo/31rovfzca/+5XcbdlZ977aa2/leTJo/I17eGli1bqqFDh8vT01N79uzWP//5kUaOfF5r165Wz5695e3trbFjIxUcHKLmzR+9vv3/bPvG3+wvvvhcn376iaZPn62WLQO0d+8epaScU9Wqvvrhhx+Vn2/VZ599bl83PHyIxo79q/r2fVq/+U0V7djxZZH17tjx5U3bPnPmrGw2m6xWW6H18vOt+vrrrxQV9Vc1bfqwdu3aobS0VOXl5ctqtclm++/yLVq01Lp1H2jo0OH66adjGj06XB9++NEtD3dardZC30MPD9NtB5acFtJq1aql5ORk+3RaWpr8/Pzs0xkZGTp06JB99CwkJESRkZHKysrS+vXrNXToUEnXw52np6ezygQAoMy7fsPZ0rmfmclk0quvzlNs7FwNHvxHmc1mVavmq9deW6CGDRsrJeWc/vznobJaC9S6dVt1795T586dveW2AgLa6YsvPtOgQU/J29tbQUHBql+/gXr3flJTpvxVQ4b0V4sWj6lmzXskSSNGjNbMmdPk6ekpHx8f/eUvk4qs81bbrlevfpHLP/PMUM2YMUUVKlSQn18tNW78oM6cOX3TcpGR4zRnzkwNGdJfNptNkydPvyvno0mSyWazOWXIKSUlRU8//bQ+/PBDVapUSf3799eMGTPUrFkzSdLFixcVHBys9evX67e//a1iY2OVlpam6OhodejQQYsWLdLDDz+sN954Q6mpqZo+fXqx22YkDUZF/909FksVhby8wWXtJc4NdcrNQotSd+J6vit3UXn67Z0797Nq1fq/0i7DZa4f4rz9aF5Z8b99V2ojaf7+/oqMjNTgwYOVl5envn37qlmzZgoPD1dERISaNm2qGTNmaMSIETKZTKpfv76mTbuehufPn6+pU6cqJydHderU0Zw5c5xVJgAAKCeuXcvRiBHP3nLe8OEjFBjYwcUV/TpOvU9aSEiIQkIK38F3+fLl9tddunRRly5dblqvZcuWio+Pd2ZpAACUWUWd5+3uKlSoqPfeW13aZdzSnRy4dN3lIQAA4Ffz9DQrL4/naZY1eXm58vQs2dgYIQ0AgDKkcmVfZWSkKTf32h2NzsC1bDabcnOvKSMjTZUrl+wRWTy7EwCAMqRSpetXDmZmnldBQX4pV+N8Hh4eslrL9oUD1x86X93ed8VFSAMAoIypVOk3Jf6DX1aVpytzS4rDnQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQObSLgAoTVWqVlLFCq77GeTmFbisLQBA2UZIg1urWMGskJc3uKy9DX/rLoulisvay8+9pouZuS5rDwBw9xDSABfyMHvr2MwnXdZe3YnrJRHSAKAs4pw0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgp4a0xMREBQcHq1u3blq1atVN8zdv3qyQkBD16NFD48ePV27u9avQzpw5o4EDB+qJJ57Qc889p8uXLzuzTAAAAMNxWkhLSUlRTEyMVq9erYSEBH3wwQf64Ycf7POvXLmi6dOn691339XHH3+sa9euKT4+XpI0bdo0DRgwQElJSWrSpIkWL17srDIBAAAMyWkhbdeuXQoICJCvr698fHwUFBSkpKQk+3wfHx999tlnuueee3T16lWlp6eratWqysvL0969exUUFCRJCgsLK7QeAACAO3DazWxTU1NlsVjs035+fjpw4EChZby8vPTll19q3Lhx8vPzU2BgoC5evKjKlSvLbL5emsViUUpKSonarlmz8q//AAbmyjvWo+zj+1J20Xd3F/uz7HLXvnNaSLNarTKZTPZpm81WaPqGDh06aM+ePZo3b56mTp2qcePG3bTcrda7nfT0bFmttjsr3OAslipKS8sq7TLKDXf44ZfX7wt9h5Lg386yqzz3nYeH6bYDS0473FmrVi2lpaXZp9PS0uTn52efzsjI0I4dO+zTISEh+v7771WjRg1lZWWpoKDglusBAAC4A6eFtLZt22r37t26cOGCrl69qk2bNql9+/b2+TabTWPHjtWZM2ckSUlJSWrRooW8vLzUsmVLbdy4UZKUkJBQaD0AAAB34LSQ5u/vr8jISA0ePFi9e/dWz5491axZM4WHh+vgwYOqXr26ZsyYoREjRqhXr1766aefNHbsWElSdHS01q5dq+DgYCUnJ+vFF190VpkAAACG5LRz0qTrhzBDQkIKvbd8+XL76y5duqhLly43rXfvvfdqxYoVziwNAADA0HjiAAAAgAER0gAAAAyIkAYAAGBAhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAyIkAYAAGBAhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAyIkAYAAGBAhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAyIkAYAAGBAhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAzIYUg7f/68tm7dKkl67bXXNGTIEB05csTphQEAALgzhyFt/PjxOnnypHbv3q3t27crNDRUr7zyiitqAwAAcFsOQ1pGRoaGDh2qbdu2qWfPngoLC9PVq1ddURsAAIDbchjS8vLylJeXp+3bt6tt27a6evWqrly54oraAAAA3JbDkNa5c2e1adNG1atXV5MmTdSvXz/17NnTFbUBAAC4LbOjBSIiIvTUU0/J399fkvT666+rcePGTi8MAADAnRUZ0hISEopc6ciRI+rdu7fDjScmJmrJkiXKz8/XkCFDNHDgwELzt2zZotjYWNlsNv3ud7/T7NmzVa1aNcXHx2vu3LmqWbOmJKljx46KjIws7mcCAAAo84oMaUlJSZKktLQ0HTt2TAEBATKbzdqzZ48eeOABhyEtJSVFMTExiouLk7e3t/r376/WrVurfv36kqTs7GxNnTpV69evl7+/vxYsWKDY2FhNmjRJhw4d0vjx4zmsCgAA3FaR56QtXbpUS5cuVc2aNbVhwwYtWbJEsbGxSkhIkNns8Cipdu3apYCAAPn6+srHx0dBQUH24CddvyAhOi/e1BAAAB+fSURBVDrafhi1UaNGOnv2rCTp4MGDio+PV0hIiKKiopSZmflrPycAAECZ4vDCgbNnz+q+++6zT//2t7/VuXPnHG44NTVVFovFPu3n56eUlBT7dPXq1dW1a1dJUk5OjpYtW6YuXbpIkiwWi0aNGqWPPvpItWvX1vTp04v/iQAAAMoBh0NiFotFCxcuVJ8+fSRJH3zwgX7/+9873LDVapXJZLJP22y2QtM3ZGVlafTo0WrcuLG9jUWLFtnnDx8+3B7miqtmzcolWr6ssViqlHYJKEP4vpRd9N3dxf4su9y17xyGtFdffVXTpk1TaGioTCaT2rdvr1mzZjnccK1atZScnGyfTktLk5+fX6FlUlNTNWzYMAUEBGjChAmSroe29evXa+jQoZKuhztPT8+SfCalp2fLarWVaJ2ywmKporS0rNIuo9xwhx9+ef2+0HcoCf7tLLvKc995eJhuO7DkMKT5+fkVGtkqrrZt2yo2NlYXLlxQpUqVtGnTJs2YMcM+v6CgQCNHjlT37t01atQo+/s+Pj5666231Lx5cz388MNauXJliUfSAAAAyroiQ1pISMhtV0xMTLztfH9/f0VGRmrw4MHKy8tT37591axZM4WHhysiIkLnzp3Td999p4KCAn366aeSpCZNmmjmzJmaP3++pk6dqpycHNWpU0dz5sy5g48GAABQdhUZ0iZPnvyrNx4SEnJT2Fu+fLkkqWnTpjpy5Mgt12vZsqXi4+N/dfsAAABlVZEhrVWrVvbX+/fv1/bt25WXl6d27doVmgcAAIC7z+EtOBISEhQREaHMzExdvnxZL7/8stauXeuK2gAAANyWwwsH3nvvPa1bt85+ZWZ4eLiGDRump556yunFAQAAuCuHI2lWq7XQrTP8/f3l4eFwNQAAAPwKDtOWr6+vtmzZYp/esmWLqlWr5tSiAAAA3J3Dw52TJ0/WqFGj7Pc48/Ly0htvvOH0wgAAANyZw5DWoEEDJSUl6fjx4yooKFDdunWL9YB1AAAA3DmHaev8+fNat26d0tPTC70/adIkpxUFAADg7hyGtMjISFWtWlWNGze+5QPSAQAAcPcVayRtxYoVrqgFAAAA/+Hw6k6LxaKMjAxX1AIAAID/KHIk7ZVXXpEkeXp6ql+/fmrbtq28vLzs8zknDQAAwHmKDGm+vr6SpEcffVSPPvqoywoCAADAbULamDFj7K9zcnL0888/q0GDBrp27ZoqVarkkuIAAADclcNz0vbv368uXbpoxIgRSk1NVceOHbVv3z5X1AYAAOC2HIa0v/3tb3rvvffk6+urWrVqac6cOZo5c6YragMAAHBbDkNaTk6O6tevb5/u0KGDCgoKnFoUAACAu3MY0sxmszIzM+03sj127JjTiwIAAHB3Dm9m+9xzz+mZZ57R+fPn9dJLL2nnzp2aPn26K2oDAABwWw5DWqdOnVS3bl3t3LlTVqtVo0ePVr169VxRGwAAgNtyeLhTkjw8PDRgwADde++9SkpKUlZWlrPrAgAAcGsOQ9qUKVO0fPly/fjjj5o8ebJOnTqlCRMmuKI2AAAAt+UwpB06dEhTp07V5s2b1adPH82ePVunT592RW0AAABuy2FIs9ls8vDw0M6dOxUQECDp+m05AAAA4DwOQ9p9992n8PBwnTp1Sq1atdLLL7+sRo0auaI2AAAAt+Xw6s7Zs2dr8+bNevTRR+Xl5aWWLVuqd+/erqgNAADAbTkMabm5uerQoYMkKSMjQ927d+ch6wAAAE7mMKQFBATIZDLJZrNJkkwmkywWi7Zt2+b04gAAANyVw5B25MgR++u8vDwlJibqp59+cmpRAAAA7q5YN7O9wcvLS2FhYdq5c6ez6gEAAICKMZKWkZFhf22z2XTo0CFdunTJqUUBAAC4uxKfk1azZk1NnDjR6YUBAAC4sxKdkwYAAADXcBjSrFar3n77bW3btk35+flq166dRo4cKbPZ4aoAAAC4Qw4vHJg7d66++uorDRkyRH/605/07bffas6cOa6oDQAAwG05HA7bvn271q9fLy8vL0lSx44d1atXL02YMMHpxQEAALirYj1g/UZAkyRvb+9C0wAAALj7HIa0xo0ba9asWTpx4oROnjyp2bNnq2HDhq6oDQAAwG05DGnR0dHKzMxU//791a9fP6Wnp2vy5MmuqA0AAMBtOTwnrXLlyvrb3/7miloAAADwH0WGtJEjR952xaVLl971YgAAAHBdkSEtKCjI/nrhwoWKiIgo8cYTExO1ZMkS5efna8iQIRo4cGCh+Vu2bFFsbKxsNpt+97vfafbs2apWrZrOnDmjsWPHKj09Xffff79ef/11/eY3vylx+wAAAGVVkSGtT58+9tfvv/9+oeniSElJUUxMjOLi4uTt7a3+/furdevWql+/viQpOztbU6dO1fr16+Xv768FCxYoNjZWkyZN0rRp0zRgwAD16NFDixYt0uLFizV27Ng7/IgAAABlj8MLByTJZDKVeMO7du1SQECAfH195ePjo6CgICUlJdnn5+XlKTo6Wv7+/pKkRo0a6ezZs8rLy9PevXvtI3lhYWGF1gMAAHAHTnu2U2pqqiwWi33az89PBw4csE9Xr15dXbt2lSTl5ORo2bJlGjRokC5evKjKlSvbHztlsViUkpJSorZr1qx8Fz6BcVksVUq7BJQhfF/KLvru7mJ/ll3u2ndFhrSMjAz764KCAmVmZspms9nf8/X1ve2GrVZroRE4m812yxG5rKwsjR49Wo0bN1afPn2UkpJy03IlHclLT8+W1WpzvGAZZLFUUVpaVmmXUW64ww+/vH5f6DuUBP92ll3lue88PEy3HVgqMqQFBATIZDLZg1nr1q3t80wmkw4fPnzbhmvVqqXk5GT7dFpamvz8/Aotk5qaqmHDhikgIMD+mKkaNWooKytLBQUF8vT0vOV6AAAA5V2RIe3IkSO/asNt27ZVbGysLly4oEqVKmnTpk2aMWOGfX5BQYFGjhyp7t27a9SoUfb3vby81LJlS23cuFEhISFKSEhQ+/btf1UtAAAAZY3Tzknz9/dXZGSkBg8erLy8PPXt21fNmjVTeHi4IiIidO7cOX333XcqKCjQp59+Kklq0qSJZs6cqejoaI0fP15LlixR7dq1NW/ePGeVCQAAYEhOC2mSFBISopCQkELvLV++XJLUtGnTIkfr7r33Xq1YscKZpQEAABhasW7BAQAAANcipAEAABhQkYc7//cw5f9KTEy868UAAADguiJD2uTJk11ZBwAAAH6hyJDWqlUr++uMjAxdvXpVNptNBQUFOnHihEuKAwAAcFcOr+5csGCBli1bJkny9PRUXl6e6tevz+FOAAAAJ3J44cCGDRv0+eefKygoSJs2bdLs2bNVv359V9QGAADgthyGtBo1asjPz09169bVkSNH1Lt3bx09etQVtQEAALgthyHNbDbrxIkTqlu3rpKTk5Wfn69r1665ojYAAAC35TCkjRgxQpMnT1bHjh21efNmdezYUQEBAa6oDQAAwG05vHDgwQcf1Pvvvy9JSkhI0M8//ywPD+6BCwAA4ExFpq2MjAxlZGQoPDxcmZmZysjI0LVr13TPPfcoIiLClTUCAAC4nSJH0l5++WXt3LlTktS6dev/rmA2KygoyPmVAQAAuLEiQ9rbb78tSfrrX/+q2bNnu6wgAAAAFOOctNmzZ2v//v3avn278vLyFBgYqMcee8wVtQEAALgth1cAJCQkKCIiQpmZmbp8+bJeeuklrV271hW1AQAAuC2HI2nvvfee1q1bJz8/P0lSeHi4hg0bpqeeesrpxQEAALgrhyNpVqvVHtAkyd/fn1twAAAAOJnDtOXr66stW7bYp7ds2aJq1ao5tSgAAAB3V+Thzvfff19DhgzR5MmTNWrUKM2YMUMmk0lms1mLFi1yZY0AAABup8iQlpCQoCFDhqhBgwZKSkrS8ePHVVBQoLp168psdngqGwAAAH6FYqUtT09P1atXz9m1AAAA4D+KDGknT57UyJEji1xx6dKlTikIAAAAtwlpVapU4fFPAAAApaTIkObr66s+ffq4shYAAAD8R5G34LDZbK6sAwAAAL9QZEibO3euK+sAAADALxQZ0riaEwAAoPTwfCcAAAADKjKkzZ8/X5L0zTffuKwYAAAAXFdkSPvnP/+plJQUTZs2TZmZmcrIyCj0HwAAAJynyFtwtGvXTh07dpQktW7dutA8k8mkw4cPO7UwAAAAd1bkSNq0adN0+PBhtWjRQkeOHCn0HwENAADAuRw+u3PVqlXav3+/tm/frry8PAUGBuqxxx5zRW0AAABuy+HVnRs2bFBERIQyMzN1+fJlvfTSS1q7dq0ragMAAHBbDkfS3n33Xa1bt05+fn6SpPDwcA0bNkxPPfWU04sDAABwVw5H0qxWqz2gSZK/v788PLi9GgAAgDM5TFu+vr7asmWLfXrLli2qVq2aU4sCAABwdw4Pd06ePFmjRo3SjBkzZDKZZDabtWjRIlfUBgAA4LYchrQGDRooKSlJx48fV0FBgerWrSuz2eFqAAAA+BWKlbY8PT154DoAAIALOfUKgMTERAUHB6tbt25atWpVkcuNGzdOcXFx9un4+HgFBgYqNDRUoaGhiomJcWaZAAAAhuO045YpKSmKiYlRXFycvL291b9/f7Vu3Vr169cvtEx0dLR2796tgIAA+/uHDh3S+PHj1bNnT2eVBwAAYGjFCmkHDhzQd999p7CwMP3rX/9S8+bNHa6za9cuBQQEyNfXV5IUFBSkpKQkjRkzxr5MYmKiOnfubF/mhoMHD+r48eN688031ahRI02ePJkrSgEAd8yanyuLpYrL2svPvaaLmbkuaw/lk8OQFhcXp7ffflvXrl1T165dNWrUKEVGRjq8mW1qaqosFot92s/PTwcOHCi0zPDhwyVJ33zzTaH3LRaLnn32WbVo0ULz5s3T9OnTNXfu3GJ/qJo1Kxd72bLIlf/QoOzj+1J20Xd317GZT7qsrboT18tiqeCy9so7d/0tOAxpK1as0AcffKBnnnlGNWvWVFxcnIYPH+4wpFmtVplMJvu0zWYrNH07v7zFx/Dhw9W1a9dirXdDenq2rFZbidYpKyyWKkpLyyrtMsoNd/jhl9fvC31XtlWpWkkVK5TvOwWU5/5zpfL8d8/Dw3TbgSWHvxAPDw9VrvzfDdSuXVuenp4OG65Vq5aSk5Pt02lpaYWeXFCUrKwsrV+/XkOHDpV0PdwVpz0AQNlRsYJZIS9vcFl7iXNDXdYWcLcU64kDhw8fto+CffTRR8U6P6xt27bavXu3Lly4oKtXr2rTpk1q3769w/V8fHz01ltvaf/+/ZKklStXlngkDQAAoKxzOJI2YcIEvfDCCzpx4oQCAwNVoUIFLV682OGG/f39FRkZqcGDBysvL099+/ZVs2bNFB4eroiICDVt2vSW63l6emr+/PmaOnWqcnJyVKdOHc2ZM6fknwwAAKAMcxjScnJytGHDBvsTB+6//355eXkVa+MhISEKCQkp9N7y5ctvWu7VV18tNN2yZUvFx8cXqw0AAIDyyOHhzqioKPsTBxo2bFjsgAYAAIA75zCkNWrUSImJiTpz5owyMjLs/wEAAMB5HB7u3Lp1q5KSkgq9ZzKZdPjwYacVBQAA4O4chrSDBw+6og4AAAD8gsOQlpubqy+//FKXL1+WJBUUFOjEiROKjIx0enEAAADuymFIi4yM1MmTJ5WWlqYHH3xQ+/fvV6tWrVxRGwAAgNtyeOHA4cOHFRcXp86dO2vChAlas2aNMjMzXVEbAACA23IY0vz8/GQ2m1WnTh0dPXpUDRo0UFZW+XyGFgAAgFE4DGk+Pj5KTExU48aN9cknn+j777/XlStXXFEbAACA23IY0qZMmaLDhw+rXbt28vDw0DPPPKNnn33WFbUBAAC4LYcXDtSpU0fjxo2TJM2fP9/pBQEAAKAYIe2bb77RG2+8ofT0dNlsNvv7iYmJTi0MAADAnTkMaZMnT9ZTTz2lBx54QCaTyRU1AQAAuD2HIc3b21tDhw51QSkAAAC4weGFA3Xr1uXRUAAAAC5W5EhaSEiIJOny5ct6+umn9fvf/15m838X55w0AAAA5ykypE2ePNmVdQAAAOAXigxprVq1ks1mU0FBgcxms7Kzs7Vr1y41bNhQderUcWGJAAAA7qfIc9J++OEHde7cWdu3b1dOTo769eunmJgYDRo0SDt37nRljQAAAG6nyJA2Z84cvfjii+rUqZM+/vhj2Ww2ffzxx1q7dq1iY2NdWSMAAIDbKTKknT17Vr169ZIk7dmzR126dJGHh4dq166t7OxslxUIAADgjooMaR4e/5317bff6rHHHrNPX7t2zblVAQAAuLkiLxyoVq2ajhw5ouzsbKWlpdlD2r59++Tv7++yAgEAANxRkSHtpZde0tChQ5Wdna2oqCj5+Pjo7bff1tKlS7Vo0SJX1ggAAOB2igxpjzzyiLZt26acnBxVrVpVktS8eXOtW7eOW3AAAAA42W2f3ent7S1vb2/7dIsWLZxeEAAAAIrx7E4AAAC4HiENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAyIkAYAAGBAhDQAAAADIqQBAAAYECENAADAgAhpAAAABkRIAwAAMCBCGgAAgAER0gAAAAzIqSEtMTFRwcHB6tatm1atWlXkcuPGjVNcXJx9+syZMxo4cKCeeOIJPffcc7p8+bIzywQAADAcp4W0lJQUxcTEaPXq1UpISNAHH3ygH3744aZlRo4cqU8//bTQ+9OmTdOAAQOUlJSkJk2aaPHixc4qEwAAwJCcFtJ27dqlgIAA+fr6ysfHR0FBQUpKSiq0TGJiojp37qzu3bvb38vLy9PevXsVFBQkSQoLC7tpPQAAgPLO7KwNp6amymKx2Kf9/Px04MCBQssMHz5ckvTNN9/Y37t48aIqV64ss/l6aRaLRSkpKc4qEwAAwJCcFtKsVqtMJpN92mazFZouyq2WK856v1SzZuUSLV/WWCxVSrsElCF8X8ou+q5so//uHnfdl04LabVq1VJycrJ9Oi0tTX5+fg7Xq1GjhrKyslRQUCBPT89ir/dL6enZslptJa65LLBYqigtLau0yyg33OGHX16/L/Rd2Ub/objK8989Dw/TbQeWnHZOWtu2bbV7925duHBBV69e1aZNm9S+fXuH63l5eally5bauHGjJCkhIaFY6wEAAJQnTgtp/v7+ioyM1ODBg9W7d2/17NlTzZo1U3h4uA4ePHjbdaOjo7V27VoFBwcrOTlZL774orPKBAAAMCSnHe6UpJCQEIWEhBR6b/ny5Tct9+qrrxaavvfee7VixQpnlnbXVKlaSRUrOHU3FmLNy3XpYYL83Gu6mJnrsvYAAMB1rksX5VTFCmaFvLzBZe0lzg3VsZlPuqy9uhPXSyKkAQDgajwWCgAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQObSLgAAAKAo1vxcWSxVXNZefu41XczMdVl7t0NIAwAAJVKlaiVVrOC6CHFs5pMua6vuxPWSCGkAAKAMqljBrJCXN7ikrcS5oS5px4g4Jw0AAMCACGkAAAAGREgDAAAwIEIaAACAARHSAAAADIiQBgAAYECENAAAAAMipAEAABgQIQ0AAMCACGkAAAAGREgDAAAwIEIaAACAARHSAAAADIiQBgAAYECENAAAAAMipAEAABgQIQ0AAMCACGkAAAAGREgDAAAwIEIaAACAARHSAAAADIiQBgAAYECENAAAAANyakhLTExUcHCwunXrplWrVt00//DhwwoLC1NQUJAmTpyo/Px8SVJ8fLwCAwMVGhqq0NBQxcTEOLNMAAAAwzE7a8MpKSmKiYlRXFycvL291b9/f7Vu3Vr169e3LzN27Fi98soreuSRRzRhwgStXbtWAwYM0KFDhzR+/Hj17NnTWeUBAAAYmtNG0nbt2qWAgAD5+vrKx8dHQUFBSkpKss8/ffq0cnJy9Mgjj0iSwsLC7PMPHjyo+Ph4hYSEKCoqSpmZmc4qEwAAwJCcFtJSU1NlsVjs035+fkpJSSlyvsVisc+3WCwaNWqUPvroI9WuXVvTp093VpkAAACG5LTDnVarVSaTyT5ts9kKTd9u/qJFi+zvDx8+XF27di1R2zVrVr7TsnELFkuV0i4BvwL9V3bRd2Ub/Vd2GaXvnBbSatWqpeTkZPt0Wlqa/Pz8Cs1PS0uzT58/f15+fn7KysrS+vXrNXToUEnXw5unp2eJ2k5Pz5bVavt1H6CYjNKRzpSWllXaJTgN/Vd20XdlG/1XtpX3/nNV33l4mG47sOS0w51t27bV7t27deHCBV29elWbNm1S+/bt7fPvvfdeVahQQd98840kacOGDWrfvr18fHz01ltvaf/+/ZKklStXlngkDQAAoKxz2kiav7+/IiMjNXjwYOXl5alv375q1qyZwsPDFRERoaZNm+r111/XpEmTlJ2drYceekiDBw+Wp6en5s+fr6lTpyonJ0d16tTRnDlznFUmAACAITktpElSSEiIQkJCCr23fPly++vGjRvrww8/vGm9li1bKj4+3pmlAQAAGBpPHAAAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgQhoAAIABEdIAAAAMiJAGAABgQIQ0AAAAAyKkAQAAGBAhDQAAwIAIaQAAAAZESAMAADAgp4a0xMREBQcHq1u3blq1atVN8w8fPqywsDAFBQVp4sSJys/PlySdOXNGAwcO1BNPPKHnnntOly9fdmaZAAAAhuO0kJaSkqKYmBitXr1aCQkJ+uCDD/TDDz8UWmbs2LGaMmWKPv30U9lsNq1du1aSNG3aNA0YMEBJSUlq0qSJFi9e7KwyAQAADMnsrA3v2rVLAQEB8vX1lSQFBQUpKSlJY8aMkSSdPn1aOTk5euSRRyRJYWFhWrhwofr166e9e/dq0aJF9vefeeYZjR07tthte3iY7vKnuT2/6pVc2p65msWl7bl6f7oa/Vd20XdlG/1Xtrmy/8pr3zlqx2Sz2WzOaPjNN9/UlStXFBkZKUlat26dDhw4oBkzZkiSvv32W82ZM0dr1qyRJP3888/685//rBUrVqhv377atm2bJCk/P1+PPPKIDh065IwyAQAADMlphzutVqtMpv8mRJvNVmi6qPn/u5ykm6YBAADKO6eFtFq1aiktLc0+nZaWJj8/vyLnnz9/Xn5+fqpRo4aysrJUUFBwy/UAAADcgdNCWtu2bbV7925duHBBV69e1aZNm9S+fXv7/HvvvVcVKlTQN998I0nasGGD2rdvLy8vL7Vs2VIbN26UJCUkJBRaDwAAwB047Zw06fotON58803l5eWpb9++Cg8PV3h4uCIiItS0aVMdOXJEkyZNUnZ2th566CHNnj1b3t7eOn36tMaPH6/09HTVrl1b8+bNU7Vq1ZxVJgAAgOE4NaQBAADgzvDEAQAAAAMipAEAABgQIQ0AAMCACGkAAAAGREgrIxw9rB7Gl52drZ49e+rUqVOlXQpK4I033lCPHj3Uo0cPzZkzp7TLQQktWLBAwcHB6tGjh959993SLgd36G9/+5vGjx9f2mW4HCGtDCjOw+phbPv379fTTz+t48ePl3YpKIFdu3Zpx44dio+PV0JCgv71r39p8+bNpV0Wiunrr7/WV199pY8++kjr16/XihUrdOzYsdIuCyW0e/duxcfHl3YZpYKQVgb88mH1Pj4+9ofVo+xYu3atoqOjeXpGGWOxWDR+/Hh5e3vLy8tL9erV05kzZ0q7LBRTq1at9Pe//11ms1np6ekqKCiQj49PaZeFEsjIyFBMTIxGjhxZ2qWUCnNpFwDHUlNTZbFY7NN+fn46cOBAKVaEkpo5c2Zpl4A70KBBA/vr48eP65NPPtGaNWtKsSKUlJeXlxYuXKh33nlHTzzxhPz9/Uu7JJTAlClTFBkZqbNnz5Z2KaWCkbQywNHD6gE417///W89++yzGjdunOrUqVPa5aCEIiIitHv3bp09e1Zr164t7XJQTOvWrVPt2rXVpk2b0i6l1DCSVgbUqlXr/7d3hyoLQ2EYxx8w7Qq8BosXYLGtGCZYtHgDwmB1VZC1gWZvwWgQvIHhytrC2mBBGKwImmzji/uK50z/v3ZOeuJzzuHw6na7tWuGzgOfk6apfN9XGIaazWam4+AfiqLQ6/XSaDSS4zhyXVd5npuOhY7O57Pu97s8z1PTNHo8HtrtdgrD0HS0j6Gk9cBkMtHhcFBd13IcR5fLRdvt1nQs4OtVVaXNZqM4jn/6NN9XZVlqv9+3T9TX61WLxcJwKnT19zfu6XRSkiQ/VdAkSlovDIdDBUGg9XrdDqsfj8emYwFf73g86vl8Koqidm+5XGq1WhlMha6m06myLNN8PtdgMJDrutyGolcYsA4AAGAhPg4AAABYiJIGAABgIUoaAACAhShpAAAAFqKkAQAAWIiSBgAAYCFKGgAAgIUoaQAAABZ6Ax6Hzqifuyt3AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ax = ao_regionwide.loc[ao_regionwide.index != 'Total',['Model_share', 'Census_share']].plot.bar(rot=0, figsize=(10,7))\n", + "# plt.xticks(rotation=45)\n", + "plt.title(\"Auto Ownership Region wide\")\n", + "plt.ylabel(\"Share of Total Households\")\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.13" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}