{"self":"http://probly.dev/api/sim/SQ34cW5PMR764UFZDAwhSJ/","id":"SQ34cW5PMR764UFZDAwhSJ","created_at":"2026-05-03T10:52:36.700108Z","status":{"status":"SUCCESS","status_datetime":"2026-05-03T12:37:45.197146Z","time_elapsed":null,"done_at":null},"input_type":"esty","spreadsheet_input":null,"esty_input":{"content":"_cohort = 10 * 1000  # Arbitrary\n\n# Iron-deficiency anemia prevalence, children in India (any severity)\n# Global Burden of Disease 2016, see 'Supplementary data'\np_anemia = Beta(19, 22)  # p15=0.38, p85=0.54; beta by quantiles not yet supported\n\n\n\ndef anemia_reduction():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n    # Of children with anemia, proportion with mild, moderate, and severe anemia\n    p_severity = {\n        \"mild\": 48 / 100,\n        \"moderate\": 48 / 100,\n        \"severe\": 4.1 / 100\n    }\n\n    # Risk ratio anemia, iron supplementation\n    risk_ratio = PERT(0.3, 0.5, 1)\n\n    p_cured = {}\n    for severity in p_severity:\n        p_cured[severity] = p_anemia * p_severity[severity] * risk_ratio\n\n    yld = {\n        \"mild\": 0.4 / 100,\n        \"moderate\": 5.2 / 100,\n        \"severe\": 15 / 100\n    }\n\n    yld_sum = 0\n    for severity in yld:\n        yld_sum += p_cured[severity] * yld[severity]\n\n    return _cohort * yld_sum\n\ndef cognitive_benefits():\n    \"\"\"\n    In (present value of) units of increase in ln(income) per cohort.\n\n    These drive most of the cost-effectiveness.\n    \"\"\"\n    # The intervention targets all children in a school, but we model\n    # cognitive benefits as accruing only to children between ages 3-12.\n    # Proportion of targeted children between ages 3-12\n    p_children = 65 / 100\n\n    # Change in IQ points from short-term supplementation for anemic individuals\n    iq_change_sd = LogNormal(0.33 td 2)\n    iq_change = iq_change_sd * 15  # Convert to IQ points: 1 SD = 15 IQ points\n\n    p_wages_per_point = 1 / 100  # Percentage increase in wages/consumption for every 1 point increase in IQ\n\n    # Percentage increase in wages/consumption from increase in IQ from supplementation\n    p_wages = iq_change * p_wages_per_point\n\n    # Speculative adjustment to assess the long-term benefit of many years of iron\n    long_term_adjustment = 10 / 100\n    p_wages = p_wages * long_term_adjustment\n\n    # Increase in annual ln(consumption) for beneficiaries\n    change_ln_cons = math.log(1 + p_wages) - math.log(1)\n\n    delay_y = 12  # Average number of years between 'entering fortification program' and beginning of long term benefits\n    duration_y = LogUniform(15 td 3)  # Duration of long term benefits of fortification (in years)\n\n    # Present Value Income Benefits\n    discount_rate = Uniform(2/100, 7/100)\n    pv_income = pv(discount_rate, delay_y + duration_y, -change_ln_cons) - pv(\n        discount_rate, delay_y, -change_ln_cons\n    )  # Unit is still changes in ln(income)\n\n    # Multiplier for Resource Sharing in Households\n    multiplier_resource_sharing = 2\n    pv_income = pv_income * multiplier_resource_sharing\n\n    # Lifetime Income Benefits for Full Cohort (including non-beneficiaries)\n    return _cohort * p_children * p_anemia * pv_income\n\n\ndef altered_malaria_risk():\n    \"\"\"\n    In deaths per cohort\n    \"\"\"\n    baseline_deaths_100k = 5.14  # Baseline deaths due to malaria per 100,000 individuals 0-19 in India\n    # Convert to per cohort\n    baseline_deaths = baseline_deaths_100k * (_cohort / (100 * 1000))\n\n    rr = PERT(1, 1.16, 1.5)  # Relative risk of malaria mortality with IFA supplementation\n\n    direct = baseline_deaths * (rr - 1)\n    indirect_per_direct = 50 / 100\n    return direct * (1 + indirect_per_direct)\n\n\ndef other_adverse_effects():\n    \"\"\"\n    In YLDs per cohort\n    \"\"\"\n\n    p_condition = {\n        \"gastro\": (8 + 1 + 33 + 2 + 8) / (23 + 12 + 128 + 2 + 8),\n        \"loose_stools\": (1 + 2 + 6 + 2 + 1 + 3) / (36 + 8 + 128 + 6 + 44 + 71),\n        \"hard_stools\": (1 + 5 + 0 + 0 + 11 + 0 + 6 + 3) / (31 + 36 + 8 + 182 + 128 + 6 + 44 + 71),\n        \"abdominal_pain\": (0 + 4 + 2 + 15 + 1 + 3 + 4) / (120 + 36 + 182 + 128 + 6 + 44 + 71),\n    }\n\n    yld = {\n        \"gastro\": 7.4 / 100,\n        \"loose_stools\": 7.4 / 100,\n        \"hard_stools\": 7.4 / 100,\n        \"abdominal_pain\": 1.1 / 100,\n    }\n\n    duration = 2 / 365\n\n    yld_sum = 0\n    for condition in yld:\n        yld_sum += p_condition[condition] * yld[condition] * duration\n\n    return _cohort * yld_sum\n\n\ndef yld_to_val(yld):\n    \"\"\"\n    YLDs to units of value. Arbitrary normalization.\n    \"\"\"\n    return 1 * yld\n\n\ndef ln_cons_to_val(ln_cons):\n    \"\"\"\n    Units of increase in ln(consumption) to units of value\n    \"\"\"\n    value_double = Uniform(0.2, 0.8)  # Rule of thumb that 1 DALY = 2.5x GDP per capita would give 0.4\n    value_1_ln = value_double / math.log(2)\n    return value_1_ln * ln_cons\n\n\ndef death_to_val(death):\n    \"\"\"\n    Deaths to units of value\n    \"\"\"\n    return 30 * death\n\n\ndef units_value():\n    \"\"\"\n    In \"units of value\" per cohort (normalized to 1 unit of value = 1 YLD).\n    \"\"\"\n\n    anemia_ylds_averted = anemia_reduction()\n    units_increase_ln_income = cognitive_benefits()\n    malaria_deaths = altered_malaria_risk()\n    side_effect_ylds = other_adverse_effects()\n\n    u_value = {\n        \"anemia\": yld_to_val(anemia_ylds_averted),\n        \"income\": ln_cons_to_val(units_increase_ln_income),\n        \"malaria\": -death_to_val(malaria_deaths),\n        \"side_effect\": -yld_to_val(side_effect_ylds),\n    }\n\n    return sum(u_value.values())\n\ndef cost_effectiveness():\n    \"\"\"\n    Units of value per $10,000\n    \"\"\"\n    # Supplementation cost per person treated\n    cost_p_p = 2\n    cost_cohort = _cohort * cost_p_p\n    val_cohort = units_value()\n    return val_cohort * (10 * 1000 / cost_cohort)\n\n\ndef ratio_givedirectly():\n    \"\"\"\n    Cost-effectiveness ratio vs GiveDirectly\n    \"\"\"\n    # GiveDirectly units of increase in ln(consumption) for each $10,000 donated\n    gd_ln_cons = 25\n    return cost_effectiveness() / ln_cons_to_val(gd_ln_cons)\n\n\ndef pv(rate, nper, pmt):\n    temp = math.pow((1 + rate), nper)\n    fact = (temp - 1) / rate\n    return -(pmt * fact) / temp\n\n\nvalue_per_10_000_usd = cost_effectiveness()\nmultiples_of_cash = ratio_givedirectly()"},"output":{"simulation_data":{"_cohort":[10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0,10000.0],"p_anemia":[0.41666597626660024,0.5147253212185311,0.5531155459330025,0.3645702408780745,0.42135515070031127,0.5365144221814913,0.46223034695474907,0.40842231584797173,0.28975042576970866,0.4307595499184715,0.4318122684715622,0.5975832094304441,0.4661797229286655,0.4020254799230907,0.4528905126704224,0.2928893285570816,0.5145132168544461,0.47693555479608757,0.3095229797330314,0.3214425253146499,0.38029196935013904,0.38129504129577085,0.4304801986225145,0.48978207246553007,0.522294378058271,0.3693653432824353,0.4503392257009435,0.3806666294269657,0.44293031705220237,0.352887521159397,0.47724957663601825,0.49334675214366397,0.4345453794812066,0.4837292824279906,0.5971076667561046,0.4154925445669823,0.34130908757135414,0.5144360976682151,0.4214334638007961,0.4504056567914647,0.5422644024003583,0.42421316647573093,0.4768128738915077,0.4009510839782972,0.5028874521378045,0.4244017326059033,0.6141095141942284,0.4640422376496987,0.39813755464850387,0.6110329161102884,0.436799723847839,0.5299931452879619,0.5307245960387029,0.5045966473483667,0.33708868574039796,0.4869119416309842,0.4364794186546895,0.3688417078451372,0.4865256444090737,0.48850455495857165,0.3828017818562454,0.4230645262501462,0.46358126674471656,0.415944167544127,0.5629484171905909,0.5386848604022252,0.33459413572758606,0.41923451792137684,0.3508001636684694,0.36700942060192965,0.46175992877982985,0.6280817596324795,0.3549256530398469,0.3463951635141053,0.5295826599745268,0.4529593110144632,0.6258409742286857,0.38427739968083885,0.5132987137070525,0.53318251040662,0.31933041062353434,0.4849765906478042,0.4568176524531306,0.5267203555095664,0.4752540480710517,0.481153028262511,0.42483258841817145,0.6007495434973702,0.4759543344920665,0.3268432653628448,0.49633753163254013,0.4077563305775822,0.44862606049548037,0.37381424286367526,0.45146681157244467,0.4932778542476577,0.3837395364110832,0.6627968515496218,0.5081328981338636,0.499665115166975,0.6278226265607679,0.44473305407268127,0.49171053406972537,0.5369686015202961,0.5543230949209761,0.5998832240861803,0.4426828494829107,0.34646612710143243,0.4680008119570962,0.5147420135829378,0.5785883155721058,0.4966933411609622,0.46835121921399947,0.5091190934927184,0.44536588327031135,0.5289678601984336,0.5411977915007619,0.3396235514990703,0.4774031621181487,0.42451827360413785,0.5116670504624807,0.4853845936376137,0.4722113025710385,0.33797382255784497,0.3250667728935256,0.5099893632682294,0.43992064111512386,0.5669485059950752,0.40334097155201226,0.43940355753935806,0.4045065748914852,0.649820936581208,0.4282979562668239,0.4707114574718044,0.49673544318038054,0.4789049709356965,0.5065344727387727,0.5915026710036815,0.5171291696983453,0.3604701613194553,0.48026101318062475,0.3460075118338421,0.27980510244550294,0.478787239666569,0.5958154143647866,0.2955806668125084,0.5647222797299918,0.6020868491775029,0.5607224945909554,0.310070419409424,0.4147415373379072,0.5919081785347213,0.4310010612352362,0.27582609356063975,0.3336931480548051,0.3119170632648641,0.37033563049353474,0.4418523237532589,0.5091689563929981,0.40474881796548273,0.3115203980685234,0.4591250727371422,0.3890749832503993,0.29663186300779193,0.37840357805793673,0.4458425838769331,0.47168281180478,0.44350506419011104,0.535746326379903,0.5191430059547535,0.4018224750718977,0.4053171353494329,0.3946875088226288,0.43075447636181435,0.5064736830914548,0.6450006211508102,0.5102424865712699,0.6081983666473076,0.5310877776151008,0.48390068078550197,0.5077554467038218,0.5091862002750951,0.34596617212925207,0.4472646019480958,0.4477582149772206,0.3991701346505136,0.432941056373662,0.4528820682132238,0.3470148416043397,0.4774392954657542,0.6092988114718916,0.5544665845726952,0.5058911497332073,0.3698524792711008,0.46818767247116966,0.4816700262563468,0.4187080893994774,0.5007892816335495,0.42900311244565303,0.4004856062009974,0.5105158761508275,0.4622284308984531,0.423232042637726,0.4268442903642162,0.46614110339193726,0.4904799829172267,0.6453137335065008,0.39337714882919184,0.5313352361092241,0.3962957754908852,0.5573134396425199,0.4756749084053526,0.4744193436122818,0.46608668879849396,0.4252442542980183,0.5170885066735281,0.4555196087431897,0.41403550247574306,0.4232286240986341,0.30731579132068637,0.45141645113682444,0.5191985247864722,0.4709627083286496,0.518067512248237,0.4209990768293348,0.47629269501182975,0.4743665073007156,0.4835639984641758,0.5508027430027802,0.39321551358368895,0.6159439155969934,0.34154575299584405,0.5451776211697168,0.4131048151947437,0.5244956702271006,0.5932519586513241,0.3639842873156453,0.4278952065150887,0.5442299056078568,0.41793412041048245,0.48815140193292167,0.4333944966881904,0.35001498451962465,0.4913435134522479,0.40581042154604424,0.4512079075208854,0.5320198842827941,0.39355706377818656,0.4173327507980418,0.6159029728377075,0.3688891495024699,0.49490782044507436,0.5570678007659001,0.47671870853787024,0.3589377955969186,0.43267044335039967,0.48080742287777967,0.4688355288212304,0.4579350167163572,0.48532148270929737,0.42372913629560616,0.49779757298037025,0.4326966770879695,0.33707649120435457,0.47244143130279753,0.38936843852184705,0.4614683064997208,0.5309784124331478,0.48673499643701773,0.4047873295420546,0.4633692645096556,0.4366005768882171,0.508287713631443,0.38718823916462525,0.3763836250047802,0.3447428896050261,0.4921212276357486,0.48234595578243966,0.5726540806217716,0.3383020298243043,0.5578779659800347,0.3985433518859119,0.5537112037753794,0.4654514900815724,0.4255702887871306,0.5478194502053728,0.4765829262200417,0.41633771720314927,0.32677573454241277,0.5845377510350308,0.4718953534849554,0.38286882772243247,0.35943331583850313,0.3732468266656664,0.5612524051442453,0.4734182424157386,0.4548911371050501,0.5353408998857676,0.5585356177730907,0.5299078220153124,0.5006453793519777,0.45835013338088026,0.4233711135370034,0.4071049061079753,0.5580217128551465,0.4176597120970468,0.3605444441911328,0.5119402128935283,0.4806642488850859,0.5103057303716283,0.39747508283873867,0.5814207322178936,0.32205672293143456,0.46332488561058266,0.6227416098061819,0.6757497281473349,0.5136426299356814,0.5599098412615929,0.5436576283050917,0.3209656547819485,0.511900488985044,0.49556666938343813,0.3634460439242285,0.40292889211759214,0.4475281472727407,0.4314594384099251,0.5881136373116226,0.44289076915817144,0.4183706969690749,0.4381159184579337,0.4917630630182281,0.4837888817363501,0.4332060237635688,0.38352272540943094,0.4458928499535395,0.3483617312634927,0.40357034678304193,0.3822471268991337,0.5681131612475712,0.41936143602059656,0.5193779325809105,0.34716376983034913,0.6115353433876689,0.6293091870248477,0.4428103640501801,0.5441002127950701,0.5475057007916594,0.5780675639533792,0.39483696396564877,0.5324891608794597,0.39185346047210934,0.43569729845590444,0.46515737286831876,0.5465374454617132,0.3227338432678844,0.4582974074300635,0.4262093334105476,0.5480801909436775,0.352241082141197,0.5254219415723206,0.4566015505944908,0.48793683479662264,0.39837073411984253,0.44195907435324433,0.41054957426592065,0.40990298771780087,0.37038086696374,0.3512570810883769,0.5185961314006258,0.5620198376149342,0.3483704079047865,0.4167882596830326,0.509297017193698,0.46242832803287226,0.5976136949220964,0.5468823640208396,0.42863169397510015,0.44037634669550363,0.6223461902983204,0.3731273692253523,0.5376047319210498,0.587584559392789,0.3432511732764514,0.44567464295001574,0.4781556460607136,0.5081640951802143,0.3460441133133687,0.5021371221038823,0.5188911717652276,0.4434654283784751,0.5877753714717034,0.3485830542135133,0.36565097748873626,0.34726875362234916,0.5430489453889782,0.3707542474114363,0.5707736480401991,0.5052248376907355,0.5119307413921182,0.562088220932421,0.441264458899727,0.4688064811238013,0.4415089210420264,0.5222914360718555,0.40299095715606387,0.3393515107520376,0.4647322540365662,0.5372153983770012,0.5733625894434288,0.41723040387984706,0.4212809601425622,0.4284576795683661,0.5681150607427039,0.5581584554589339,0.43120822749588583,0.4015099782997943,0.3479600183340071,0.4805030242017246,0.36685524036006895,0.4343647976160465,0.4130032270238221,0.5393851890015032,0.49613885170325467,0.457801226164791,0.47641661738378743,0.49436575855603365,0.5165400863685543,0.2986208110624368,0.37351318206441014,0.4983328160374403,0.4894459020233355,0.5013407325927074,0.32381033812894106,0.4546529521895356,0.37116008993044963,0.4981067792706903,0.5112471452167507,0.5519975657559202,0.43022950611987465,0.44644554754240207,0.42866040588916937,0.5142542709895146,0.3746813415706558,0.4522839175131251,0.4817332320968906,0.33501321257373434,0.4933986433354239,0.4555194570153864,0.40641457912833223,0.42324860990185287,0.3471208711028044,0.49983137266682093,0.5337568363025098,0.5608844171774021,0.5099150843226462,0.4130654711985947,0.5175729808007019,0.4983507113866553,0.4429529717401219,0.5989451753613015,0.35060063075694514,0.485607259503432,0.4779454565185464,0.4197714779700294,0.4199516637778153,0.5274341965297696,0.4865639026535275,0.39302645328061475,0.5127260019406036,0.31462591043228044,0.4028604047180095,0.37399442784695763,0.5313399983509127,0.3917543835075403,0.42647859673224986,0.4773430933947474,0.4519150215889837,0.45441757087674695,0.5575260880995082,0.4144313839441966,0.35004759402973995,0.5169927363528412,0.48872888971095046,0.5892644834519316,0.3761930730148833,0.4513263178735225,0.36545636865984377,0.46768302716047816,0.4053947768455672,0.5095077703406167,0.40138287394755506,0.4860998399597303,0.5544493187955781,0.4985940895583516,0.322736803856832,0.49221040135132454,0.5425587983250529,0.3515913075593517,0.5430669478575709,0.4354283553683453,0.6234894460654669,0.3317292002616952,0.40748350590990434,0.4841283768450015,0.665753131272671,0.37664342615232055,0.4651518294879062,0.4040047459268531,0.4469691887786204,0.4355608638082876,0.41211670799031475,0.4638345161505029,0.36680639096529954,0.438850674478808,0.529091222816269,0.538213124179846,0.3822195169458848,0.4998191569920105,0.5270580083825941,0.46806367733446813,0.4855115303046442,0.2951241220731352,0.4500502005906691,0.47111761952218717,0.484155099106645,0.3609637493101498,0.4131850830801683,0.4818955768178145,0.46255222827161185,0.4267754648297719,0.48957274499727815,0.4783372709700829,0.40601250602129874,0.3080987560301285,0.4036020504051405,0.5127230553056916,0.4483701542266606,0.43503550743634467,0.4955824568959838,0.45922152827322116,0.45832979415201414,0.43690246163694924,0.45110109737871135,0.4099331190134147,0.4660874084935678,0.4306439919898534,0.3686906667494866,0.5466954076090043,0.369125764888554,0.4766648961504153,0.514678855991811,0.492267264009976,0.3512072160397435,0.4474645399340746,0.4009453940383487,0.6183104054841664,0.4132260148446329,0.3971352764168024,0.39460797616895443,0.4520842585202654,0.4684643262625441,0.5186753682947395,0.3377948990314122,0.41035324285300273,0.5141298104349987,0.570813501686544,0.3544699868812379,0.42808433309156185,0.5068815279011288,0.4950005219033927,0.44142785871066825,0.4624867667967556,0.46865693080308596,0.47494611976318823,0.44522448882924953,0.5110743017714225,0.5865801881457677,0.5436836620999597,0.46377373326752114,0.5381990708612427,0.48068413608801863,0.39245278157029667,0.3970553935486888,0.5013020262260709,0.2686517917588477,0.3607999056063905,0.37448116194463366,0.5568534174312794,0.5481387554845092,0.477961933842317,0.6491960776529137,0.47050175601507693,0.42808684144482767,0.5180780992172437,0.42851577699013566,0.39557057334504503,0.46704523006727344,0.3791578287262774,0.5840457207202611,0.3015491050062935,0.43511400523628285,0.49655022650524105,0.5093769142651133,0.3995879084185934,0.39636450897138353,0.5966628215404826,0.5958601307686385,0.4379747452425059,0.4803049278492394,0.4621304098053471,0.5792591059298778,0.510219998282546,0.5846100224350987,0.37090844784680516,0.5503819007108575,0.46483873766931066,0.368423020016675,0.5598360245342958,0.3372695408984633,0.37423429359116656,0.4994571112561645,0.4377205671499306,0.49166419421735125,0.3812071688350348,0.46657837895497856,0.6852340579383843,0.4359124988044655,0.5037057801692665,0.3432589048386863,0.4338636090695212,0.4446214488609666,0.4391742443393388,0.46768999349130014,0.3828813314557035,0.48943476814013803,0.7041520512890784,0.5189560943969458,0.5296648715196194,0.4885476961837982,0.3364091762592401,0.32885960854307955,0.43821011896101547,0.65374757107693,0.43832907432114615,0.3214877613499088,0.4253752357575873,0.5736715036961584,0.26194942233916096,0.48259925068433435,0.33837680731454295,0.4570144697992282,0.4359101337165743,0.5389236065973693,0.4810587671871186,0.48770933972715674,0.3906646070848258,0.5440013771403608,0.4495947812764363,0.4402667666315772,0.43705474810000045,0.40836236172066015,0.5639549462219109,0.36544503705355913,0.34309430006877123,0.7159574939800275,0.32874885687402794,0.305048950039921,0.48327698712466494,0.5653143499414727,0.4414481567703177,0.6355206796396006,0.536447700509891,0.41056188353438544,0.4966280922541774,0.383386661985448,0.5048012441207552,0.42989152052407087,0.5081308710456652,0.5054245478428865,0.5018381036390759,0.256999895665118,0.40071177463728375,0.5223675599355644,0.5404528346238073,0.49959425497439264,0.4139257363417565,0.35487275725384027,0.5289594703828757,0.5382557434090036,0.5648832129901367,0.4876523739772551,0.4150390850016014,0.4571952692274241,0.43709099224152476,0.4103748046991774,0.39252454390932034,0.6141226969117684,0.36943315113974423,0.44496898530289847,0.45128594113833936,0.2572070272706031,0.3316845987943646,0.38978265118052424,0.3756773387877084,0.5073930600718763,0.46423089319673894,0.5008375301099408,0.40713046649097384,0.46307289657473005,0.4635565153883932,0.4583414187541847,0.49915674200361865,0.40211540962133985,0.4377731514930341,0.37734539054493105,0.4149532570318077,0.3696283806746876,0.5239617571805745,0.46228227172090686,0.41299735346045285,0.3836375661215234,0.33109175009310615,0.4965493953077226,0.691508676643704,0.4150177456483963,0.44129868367210184,0.5524990601721174,0.41965189641951295,0.4949902268598259,0.6162393406486593,0.38285617293637897,0.410462042036823,0.5346675018590014,0.4532006831819489,0.39980089514636946,0.4604999589612003,0.42218740184000575,0.519860864949115,0.4659930008943592,0.28821457000550055,0.5107260921521697,0.46062411368661194,0.4009985653372234,0.4132535881550633,0.4434290150446777,0.37117987162177857,0.49964770119569446,0.48693668053004563,0.30192448900387514,0.4995089271879323,0.3827922221555656,0.4926286693828774,0.5250004872108619,0.49313782722721616,0.5512303091158582,0.44162515557334087,0.3651240596883222,0.5306175469164865,0.45481015085279913,0.43171610945152317,0.3589431891308791,0.4266263423186866,0.5989220348417189,0.492810309130309,0.42708140136612954,0.6115606139148163,0.4954007779689912,0.4830954346239213,0.5449686849153866,0.4111395509127318,0.4880636707284072,0.5153502823583794,0.4666274070758733,0.5038820163762554,0.43201546780246564,0.6207488237617005,0.43359858947496993,0.38256309596817606,0.47588299520773863,0.46565968252659573,0.463808387945393,0.5422051760399001,0.4850186187786241,0.5384073489412513,0.2960803928647394,0.44034539013983676,0.42599819035907005,0.4833711022183528,0.4866049806232565,0.41871233108916506,0.5360944503207867,0.5156369069352613,0.5898211061569993,0.3843291100371451,0.4702927310025419,0.4231440111334121,0.2828655823524764,0.4338381326123915,0.5186686216152973,0.4403056390827436,0.44130972399668067,0.5660978858386878,0.34856401434547984,0.502137888839117,0.4334913987525673,0.43693476007809573,0.41331985511306746,0.3531446301983204,0.47165830209526155,0.40379700004405517,0.5526990487772627,0.6038591041795339,0.41461152101179316,0.46737305814420804,0.49419993405178286,0.3945365407393198,0.4711325267258248,0.4227929646081585,0.3551594751251001,0.38636662822615137,0.5359845955837792,0.4569669630725505,0.38509719917556307,0.4686055121255437,0.5453681558690102,0.526134270255789,0.38294458603757586,0.45843292315211953,0.447000335295715,0.5452156988108865,0.357685182199172,0.2823578605127539,0.5329221666111839,0.44912110437890057,0.3894628823908672,0.4991062266103334,0.4262068262556109,0.4873117805969664,0.5022869401099377,0.4789492069796449,0.4780108017391561,0.41096200997403143,0.32604781090026075,0.4030712221678705,0.3825818510167307,0.6005142034945148,0.3654313890120283,0.5413124012242048,0.47109483456230156,0.37278672931604806,0.5425212937295449,0.38999847401075005,0.5156193110535138,0.4164383042421155,0.585362161259704,0.4349481080271998,0.6373431793815558,0.43332359433957734,0.44746603579863536,0.4989783200186277,0.39790935192589844,0.4763669447505963,0.4119476322509323,0.6402745798433596,0.4564196098038691,0.4083041996231386,0.32631281294148123,0.37927966169597027,0.43947599823539546,0.4863107920907864,0.511849140395848,0.27077053490379366,0.4380836639353398,0.5125669532213125,0.5179720212559135,0.5229654549475358,0.3888490026118551,0.36141072216631787,0.3507774294784753,0.5805020523904525,0.5021768086349571,0.5252315305936348,0.45614877154536326,0.45399838547462584,0.4235333747342294,0.43165655090188787,0.36373170992384046,0.5581411857801484,0.45804333450137713,0.4444505414373156,0.4025198459971849,0.5129103279141135,0.42593291749054407,0.3830766500819894,0.5986682234028031,0.4819710652126481,0.45443608884778275,0.4894730810463465,0.37681686457870756,0.49946109395021376,0.5332814372266819,0.4316886606785353,0.44297310987262023,0.522318703744293,0.46521964170177665,0.40623136308431035,0.36303467044176274,0.521829923489125,0.5714805988502984,0.4939975348493589,0.4862015292892766,0.6024240398445888,0.42324018662640595,0.4864079465613852,0.3879463345830814,0.4215442888709658,0.5068719381541675,0.5610162613991094,0.5982641087654239,0.41953254679070856,0.36159363534867855,0.43405144279616675,0.5112496588556276,0.48766257649114786,0.5200131907040895,0.5392607645994982,0.3168070173660837,0.5574460878355597,0.4944443576937044,0.2935678996622123,0.48371709992739426,0.42116822826225575,0.5633341434985834,0.36045127711398905,0.4289626501182676,0.416570669320152,0.3791596104102571,0.4009221066271065,0.5580265089282521,0.4156191856965257,0.48443241511501034,0.5373459486953157,0.3293087240249227,0.443353498648298,0.3591701497217742,0.3824631744772112,0.4635892879088519,0.45426218508672905,0.40946127158350876,0.3225499148477587,0.6067466903528094,0.5234931378278077,0.517880199129685,0.4655895058961661,0.4232807215962176,0.39672241289858734,0.47662115322927595,0.4298486098168665,0.5051701143273313,0.4260080427689811,0.49231837764547154,0.39423439199221777,0.592436201949283,0.46214298223251726,0.4989045948846548,0.33148123279420266,0.4422279892389136,0.39784279038809056,0.42944461356662783,0.5083982683968024,0.31789712122664426,0.4145746325967441,0.6014710054813446,0.42892901843859416,0.4294967999679294,0.5262702419989121,0.4699392575216552,0.4393175496877872,0.5520638322225245,0.4879140792315288,0.5288478305312866,0.40311219618406163,0.3738480257766324,0.5353839980206385,0.4495940105525713,0.42564435423786245,0.5211243365521306,0.5671344582230287,0.5382517133127632,0.3886429069265653,0.5356149467365952,0.35849285104767653,0.3235135526218758,0.4307929648201045,0.48641341770793145,0.37910437846386047,0.42213016247454366,0.4668063092535903,0.4717464520870693,0.41993194578753573,0.440561278860077,0.47715746421755567,0.6085193615680774,0.4939026504089076,0.46784826123615164,0.41810291662570587,0.5367761698309951,0.4141794832112186,0.39431003039104956,0.46033047058478244,0.47649040649109337,0.5661547215478387,0.39301760737627156,0.37101891981226515,0.5735791664825337,0.4789266042827159,0.5545060156059941,0.36792516896420413,0.480205395890621,0.5194645737130995,0.43212993129949767,0.5420479164442483,0.45827337876456936,0.4926319845312298,0.4114840008631327,0.45384717545986086,0.44591672644265906,0.4433986026121846,0.42501026345154475,0.4694127261940181,0.5258920822519921,0.4686679214500333,0.3960227738093839,0.45495957446698093,0.5269113291702937,0.42291839419703764,0.4213818444648936,0.3636523621021303,0.32881277736813946,0.5290448068717223,0.3522158926274474,0.35261415821742403,0.6896796156637853,0.47068467894995913,0.42956853852840227,0.40063767618126966,0.4505045523925719,0.6456378526957929,0.41820604768123965,0.4920236808549365,0.45936140599015535,0.42067771585404246,0.36861651088424935,0.37505287599421605,0.5927273734535928,0.5579915331111094,0.5390582662524466,0.5779670503638037,0.5762176192729568,0.44002997266979876,0.44654943163320615,0.5077246499907948,0.4305822018494086,0.540593297596267,0.3800976572842058,0.455112601150169,0.43405772184028,0.49828702703435346,0.3574646115121382,0.3252354704181242,0.5532307659102297,0.5063400067307927,0.5050335188144771,0.3061719236193353,0.4671581851056594,0.5073504843363472,0.415669982784793,0.34867868194845797,0.41172601279327453,0.524902262658587,0.5227629632104152,0.5839484618405139,0.3929957141360401,0.3462916083716908,0.3835572461484312,0.48960540934106883,0.5240240823456405,0.47953457747027456,0.5229829248321246,0.41970854217071674,0.5173381490336592,0.4986427098362521,0.424979251175134,0.649400354965054,0.4672059330676061,0.5479798853908574,0.4688481338487326,0.43131350843366556,0.35201566766554715,0.4115820338493437,0.5295615010653639,0.48170213347780116,0.4499595184791024,0.4241210391455876,0.4458233586083976,0.5500543273544024,0.5138204185165511,0.6166795670950428,0.43022076769994333,0.5055160466198486,0.4397159697731964,0.4718980871847334,0.5037742917391922,0.5800791227299659,0.472154464227993,0.3289220776906937,0.4114722871556549,0.4083429102193165,0.4549763097158889,0.5693666576795813,0.46674664520929227,0.5032888646462738,0.5297059384300445,0.4453144815773604,0.2990077302326345,0.384630056956597,0.43915234053460317,0.6107592598510678,0.4663500033671309,0.5212854016104126,0.4294066252029307,0.5194471610444762,0.47257966938508655,0.4178721301243992,0.642347203141775,0.40888329346733265,0.39059266064186704,0.5451034355344799,0.39784196165725444,0.4293813177346703,0.45250345141660353,0.4042444882025082,0.518069451053187,0.4246759328619026,0.5675473312680065,0.4805388871068601,0.3950090631519921,0.5256495231721849,0.5420524101093545,0.43042997965392515,0.5421523843493266,0.6206198650135978,0.5102358973470372,0.4763198387672971,0.4303874641773962,0.3856407297081501,0.48562786752517384,0.5370093743529865,0.48066479916921834,0.35189785483478164,0.2745208068562079,0.4981088542065777,0.4632582425648975,0.5102660950468783,0.36267237865900326,0.4917654100021435,0.4961072237095477,0.5600557585479535,0.48304489348596,0.38929301983650383,0.4733866910450665,0.4795266422350997,0.4467197480512789,0.40976382119927646,0.4561735728740031,0.3797987718853711,0.376658857686979,0.40791508964317463,0.593997522982811,0.49337736545575994,0.47737546402542125,0.32424307391506085,0.43724711799065724,0.45258520502620897,0.4789138752083966,0.5974224224311264,0.40325721488879357,0.45867473677642917,0.4336238930315027,0.5806859048784958,0.4994224392150497,0.4222397205026165,0.4223652389766541,0.3859195666484338,0.48748185134468613,0.4464619286068058,0.4727281118424617,0.5763524488825339,0.30255596671206475,0.5249839417514556,0.5277348390897398,0.3910876525600571,0.42234622667530686,0.39516598000014064,0.5459400163829661,0.36355989910055303,0.35825423634139314,0.3971521967863322,0.4272040276557952,0.3306965155005832,0.47174010332970995,0.5695050117271727,0.4699251279719402,0.43651763422552264,0.4042526498386235,0.5116741873226658,0.5235884179341191,0.499332192288441,0.47445020816336564,0.49794484531282235,0.43076549307955403,0.44852305933230135,0.4025611261748137,0.48886170858114264,0.4898104749629434,0.5945557765660608,0.45959922377373813,0.5624379906164273,0.4335511660307117,0.5594749572039904,0.45566142336158666,0.401526890606992,0.5801082442753541,0.4243917783461112,0.47542756176106926,0.5653228814745618,0.37103123275786687,0.44236076735972296,0.4992103673695675,0.48952136985463407,0.4515015994613025,0.4253857754152615,0.3592004332680802,0.42427346347227923,0.5163729782316311,0.3830772815642473,0.41108898112897985,0.5111186793751747,0.49362148247180504,0.5508265107993633,0.5232943500626807,0.37923905124183344,0.40571786552222056,0.4798492021038701,0.39941092085562924,0.5699497473293943,0.6058464285532451,0.4360001689257104,0.3198473216494832,0.5020653033098517,0.5058675526055643,0.4116479272737751,0.5855708072581413,0.40894816277005464,0.4668347697711691,0.5985130216004078,0.4185148053122939,0.43144209319237975,0.48689753521265483,0.5074902164830416,0.4098607821891955,0.48471309455817463,0.5654761637822504,0.49824577710845747,0.4823362356700291,0.4811055408007902,0.6970067034241157,0.5225290852087975,0.4839146533611171,0.4193542746255985,0.47534467855602386,0.37968942449224846,0.559285855122586,0.38329202474843793,0.47923801334693955,0.4576898877691114,0.559534174941881,0.3493253991034343,0.5816401073264861,0.47554554044769,0.35417536128533,0.5081740508352044,0.43106478443200974,0.42544120734670554,0.3683824902929081,0.3178936193441279,0.40135347469233845,0.45896697434691514,0.44217831739337293,0.4653823473008635,0.41393896942618696,0.4742517773412026,0.4010755227297517,0.4400986734721381,0.48630538651116223,0.40796870632128535,0.5415892547599968,0.41322577828320073,0.3498064811568419,0.44366327721443555,0.53403274468745,0.4706853213517529,0.5326064794962052,0.5606172070325999,0.41753056548123557,0.4362175284129868,0.38998834438181906,0.4849215149593644,0.5128871218864115,0.5310742896477818,0.4156497325084461,0.4438677044615296,0.45439579075931863,0.5337051516884168,0.41364630524795826,0.5150217670934241,0.5001297266586806,0.4496615759990851,0.4347911286896309,0.48969402966227016,0.63254804067559,0.5541948448478183,0.5676867489433722,0.4046479407469766,0.44326578317022924,0.554452828517994,0.49545378436256166,0.4697817401801325,0.48695527966220414,0.4414770744173563,0.4017303596359281,0.4687018583649097,0.3802739096228996,0.4922933108912838,0.3956453853626202,0.5196061070188337,0.4842823374614591,0.49943379331906684,0.40388239983183816,0.3745574323048253,0.559812126578246,0.4151326513935225,0.4865875559804619,0.4284252460857379,0.3639710316441848,0.47933525195496035,0.46450929295201043,0.4408241353942488,0.6076653125469065,0.38300085689442526,0.372277269436099,0.4970552700761295,0.5296542516626207,0.539449802524799,0.3168510812216769,0.5364140875628864,0.36685543702642065,0.4339486889372052,0.6016935636954421,0.39612636013853647,0.5777976135762279,0.4073048222838214,0.4851825379587315,0.5362386946520112,0.30673770003996675,0.41464397551205884,0.5196982538357714,0.5656983874477906,0.442128318089008,0.4033208983944133,0.4706550839275789,0.4440338289320459,0.45319986282960517,0.44034366968092714,0.530206064190267,0.27443279122190917,0.3587189801237989,0.657371683290297,0.600433782890255,0.32824040367757573,0.44302548629185695,0.4912316439788592,0.4768317715627721,0.4164867383346465,0.31814830092581375,0.3127357871710255,0.553794715927854,0.47482543934465926,0.4183333182199223,0.5651749741819531,0.5033888334844906,0.41323856048511265,0.46023407052968285,0.4416175013073078,0.4179726082278927,0.5914889862076785,0.3953477511729909,0.448090150263681,0.5087346276364894,0.4749379254791866,0.42546458953716243,0.5599298044962095,0.4068234620252571,0.39821668068775223,0.44535374866268534,0.5085879962618083,0.5272314768708201,0.5306426265619366,0.4333798243917728,0.5649738352544034,0.4586433630307445,0.4014850788589344,0.5859007137939022,0.4784186615094775,0.474897069614856,0.5076032370158212,0.5927580135327049,0.4081888830097992,0.5666268560866643,0.5860131276329907,0.42604936450622893,0.3844110316227318,0.3233098341324159,0.5307107153591756,0.539299672718911,0.44983724909974643,0.36648105959569954,0.3773553080578702,0.42159337209093206,0.4520753005165429,0.5325701521807398,0.47567280972997406,0.5691197577634243,0.49900950320894616,0.5653528330794436,0.3614023917842312,0.4229424721765835,0.4634877150866252,0.4977379442945547,0.5452602012299089,0.4792805685184011,0.3646399222147518,0.3810716441111434,0.5077263766030489,0.4696420498295158,0.6373380709088285,0.4976492500371292,0.4298058677601151,0.47018164594917145,0.4163579540499306,0.40123366137723104,0.38200176534228375,0.44892138920228836,0.39773463498414524,0.4052629565061183,0.6261442317489736,0.6629023289654655,0.48078603226055955,0.4164575623379489,0.4093304952133842,0.5026205573441317,0.416614612674919,0.5536815583077638,0.291294911326869,0.5896310168534571,0.5082985265076081,0.5075356950444323,0.3707769522482201,0.4722506337453666,0.36837564608800016,0.35728265010283455,0.46038194454429593,0.49644634220475026,0.448596423054648,0.5079372094086014,0.4524158239106517,0.45662275399949676,0.35471735702285506,0.4411393736080703,0.506892530283768,0.3777695318527658,0.5077231147567834,0.5160805239911269,0.4903200814998324,0.4485780814601129,0.5564236689908074,0.5563890929996677,0.5936064573390535,0.29883164255713895,0.4337639102227157,0.534698324178584,0.42773342558129446,0.4782854166836849,0.6294353865479718,0.4225200632402324,0.48173889193556585,0.620705016442346,0.46903340486417266,0.4559627332391358,0.5333264822909546,0.4629582367859514,0.5032120277962032,0.4793946304584023,0.5140246232961848,0.4165148573506094,0.48972492355956787,0.3948497666530394,0.34643336678300923,0.3989054981901581,0.5880264777608841,0.47594973497666054,0.4635880098441083,0.41098119879364653,0.39652543520390554,0.5001104050443798,0.4245232885233743,0.48198953333593236,0.5078930717372568,0.44529772234480675,0.4349158026457086,0.48495631808129747,0.442507523394667,0.6023568194653929,0.5129220038863189,0.40230800286453466,0.4871279963068066,0.3738450780383834,0.4146797882095319,0.43364482738574495,0.42526842728139064,0.5144042455634551,0.3837419472785868,0.5067402436131057,0.5550725669151713,0.4519294010912032,0.35315970452227213,0.43666767155790365,0.4734637660904632,0.4791914756389552,0.44642416054517714,0.4319123486791757,0.46065078911734403,0.4470958005186249,0.49831664722435204,0.5493590142051901,0.547220521078652,0.44698476301869977,0.38841991665872033,0.4787623757221523,0.49056499249339836,0.4327922021941249,0.6392616076780075,0.31933846598408205,0.5573452411513465,0.5635516383256312,0.34425663830958725,0.636776307880284,0.38699992996036375,0.47253118384539855,0.5873690879099855,0.38571208381502176,0.4144207104072657,0.6184428660252925,0.5668343124433112,0.3886784401454761,0.513425034298944,0.5985869674761869,0.42658485632030235,0.42048650744632676,0.4293220130930212,0.5098564752972751,0.4364612286392782,0.5241292443398772,0.4921750761038305,0.5019914690411477,0.41537419959681604,0.436199734479379,0.5082802894760069,0.49290441726217443,0.4775656893043995,0.6116012595564345,0.5078378600165108,0.6471671731117018,0.5865379373840286,0.4238885703606765,0.398467901907203,0.3330875524806436,0.38592132708045795,0.44071984961159094,0.35817984927071345,0.4660823891401499,0.5140688751844747,0.444779565224306,0.5191350207972687,0.3852274389002348,0.5017508242506663,0.3976914965174347,0.48743047752451657,0.3715702841597619,0.5258927996668328,0.45711433107572647,0.5055364663888899,0.5189505786382645,0.45189432447174155,0.4920664997696699,0.527085150563975,0.4777766649980781,0.393518668356912,0.3571022124661085,0.547158815269887,0.4663061854261298,0.38275197158817104,0.4148925980992072,0.4328951222484467,0.48558806940616345,0.5537753764771907,0.40097146686924573,0.44106929634164366,0.5948426768305092,0.5274586031022193,0.5258329575274776,0.45086275404524867,0.4160210350498339,0.3291038658429622,0.4821893349574893,0.4099167815818226,0.41446558985452114,0.5399971475683163,0.40168586377930166,0.5066340114004947,0.3936398203635656,0.39339449733314524,0.4733776934066216,0.5372059207566567,0.4746811200390129,0.3684828246773576,0.3320300222685252,0.46764030204323215,0.4754577326801359,0.46207335485063705,0.34001018073646766,0.5254382744117758,0.5329955510106155,0.48074978642227234,0.4778295517406416,0.6055031606776796,0.3590823164534748,0.5813574311712587,0.7603446523551508,0.436574043510625,0.45405162038160973,0.5037481344263727,0.5451402426512671,0.48657571725786314,0.4786647578880165,0.5391709210348801,0.3624539313412288,0.34627258741978373,0.5217074872642856,0.5627214101401369,0.5073750302891864,0.3408425579039928,0.5075228483280761,0.452250510078664,0.5249354610763901,0.5042378013241007,0.5216781934259257,0.534681465281235,0.5565710022813087,0.47248295459676853,0.3212530393658916,0.4822580692229248,0.46580142057986085,0.39683830373469786,0.3561049774885364,0.5189632183711266,0.4265841213346081,0.5055623164500889,0.46016867232344544,0.3842243575165481,0.2501625809975855,0.510182039841315,0.4681289284862324,0.47985840156073084,0.4627664510188206,0.38099149543950295,0.5790245835701419,0.6832712873232556,0.39670210169437603,0.3730173285604808,0.4784247336409957,0.46539356174235663,0.5248968014786082,0.517413194322012,0.575565886260379,0.4466625443748843,0.4496508259867663,0.3661239073234833,0.44409042985414726,0.4302762874958565,0.4266515244184033,0.5510173634108797,0.4992690191818582,0.5963105755405134,0.5337698653478125,0.3790075830460425,0.5137096802172254,0.5599502869913126,0.4635601058092232,0.48713021285420477,0.4161384776210121,0.3742517345320063,0.6001667956910974,0.3502536317049871,0.4290678146767848,0.3989672158421838,0.3246693102806716,0.519577600941084,0.3790162611099131,0.534904461814697,0.38447432929098807,0.5313469847910034,0.5325028621903991,0.4435554122156949,0.41187218148569454,0.4124444911564198,0.3465892785495838,0.47423855649176166,0.5044156400483202,0.4469993655856151,0.5120729139988444,0.49347344239879815,0.49026168595965575,0.43655330681523286,0.5110565669447902,0.4801636160348118,0.49245473329846173,0.3190836396583693,0.3688941986820618,0.3863032671418142,0.3671856413526918,0.4989663854189848,0.4648679721748539,0.5004003794610453,0.5157606272436357,0.4606511095108154,0.41475976117781227,0.565896034590996,0.4933702141699001,0.39875671220446457,0.32610320494524636,0.42218541097382273,0.5769416042129255,0.3916306821428551,0.40640844951438987,0.4078325437662079,0.48645731629167405,0.5464195118348933,0.35139369577609403,0.3263795927504958,0.451920782155177,0.485492641354875,0.5313532254612112,0.5247492668661793,0.464448704618027,0.4682842924772213,0.38395038227045936,0.5053044648144105,0.5460839006837707,0.539746870560944,0.44555703203596975,0.3883752000416241,0.5579426515923764,0.528587743022936,0.5384367255101344,0.37308948144563764,0.5174227994098014,0.39876550849501674,0.6356807900302132,0.35314471763900596,0.4007866690818224,0.5792407512035416,0.3682789059855314,0.4987065503375198,0.4814857512997828,0.4695888579502977,0.5600591544491207,0.6071451694270116,0.5512028633892323,0.4814485392508189,0.41280069073660497,0.4087102062491532,0.5377742909752177,0.5012391977480413,0.4190845764199165,0.5321300178251573,0.29471408607295274,0.41549134688366907,0.5291841975309415,0.5342174365225977,0.47906431043633485,0.5003800377375869,0.4840028646189702,0.41733612216587623,0.41476845754959546,0.5403674089199005,0.593884670898701,0.47509734643980495,0.4381274445705965,0.49593015340139013,0.44153798662128146,0.4682468638796428,0.4141740171689124,0.2811218621772035,0.40506868004373225,0.38414577812903666,0.4313704368674878,0.5446008050897311,0.5412986615901233,0.3935759869167671,0.36898651486179873,0.6018024482860929,0.3456777134353148,0.4428370021456825,0.47343626019988094,0.5066528244536921,0.4916537710559689,0.44630465243459627,0.4515305739619287,0.39710726953227315,0.35833901404455615,0.4616455564022954,0.5060812163558274,0.5576579529103515,0.5161621767970269,0.48257877447511593,0.40961465674333797,0.4539192757497801,0.3345936834414142,0.43926525035487063,0.625251365286238,0.4383688379175385,0.400420289730002,0.4037974596996559,0.6405758069749773,0.4701103214178241,0.46364867002722704,0.39819920660358327,0.5041910818070854,0.5074024657426965,0.42087713012191197,0.4972796010620088,0.4465294211495289,0.4197174357316393,0.38053640915089504,0.3813750071754365,0.42971606351119657,0.5512892829771594,0.5162317534191145,0.4191099473591681,0.5616082304443752,0.4215316891819247,0.4562863684292144,0.3717529834835297,0.4786986918834715,0.3879511445209384,0.4351851190256834,0.43227528103524654,0.47244356384314723,0.4993686792839865,0.4741178967627344,0.41810323584606285,0.4641477622443129,0.5169146448013698,0.5146588407368887,0.5025701583796776,0.5609920902479995,0.5131828915397146,0.45515098628523126,0.455924732359529,0.48838428165247455,0.573779514329394,0.4726428383215853,0.4225622507236104,0.3672643526366856,0.42535816129288184,0.4823997723694863,0.4972251152664833,0.5202723516629937,0.3898436465465585,0.5128053168251965,0.49649627523181356,0.41033037050946974,0.4180592606089237,0.36330494797928076,0.45215588136611756,0.5012213966848581,0.5293788277041112,0.47689483038798336,0.3286198911977781,0.4429213661528623,0.41341983743974187,0.4876752847986348,0.31407156614619935,0.4310822548734143,0.3877884026003579,0.5394801762590098,0.3797505544746181,0.3348640779658031,0.3987994795097143,0.409919887403546,0.38127513784944067,0.490749338664799,0.5173388017455972,0.5200286511432396,0.3518916446820905,0.4575856230464929,0.44317837745616817,0.46383305879302905,0.5970024288177169,0.36264042217765313,0.37238947477418477,0.5977683037600844,0.45245889591198357,0.5123555748184366,0.5453805465944973,0.5560755141359031,0.5013444542698525,0.5227851320825333,0.5162481313111585,0.3730358669393255,0.47025246593395403,0.3791542816991993,0.35684526168784814,0.5303263207166269,0.4661838467874775,0.5368793140254767,0.47113828057778867,0.38825564779687854,0.5007585420608618,0.3473754647603462,0.4678388645044262,0.32717165517995334,0.4238604120862639,0.46186706424329643,0.4147715194709334,0.36911684753842483,0.4387662453742227,0.4218147099018263,0.38077738348908885,0.3226131800133586,0.41233969082640565,0.3919930119512197,0.4835215923702513,0.37333324785980304,0.46122891669684557,0.3705474000815929,0.4368923801253436,0.3857088555471383,0.5317789880193328,0.522357234686955,0.44236507071913056,0.4535039570032976,0.5357957866903893,0.5219454138605958,0.529293824249246,0.4283196101399376,0.5597856249256404,0.3882436727768927,0.5608667066784165,0.47306853614924443,0.4105699880104504,0.5347810454913831,0.5218662920733645,0.5084508708933918,0.43049201609240706,0.4435557218310617,0.3495899625740077,0.38071148068677513,0.5358402596770145,0.38804218768289184,0.3957105687430649,0.4777075998028475,0.5104740367590901,0.5460540362938316,0.48475232011995484,0.5325728057432955,0.4756012667266406,0.578788842958041,0.4155402300102043,0.5323655824089808,0.35478002679320336,0.3864395066701468,0.4077837523421845,0.5498324185651726,0.5214882345931713,0.4348880572536994,0.46536225900362643,0.4184122491547381,0.45674873761645807,0.4196110024365953,0.408856964612774,0.4773114500710793,0.5363715297149064,0.6486541510734996,0.41337836180188803,0.4210733802208555,0.6102046007354797,0.5015985138548603,0.47960850595838384,0.5202307866858957,0.5388388695610041,0.3753414246269163,0.5786178314006564,0.4051897400398111,0.46313958762797053,0.5449022164950025,0.5528255160784911,0.6623118078384926,0.4930995833187318,0.5899546974358431,0.3937159557856144,0.45762992125241264,0.4432745483001318,0.41136856084126266,0.6460228296582166,0.4435082341110404,0.5102620136667562,0.5334757501592923,0.5060262113214673,0.3509377839685244,0.3609148232440303,0.535965559234114,0.46983611393607067,0.49691499206343265,0.526107697291834,0.6573173924287833,0.5655553376215697,0.38467575608866006,0.4237177575347946,0.3728366045071657,0.446534319394712,0.506847074467178,0.5278002516618494,0.3553824632116362,0.5157136050824046,0.488366730582315,0.3150205531519617,0.37599456148661164,0.40803004620963446,0.46804665738365453,0.4133943606358763,0.5109838149272726,0.4113072871069969,0.47821154861413906,0.45721445499779545,0.33400168533373975,0.5511425454214394,0.47801498904359097,0.5215510078292394,0.6282684095167969,0.590358385403842,0.3279552904806764,0.5292513858189466,0.5745288696387643,0.566038452900031,0.4337480816482992,0.4314797231620207,0.511547654350826,0.5483075524486093,0.42661927818299794,0.4188015517831104,0.541204738583279,0.303366498472396,0.4632917457245665,0.4564866182026808,0.397631829182699,0.4332952255035808,0.4047094409045365,0.5105244378987698,0.42039131706164984,0.4936507391872449,0.48066891479366797,0.3350148045413087,0.613497392007995,0.4463010365685147,0.4679061423594403,0.4620768339270919,0.5379806796929596,0.3492888738844251,0.379507018592829,0.4984675302616837,0.49179666349060946,0.5904618980720737,0.43830695723240126,0.49051101217150805,0.4953475907291981,0.40806442505578944,0.5342929072649649,0.42247802020259295,0.5204800875767808,0.49271601104782375,0.44303117406759035,0.5641730199182456,0.4915190985885504,0.4329343949595215,0.5261391460399818,0.507277025289297,0.2660282036541735,0.364766353868033,0.4958969572704509,0.417447544960274,0.4013822235101226,0.34193562421382606,0.42244424701067124,0.46972481468635174,0.4870021479976239,0.5696933947536065,0.4427144354916924,0.5533565780917912,0.43870856860912366,0.3670707489265049,0.43126128395813396,0.5747023918146873,0.4643967306638163,0.403730190095013,0.4253715171417471,0.5742266599540243,0.3068063558204579,0.37817416310270774,0.4460647859906533,0.46103815915068164,0.46327204491343316,0.44121905787078625,0.4747758482693466,0.572843427349732,0.44202255356834746,0.468565639842653,0.4083738924284525,0.5863858273930798,0.3784544048969847,0.4850574282483774,0.4323121009056274,0.3803910097463837,0.4612818121427823,0.5703001528246733,0.49323368113479094,0.4480962638182616,0.5360459592056885,0.4805009626939164,0.5224436356293509,0.3085650042346224,0.45250924315124735,0.5540778653317464,0.6051973935371063,0.4219128287957997,0.45479718007443265,0.5545594128452983,0.4184700376457902,0.42772060420305086,0.491332389938225,0.5307571357632463,0.5425607294431518,0.5390108995451566,0.537138674921983,0.5547300975766056,0.5421763717836371,0.49464859746128825,0.46629670093917525,0.3725600333143522,0.3010279124577385,0.49266603678341697,0.5366769593277855,0.5048576609846903,0.4812464728839541,0.5424040682553911,0.4071408847848723,0.4661263169079659,0.5148539327846816,0.41571218746528676,0.48685659880597365,0.5350177339883317,0.39950657172560144,0.5385489601349184,0.5422538589039427,0.39606525432133144,0.47372652859636,0.5297784877263914,0.34487611067207524,0.4139284634121487,0.4704523364587769,0.5288904732511837,0.42777663279099354,0.4604131519607487,0.32544665870472633,0.4577666723082167,0.5721655983757032,0.31711386773566275,0.46979787528712486,0.508171716180451,0.5522274844530084,0.40815749745003455,0.5558289360823504,0.3529546816983737,0.3851266759440067,0.4785678325482656,0.3794252202742853,0.45137544920505657,0.5401151650187844,0.5072941133917838,0.5084289974191974,0.5823007965654261,0.46428797540892097,0.40257980616100597,0.41778477197042996,0.5320868127665838,0.5383336053226205,0.3750761372037757,0.4411269622104111,0.48667248954395814,0.3709315773650139,0.5735213768485633,0.44578306872818274,0.5114077320233231,0.43965578291547164,0.3822507866342211,0.5506478285672283,0.5633471612779212,0.46804156186059276,0.4864925188822538,0.48013359385996,0.4896666825174697,0.5562682357712881,0.2994008382376255,0.4974433145214414,0.48826920286391845,0.5090988907878864,0.49031515464164593,0.4747693439073472,0.5296696804346134,0.5159542327602977,0.44200678863970605,0.4282899255410197,0.4044318030936512,0.5373291783095995,0.6264950169127254,0.4463348677898019,0.5037727839873977,0.27882589181427503,0.4055751618162302,0.4616128129047761,0.34388533564326645,0.4272088056371458,0.48376167190615876,0.41211044718600087,0.5740541349188565,0.4829097795215854,0.43816970414059764,0.4747510401904013,0.3934558824366037,0.4008114066751856,0.4527677624760056,0.5986762882089526,0.5482314201405759,0.35364298271080513,0.513158027419488,0.34297475472581074,0.4605031636875394,0.29337717202327324,0.5052756041779479,0.48682140348643266,0.5064119450321936,0.43061641089721353,0.5536892226278812,0.49971556952183765,0.4385130459290512,0.4455597303752848,0.5436093322365849,0.45177535320063705,0.5387031153419605,0.5115814932420113,0.4041579529273527,0.3748655772327643,0.5025548684418586,0.3572705872007772,0.4902542760882994,0.4179425966617679,0.4276538556215952,0.40892190774280107,0.5166463935534901,0.3655930539739341,0.4495018199279226,0.452956278453112,0.4862584505008742,0.5151630544199891,0.6488858563454782,0.5332362354161646,0.42955937969288144,0.5002666576795015,0.4229216243361493,0.47875342330882564,0.5102425034334006,0.5257119942008434,0.38545136546185726,0.4859077269003839,0.3520248398372125,0.4472984425368232,0.4543064693519192,0.3925549548731981,0.4167314566590321,0.36891679346540124,0.5366820836898324,0.5319223612310952,0.45750793658583533,0.4383005345421211,0.4518971605961889,0.6645216060230512,0.6607945232100091,0.5243651604802899,0.39979655665691194,0.3701161751596847,0.4124015405487896,0.3979754816079353,0.3829986209009291,0.3490047538100041,0.4778061448316601,0.4760410083464997,0.36529437553834354,0.39131435621330146,0.5358727145798196,0.5135654945550547,0.4406384596819614,0.4792549556375135,0.357287479520772,0.5120871997117317,0.4618231896801726,0.514141725689457,0.40446273449718045,0.4275668742484361,0.5819537177923411,0.5403270845507441,0.4343173376087849,0.5172607802721975,0.4690312807650652,0.38881210355093987,0.3309911164451425,0.3620111072719503,0.4495811735080886,0.4548482305809693,0.4924008090965596,0.5574745594662023,0.4509597715977786,0.5909828045289758,0.6103225932374883,0.5386080166815224,0.3923809947525454,0.454340705219966,0.3841922689517072,0.49209462877682386,0.429032733855903,0.450731512696874,0.21317950132183006,0.5097411415025604,0.43998852012761924,0.42050864475746735,0.5411646733831896,0.4678682219417245,0.5278981424943747,0.5668767792012166,0.5615685102137872,0.4953032409452049,0.4054293846866516,0.29304062283037474,0.5580761766970143,0.6026898977226752,0.48386753073681843,0.41226109862403315,0.5062484014629548,0.4204036133033982,0.48006177424987834,0.4224689919770735,0.31936522824482977,0.5404940032163718,0.6462323444223405,0.5178016972262264,0.5380824984245444,0.584387745756545,0.4607282331272913,0.44550580973468396,0.3964047944495287,0.5373967538921225,0.6090684257385749,0.5577168206261565,0.5271413486005206,0.46764987735765257,0.5195529525640762,0.49509542782965293,0.5663106591007955,0.4433544527831923,0.4480476586580712,0.5181683503288903,0.47438114226399875,0.42188935552684664,0.5598350225948299,0.47596236819265686,0.5110043356728666,0.3581444222165668,0.5609284590678596,0.6249624176791382,0.37175142390667976,0.393363206114942,0.5095434214716512,0.4941242290690966,0.3472899439938673,0.4660657943412343,0.5353600955311375,0.6186700556182443,0.47017046154277986,0.47479815452062685,0.5002062959578866,0.34843445539723966,0.3292184881869363,0.4504381134408503,0.3859131670687197,0.3559064108531609,0.5177806776245459,0.4580656767508942,0.5682797022681906,0.48737442808865633,0.35928939127181075,0.46098229941194613,0.6111977998773479,0.511795267617245,0.4102211298986477,0.5168667919900065,0.5211709368286436,0.4047957694713058,0.5738412035420699,0.525182868365741,0.4221527289319912,0.49276652803801446,0.5180977553207281,0.5170574889801037,0.5317491308530259,0.309696519571054,0.4598980490551157,0.43828154260284746,0.48886531697389957,0.5773465290936914,0.4924086501374191,0.34625141955277994,0.4464292189987273,0.27671023130674893,0.5324393421848079,0.6111168161019245,0.466130266608191,0.5377573324019951,0.44820184394851775,0.5343832696666078,0.395507146073613,0.38266569960533087,0.5173425999440685,0.5470347986686108,0.5573322911618792,0.4208750714702207,0.5070732558328426,0.4955688308530607,0.38745952221370533,0.46344292146040267,0.3990338814555585,0.36975799551432537,0.5574700090787952,0.549716388291914,0.4370588760196788,0.46633052649914253,0.4724640991303552,0.49149160464827263,0.41443995860092436,0.48611762741502124,0.4599884822599945,0.4269390816139324,0.3858934100697839,0.5860156796696834,0.45699053454857297,0.546688940715669,0.5126163906631975,0.556187876980902,0.41372693819355777,0.5331456985963056,0.4871358586202178,0.44337133938916945,0.5076509069918208,0.5366989366360005,0.384966260422082,0.49868112899876094,0.4122169489506367,0.3538665408094876,0.4569373504415853,0.437341216869973,0.6485716904352753,0.4837758676346057,0.44019103622226463,0.4943576982286231,0.2972798037650997,0.42794483522581417,0.5279376327342471,0.4598257236344837,0.47035650017456415,0.44890714154031247,0.42982537522071146,0.5743960651826455,0.5303625764721502,0.5110634890382463,0.43810748546154493,0.40407806393196,0.48099625541831226,0.4144130722027708,0.4585786100321382,0.47435244849008856,0.4244001703255676,0.3869625844319694,0.5646672647377252,0.3249986907725685,0.4390681807708079,0.5529933250907797,0.5301182474194304,0.5281828734866622,0.45323867603229745,0.546514780854932,0.5378583318056943,0.3955351083750285,0.5232071699262042,0.36212102786550443,0.492361978591547,0.44294140253997744,0.5837909011665615,0.4627481005557192,0.48717153756325343,0.3986688859124737,0.5221927031370793,0.37462611395647266,0.45701453166233036,0.4135906314275231,0.47027408240111157,0.5319278133557439,0.4461119547531961,0.2872206528192373,0.416718560340267,0.5460475676748741,0.4568066697225997,0.4218571877020666,0.5673491104104906,0.5064985368890379,0.3909738546102775,0.45633613518991195,0.5280611934105376,0.44163180821054576,0.4306224681309711,0.35201510495149013,0.6429579277490971,0.3661334084820471,0.39189187750103,0.5152011348647735,0.4036761580717115,0.42601300939953374,0.48474176765257476,0.4726976290717061,0.26063292782833175,0.47611193009496344,0.5113247674818485,0.4135084799670711,0.41279024505661827,0.5325212737657085,0.47437173255578324,0.52851084005113,0.4544976116944698,0.4289533838183068,0.5325074855971872,0.40657249253734956,0.31995454450619903,0.4437042064700492,0.45546540133359176,0.4295939422198355,0.4032103487340209,0.43951736927425233,0.46511407774841607,0.5276904250966261,0.6035252128179777,0.4976332560879712,0.4666480431855046,0.5725900905147879,0.3864489173636605,0.34457807076914343,0.5758817239207455,0.5948819281776886,0.37700148081064183,0.5451586991809866,0.4005209398200325,0.6014524189198073,0.4322318157673327,0.4004781382558761,0.5299658443767351,0.49931907133979064,0.391053135570527,0.4672473112785361,0.4014046581024324,0.41433925082939216,0.3597636765081692,0.500420935113476,0.5158339471923168,0.43873236475204197,0.44281264178016816,0.5079256084932278,0.5184534415981606,0.5141153972850496,0.39521877422461626,0.456571791154804,0.42517637751482795,0.4738079106031246,0.3917169647659336,0.4208696382352849,0.4195202068912476,0.5745892461286359,0.5211733666299531,0.5711659249637505,0.4444252456494923,0.4019351288082025,0.5452533959153298,0.518063677085392,0.4835707808826093,0.49237316319335755,0.47165005343028293,0.417932646514295,0.3845921949559577,0.3956524204038579,0.3420354616269948,0.5967050773996105,0.45321415209075994,0.5247215036763114,0.3966471582012822,0.5258192928642895,0.4149315656399792,0.4218918676346217,0.4248417836583801,0.5288308255008297,0.4525930195547159,0.4977682998924656,0.6013219521778224,0.3956176514393881,0.6412437849829792,0.4439393521280678,0.4352332559986119,0.47168759842914276,0.49153295624775256,0.5115637912286869,0.30858846125537703,0.5430478678908452,0.4638004459829182,0.48221255326848406,0.38919660818935015,0.4601970960441479,0.3481135625139852,0.47390631741147665,0.5663397588406937,0.479727398465833,0.35767566514055327,0.41858867758846313,0.5815718130010745,0.4139081845789752,0.5700755365691056,0.5175335444162131,0.5610191648819914,0.42173001590356046,0.495186527514991,0.38683998756607924,0.4175128691239826,0.49256830189154827,0.47131139795138627,0.48830903032449036,0.49648834825545585,0.5708680698088539,0.43458293701438544,0.37713765569618707,0.4128183242308857,0.4025028543040921,0.5789585403174002,0.40461138351545545,0.42858109008107337,0.39686598866978195,0.5111898496025915,0.48045343980441874,0.568009759735009,0.3573898034619399,0.5415791756630518,0.45617434554874037,0.47443053000364444,0.43761782628016177,0.47113893453619604,0.4408564037639917,0.45635726080531147,0.5543608197374941,0.5051744755602741,0.46644014049082627,0.5723630871369693,0.41360241799829717,0.5619760608479829,0.44631202776227746,0.4970486636529543,0.39342555563814946,0.5262956598050264,0.4381714643796316,0.499637638330746,0.4249233821709934,0.5854516049347953,0.379952127998971,0.40869770497067825,0.4845261590081336,0.5165450151059294,0.5500377826437398,0.3973584644022991,0.5177143514878806,0.46656196085387325,0.439196813932497,0.5270151337025654,0.4355672752915679,0.5708689474189934,0.303505235750549,0.4279889616057102,0.32258703392103594,0.427925519963555,0.5111138405350228,0.5051864507489423,0.5408414183569922,0.5064966810728312,0.4129681324998878,0.47695448868159496,0.4818765302857769,0.6244411845270689,0.43208515988268303,0.3002431173877312,0.44674528826654114,0.4081607610447261,0.5906860922174879,0.3401419235413892,0.43037780276780085,0.5606901359090345,0.5128916185420601,0.4781681283395876,0.496028057316981,0.3659118353152927,0.4609901504693041,0.31007240569107003,0.4785942232766325,0.48793572041762057,0.5881100910524287,0.3367891772704675,0.6950731130312529,0.4188928341387674,0.5085400451349007,0.589222225772252,0.4855394992020561,0.48975168472757863,0.5470717600154995,0.32350521841255225,0.5018693423367057,0.42247990659964413,0.4199741921685457,0.43132873751495593,0.4567184665932419,0.3657660118604935,0.49487898917535666,0.36467686418889117,0.44988411888968044,0.42819853349948084,0.4015223712165355,0.5167371929040255,0.4670953284777577,0.5222140612795846,0.3493707919893076,0.5125979480573856,0.4733052904409915,0.44399449665805374,0.5057208289153219,0.5320867600944794,0.42169721186300985,0.4355551441565449,0.392464472568373,0.576306928201493,0.435321551115775,0.5742667539488546,0.47198634576489645,0.4492590449738851,0.5312629082614442,0.4591331509766622,0.3994471284744179,0.4270899923328687,0.46503313279866465,0.503153003889208,0.5127350798367896,0.4737847748072943,0.4025872306345385,0.48916715519253573,0.5795007394315057,0.47049813200372137,0.4497456130589013,0.4830175334140388,0.34805939623324056,0.499215228356782,0.47875210341328656,0.4841591652875411,0.3808592428099963,0.4540034116868348,0.4541745001882959,0.42304355337926,0.5395306013059299,0.45898369055490423,0.6125169826230927,0.3074938509644938,0.43017430799826617,0.4692352449061119,0.4916375873736179,0.3546675254751269,0.5715023475212212,0.6164353849168567,0.35565375638190944,0.5955892138462374,0.6795174120798017,0.5462358950079843,0.43991102641606245,0.4746063597466144,0.5650548746525497,0.41031040922372514,0.36264108614089047,0.6346746785369614,0.4482104506221963,0.4308708240229136,0.3838821249902885,0.5056476454058881,0.41189389314824776,0.3823038481959882,0.5361503645154131,0.47273971507501894,0.5157200455821289,0.4474763741938543,0.5162261335409428,0.4362358568575408,0.4917429761943597,0.48417104422273777,0.41812068241383793,0.42292604324201033,0.49201254948204226,0.33275123453255967,0.5706056680855419,0.4888643135284843,0.5710183323022052,0.543207366136166,0.420441580465941,0.5881332677178124,0.45034048863441145,0.36521522496926306,0.5726497517247975,0.6209224745950542,0.339400184271191,0.2706786581680473,0.5550089232197286,0.5594398465174969,0.3308013404395604,0.4507545248787228,0.3853585134942113,0.39402363321602984,0.5204921861524927,0.3670764139842736,0.5860067928907849,0.5769535946125467,0.4698136399615356,0.35945210318425347,0.5053431906147811,0.5406442374107318,0.34405656789063127,0.4752937000603734,0.5224526564734008,0.5117401490526382,0.3567385543518399,0.37815688793692215,0.41285715952109764,0.5661274893508633,0.49236335883045856,0.5890183232872132,0.4888250691500016,0.5595525193403305,0.4376503335243392,0.4241514336437989,0.3951844313931579,0.38849752440474516,0.45562682109868824,0.43508784244086496,0.5086313957164654,0.39865738073744866,0.38118340695310743,0.5752735951666884,0.2867307565265553,0.5233048429578043,0.47470240656322243,0.33204277246666963,0.36498481862345566,0.5405546937535001,0.49348084199490483,0.4680278787364944,0.4463641268971046,0.30684900930109904,0.5627503277109543,0.5248194350035117,0.6748980647698243,0.35563829133239433,0.40181445569686713,0.5749058633584008,0.5238611336113224,0.37096973775226527,0.4646171428919456,0.30069162324823995,0.4740513370214469,0.42853609686603217,0.5590753832369313,0.49421973251223417,0.4968582731908115,0.4583478616289405,0.42920996797581634,0.509485276987901,0.5277786770488595,0.3656205764832698,0.38400088605002247,0.44136805750594504,0.5350013776970518,0.5389659385354806,0.5322688266108574,0.4843921440586637,0.320040041111428,0.43389391088572765,0.46521269028803336,0.4727857192704036,0.4274689158430817,0.4572730572453902,0.5093487394051425,0.4088199265864388,0.578419395972048,0.34871514253472136,0.49885397223776196,0.3801757642548637,0.49043778304715596,0.5167243668352477,0.49403014666983397,0.39882522028189465,0.6038981383171643,0.5337661771575021,0.518723966808578,0.35871802830611854,0.40003086255267106,0.5219237359428388,0.3973488874388319,0.4102818181917686,0.4014650847919308,0.3852547659123679,0.4917052260252399,0.5131305430885027,0.3316346281920778,0.4383670728171357,0.6020086060584122,0.5135040709943475,0.4561831198847154,0.5470012273671234,0.3715124891506218,0.5421704392856556,0.528974312242157,0.525872871427097,0.4531618937837827,0.5818953540864172,0.31430784363435815,0.49593226167631427,0.39308112396654366,0.47270622250199795,0.38248474715404496,0.4200799426313082,0.4924652518082852,0.41638018183427206,0.4825312493127423,0.38940417501726793,0.5767317124175215,0.40590362460349705,0.5077825510180538,0.3360854942211942],"value_per_10_000_usd":[72.18456235911111,115.02254440237618,126.26419127841002,41.538601822573625,60.08400049818377,79.34896800177845,78.36587744208994,72.10143956568483,46.065862633995074,158.3975050834639,298.76507552747887,335.28333078567533,64.48692478973233,90.39909350237323,80.62893878612955,120.46941769544831,161.3351780001104,208.86413419636295,193.40082439117282,40.627383381453306,150.839865918266,45.33926512045935,89.47632345696829,144.76989431801297,73.69782371359038,107.97642135005968,84.50734461822256,236.15176993546166,57.621348034437474,50.77730945331762,75.54894026626113,239.65466316446023,193.5549553446605,53.2791750918258,311.0165528240519,60.89115080729163,56.12535457406529,120.08189750336197,115.85949500843641,47.44024636579412,155.86646208197845,57.19671983448241,151.7908761346778,49.52537796638475,135.04326029539519,62.82355532957802,98.236932412075,64.70533716290552,163.3657820122292,75.5023843227147,174.9957842303377,98.70084544711509,239.1904299926392,55.43875173058563,50.12522798167193,54.121814874737716,95.09134021041817,49.06985045029874,239.2593473495819,57.909516392660684,101.87046565594942,65.9458570156698,118.10970570776483,48.52155185969808,122.5162830464867,215.28575042901804,57.36532186430188,67.14287321679068,43.13557864567895,160.2711813048108,94.65960333138457,176.59483067237088,48.69258429383125,75.6742599771954,150.37822057882585,69.19565256503081,325.3484454077645,84.21051057852932,73.44950295764801,141.65188191794942,47.73628075562238,155.39202198418917,197.6780169247605,438.58016684791716,372.7068134460215,122.77108430385002,86.6722708514277,116.92533064449518,113.99331381158436,48.24905197355838,93.01589358468046,256.555447789886,87.63668715923015,103.17290313693856,105.57106703013228,147.13348157697143,47.705524541695894,348.6474820881569,54.403644680761786,51.85786601587454,139.9210286484878,373.9020141435324,153.80200319565455,68.15078811475405,207.5155117801455,65.19652610265103,55.93925264491568,126.31263495678046,173.94149956577334,64.17602596343488,98.77981519720814,64.94264944428866,75.55605448634418,197.9546456653775,387.21558849090053,88.1910554829019,87.48075423856994,86.44664159489376,395.7737955687675,52.99252700525565,79.331372258452,325.3081350012921,324.4939357565563,107.54888875750031,59.78474972599742,232.52722587227217,57.719197189554244,270.54861242657637,46.77216561709098,76.4821037252327,80.28206094133361,109.83734101778491,207.1474809799776,93.82453264709338,96.8883864199163,139.47520419727195,214.34555081328696,121.53066607144844,115.33812685655641,90.89959692541066,118.2131159546388,75.26075559341612,38.56290155870285,65.65364768104229,85.34660616024762,51.24538664266335,135.6168119600333,59.688069849476264,187.2938921161204,44.69260339668306,61.11301919650363,106.00153509584547,66.40591414709799,122.833473361823,174.9086034792479,45.036215687854224,229.4284578934862,54.224709184612436,78.35292951722002,89.50335158888032,45.23996269260848,144.1996485801425,42.6774593630714,52.237178858437865,66.63230362591628,42.11184987373027,78.97447947913916,37.06594061264339,84.90749921081213,58.54588911575733,158.6700461006004,78.97897688331734,127.95599072023109,156.70984679897308,66.83270841874842,107.3789361010194,94.54390168009678,54.26382586524395,398.018347769449,52.926492408850415,74.93638198849897,179.04960785879067,52.24937929372467,138.6737481019316,217.64569231507414,212.14696273060625,183.19593531026533,152.64959292017983,36.6947484740118,114.84343063624056,194.58633390025273,71.73120487452626,92.13815500181536,384.9623237090719,107.92812264446583,126.15082233325622,96.7387810683647,181.70629002780532,106.19297712681592,176.53331214512684,316.6737499344446,69.80966779912875,128.79550877584109,274.564230194987,194.79668549062058,156.2110430750473,222.85798812989879,56.989858797540755,50.60266399534015,85.39424508638058,231.44608598284464,94.15589067376094,106.52569773316878,119.7259695047376,89.47300495626604,52.21519531475005,39.68644375167807,197.33726141729812,102.83645225535027,50.3559885354987,96.57284059978073,51.480339970192475,41.08711509604288,72.21107786199404,181.58620583393443,69.86778044761097,114.68598074559486,66.5506374957354,52.74080897877219,257.20352273768714,293.3277336216296,58.99994318083979,59.8704062122894,83.38817219027338,159.6719927603762,154.77708696336526,382.14984901011195,105.3617013884521,74.67917001280527,199.28588771642396,116.98828717503054,51.712944342422716,143.18613206883552,202.48380087249603,113.28987297509738,93.26812720443513,89.50947857074884,214.61315655553037,70.15147966619203,182.0944923643151,55.55958015711699,76.99859690437822,121.38272296347586,89.28825238370949,29.963507319789965,53.82049521268489,382.08377958843647,71.99185259669876,72.36235328148177,70.8405324340442,53.176187462107976,107.94223351379438,135.52712552854547,76.28586989308604,176.72096099149195,49.17188810213383,46.769789006717254,64.26694704064975,57.26136687813575,114.17869438795606,74.69749568623773,59.30042677469849,502.53068660662655,44.468387216665434,95.90171724733618,70.5208053835685,310.2729693528117,54.180530060055915,121.62136081441562,51.655710461645555,127.24089777233246,77.74322855709393,75.14412769205069,93.1293424799212,70.46844172052475,86.09372920171158,82.66237602686064,74.85700848444242,112.80859979082092,127.57414600462164,111.95401309182608,57.91895118472403,448.22194451029844,54.43348700759548,95.40461145482837,72.61805815863279,137.92555933764845,77.63174638843128,76.69610082036537,308.81170500077883,104.85747650236657,106.20931511146107,66.05457464145745,290.2909097497762,114.65820051889841,49.31715244732043,119.18054213642068,255.34418760216562,64.89962900728962,67.86961865738824,145.15780627585943,267.81858083543347,97.46636543611781,83.86495962629644,50.475248073291404,145.5780958249869,118.52023360635678,319.81514175273065,61.63671494275808,295.17710956902056,77.95433497734842,72.29563390874422,107.9722133564041,37.20914240796354,41.24449839826051,650.3061452155515,57.16734764750014,153.73467353692777,94.77719742324535,168.08994753777,54.854182010633565,123.37008726512761,143.03915671349154,64.25205421326264,89.50919652621192,396.8569121325786,104.41934972074523,131.77206828474598,107.57282286084966,46.15607003241812,111.4612497118836,53.46705980998228,201.82496902868473,251.53206719423153,117.92348539797591,318.8890602060913,97.69202228827021,110.60483707140901,87.05181467395637,105.17681020855164,174.95662593621654,105.77281107918667,266.89448266813156,380.46021170936484,75.31591379659058,519.6956194763236,163.4762338300365,80.93379058895296,63.46811825170094,520.163215900799,48.10037614790561,168.7660929811848,93.26466711906656,141.59672709561843,81.39583339594661,32.69060837728244,94.5135274710405,118.50308151410808,99.3136315663436,64.5225284553185,188.32360412034672,119.13171477322048,86.44414898571422,91.32273499138351,251.49263002074218,92.62249969854463,54.55924606770663,83.38689076312906,149.7235258310047,61.80997182297434,66.50888879089239,121.60016812446675,51.48119526923112,69.21394681183179,147.4121694396829,181.67126308121712,122.1375533002074,240.5277793125973,107.1284451233335,74.13540882120596,356.7955431268457,45.377895672752395,155.66834319941952,33.58375167999435,308.4790371476862,60.423194800905065,116.14133913370694,167.461351775532,77.4039438003628,61.198354396726266,324.4569781763877,270.75599332188506,250.90213714530282,64.65137036726509,165.9240540984005,52.99534507612301,94.68427279970327,104.00069509244736,119.12708934580866,74.7368974053679,116.4543806502041,94.86723350952207,100.898745087957,180.2374321906884,62.510883318584376,112.86028714750134,60.055659920232074,317.18282638451757,64.13009446694349,71.16049714073212,79.4942812312331,205.90509411372804,105.25608548874929,128.75630862492096,143.78315910913534,118.43755964634278,80.92634740684318,41.110098853121784,119.29932712227873,76.7300686677996,58.31883139496085,246.25413530391876,47.69245052873712,173.4371144157425,204.48687250721258,213.50994867086203,69.20503342771286,83.82615505122817,58.29025674938566,64.83349660538042,39.52095325836271,91.11971739012152,187.33021601481082,102.94946441800138,83.36152702439279,108.35967809999504,145.48675580119632,311.4511979873946,39.66009245130132,51.32389008416543,90.69985419890557,224.63287478724018,126.42874471454076,120.29427006022219,378.38972359612677,75.62781511754108,99.99798307995793,63.82040491419755,90.6477241329035,278.33259801188063,52.874339329316676,112.07253433973669,185.89866361110822,122.51440427088292,79.53702897819801,200.49626711144384,81.9599765895518,76.70075524139646,84.18354538575281,106.32684540939266,132.19396767381022,242.4305335682842,90.83769481267615,57.53785339567253,118.16801812277764,155.48931514690338,93.11811749690479,45.229509321338305,100.05367781991784,80.74456519048772,335.7983566971855,370.89820077146294,67.92400706314527,91.03642280970759,64.52608524673677,46.94688480463415,61.26471721977178,224.20223646043937,43.41316426470542,73.01826164656055,90.16362654993505,86.7285604070354,123.43585727568744,81.78794170890805,93.35729383056332,372.8423161902216,360.91124238954393,72.43373433924543,153.59455543842125,94.9619057396289,105.24255846032185,39.57594543614289,108.4011231579114,130.36449971069092,276.01117679548946,116.4414624075084,139.54292008462946,74.14620332354401,319.7665224409035,58.09970861309937,69.83930118942382,58.0838268754355,128.1815346871763,62.452178496243285,76.45228131156067,132.22705980336593,151.5228993772196,191.86361354920956,57.82109568972035,159.74292851938188,145.9210127094656,81.07336907340115,104.0226078233019,52.95309609979699,88.45226565972267,104.86860925523902,64.4206318563272,74.56751905142794,103.6719965550223,81.505782788214,285.4827911495037,53.42005914226946,123.24962460812381,113.47989579898965,101.41604807966077,71.71911007875971,80.37250214292588,63.04991534291242,49.70920639020107,112.14266235329677,72.77958187893398,82.09025697481312,92.84716326615133,97.78417242842015,295.5836082542173,49.98397567600498,137.21579162561673,101.95995388306248,88.29818436707572,114.2771182514186,200.78695506063983,88.68601270201968,193.46548564026736,59.52605865576209,63.62036575306307,183.5154392958289,59.84351521154952,51.17897080721471,78.41430544404611,234.81194834856075,51.23126778683894,136.21487697629038,25.67584899122742,166.18209184582423,139.41089953766655,175.409416875793,77.36961593822994,64.32344704984281,158.85564703777288,59.80370814089326,267.7944035276846,77.87847154381669,237.33577480359364,56.01473143963599,81.45196794788413,188.6289691484502,92.08343557883747,91.07263872383163,58.68421423917293,109.48107318763482,188.82953147588609,51.52421169886396,25.498936670333496,175.95763515254552,50.63034323982353,344.27645792903314,226.52453583761945,109.08685347029972,88.39534573109854,131.13619476451882,284.17167396634517,106.19982905164554,32.768342373171706,79.65664333457042,210.0814630866798,77.70489644519293,60.23788950361691,49.00270291876395,94.0559802429344,60.02035064684294,76.32797106396312,102.97983824647446,250.960785655946,197.44339113252641,64.06915917801251,135.5037083038971,50.46977513993372,160.53803020036725,84.03167082409466,61.64507909789245,77.98780123453953,102.20539398741906,214.86004640270656,307.2074617848354,72.4841548821682,48.05414640977526,110.2445309410358,64.9967707973396,66.49411600232038,120.60324059134724,117.6452163548943,91.1452258401797,79.15291408730654,52.137231443460536,91.57051657902433,292.3408826264457,83.26869660565723,55.948534600728976,38.792043188412315,94.56213451689486,152.591681566234,124.10029836737101,98.15470916608086,70.27875977022822,153.13033196884047,268.115272679425,149.50768848346758,112.79757813953267,72.5780926963741,70.03858078018419,134.06544186782472,85.22495512932204,239.07849166104742,80.28513627056314,62.88476424452647,57.08135658663053,108.16806812889128,55.5964275525207,90.45169830393999,43.14818584121548,95.27050200063067,89.35934753062897,105.38926973969747,130.7820498210859,118.46730600063347,47.18885968609462,86.09263722349733,179.61484957533008,72.3479185578329,145.3728001939897,88.33093465732522,148.6201381125702,49.779021809396305,71.02072502032159,95.62182950027169,33.87891662630696,79.90985710430655,179.67988972774552,111.8295718298632,129.8853180072109,291.109548306393,104.4032565848762,34.86795502348027,56.52019805526499,61.371083745535365,91.45147597097257,51.02450746772713,169.34568935193286,240.46701145833404,103.80749245671237,47.535853859126846,76.89231803241013,259.30510429743225,91.05781356646033,140.04969308574775,68.95979901098244,26.397378851793633,43.14440561436622,126.7282866744787,70.82627466152104,66.69887467499468,56.8195780907702,94.42073557517826,44.186526486956566,73.38973746283395,213.10150308894393,113.013205720449,60.67134950058644,104.56853867558046,209.64230764247623,31.08608576298212,77.96479117325742,80.18173059078346,51.86195001196533,202.3992639292293,231.74403178267386,449.4846186067482,74.56696319351977,95.45211852371878,39.5435701464612,52.74784380659702,149.32844164385162,67.43985876885226,147.9239999721599,100.67998914857793,237.52661202955142,121.61417063241639,120.93228258200018,72.49462966981125,62.339926655948005,92.00421106984214,118.39132437398771,46.305066538597465,124.65101457313068,46.30502907843944,96.91804882140136,384.39841358674397,72.06196851415473,90.5118533190976,294.02285520301166,92.44795703301811,70.05361486133641,233.13711910962948,113.91128634096324,47.36404061509812,98.8260363424763,167.29285759729197,104.44459323408778,114.39537082765196,27.43978398247798,134.2174969632234,69.82116850435146,80.11188355721647,67.36061810534144,33.21036553350446,46.41284819154832,86.85412243949317,64.69861987558484,126.605967445672,71.89046835884517,99.06132605242408,310.5764014267154,100.33227648124392,58.8030621426841,51.77864612002577,225.1507005022634,66.05958768741917,109.63672646757702,136.89610530211183,105.09163981926605,145.52274376088727,55.95319465881912,160.99698559988178,189.51899516957988,52.31270603052343,184.52177152517967,150.79625863419437,127.9466485336105,169.56353953055574,60.148088453351264,89.13660871446321,110.01253327793562,58.79942063804732,60.74495792520055,65.69267852720012,394.57733612800416,221.3221671196984,644.3293982693134,283.9577402778379,47.25517165390472,89.1391447374312,102.56273910968201,102.27147599075802,304.81124642596995,83.56178972847505,147.77947913184505,97.15778347666563,143.2588236964703,81.26481635603503,98.97770840812771,130.25678926596078,192.2848953550201,157.13110538611966,70.68590900894205,424.88851835988885,61.16937041701044,80.94227498185036,65.41766077693842,64.89354565142477,56.691822790505725,118.3276046578243,107.86717801184679,177.01245720374988,130.5515311422084,41.272523795566784,55.48996949359253,81.2242871698905,104.57396116090999,58.80686929495135,80.00750126229325,134.61579579217712,140.1728726059223,148.38110752741002,50.9126109575468,144.04278557122026,67.76624117174715,101.88997563809058,76.17108452959371,82.99311083611066,73.67465488213908,116.98234513672497,83.02774058062695,74.17634656075458,54.678955835824205,111.04260408750022,226.61312585128348,42.11813622864761,85.09964290436169,113.61216700897447,106.18770545289524,76.24470172046291,83.72309800581269,74.78752128333609,87.72402146183802,90.93237301769098,43.744992065185286,82.95631399031548,54.72728445891958,96.56645168036728,81.4635925942872,105.35229926305016,112.40695365373558,176.58495390857226,119.76287819880537,144.54325066685487,113.59469359415667,106.23460336781162,187.9602274356781,93.44721523709983,62.28130848408176,95.62552222520998,107.89389686952646,64.35940521225007,200.41076210297385,89.50026333467693,101.15355173076695,199.5851704710505,119.32851814136797,303.4175918201791,93.56430413344863,171.20232726167447,44.345092208601756,99.48964674644277,256.654524882532,59.99106705763304,127.4177091604418,142.1037624305478,64.22657142702667,127.66358516582764,671.4926801413363,136.95928726520316,38.02523305150412,435.4852918971713,148.10180032896582,95.48185245706235,142.27498103890315,196.21969143437713,45.92911296951438,229.8243713853467,270.4693814506085,448.89539188733653,107.59445961582337,55.381675434843544,62.23508048356497,78.35690556968856,171.15226174689766,459.3811601854414,73.77232144225472,108.77228031609751,149.27233506079526,180.92824962796666,127.66169303686144,62.88760349061258,68.86795025593523,112.20282405360186,68.3363481468501,197.27132584965304,155.9395928500257,68.35836799309628,187.27575159707465,169.84241890329304,69.8637525360312,294.9558009190456,71.0093107804755,464.94700299900205,361.221263699495,48.52216861434533,88.12248847220783,101.88627518370733,114.39139956695209,69.94749114676316,589.3808281330399,140.54446411244953,426.45463841598354,37.15835625273873,69.02195731241378,85.44203565097264,149.21260298298205,132.57932506035814,149.85398480321714,65.96606851278891,148.23334194872578,62.644520897041424,108.79897148986649,67.18096207850887,458.25660649160307,69.82341923840848,450.76688486658827,85.8414525137934,114.91224034660235,102.1456443078106,40.845686353316005,231.2917372753509,54.17820422768218,120.76425391942583,72.7233360479804,85.04916100892152,87.46584121802238,422.57587462368554,254.08291506372632,95.03333985563081,245.60736470047402,32.95376467720622,89.92150643047908,56.34237161447648,112.13067236085516,150.98879065077585,93.3874527549995,210.15906939928868,37.680883966684,250.81973464849077,146.4285257273523,227.72183245779655,104.25712270157302,133.65933688705775,136.25359310442408,65.65554213343917,83.60845365826736,65.75605459381948,194.32822694764846,58.83246947296958,82.91679717159974,106.10853781684223,139.02691334185124,95.63125569327342,98.47901135245259,141.62368235195575,90.79185134455933,97.4576801862303,180.82926480743117,44.23486909268168,392.6491267397095,161.43268885589362,156.45931051495475,133.15195633633292,158.2763595625783,128.5630674637906,55.03268905371796,253.80733456373838,76.7585958306245,175.6354577731392,179.27453930338706,58.80854988125047,167.88225957728855,131.59973032853853,122.09835361882861,105.2690167099584,333.4864904750736,65.9955525502674,166.96550040197528,51.58496340688843,72.2317121586181,288.99693002141737,66.89681285321558,73.83799501898747,166.7913541883729,75.90542206142122,78.15387399731159,88.66514761011267,48.04917816433218,180.59985777626483,149.80957657687236,436.84894080344986,134.32168810224752,128.53947687603883,82.10858669275629,119.70965497741349,168.90797054341851,88.81543311304544,78.11143188453075,258.07817660606327,174.68270837948538,51.45982442830936,166.1867380382639,108.29469331576695,49.08725795436688,75.27323687858035,63.266063506434534,98.12518642023244,84.27318657002672,86.60849665950657,60.27672826740062,204.9406102305158,199.7323654307689,69.13540731720424,239.55609556922158,62.322893691631975,136.8031316800459,78.83692540116849,113.97870684432725,96.19479800923372,112.71830114964641,106.63953745351324,112.94429287738878,179.48733716194567,70.66355890638587,39.782752664889145,141.264098329755,36.375447400909614,101.61661011955984,52.42287412168773,64.2421836370019,545.5354890288005,69.67591949578282,100.45300998737692,227.04071572735063,72.88757914820712,364.00554597097977,79.96369540284347,69.44276845611968,800.8102580980446,143.9230525191508,55.19984086430293,53.1096734864792,83.48361462039317,103.98842496286488,70.8739336926569,179.6293180749834,74.58678300132169,119.04645396968321,102.26050632037762,80.24126016599412,65.93390516479315,99.43074371308987,343.39886674008955,170.62596767448562,238.29030075828436,216.2616612479373,47.8419255591176,69.05843387942373,106.2618380332518,95.11837400311434,143.47460976583008,35.047453229945546,153.9445690609297,63.299964383028225,176.04537659114922,43.63039531514369,188.53229536456462,49.55876778662742,204.92182115157658,82.29302315062819,70.06357162252961,180.7310547699979,68.62247657222495,63.383666069321905,124.14134953309971,96.62462663594626,84.53232415078686,90.46618196565582,127.87505609773683,442.70193730210167,221.1088169167047,62.55548800813275,103.95665183223356,62.7114086533089,69.02086114824606,99.37388908571579,56.58089218196345,99.10258625428852,103.0077482550949,113.69110212518612,62.573202642640695,78.00927091929893,147.51375816674528,52.07988747348865,74.32744578443898,99.40334186727134,181.61344415315074,122.37896256035378,124.8787525564946,298.2077083545603,196.80470232720776,87.78166152067884,87.41141883590034,99.35487853863408,161.46171631661278,91.65083370666682,79.71551722629714,159.94203780701898,74.90578361439312,393.2536969880106,179.5953556583997,56.90895816861171,86.19925552421532,92.03989131757957,72.49026668400089,397.6364043017789,69.7688506427837,80.27453573992639,62.66753290388395,69.46649502326848,72.1314022387155,106.2699797886004,209.87208253883705,158.1552605103854,61.24802716964969,148.1380071402627,96.98252182241997,128.40751959274155,82.88783350592566,53.47855010104704,166.7154091367638,77.54893952826829,300.80411736416596,159.91279642825577,88.64102608236728,196.5195513259362,482.6800659603051,61.0641901051324,94.5252691395193,416.51869840165585,149.71333883036647,141.24994327387014,68.1077644190003,50.19020424362122,140.18861482667162,64.11996934657195,120.65759584950342,53.84585794515717,38.35369158092297,64.77875295115624,124.84343874090256,209.66762475025743,42.26487466440651,86.00268662960394,87.4356044698868,353.3998388551254,57.87000954404355,43.39033335019072,107.44494553218054,92.32283553452395,155.11384466217186,120.37667004713931,124.85257665904149,56.522915472310586,39.823674354938575,79.51611881914634,102.2406299898072,280.52049114554274,65.37420287055438,101.53870797915701,70.36459646644902,129.93928015506597,100.56966537979966,161.41396858276354,189.45436833590372,146.39095575011842,60.840714452613796,114.43764548491593,97.74232465743073,118.63458172401235,90.43847801914228,87.79904400192133,88.53668001052064,469.91064719380347,84.3133803103579,57.97834492235381,58.19926884224615,128.75340780902053,180.41863422900923,86.35612668465369,159.64599689796995,120.93306368694348,138.77589913275938,78.89574001465056,41.7842853377954,540.082896444494,124.20302306742494,227.73202309548572,58.65413475477049,226.25028891763736,84.6825035206133,222.93481995622963,112.30977366266818,175.4820316821232,113.0521569727566,109.95366281070983,78.69399517091931,153.89436320523666,46.656861488873574,70.61093340768214,115.38176858327655,82.59949762151933,174.9761502121411,59.24508992029057,85.42856502822418,140.96871846586052,63.22290445636999,85.74628076374825,160.00981939290813,130.6480939907791,88.45448770394125,39.816021344076944,103.77838630802329,143.20082594424045,77.12640846483626,71.5757187810739,91.55265691311347,61.32074568492159,73.10537474942277,172.05042568119626,52.389821318995985,77.0311402350123,192.20497116085008,43.32197902560476,69.10502894282637,70.903113458739,501.26743816841616,115.14806564852728,130.22030106066276,105.54974997041376,156.26062002293008,69.15521897853402,66.3747531864159,612.2084866390176,76.2528689173971,39.71186004602458,39.12399453136462,112.798816617111,179.35648861911395,97.54121317791724,75.28655698245488,66.85614383927175,75.07909861560033,112.70707654335673,116.74642984036595,124.78745646289859,158.5300151717765,108.51773691390525,89.75470123760833,57.226446985983756,84.0500589488839,161.87339790312046,102.06864444442589,400.1757295865527,118.22675990162666,207.5762841670475,90.89764565554576,127.32496374826991,150.56825464426117,324.3953534458137,108.83677704920744,107.3622897385625,62.00066134293382,155.59900904205307,117.7154806088206,70.0874236816277,165.89678989538854,117.88889601587148,175.5957156058407,123.74699691750222,91.8270783714005,67.92970422398814,52.919243941556395,72.11815989825634,107.46587606369329,56.417369025932636,73.37749395246517,54.62702793308196,71.37235185729001,259.7041831603591,169.18559477961432,125.24336691521718,106.1573848360762,60.92934719391368,136.9115522483314,213.81684375526487,88.23642027412052,98.76758470017506,176.74778757429186,83.57896033132147,231.4573664207313,234.30441002680402,63.43043180949759,113.78808984537235,54.58205785536323,161.14677814300924,250.46090564586774,183.170286751306,66.3889255905071,72.5779962870483,76.88375160007394,163.2962776890615,216.51504588292227,105.70097805039025,183.335071107669,47.81184535400311,164.39918818756558,77.00109098704985,113.12377199258722,78.75663338614748,148.98651680898436,92.40595791484911,63.788654372292484,162.42782399200823,61.190470881710475,62.467945860914675,82.82911449326465,61.262815500675615,59.59719425995675,522.4449725330797,49.984886956448015,86.97763120635663,73.36516021984174,180.96274750175817,66.93687486859616,76.01380210932695,78.47733021752808,53.25887909111015,92.29130251299938,59.17654056683412,294.5768944624518,58.629158415225845,57.243388144113176,90.33813044517493,79.41381182562125,50.839578466540154,155.28586099327802,147.94354972223263,32.41683854983811,188.60816205787344,73.73658425873379,44.8010581946546,56.54523453982677,190.13520061630342,74.20971361471189,45.97106974041941,101.17148749077751,313.008055385031,160.91978394318093,96.39987787714746,264.36575211331456,170.8739707754062,36.213467612826676,75.44071288446798,118.87116327509291,175.7110881361222,55.31631269870242,65.69347831938519,72.3121882595084,63.428668026815345,78.77042210374432,84.29016128471203,104.31064739761474,68.65119526545534,95.11554554205767,112.7063323503565,575.200466214837,210.48747997252403,124.42919884492682,64.8075685197041,128.31414782972337,75.4569068370566,50.92314406485427,38.09792455659438,71.61144848864029,106.78879133874322,35.74918970390311,133.34512501790593,85.0113454764794,153.14937430809837,83.5103575293036,134.79477622233887,55.30044727087409,87.2603269026881,44.47695215931624,52.12864203357898,71.42840958708668,69.70842546539254,206.28743458209703,104.72174094169523,73.12414930645842,98.56884915103727,129.2548182201676,251.2156417352518,68.56208782129822,182.51734614092615,71.49946261301615,51.62687087222282,140.02078505447255,74.78241539835388,98.93782090305773,76.49094596330951,55.70086809546093,56.52170691881079,119.79342023274471,98.46950041366544,235.21264419228774,81.2255001877483,135.47699432440615,86.09285940646916,73.49192041437749,61.576218224249864,92.73879800395649,206.61244018056948,58.20331537445166,56.29788342845881,73.3975000260854,87.41727097675773,63.123287682033066,136.85366583324554,316.17228002068714,136.81665466709808,84.4738356797791,171.81676388813608,98.73442398540212,256.1580809060114,87.75354279486524,171.33587914622547,138.00284051572064,37.3845309085615,82.07793413954906,109.45858252836261,207.8937847130629,115.08687986032773,46.31596669346863,145.4907259351836,177.3446589914864,89.57441862460581,43.35340486573012,54.39000595818706,62.111250710446605,86.90045005662083,121.94195885591739,211.16589429144287,95.48388608908566,50.74274491155284,127.46914108005228,53.113616018001665,69.01245280308265,61.844294593040345,80.3598353085477,58.37161421667946,78.3230465042242,115.89701463427281,99.9251441026473,91.72538950733673,85.82772271737196,45.88052953113867,72.28860478704846,130.70034860807922,193.68985195911606,78.16860720341863,110.51891816230541,41.387132509833414,169.33614752911285,113.0792923729766,236.5788789802809,188.49073005407058,70.15450663509797,109.7275476883594,82.06218661314858,172.88912133731225,310.1384239918918,77.65868070289467,92.91301831288541,163.47692844711406,51.35030578607532,81.47452848862602,153.81378196077563,50.10533166240678,126.18006107307212,345.6044626678699,101.53715723177534,171.6602232962815,327.9945798654659,104.28782535848376,70.2372566563235,80.19278574316839,111.82304347572112,171.2264679291549,82.35087175937944,93.98540772640145,126.78552710315772,116.91723229871067,59.88348777658367,337.3320594936588,45.90081191999003,137.6264673020313,62.142905567263526,96.1016604307807,85.66753299645794,214.08585118197917,332.79708847467066,89.37620136461504,116.00194791008575,71.26425273825934,135.14945049661512,85.45122244813639,73.3883494274496,77.2514502673091,244.44450106462443,111.52250202824979,61.11521307454879,110.61467569616966,62.964164249707004,53.14681503364587,60.82434456260196,157.2355058460755,180.74804402087534,329.669585382625,143.84331537067501,75.66421211975933,65.16256023985423,117.65503585308247,41.604671595570785,56.89682812219273,107.21985150337306,62.48798968221754,87.03092279859187,279.7844848590791,80.1630111987348,132.22854472612215,172.0231786535599,145.0608391040644,37.77685832064308,66.95980296772917,77.93105470753056,62.67365901776697,48.67934286856244,150.80730207080938,127.03547542254509,102.24055771354777,37.14085416294662,198.6802449087165,69.83472252191042,36.25857624259023,77.22077455790328,261.20183791371613,77.22172439997034,137.96786629239892,165.18691970865544,230.88736818058888,120.6354993049633,261.90473160536715,126.71305651830555,71.19935582990072,84.18526759148321,202.76473510971977,132.78122557616513,107.80989154860161,77.14632832720093,154.59575691657298,199.13506736517238,247.13047308880053,108.00887266998134,55.73366464677104,61.48696824485428,105.10933962880219,104.50144474861635,144.6318906896852,107.94268005082648,81.94970347347436,52.086143020106164,160.6151724143991,98.78796737391455,126.72375780215721,86.91210522181967,36.29864076162834,181.50052551087424,62.285164716609074,82.49488541538345,255.1356254790633,77.54078235772755,152.36697212049,114.35800740934755,235.81223102485902,134.73776184135428,62.38566869560087,117.20415368823508,134.7500914200301,72.01655557338555,98.05632760360304,63.62609150682452,116.1031173389463,190.5425330764127,204.32411153073238,98.37647954244784,119.95546776425485,77.90935285027511,43.93603182482021,113.22311758284279,66.75371760292205,77.32582294908244,193.82275518146304,52.959145441863264,79.55809617757551,159.52665713702868,146.31176858829954,64.8696641541408,91.49568624613573,110.87463392561621,39.078233742794254,40.422720716045305,113.25764193901081,52.385299512817724,275.06538235309097,132.66970858708308,206.93369527496517,184.66368051506336,126.36747423653388,52.70200422986422,68.45389473573499,70.41364892086688,65.29972932889599,176.9039253736728,203.05639527517025,152.72791478542248,62.80742071877036,118.90085893278749,394.94913552119885,67.13699881078213,41.835579368695434,57.89927112650501,173.18205415527612,145.30296939838647,78.6090403579341,315.28161172889793,173.6204936911494,139.74513446394894,140.69752795629918,398.4881626817172,64.20212764053116,311.61643153384006,73.18639011405527,141.22525923292173,109.30624957697756,255.23279330359264,357.3828180862942,153.03797058782445,39.894700447122055,142.76663322778347,100.60902361317132,90.50734047395139,128.23164645549085,118.2866874463675,286.5876133778829,58.87469897704136,81.65951907717367,86.69161129767937,103.60635468218982,74.94724013796147,250.4622512527616,87.21098559392328,102.95236013565341,196.52706266431517,81.12192668237738,48.110318083318006,79.26107992470665,43.658873260313854,248.10828186531018,199.83846386284768,170.3128615022182,133.82152406994203,118.03837618542893,119.01238709022502,141.40358458662848,212.15942149443413,37.27779973769776,234.09800585504553,29.264497135299916,187.03687985933854,145.76777391696598,253.6636098926558,105.84666690657069,148.9095165250268,92.53768461707902,153.2820470914967,71.25346396482558,43.77531099336448,112.7512526824346,82.39287827075414,95.06620179649006,259.4845066060256,171.93741573291965,62.34465902691188,218.04407684341356,54.99162547507262,132.03789128615236,78.65551880326633,112.64660728456671,69.03258429133906,60.388004033189674,68.67083938985027,123.48826153832508,84.081252767243,126.85939712741856,93.91147130528917,70.41157328734423,358.03568583193123,92.44942368254927,127.35767389328828,157.5849775114727,139.92510719241307,102.31637192365837,123.80746358225286,79.68122240601058,46.77370981592616,64.99104466289927,70.51672423572116,60.43985911614305,202.21671088328782,72.88960931942168,231.41509174626523,95.15918450695074,107.23379683854273,36.3083962812989,197.31195503189724,75.67085598120555,115.14379251959191,88.64424274668431,56.461066783862876,93.81313189878573,94.48992335449644,271.2323372191538,84.31138202503347,129.95803908749764,68.48528004325242,156.73230289827552,69.05271584798352,61.50049691445711,46.721387974458835,72.67574992497643,68.91269964904633,318.62596075480735,87.57303417810729,452.168290234326,57.38326804122785,71.19191431418318,104.18522128008605,263.3937601417943,76.72119218311032,173.8003263763983,122.26626976547993,92.4103931393644,42.22423033105204,203.90237928484973,97.14902100363578,47.560927024623425,80.77556433293894,131.13934700990933,321.5159816102549,84.27920408400746,104.94857881290174,172.45398005759694,212.66892484772237,95.51372271879816,247.60231629664838,103.17561858421615,53.82308967112085,85.1479692032875,306.76328546549246,75.41424290285568,79.09111443994675,68.63893988572646,228.74429992841112,210.08965873918947,300.63706435583094,126.52058042200532,124.18619935680864,102.53937381606754,71.19012579082627,153.3816425435278,94.50566897743558,148.1464295855777,52.760857989091896,59.507186230552485,230.61378340946098,136.27224240514926,82.63263286494033,46.393421239579176,231.48935122708804,59.33216441449281,81.22788587632402,91.2888390079072,76.01359532723444,167.56437534138763,250.15977382352685,173.57204898133864,101.90218563916625,71.03409769402657,73.08220452779392,91.7196649277511,32.26001344083568,87.69625571172115,329.9033000265344,65.54104835622383,172.67839447332756,103.42732392577639,145.98540374888339,152.772233159516,47.02627933795754,342.68400826009525,108.08703360404841,84.85723484772156,76.15302233100631,128.70585407241765,65.50373645978951,61.303453813207845,41.42662137026297,171.12376951982938,433.79745780090883,185.9504119566625,222.9307662789459,83.78965835639025,47.188707568001746,60.35806149430769,101.41618009209124,61.910109625190344,430.4608763171325,45.082528062646894,137.40717386794108,112.79161165515951,297.5175955386168,138.97208614403175,154.28977552697555,69.872439835221,298.3249921850194,195.8203744945589,84.63125890988746,116.35934491924581,147.67742116682015,61.72215053230708,42.20401572584905,78.02802139570012,46.07067160573304,59.17452906994306,143.84026990931991,64.19433014516854,140.17020282875208,48.74208171363735,106.39520593496032,106.21163877584686,44.51442412883084,28.97107144362396,149.60468084068222,133.79989417907012,202.091943244239,78.3479980784242,323.26396946884546,32.04888397297027,83.25113694234742,138.3589970363442,81.09836643574914,244.8455866511229,119.88439456416849,112.87912043120082,62.7780957249836,163.8029476493952,94.72353256310373,182.07860996298058,263.43922146301054,58.2265016399386,46.503100325218526,98.25381509217709,55.44243989231486,89.81047620567367,273.2004591360948,52.93563449457189,208.28737234738782,53.79958937053231,55.57493604842552,113.18466307700818,56.557934854579926,122.85676727858052,202.742369657721,65.25965859439157,61.106538371452274,177.14664836547513,80.01590254464114,70.30786946171705,85.19771805177403,85.78325603502579,351.52450221398465,84.13248518858109,123.85888618084418,69.23591389266461,64.2583950067274,289.69646834542175,82.2782920874415,57.44169062827141,74.69861375707045,296.41742352611044,160.718592041026,53.15355564202022,36.54225344779437,239.9184976050581,116.45748378120898,101.74489374194647,238.2192043579222,90.06329423478024,188.33419917459133,142.26324462424859,85.24237581928074,157.4313236207203,64.83020214545061,72.12454749057206,117.69364774253438,94.59125715062582,55.62126043721286,100.01555038265346,81.14200617347048,82.57614714352592,70.54270031668449,48.3151466625,157.8062714675713,106.81449450835552,226.60914234782746,102.73920301489667,74.44497795287552,206.79444463163063,231.08222244764363,61.393065288577176,56.49628452618035,79.20415854709024,278.70673660072725,69.49682146282449,137.6694830385702,59.313236971299624,178.2704550830173,93.48008738313007,94.44521764024735,45.66464218631963,63.27927804125264,223.44287729692013,44.5446281583782,73.2919561071223,67.06187502791627,115.40340675260445,75.91235772037086,58.389714751412534,99.27662575506136,78.60806367709107,94.21432145179581,102.22110993664388,81.70873390732504,111.6477377537414,120.49965067472672,110.44616251170791,167.70093264937637,145.05013708073258,140.2429374376142,120.66533355567009,110.64273922135042,80.34810238417508,76.00887953488701,89.54774667534059,70.04855737469585,96.2561700437137,518.1083150861489,79.14793381860999,73.97198806311941,40.86477536021829,72.87813859721312,76.45491054542161,294.31312041004986,129.05788543930353,235.82748366571496,65.07129103164851,228.92461509374945,37.22930087052676,107.06371370868935,61.21664798783602,68.98072347812825,75.49729054746845,49.49998419662883,104.20317468604911,109.93955196782261,107.15672511467814,58.0210631738771,110.19714253754586,94.2156460876434,168.24344774846543,425.18900403480967,125.97496950863058,121.24154250428816,130.2035124161146,616.1025236086165,74.450615109428,253.81956427628396,67.1068068831744,116.6895547238525,118.78195745956712,62.12707132618932,74.23126254503374,182.6425606287368,134.3155769438846,141.90686180842175,156.68359445956744,130.01824124060582,70.32482484293124,283.51356765464357,83.34035225258317,128.7694506574556,75.42294710269132,72.43680943679946,70.76944492698688,111.22369632714587,274.67039020070865,101.21867818973887,209.5049700588643,285.12223822723104,68.4786267614938,319.58073395642015,57.472126614109904,90.87076655893341,179.29165269449177,134.27163961157348,82.57260248925677,54.92005231833661,79.4853130195426,140.50414641158608,125.04608896003569,56.250681464924924,189.77180678467653,187.1336267053682,67.56728919565013,66.14739339692335,146.73235413873223,234.40286461391992,65.21863480667993,135.87263428511415,183.1939855149271,172.3366266728491,46.0453042033837,96.49288418445231,242.73931573730403,190.4457900915898,115.7626257686768,72.78926357349188,432.37812300580913,44.24209573471006,236.36864773056638,155.81449855000565,126.78199527201463,165.4795273491325,69.80279028080123,87.19523568280614,79.68406216522092,261.61272772607157,37.40996964401023,90.34135910688148,58.24634068270969,122.96760428214148,65.4445624250488,62.656671584973,139.2086420868423,120.97760828435479,284.1264195499492,53.828672128321756,61.70637380391877,78.2100102102443,99.71578616637943,59.702561179434525,91.63807230373388,231.67139092560927,232.0404550972558,120.34421196579493,241.10427166655404,57.55485916065368,42.99606896419742,295.5620597372123,198.75932006566782,107.74093496637863,58.47856127449836,140.63772809541567,105.01986502087823,111.06466973823944,75.10317966926848,339.7594925976585,113.04389888243294,90.97207379208744,119.12822210235568,82.74414557783048,102.2372283493345,148.99564033319226,92.90760253735546,45.7140192807425,41.28244060289215,56.47524900154297,59.89814793342856,46.13064732336362,73.86927215546751,359.9360375835153,177.30168380917735,56.44045616315735,187.91110831368132,229.14045254746142,237.81417890809237,122.95714615789265,53.16078117062525,137.17165461753547,301.48765687276983,99.60614927649341,49.289551775275946,177.8225816681705,280.85843597820866,49.05513428888498,51.418471946261036,92.90785088407128,181.93471293965052,92.07666831882368,123.61860033340785,62.11452517915052,293.8168148152587,107.74027284389759,134.7552426239033,165.43870449895783,193.87022692558816,192.89793605697588,72.37746894617119,77.85412355238972,71.2890097248435,82.32065416277271,186.61548377314827,175.85619120089606,59.99841691374576,94.33236681681309,454.99021825635145,105.42399944403932,30.314465812187795,135.9145879107832,112.921216452075,164.39255012079798,342.1068093925494,64.60067379272994,205.85005418358924,74.8335109066342,84.70983008280777,141.027237650165,68.73388651011552,95.44358305682326,47.12822079139434,105.61010586630957,659.7771684644798,167.36063352486715,231.17209919935533,95.13030318948978,121.74024519933839,152.14489062872852,296.8751200544336,198.67230921373255,259.74712715904735,98.61922792562399,122.43400718060951,142.80181137545196,109.23729416541377,220.56250346894868,74.45254680688316,56.71099228782982,190.8339038580361,103.11348339306993,123.8241871499102,127.84111876916921,300.6547128385381,125.74200905062835,60.61475729263932,123.21762788811657,42.1458899176927,166.25365980063722,91.39357221677281,38.24268439212529,61.84442640796962,367.5386361033091,66.63026999186307,95.02442128929974,22.141562533493886,322.5554292912429,66.03209336743834,112.5681942525867,117.63986317479115,122.92207364003825,74.25421217722734,268.02661218236625,60.89874096683391,170.16866935405181,62.3848865931919,271.8707074491125,71.03309020555248,82.96823711897272,167.8333573332182,82.78791825465373,69.99147757314284,77.05154624273038,62.21351812028281,88.52101645177488,144.86344211919695,85.39402122534136,104.2353107919994,48.623179719575425,52.54798002838206,148.1662653344176,116.07042328595685,244.4576476056288,117.87183613285538,184.08131898320124,62.36608935588456,113.38108420912597,108.72148379268152,57.51935391476578,331.9852870525888,145.0975001878639,102.4639672320118,81.03028378434472,81.09004572699001,80.63153011283597,139.54497303708237,432.0839760234774,114.26676512324082,215.45138273730203,91.05789693823463,218.11427218867476,132.51745516470217,147.63135508441184,106.7496504106074,572.4058694038137,164.68258127910968,35.10964458990747,117.64388462652349,61.451343953465305,33.79053117512312,146.69915030655525,64.1890833517918,45.40239745975598,90.94391974767912,61.36658925505734,96.45281508327832,108.10358765345495,59.99354729169712,49.19789968505391,69.59881008006163,167.09518790419958,137.09889007585386,56.61197432390887,124.28668278952088,338.9318936207839,54.690723073745,42.21790250617619,56.97050186121189,84.95563941869827,230.1371633349405,93.2614293009633,166.71666012817644,126.04509504580233,481.62213806938206,66.57667875075299,230.5100188254054,106.60510604497429,130.45278620887163,54.85017655501968,113.33625806128947,98.46292563742617,65.74448813779192,71.901051121922,52.226044755428106,68.31234252414833,34.736875618973095,45.55497984759581,75.59489857090846,39.78641024333365,45.13247048150906,113.01172387454086,124.4643099750711,115.21981616077765,119.76721830116433,50.83171074150586,132.70088030554152,62.15295205156056,109.68485124960756,128.1500381122866,198.73881809620494,328.9747619330716,67.43804920162523,128.74476190106859,46.65089320729281,107.04154064854059,43.067541668647245,178.19280037996978,61.841531704391045,73.11893857550051,102.63117026843798,203.84895353894473,122.97346985369704,195.36764755248078,49.97178457810863,113.16214311421581,107.71625070982645,196.37721733453807,147.8847451261279,123.74750457289554,163.85305805153976,104.68448900482811,117.04437185193268,96.38829457981221,220.2552854034754,91.11416871680724,226.63417752493453,50.50585021006548,73.66282650739332,55.10027916041852,331.6464393921353,67.38755736271281,49.925451594364574,91.97843931589284,79.79184444198607,77.68489608167042,88.01577352915267,230.5681053664902,182.5832165734548,78.18521961277028,46.42741988652341,101.8158557512077,98.53179684452078,71.97269049616881,253.00188846976155,79.15250120389904,72.1408828728284,282.1944880061496,213.65983698878932,73.10625350026051,140.6977007507484,164.8868954440279,113.40293692249374,97.11310841770823,122.62921823364157,58.6602254612034,97.05832085855299,52.099904508562446,118.69078326039028,104.03822563839634,39.05290901784101,259.7637406007957,79.78785152887309,53.11124133026981,69.71515065929403,61.54325689218999,69.3609104821189,142.72922246175273,442.34037450065523,208.33131112139418,151.07670708946483,138.19189985131837,145.66835698955208,192.2732889686843,74.31305939135491,101.0231995282903,85.24703834714805,43.998257029102504,77.62036871060542,93.95766883663354,57.84113578266368,287.75849371262467,506.62457193790146,78.1582475704498,101.57902715744979,191.72312880311247,185.5525452947092,48.58316592603749,124.77302309886801,142.65353936040205,113.8423792091049,138.4727504421228,82.50006910424256,52.75630573021901,112.10052777632362,122.40175439157774,113.49560372395497,217.40260500692366,135.23013540065284,92.44584153142101,149.7489104400724,222.29021968651358,278.18629779910344,96.3932344338701,199.18653503080725,60.968579335766435,85.01784498909917,292.6843975347687,99.59690851274227,80.70260937445927,82.29665642007677,70.34595898706259,83.68183802196742,68.58343527692645,58.749372255629844,214.02266424968536,532.269801841258,198.89735057923806,152.1759748957096,74.73109196136488,42.56433777920422,70.23137828643073,108.64655328454107,60.59859324495206,108.52062464748347,91.68361103169029,47.4526978511539,80.61255872393211,45.2746298250232,173.16038310814315,229.78746820783206,236.32907675612503,206.32054402280818,356.0435418296001,150.4418119606746,65.01742850123966,57.3957456750294,85.97346865648535,106.22785900726973,181.2292721156076,348.75357254560515,112.26734371654318,177.3972019266058,130.92718836263137,76.20512130120089,64.51818223560707,246.0810571672311,218.40350355439372,183.44373962247423,45.11215682040796,76.44422561903951,122.46961592408222,105.64826364916469,93.62208916186337,311.41261467712764,131.54063938160763,58.71467587541071,123.88431540404531,142.4127610997764,89.93998928944224,251.47963070804656,88.96580471197045,124.10124821409126,44.32380746040289,58.28672928489018,183.6455283919789,91.21939721476058,345.88046527932937,153.73628847900184,731.2826463490222,57.095453613678416,95.2158893635122,41.37262560821345,82.49516018617506,109.48271717634304,64.14589016810503,69.44773696652193,220.2054462175482,105.3563175533798,190.01724549567587,78.78454497493,125.88721715409785,212.82389613078246,156.06344513657572,162.2465305570283,110.60106887066813,141.02190337379244,152.52987107915513,120.745297702954,126.0583461168877,107.30974375365254,115.27728011626803,64.58197551055838,137.19074822223445,98.33235007484933,78.5749251345784,87.9092169645431,67.38517209973251,126.79755880737058,66.42082805117853,115.56676394888947,307.6481494230618,99.65216647422011,75.10935306504459,86.19182727076793,54.89192241697335,119.03230127328747,60.978266159516046,238.39734405602837,170.44486972684098,151.90191299353916,100.84132285937692,51.312244821192955,103.54083586437281,77.74849063034432,132.5215322978837,140.056339362299,149.51364971514545,355.7074254129494,72.71286807939572,197.01193260383357,447.9097661030375,135.19757149471897,78.7625924476226,110.84906842368339,186.00487531892674,347.1108249725407,94.6743679529769,119.94796140907218,64.22572086944399,111.75064679686699,76.92567315767054,295.37722474075315,46.1343213685345,213.7258285822347,68.67028052352417,66.14501972327427,102.79747104508144,223.70899397906635,51.59472901027237,58.813280719073084,82.4065961798666,61.51457597542644,62.95740637252468,528.9229512057401,108.27963808237934,162.7089287037592,221.24577819253432,62.0010887377118,128.96643769830155,60.914545052413054,144.30770032745102,157.68537038205008,74.92770149803957,128.54840230575252,160.155291839871,84.43108601263853,89.90474250208786,95.40420678041956,53.56498613116605,61.62741898270447,87.09291908726128,53.636039669838304,76.44303039951588,223.88912945899722,121.76433582295377,26.952793026765608,89.31108414937465,290.47340431352336,72.91789123359227,160.7382996035573,387.89470217248055,137.42990078162774,117.0041824040494,76.48313953578553,77.52137591235102,322.0376115423571,47.586488225039446,50.65573206927659,291.8766182008008,168.4824090688321,245.73185296235863,122.15328847377937,45.71816080330605,102.18574088882359,100.20445552066516,107.21791750197492,71.65255890975338,57.19517086868798,294.04299039160736,132.1045721168057,108.83098376354934,149.0707276873257,76.87318459472371,73.01224816826937,94.7500307339638,161.70536670271358,680.6919542330752,72.3702572931495,53.568488260603516,170.9372709327528,219.38195145104564,65.51804351048436,89.64283251094948,79.08764573652111,253.41346645708265,57.299658372392315,107.3649418773453,559.1248242140746,95.257521209172,246.81425382158298,186.24792067188872,71.90499062286915,135.99210507787072,179.71234199252498,128.203563328509,98.13407160083179,48.21470628407826,80.5433839378533,60.87874473460261,66.41237808831357,149.00690545669624,143.30974464046525,110.29505361467747,51.47784424602046,238.41779092992954,237.3218529875571,92.67951452232198,54.077660573702865,82.9992795055387,446.69188476332346,41.07668750454269,137.118725522228,55.63915224215027,132.73533919759038,229.03249143958277,124.193930004789,224.15896146081744,111.21748235823928,167.98511586612074,64.87175966021714,362.88236058257354,89.34101556199862,88.381611355594,51.011108138873595,63.2720455092507,171.289488681601,92.42694766783325,102.02668571481603,172.38518794009215,66.12628334266971,68.36919854997937,90.95832885393207,100.36823047454462,114.5447664312456,126.65712262340521,70.95088108977069,79.07126900002419,427.873216807923,112.48441590193616,65.78351204591054,60.45732729890488,115.04014402710011,83.99952110637842,154.30241076927192,74.74268583080756,176.7331155184537,154.16204408161812,109.77440360429281,196.07814450990276,83.09934874423793,71.16837736410194,140.14442991822466,263.92812416108666,99.71091881121043,170.10133343213812,99.60056397256464,127.73466428153438,179.46815976571418,81.00026260634932,124.37086894982687,39.39761395072242,72.23107445798827,112.9134475715114,218.93103280520398,99.36275732110676,162.89278023766872,130.03476856533277,166.66098864571794,68.37917333519832,57.37537760268401,54.44414998066403,130.90713194139465,108.45204512323812,101.24885838978126,46.130720924327456,160.89637756747518,76.23723281895572,67.46491733090795,202.79439084773617,114.69848272136534,65.30485359090132,149.8169463917517,35.63167588980741,96.62649438273256,175.99861926891742,85.9736734760838,76.98291119843279,67.45673128276337,143.7223184285057,117.72769052626164,84.28121403415389,364.95369111082596,183.7049040212845,61.41216288504126,118.88705222492912,314.43240763309177,117.742666367452,37.30374625065818,72.11798937285197,109.1009959171495,142.1149618568044,143.24578083420744,124.18201642354536,79.14178452470945,28.209054489543483,52.96295019385205,98.16004276708185,78.78654435957758,133.65698985596825,63.10051089458051,86.42984840831228,85.25444874968746,80.12611307189822,131.46537247716498,161.9612574042587,86.10551726279277,60.75452231119406,33.55412806147118,162.71593960700258,68.86689076966188,72.45593528338964,52.74157768636481,129.6719434202408,150.56578669841178,158.24740237430552,259.84079235498314,152.175594715137,53.72624766733,508.93941334279583,63.7637229689263,82.52185419407154,151.61830306265193,69.55274590783009,63.24402455420025,72.88845504122266,69.17673417070722,81.82373231388151,222.69395274182028,121.6813017715993,192.44441525769275,78.89667051580726,56.13824847709434,205.01647358631348,71.43900042651194,167.95415794769227,90.0428521899246,64.64285349729026,92.11588375128558,90.28459371014605,111.93598503746445,212.8416238252136,161.95789190226446,216.06323437307307,160.61488196283904,307.862859317506,109.14185704334186,35.960953962146114,395.2145111278701,137.55460519275636,182.56619046761296,134.8966653871753,110.54477042183088,128.19633814669004,200.36935401713168,41.027897546935066,202.11390543118694,230.493969035854,210.18100169450935,107.97681527336857,311.8758337494261,71.26471882005612,50.88238993405206,61.767316319614764,129.80183025579078,179.377505221353,147.72327490656215,96.85969051143105,104.20221289938674,63.211235085735666,65.03078960191601,121.33688831422927,187.00056820627577,193.6900790088459,96.91327373472157,99.60100965070417,53.322284318442385,147.20021073578857,38.37222418859943,149.9187855974655,122.59223405650314,140.49764690011227,44.20269418678994,147.9342371097328,61.05006512562596,162.09433859658728,59.30458053544266,174.74744387992035,67.892604847696,588.1677606872287,57.91866342204744,107.09493559423626,151.4245086863714,67.53049008353375,456.6097617854525,121.05089102850249,114.68050207150881,94.43540616130171,134.27686448054592,92.57970244619253,52.14001846119899,204.43102792832858,86.72445566054589,347.3050025075498,61.394768507760176,184.30181417205387,118.48894455373134,86.65630937695332,106.61298052302519,63.682408116819886,181.6984018603362,91.66236087521732,127.54992843824596,79.6004236084082,83.97088698409473,348.6501277916813,210.74241170210908,105.9532651016233,263.60688571647285,115.0805089052383,190.1619238706532,177.25613631635355,81.27788159681846,92.36332940404941,66.56997004484182,97.71443010650395,102.44586972061425,98.36482167076561,62.248423584439436,222.64637863311137,316.69100594477175,57.622044037957295,171.78517201373336,87.07910365852803,109.53851866019247,123.81656511111993,111.98977603041335,297.55217165057564,80.30641993680736,138.66378394678708,83.60953294901226,96.43983855740196,39.330487808348174,47.115895657165744,78.16059987222052,122.02479188160054,98.04618712000882,31.324122221747206,88.41270158196956,93.38118511160215,50.290324304735556,83.45364010375982,39.32298166502115,97.87111637706963,169.76459301669394,223.09916211810062,236.77187511750955,76.60598463959498,93.28971230020883,206.2963215862381,49.437795489993675,162.33501868497117,76.28958670462617,118.06075037422303,132.1696719248788,56.001827286544135,32.13066170492365,67.70395399482784,186.74037627111383,44.37870635112493,118.70673055286856,229.14187357072348,50.60698397565926,232.72174538359164,186.30083584489793,115.34636446736822,40.73807627306861,87.68486041752682,44.582633284715605,146.20321507989613,82.76796896967335,191.63526474614872,72.30478568535055,74.98914431074631,91.6082700860642,126.39712929799849,55.39607649331907,66.49680486447504,57.09984041924129,36.605159233381286,310.89851280849706,217.00542826263833,111.71302313682943,88.9564689728699,171.3666494001789,103.9212389345073,77.22573385237568,223.55951616526053,72.68162165517819,241.3405066459779,171.10522280587512,91.44725912467007,57.60433025161566,206.68090473376657,65.06346959201663,38.360661338549,59.81384341557111,508.42191883476744,143.89604319505597,57.72748263022182,218.42163982308492,102.92382229581096,42.094722004442986,250.00626020408657,111.39628852500012,116.16392700239554,66.45842343484435,94.58208265821588,38.06238459664622,61.91340415902265,57.74025201375181,58.95524696852647,457.4651607094188,93.49796971004092,156.43609978580486,88.10125280450774,60.24142638517448,56.219309507718066,73.88411275894136,89.94338686714593,48.09114925502951,206.37302147232202,182.7724159671351,69.9741478493325,89.96123773687577,63.14856672894844,111.27994708745524,58.410189939294874,94.70113642271045,91.11834398211523,76.68848274192233,191.63917310943836,149.0088712660677,135.3157045160854,90.59238692619563,37.91082500418986,80.9294472665283,128.43503301292887,97.26008076654055,51.66991514495811,250.20995854937897,221.68340379944414,141.65626425438555,185.78696339757397,111.61026366088387,167.00986447098265,100.19291862910296,160.92104868111105,141.95772017913782],"multiples_of_cash":[8.277441139626943,1.946213063857885,7.810084925650843,8.08630177903228,2.1669502724257845,6.685516434215942,6.5374795662223955,15.115120797434827,1.6797398432864075,7.760327359253082,1.7736091295481042,16.26873059595426,10.389418066311247,5.6676982845917445,3.2941141706028065,2.4352796132553047,3.4200748960776504,4.595326537655143,2.6440870207909253,3.8090126303928584,1.4381988890539688,5.639226177845534,4.091396657556239,4.93979126471667,20.42406095050915,10.668066793753768,6.917474440139645,10.1443899778369,4.188999989880352,2.8412184138389467,9.63773197269891,6.528395371795809,2.1168649906902233,6.535603269327104,3.4789029693209144,6.237063532770478,2.1276118699987374,2.3666085091923534,3.983602800848896,14.683215755563207,8.838968044346375,6.016896935137296,3.460859083654974,7.038541165573099,5.827717851747886,2.1353909445735093,3.464250662873,3.225293615574855,19.352022388410486,4.9746888505677385,4.065837330378036,4.861932480658289,27.19259725472763,3.6356469871899297,2.9933706366767283,4.620488411718313,8.761092579253438,4.636255500311202,6.487771563742965,14.494097131849193,26.56471563936983,4.1134090345417,7.406550776747631,7.314290439901798,6.920115625489168,11.910328248707598,1.229390771781367,19.48119909101742,5.7139556971451375,5.716268652780781,9.74939745868634,8.53384967400606,6.357432004732039,3.746101068869882,8.838772678188736,4.997421354674435,3.8202779148605663,7.801275213419718,19.28277116653565,6.602638945350945,2.6349757282732904,2.41827607524639,3.003629894868162,4.919958732869794,6.455097994145144,7.870274101274763,2.0058023516993897,19.98672807915786,5.1706793924239065,2.209132317401166,5.950116736977978,2.3775997420090635,23.830578281184284,7.755309922224745,18.917210043776432,4.707545559520696,1.5119816743002343,24.886695218414463,12.962762483503797,5.490488246326763,9.857350546528377,2.5038824913370004,15.875783615227927,8.370172794184635,8.464780143247804,11.718392621327624,10.924280559650517,2.5950986584852758,3.825541835221633,4.679364366436846,3.7311014793832182,7.331700152002864,3.266696112930477,3.4736664152656833,2.6590021150878616,10.43598307550014,2.020378933880388,3.455487236426964,3.3437226621009266,3.062041211627664,4.315052081897057,7.164451445547433,5.73348196385576,4.119543689673046,4.60237230747269,2.8743821850072355,5.118369760237275,3.863061357114294,15.193429098592015,4.354143156349304,2.9223679794417485,13.083791703810055,5.864265078702167,3.426300536749929,5.943202916551707,10.470343074430817,5.32599040788528,33.727167320411546,3.9672451189985,7.709313041194955,10.295107861104905,3.4579175722411524,5.140098949354295,5.010398608487683,4.201543229782926,3.3073879153952386,8.804152545528924,7.201443229764738,6.840187945008776,1.1844596700846952,5.062167167601046,5.039635708681939,2.6837738927099375,2.2186292101056697,37.593118214405386,1.9954883318226966,3.512722983920884,26.209422982277008,14.054786917905853,10.128428473051677,4.634958353222993,5.637463632634909,8.426037760900014,1.8528834112333268,6.948956609175737,11.595579618004937,1.7974773637602455,3.6891055449736125,4.687626004544901,4.867794332509387,4.1748701043038094,4.090651838824596,4.667674665202595,1.9331883653216888,2.494554326722211,7.041714295761854,6.575075287898614,11.18558812339097,10.627386200039902,7.829525660493133,8.82544881756103,8.294825462778718,2.455693568197884,6.722939802283724,7.536897518351638,2.4094978722558396,3.1097285661914875,5.607377795370767,11.552097561394799,4.891782591200161,10.837952794668977,38.36002622302118,8.853799722583835,11.24469712413202,15.044478423288586,4.399616544598243,13.428426419873167,2.087499356324541,4.189426758542075,8.04178967171662,8.081720598713748,22.616821430118648,2.9721641469289573,7.928114826038224,12.306000165152161,4.269396691324064,10.375174160892627,6.908710363703667,7.119753094984806,8.30216220359881,28.467082196257866,3.834780279976737,6.274920089716164,3.737666386926088,3.83676349015375,11.87177944539653,33.55104623369264,4.6355472829832545,6.696864978018345,6.063833586665493,1.905942538472671,4.671679159865211,2.0991032430425656,4.4273721602588365,4.526778212610338,8.002122672783175,34.750557187669365,5.229873262268655,7.803087420555033,10.63439054561921,6.687399730478432,3.75243478693096,12.463570704556343,5.32093008396322,18.845505919981882,19.33621486874702,4.9968813403584385,3.0148706072349953,7.954561749649207,2.543465737283326,7.938478960901975,5.26486471986098,14.137270946242447,4.865303034881814,9.072284852441781,6.616119717902118,12.205946261486673,3.0261875916892524,53.302801233809866,23.673069890516725,4.167993022547864,3.952186983557547,2.604007752596152,17.130859691152477,3.6910215299023292,6.419993898342632,28.167998399587166,2.065736757806404,12.927260053143382,3.0803900881064807,11.915391865416554,16.81091795085801,5.856607163867411,2.7785126334995773,4.436032950349262,5.984123531253492,7.6516649811726385,5.282927117607272,6.362921500135069,4.408077583545691,10.965722917653888,20.0668209304204,4.6835872211657446,9.556760306267694,6.824248370984002,2.3298148881557585,12.6906827909355,9.949084587258167,6.518611653409375,6.393921069460316,13.002310159281027,2.516323507321888,5.4701495588586875,2.9015680242396242,13.603771825749625,29.139167196475206,7.004253748287636,9.06286760022188,4.4678108574091215,8.067567902145663,5.302537104518777,5.8612186682862335,1.6389173071688699,1.2491611678463836,17.680833452354978,5.346075701812121,9.503324959503102,5.9176862347297465,17.03137049846842,7.713540204473114,3.3206786710866125,14.105867296704302,4.725942167473447,12.684105602691272,2.5306261669555994,3.4848929831733075,2.804967280809135,7.125283679754757,6.160926204197366,8.079663891551979,2.0534091775197427,4.5853441801602015,3.9811583536839796,8.268448951037154,13.497832285841929,17.819215112917963,8.984044941059437,11.01177716262646,64.56842830867075,3.200818296392002,46.98758408405109,4.071251997291031,4.729053706005272,5.233727497015572,8.928223538605414,6.642089651479256,4.2174056615736815,10.010937535885214,14.340708283990809,11.826867016814717,3.1434652115075234,11.600013602224942,5.681909430515688,8.629158915118282,7.650547966202994,5.217986320669859,3.813621859366702,4.013563097779444,9.406645305311338,12.885914165311098,3.4470140163330307,2.7079524184530106,27.578530406001068,14.74310423560278,5.5233097709114265,5.90274578971655,4.619491094797825,7.086762923366315,7.820685992751339,12.205906515527664,3.7133634840809924,5.398386734475483,6.963221485568886,9.420112923573988,2.0986429447255857,3.023535039536044,2.9674412555646663,4.90791484230061,9.441585985481856,7.383255952965066,3.8797597262300254,5.083027059343743,5.677899228925242,4.0158843312454655,4.4194481830715,10.371803916592853,6.438045795241723,4.874503304813999,6.131001329336735,10.094042466952647,1.9642819088045327,3.4214045615297017,6.814407505339186,3.3436627794232856,9.392382763089518,12.676678539488954,7.120298810858882,5.143207507299862,10.0981893889329,2.1307138827323375,5.748076117912221,9.424521709132621,2.862801660054062,10.557464259030986,6.738044269119131,2.374438601719371,2.67404972522341,29.98556852731637,2.8046015842875462,12.476247317000782,8.565495004734997,2.7717376026909983,3.118212794267615,6.567562057646659,16.896806426840936,2.3624750682975564,8.936911278028157,5.451737991864677,2.247965293715576,7.4882632811785275,4.506644272296527,1.3443870477756394,7.076176870369048,17.382247858309352,3.1362646754205032,5.92473826792288,5.045543280933562,20.020605916860116,14.917899070374517,4.07884939860474,7.707252600545162,9.594878049636662,10.745046600839933,10.586790575110085,1.9729607329190335,2.996953257380682,6.888739318113133,8.400473816248267,2.162507781794821,9.578017025126234,6.187423683349661,3.336182303807354,7.096491139655355,12.153074836842125,11.168377703275215,5.646771917189397,11.09294069150318,3.0621401564887845,3.5906530687346097,2.9046078130991573,5.297398687047182,3.3938929320355276,4.725962381170731,3.2860684347318094,4.990460008810784,3.0841548962546703,10.317216593504744,3.0650627853489647,6.2519577755440086,2.628056975744555,6.767135286064396,9.443366756170775,6.121888035140739,10.220375568121044,9.186680943108279,7.538225117476933,5.763206405934177,6.067905466132115,12.361510263027242,2.3828810669282126,4.047167414501846,4.407544177823805,34.95620808220033,4.859856378981572,22.929901826037952,6.171424029723701,24.90380616332692,4.736896836775973,4.628844392018197,43.48389511943452,5.706827681318213,8.82122614569152,20.710572737925457,4.012325521839571,1.7531167719185095,4.7774602368514225,5.932851315501749,5.235387854826694,10.379262754811055,1.6573622190059674,6.7906912367464916,2.672845017065136,10.710681008059973,9.32928426043469,10.329721646095726,14.34685056047565,7.752024067464447,7.41321472349651,13.897970518056844,2.8076886337346454,2.179284401371414,2.3837137084576328,19.64025110559311,4.371527796339978,6.477429794580794,27.47142810966769,2.1628433895012487,12.00659858795281,3.974940348563587,2.369704651270543,8.54030506523498,23.023313060180303,10.25195000494052,12.922179612831288,4.244241122200207,9.635174852579256,3.4444172863608733,2.1801017581528375,7.724348437913683,2.1223351840150033,3.862447422211639,1.6361464531527128,4.438733399203694,4.392239054502065,10.819677730727118,1.8780823694217177,3.973243193855222,4.094292212939279,8.693050368316836,5.008570856047022,4.739825489190302,5.342061421814845,3.649134908895979,6.552123511821383,8.684935939805658,17.349430945716307,7.464247321824287,3.6604592974585555,7.156726821407691,6.105301445665903,4.718432661433464,3.25301590081466,5.812179888438441,5.252974726228727,24.44845486041866,7.7353459005784515,3.3902671958635593,5.698342146903358,11.906066122667564,10.40608542213171,6.244291337461818,5.129736983929565,3.197223007377706,1.8412630984881355,7.087194272023395,8.801662458167844,13.623086908973079,4.253013904230937,3.4337923786324143,7.840480435677856,3.0138111063272786,1.6341895141049125,4.210390895609184,8.804995995851431,10.163890222404651,3.400013536729016,6.303106144091595,2.2949142906352344,2.065104101236057,7.837073279349956,6.733021310715818,4.846865511357662,7.168454736911996,8.079117903034165,3.0429091509934003,24.512530389671753,17.245619535307394,10.304011599682854,6.631906799367084,3.8936965901255585,3.775133959055677,3.0676519305169196,1.9550251685858404,7.888646385864902,4.236457909479791,3.4523209462966333,1.8576005721304036,12.673342591061612,3.951046693877267,6.294914918019093,2.4600667467658686,10.80493024575765,2.5542922113205506,10.390614619925477,2.898980203888308,15.316919879658203,17.496584139246128,8.699674308300118,8.150976976487737,1.9156045078663473,5.109802733109799,5.989434624084201,9.42414022054415,9.436919102181669,1.5572166488438013,9.29856900442958,3.474546264039111,11.503482431414367,18.727545913789648,5.202240604085327,6.744240687851034,1.763948338386944,5.0179470424894905,1.9013912710118177,7.996739994418928,5.22957900680023,5.68116572909378,12.711242792837616,8.366916919782579,4.20954381720524,8.862579949132478,4.500458746597963,13.128542359434023,3.535731368506806,6.430806131607794,28.204355080604042,35.75447808915495,24.480670509449926,3.2442840624278695,15.56859955435779,9.735889425259286,3.2251378527463643,4.980846165129488,3.8285643708341763,6.773837909780662,3.7990701554457296,7.729102299139161,6.751944616065288,4.953082571064547,5.334509113628586,11.327615160479837,9.108033830118227,13.885525056094956,4.07399289799499,2.694453794838378,6.053942228073236,3.17785090025192,1.6211164657023487,9.915124258898764,8.519598105856362,17.754105389373237,3.3599161420929846,5.995549398520245,3.4860043750643843,5.003430272748672,30.20063331034771,5.427624630090212,3.4863451173340008,7.690979322604956,5.036826658780893,1.3640125506925038,5.000338961475134,27.77148321572677,5.056444326090518,10.05103018997256,11.753472197710538,11.141979479920115,3.044660026761413,13.085513996225398,11.941793117226572,3.4268169526530006,8.288666349518419,12.580731333542632,7.649677541199325,1.9707645268042449,31.769830515728664,4.3359909164924515,7.64962002559128,12.187542965259961,6.595025067217811,5.5934451526300855,3.773370136127624,33.62258040277413,7.525232272687204,7.9218335477992845,15.031724011638234,2.038919847620643,8.055812567079249,8.668220408886329,13.0369044390363,11.222737989422173,12.160581704643175,2.8392627036228917,4.95330722270634,1.5573183079861168,5.031043225979752,6.137191055444653,5.584628559114704,2.8162148104318097,7.327489581221904,3.877844171134547,4.990269586289453,5.604422337844884,10.985929355961236,4.486944951806517,3.1566440823198083,4.996887292593769,7.39063895344256,4.620648056118075,6.484020156418217,6.991265364792589,7.255696331091233,2.2332410431146084,6.935363209643641,4.338307545009432,2.1758929808559637,5.419305432147273,4.4776807395162415,6.618174348417227,9.206558752042833,12.028008858694205,2.5647183634218087,12.180930184820623,1.5863207195429943,16.716740113221604,7.438166716885851,20.424582988876274,6.327156501549382,6.5561441923930195,6.606156417985131,4.924201298172184,3.8046235918698748,7.015015821768281,10.2604283352161,2.2855410458050893,4.061337720939997,1.262447849489634,7.438267938745631,3.803265640172207,17.370223879351315,2.052138369619176,18.723613153987603,8.255390050789886,7.180367995540437,26.227641367011834,4.065699543151521,9.553653981289193,11.472739882030838,9.904097708287944,15.15070056881288,3.944032019537102,7.709543377472037,14.789631657290313,14.183948294872806,6.503122272550687,2.700358145956643,11.003087803698829,14.099843845019903,4.279810332010788,1.768315549854852,8.695165793298244,7.040528157246917,3.5116365667260805,8.294931657361582,21.3640124003449,2.5801206391381823,4.725843169967776,4.681157743730806,1.966839358952995,2.408293079576552,5.831334526496673,3.0546526520969692,3.2845204952957237,18.166468898747052,5.96198686823152,3.3606124493702354,2.782574208286969,10.640769417977783,3.762419436535438,7.096724431123039,6.913861258832309,9.161972793494805,4.3503417676705585,3.9270734522304096,1.8262002782520521,3.249449905667184,5.43370193858709,17.147530614819562,5.448637907670066,36.16836690789663,5.943990894521789,2.428361199766726,6.969985043729017,12.39095368667919,3.959438067135204,17.254739087369156,28.006603676620404,1.725518523035319,4.589029019921947,4.456698313584699,10.886253317493335,20.67969754794063,10.82074723303782,14.879269951194939,1.0054249666985642,3.8493168128851902,7.564948578677722,14.07845076588037,4.57418557663841,7.045206350471505,46.6664070159645,14.546155380647184,2.0515191122748,5.573420716871957,3.838709416026558,3.047828671077616,10.945296043009,4.418249500872198,4.7396075252639775,3.097402075692284,4.502021731587593,20.749698219385852,12.624782011799068,4.311466332587459,2.1421699008216515,7.181715166934493,3.330814523601129,2.1053511533383276,4.484209050876232,32.09545675671961,2.897305666384111,20.138659030288864,7.31008781067368,5.87644952890502,7.243679682633913,36.52310499950258,4.960099810265651,6.043026013159708,2.308332368219825,2.8314362378997013,4.443922703289955,3.1122929935261663,2.9645126444337584,7.554692384695358,11.321729746086753,7.4624093073723685,11.221465889502639,6.347599816782364,6.619442496681909,6.063618416845847,42.044136179356585,2.3282263264960577,1.3036258844655224,3.633839788597217,10.149164403752005,10.218125123280867,5.635965202352711,3.552537303523142,3.5987880912724943,6.848064677229995,24.838712366190542,2.839142642033007,5.23897533017958,2.6898083080351753,3.326311736858407,6.366330682579676,2.1935956364404117,13.395120996364977,2.2610680575112188,2.7290027039594538,7.216655557264237,5.947140815749103,4.915085693731623,4.3977216954395635,9.452427888955533,5.417890555645422,14.146644538496627,18.73436919334887,2.688799556365771,12.631477172598823,4.386824394728476,4.103380708253767,5.839208709541354,4.803768711735544,13.374588167042962,8.297301699244162,7.229344829418834,17.827690312187432,2.3317068036840656,8.315435150711954,6.513134749954292,3.4768023748983516,5.5938643083205415,6.3589123460806025,10.596485853842706,12.643053780118395,4.495686781378542,4.282893421610362,2.912268702926983,16.16996491761517,7.5503052433162985,7.28958887223494,11.278141521443068,16.10371315058757,3.06876426479214,7.919597345674917,7.698442929171993,11.211540098665699,10.426233375801907,3.1595481106554386,11.172382100039307,6.391824637096586,4.976307817362236,5.719116614880126,3.774227442578342,5.513994880935314,3.8942770529870208,11.038924283926306,5.653836231487231,1.9817918810248145,4.191434757173044,6.08498945348544,8.799169493348197,4.5654836856828,5.998588034387611,8.150774023262386,1.6593425509385635,6.4299468951777365,16.594861895876008,28.287553099581714,8.591203141401849,2.0833511874688484,4.169789488890795,6.342485630650386,2.721020723119382,6.204248359860742,7.1365838257823135,10.374282659005065,6.631881029268004,10.58642696626575,6.922264796354101,9.784236748534587,7.209463625983043,7.130819443200529,7.914087315044019,3.336797416756057,1.5891955557104462,15.323678460383178,18.418868358375175,7.240231929303946,6.550561259584689,16.768525606853018,10.596463874871015,3.6160183281956324,21.656215442481905,11.324140147950947,40.47984243449,11.329131092789707,2.2803223809726485,2.5194716629640292,3.4387241898036414,3.0595649791606028,4.8729880649837,7.4005267689614955,5.65985801972544,25.598555630545345,5.556946644584766,10.707516426787754,9.593844424033474,2.457282218974472,6.950240904610101,4.190760604758134,22.865430853863636,5.4782943378292925,9.695152427576971,2.948622888996088,12.41708908161685,12.587108889584409,8.405961420689566,4.288669431660981,18.78344603979406,6.040450678611759,2.889882003164525,13.305326484486828,6.551999094417473,2.1390424063901876,16.390022741954013,3.6939240988624227,3.164630313258057,6.675916932480963,5.916657025071576,15.975587500419406,8.068712733218558,7.824770286755513,10.996033170953849,18.473254144774376,2.7108123308944587,9.979797118760997,14.874006343534974,6.390513683778402,5.877175149671187,9.465516768215616,46.86933949146074,6.347018818048945,13.119045196560373,17.599143607089818,4.004826475988907,6.5776950203561,6.841922301044357,3.650848565978063,4.996542567310583,3.6706100623019413,2.51574823306827,5.116955447689994,4.193209043937564,2.30195800090343,4.043194996533364,14.888387210389377,4.1330533207043745,28.72264797469898,2.7243858679994895,8.912364501631815,10.94580630620763,3.859011360828924,7.038368041167034,4.4785820141400166,3.5504474370863335,12.562962096569443,6.0810041153513925,8.187281566113501,2.204158824017183,3.914732624666663,32.51242081625414,3.887543990662372,7.694087799755075,12.609167585872942,6.569438622539372,13.84791753524242,12.050310606045608,10.464892710224394,2.777298123524989,7.5087203186823315,7.357019717195736,3.420110419608088,18.38463260226957,7.222268495597981,3.4446694702587397,8.045780753019644,5.042406178018285,2.7435611058368754,3.982503754324263,6.461753512798248,6.779879621551761,16.488595491011615,5.6228710155677,8.090458127897941,11.063838414260944,5.549217849540519,3.0357232946384407,12.348810976112752,3.0694686200295407,8.222653887018126,6.84386808575571,7.648758919836357,2.2180332457411653,2.6724135710697694,18.797877746871244,4.7631226742985024,6.245984379176858,3.859325532492178,5.403569192356413,14.788871271220849,25.906619735590102,6.018887555135716,29.4072945261664,10.455487136948356,3.55842516830184,6.648774561863343,6.503072838191993,3.580454446540258,6.442372712172234,13.596476396573584,1.7844419521900912,5.589772933266345,22.453171158188745,16.782408602782347,42.288318797956414,13.205572990608893,20.849302671319432,16.238167693898642,8.512049544125645,8.93037383439864,23.082565722231536,3.113194248625036,16.353909747749075,9.717697514921642,6.120685860318656,1.6318105676350725,15.804622207550203,9.77271535607386,2.272703147558304,9.120604918585759,3.1342227817187407,57.238006306928554,9.042957171318081,14.881265877557183,22.402880884245636,3.8462909806279786,4.121535397341812,3.544052833148973,10.17120531427444,7.641657190363568,2.2668240968883877,21.30718926387753,4.136217858347339,3.0757318685869772,11.368066382045653,3.899128172364846,8.074856796366634,13.767154751489732,4.9912753710385696,4.372673091168382,7.890635541180088,6.674377267425278,2.4810760802791263,13.793213783341745,11.447627502784032,6.543690387247699,16.316388256766324,17.099982331785593,8.571195626578803,3.432564542713535,10.0466377799009,7.059252841701916,5.839602089136856,1.383543128062853,4.209618297345314,8.680238073721556,18.988027474339784,6.611723615773432,6.332811371321911,3.9002114770650165,14.779300614821404,5.6885269672301035,1.8478519561658748,1.553551304284026,2.1886975491563176,5.036660585609474,19.41854622653482,5.535891294087654,3.428084406837088,12.5161013843702,9.850161455429737,11.84694690573614,7.5646216852401125,13.496172074820587,5.93473174980635,15.008393146650048,4.808602047751543,11.84833824804279,8.253345274963229,3.3875245050531917,7.89818942202943,4.559561428153005,7.336130867167279,4.70257039296177,10.208708498351541,6.346038094190434,3.8934712244232514,4.795914017778554,3.808376264016546,6.074720906772863,17.080280927786266,6.799126553195408,5.40146436172514,8.495694142653955,2.7760036509485015,4.0396073807880875,2.8322011559622045,3.927236404840622,7.450216900806734,2.8964210516884314,5.534490203628969,3.9339785150311486,3.0478317699813866,5.866633838278753,20.679879602744734,8.70304586673102,3.3474267427319537,4.017753567560251,2.7954471481192713,16.657842415390125,7.997809958059488,4.874338182329589,3.4268252290438532,4.784797485236781,10.832399143571578,1.534038789881548,4.326568882806479,7.953776099333823,3.2693751202692756,3.201229181712558,4.8372880407962615,4.445983634238416,2.392033265195874,5.30497396998059,10.13850864709609,8.311201481834134,3.119149603289117,2.0140363606448037,35.92827063477789,10.256962915953043,4.141107898755234,10.161767270081073,6.94886397581038,6.535508348022993,3.6653789552775344,4.542286368303445,10.277143858067587,4.355366313289992,5.612859824687076,5.687465692476224,5.246117640974999,4.142341521859742,12.445423928496682,3.6315885434115245,5.784874254878881,17.83470102344192,10.191920344774516,3.5307400272621354,4.235223142489994,21.05340646683341,2.612780034196535,3.8742807589533026,5.633679033427187,3.919563013376613,11.127810370107424,6.719451725657198,19.57075198134964,2.958209725460422,4.695914030700753,6.923673859795557,3.6093156512802667,4.550383810795467,6.955465100380228,25.990541710887488,6.065165588627675,9.619264900805277,2.872568582343106,5.056185083776451,8.918140977422201,2.3247639792021664,6.494103309866272,4.6939429395753045,8.298824079361323,11.366141969634919,7.955090989107865,4.446142134637433,3.8789702532051167,3.644076533484868,16.65747074620029,8.898157716247193,4.989598548541509,3.0988411278985986,7.774761678985266,5.655721085635207,4.900070710956182,9.711767399107538,13.97229095763562,6.977204223748849,3.118851464619257,4.910541983071561,6.655469394850327,3.9715286537402212,9.00605611355821,4.956723839547305,6.862777128889545,6.14581198996565,6.992689253555269,5.907048352428104,3.1845234008123082,40.72550818041756,7.261389276275377,4.143462466234184,14.258593472807421,8.437312476165129,2.6350076282568176,13.611374627202947,8.525608153825853,26.526561566732475,6.228654540395713,4.336898035238634,7.17098858102542,12.095667347934294,7.978918368051131,8.420139079743743,15.876604223629014,6.24415239117636,3.9568303056381837,2.2331087339805786,24.197006285370872,22.44523276668322,17.984527675580274,7.857192523333477,3.207204969962804,9.62056534348465,11.95475771495595,4.445478709150465,4.392095674017387,4.61614404748102,10.46629991872143,5.731299516004662,3.4830601845209737,4.439034383118924,4.517471653577315,3.82478330899176,8.726457583140855,6.556420491027322,4.5273642200556115,5.649784974361363,20.015831759941396,9.826039241233389,3.7550901227609055,5.637706985206619,4.9246400496824885,15.339183915087387,18.43598376711935,4.043771292792347,5.320823631083656,8.136493591563914,11.698083025637702,5.013967134547798,1.8187216020660804,5.933849161626036,9.754660953998302,7.113866567601082,1.9612186483418927,25.724309496075104,3.6984193407507475,24.656894696028147,2.3159749418497912,9.521394992545527,9.079950418585165,8.956256135174428,3.5828727281399813,3.8600868157306016,7.409732839624628,6.039582710171737,5.478088958566923,2.6451501667242545,5.618677969359205,5.4718519064724935,3.5744372847115797,3.674324197124084,14.14946048105694,4.481431543125434,4.1704530907311055,2.869874646639295,2.7300396137387763,3.37972772883637,6.383434963922704,4.497752441588216,9.15409720697285,11.471599109750255,1.8387482346851745,20.65149289590517,4.726373511106737,17.422724977836385,2.4390470818590675,28.099099900311106,2.44412576545919,14.431469154486507,17.915014465887683,2.887693844708184,4.858336783487278,14.875462995533377,4.960039837022347,3.498062957515629,5.825846665697837,6.3561539546270875,7.020424848155885,12.636177685652418,5.37643964068326,11.046624748996262,3.23095419920055,6.521560229289285,7.454100470708389,2.0632552743184402,5.644533121864131,3.7417463623238865,10.68080298817415,5.883301842839059,9.96401841739409,7.702045921648089,1.1751453154853855,17.810085953210564,3.1508286755468746,16.73545917837027,6.021282845150967,2.8944466087313736,6.779430707020323,1.9726207867367835,4.6667311914898635,2.752377782328746,4.923059593806282,2.7953030806498855,2.095527348299593,10.376848109280035,2.9163924608652474,2.8742266627332183,5.199578280602837,9.204659262318383,5.426570638449689,3.3898720037049945,7.187731634919486,6.29016055323445,3.1024634700062976,6.044401658417262,28.96915520104969,10.673492835963232,3.854824308680849,2.4216284491742397,9.59752075629184,5.612467381373583,5.978176457386627,24.902757809113723,8.795721109619219,4.943631032478156,4.632743281580419,8.944801086630807,3.0792611927357663,11.38798366033061,2.512657294809542,2.7829223300031747,7.176746923700389,2.8660659937159956,4.416132279000829,2.8628717132249313,5.340885059063986,9.92695476876694,4.965968118208537,4.366856398041525,6.261511487024093,24.81689206453912,18.45688825684353,10.46152973152244,3.4144224230245666,3.062584833319097,11.586050522404294,4.8613614819388955,5.010640771316709,8.47424212661412,1.6248100316265366,3.652042736048292,8.094310761481944,8.76244242200777,2.8204915672388764,3.506243962041787,4.193259537740245,2.8334567034628675,3.847001602858902,19.2998827689984,4.569997296071885,1.4889102569515071,4.788555441308366,8.226144277019364,6.377632185631792,1.4827553766896424,4.395889989543597,10.670183508392904,4.5874404050395,1.2235212382283527,5.480142121375296,3.0832271508500257,4.467881898660565,5.034980012756738,9.992564938188014,8.117291473220934,3.018501767181693,20.085796263393703,2.509354676091518,37.32512628104948,9.507703790054839,9.255617055276733,2.3314461292443855,17.474231250625202,10.533378398160242,5.000082308675396,5.400623741045945,18.031715607551885,3.356731155222121,2.718172425859643,4.998629452289363,8.940750294314304,7.7576879821012685,3.7822098047652233,5.369923891139788,4.209382349039392,6.302359479077657,4.568895771222173,5.62645065257666,1.9465044844189436,4.7914500652721115,15.867942262229045,12.254615966342698,3.425113689107992,2.6540952474166803,2.0970187386344854,12.805232328708385,9.217974089012827,2.307607986654959,27.297676439115865,4.2923655105678735,7.393375354525332,2.5675464006874296,11.79076093272325,7.645342929596416,4.936566730068714,9.081867231826886,19.32856570259563,13.551211935095239,10.699877262879664,4.047528773034362,11.760155618486253,3.5473312399114003,6.0783593377934695,8.030709425917127,6.749790822011721,6.725218226054364,35.912422071304384,2.5882093287198162,8.44628519836363,5.68144550127915,2.3409448805310493,2.4805917003937084,6.392931628114163,2.5822444504408297,6.768631235834823,6.06600907725022,15.3922627850042,3.0559144509946434,6.359804377508518,3.5052774813588314,7.105849941184243,9.122104431634519,1.2477188588661616,5.348541140469614,4.844763800414791,4.429220274103439,4.7536598520117135,3.200025134633565,2.1324951446310805,9.135302390387157,8.539726989535806,13.911579417532582,12.365523660992974,4.636705910685383,4.968050154065431,18.48005571793772,4.051465868814025,8.574609371968672,5.1998946209526995,11.286678988768243,20.968016753362704,32.76396855737628,5.342461601928324,10.786842832834298,18.51777301235496,4.131557053769179,5.737637145389031,9.634906608493315,5.40133241003298,15.84398019243667,4.736940368869106,8.520920840071135,3.4609098159642864,4.461858591662626,18.256933325204024,21.125226514163735,4.756477411264679,3.8884912830271845,9.135905966455242,3.485091122818044,8.614333834595486,3.53324453568131,8.26093941726397,9.90798445728512,3.3805992813930894,10.253318947167076,7.170137596324166,4.225893339006725,6.694890661105296,7.616321554050788,5.8043514243870185,4.188748056709233,23.675347253057005,6.95933707110605,3.725340525686039,7.196517602498124,5.441280012726999,3.331833638536933,3.4553683191482034,49.031474418986555,11.897500533286117,3.720189333788562,17.216687004259168,5.128866084555867,9.1165980727866,9.634647235860157,3.768060858943297,5.312647365030043,2.862734517471832,23.80498096877456,24.21345942176218,10.072371585578198,8.108267481842038,6.779862440348887,5.212400100191397,12.59761333030482,6.073264362464409,12.144942302526593,5.788079849283121,4.964161943669822,6.221236279228323,6.909959419577692,19.403217431914555,9.756210941393194,8.277718231644352,2.5765989755063425,5.327264183883346,2.474083562498905,2.2693248454035664,4.492644053079675,2.827954745985098,5.871653716977036,24.38383085966615,5.2672601833694435,7.767679430446699,9.755163058940738,8.558489387991546,5.171176338883188,4.246874760547666,6.701274111248672,8.305752479001363,1.5458434864682111,11.108817086917222,3.477829759882706,4.0661915330536305,7.178484316713046,7.919504637282803,6.5768061283750985,4.64993433874792,4.089860677179653,5.195080404184669,6.344236900318824,4.258042056733569,5.233676533260476,4.317521477238496,2.328572967655994,4.365634898247899,3.6179168763955563,3.6314387541125117,3.6857530564715466,6.2010833041807345,5.3637600608921225,8.711524061518132,2.9960913413685013,4.736840886283101,7.281916430221658,2.7601366885598226,5.337298253269615,3.6932428822767402,3.308825470982609,8.040741568981366,2.076942544494033,17.238584198441433,8.28557176929578,4.97579704077686,6.524725963084295,2.026048409859511,5.634149117217564,27.757481075134173,26.742825286555654,39.56009857434847,8.473359582183107,10.842507960370645,10.511473228135063,23.827831285773396,7.338089587005181,5.1478601459295,15.791478441677627,3.169153618549527,7.935504855628651,14.907738087210769,11.79935618729943,13.726106723873219,7.449763294538447,5.8495917661195325,2.3413077162112943,7.334009357667582,4.994173489903195,4.177738536492664,1.8065824265394566,3.205291043272096,5.240197040283339,16.90512934135062,13.71265517295479,10.807044956553408,5.727412131436219,2.125354327782367,3.3347095273535223,5.513198556082369,2.782184601171255,73.29740709300187,6.878803606063113,5.462440334228324,3.7071574799139837,11.123370938380946,2.9308312801048118,2.3339051244921922,7.182365005467163,2.465569058466771,11.607781025583986,2.8638588011838215,20.265720712444143,15.282119689390624,1.7030619971290004,2.8978209280696134,5.488402996229807,3.042337167352146,3.4759816600634386,5.864198187536759,12.74595872597702,37.88916111922049,12.147043528176795,6.110220061634215,16.443594220601728,2.8851730753965925,10.20249721962353,34.32881929490418,10.141102358562657,16.409622904700964,14.589007456993349,2.125979723124039,2.6691111342469718,2.009673659590297,7.042692402207042,5.295784782917633,15.085666420469993,14.706933274098628,1.2526157848783774,9.36193499360223,3.1563610848339203,3.070632225538092,4.734435105643262,3.446225876400342,2.691874564165842,5.27892979553243,13.126472992117892,4.938439065385413,7.713274106927822,5.405899309371704,4.372690087829305,8.241377347635565,15.762354858380569,3.031227427884093,3.1962705606587867,4.786622236825147,4.839474118274264,1.967013184047998,2.69788248659922,6.687050363093998,3.0798255631766045,7.862110384037698,2.8891118221083647,7.439711469697349,7.427235651641922,16.435436922806407,10.407041877636626,11.309115864295663,11.558785069905966,2.69335701151976,5.713911070369276,3.5032639169375583,2.3630677366664212,4.26960954725244,12.082921777578463,7.39123775809979,12.417505153814364,4.113682684694434,2.431557549025209,2.341117806114518,13.87039883723777,8.586723677895868,7.530367993113101,2.793396586685127,4.580496862173704,4.4833874750593905,5.207501513297981,5.615111267084456,20.360087561579913,2.2092101320547894,15.647834488320232,5.0133772015593365,3.8581773952795206,3.5329506143887195,3.068636158340471,6.846101406595585,9.203885414826289,6.101112719454955,4.9175581423641095,6.1372713813606605,2.669084003660652,11.263362395078904,4.3646880354160915,2.0940993705587565,2.1631953986112977,9.182601187431743,5.766032942914611,16.17401444856263,7.109872238034383,3.376242915672888,9.24679165539074,4.150909986251926,5.734054401743929,2.3157937531452144,2.57622605451691,5.749181633882132,28.017253646975764,23.83269872562183,4.23164724495367,15.905584134428414,2.8751759690864893,4.238461517497289,4.7029567882667624,22.13147935826872,4.545116707427522,8.820374424274986,4.531705214716048,24.620600381291297,6.159702084736588,10.935513443178216,3.4372298300448665,3.220338542023398,12.682545075214835,2.8716645204225166,5.379515110852941,12.840152265853105,12.638246573743286,9.070334968997814,2.4516876083011607,4.851373810382012,7.276776364687595,5.458418036731755,14.769990305568687,30.820045963674804,5.757184573763484,3.623335619634648,8.531774969320852,7.026322530763882,6.795336076794217,12.185290778139665,6.658082352766117,7.2008990277408484,4.508447512150704,12.936136507222615,5.494796447881489,7.507254439524226,5.390987487326829,2.61823679083946,14.438124495963585,21.37468709163833,13.395604499608131,2.073188174450208,21.34612571108274,6.105028968450283,5.926306584668604,11.580472165779492,8.190231577701754,9.05060830491261,8.797413793069929,11.656610816772945,2.8069207734391544,3.517948076714324,2.0756806151633214,5.012215455797364,2.4041695035788315,10.638962972909304,1.8745942197782248,9.45795426337719,6.979025764090864,4.367387131270942,7.312276596901123,3.4697119735260276,6.602308959329042,19.693793258660158,6.775516348691249,4.056190639077664,17.907429113862346,10.288251625959806,6.115799080226792,2.9258267969032894,15.584814034142106,3.9809809562174965,2.182893649434272,1.6500257222965444,10.281760066893476,10.151078054972402,13.646198725026267,8.392838095271456,5.97614584921923,11.278505657874842,14.377562090493294,3.8964174465365815,1.775696669969797,3.319444864554151,6.274374109744794,2.9968930477285793,10.43593971743383,1.9367358823423857,7.698512985478492,6.7621117894430665,4.813687809156674,4.3336910331587095,3.2605303560939745,4.231535194758803,3.797074383728805,9.24129173181182,16.422714658271342,12.270844707605924,4.472790088822316,13.860348478559473,8.78032292623975,3.1498429926578564,8.98232975115368,2.874073801000064,4.935837931197426,3.0677934857604128,1.873073172729408,2.0375231885467047,6.520498329855234,3.3760444963076446,10.379124695895724,14.233554672938185,5.733155539227927,6.778212299785722,2.5005760347573895,19.3112344853224,8.91342336435734,13.014143088487227,2.772058601692585,2.645436924327029,28.947725698251546,8.692990441877045,9.468385359188497,6.794078419394879,17.11775413340329,14.05215937424642,7.695621638300837,6.48316393075911,3.547169459014944,5.973543262463586,1.9613841669124263,2.559478212620663,20.621407608523466,2.2914983429017757,3.681042737138532,13.782400432432787,21.28891362383384,3.973611622438889,2.086938763088349,13.220708531898307,28.157524412028057,4.066899619305377,2.7169161940339634,5.189630484708225,7.1831866318339035,50.08674466906647,1.8103929431430457,14.696204359142909,4.171089958278397,2.9589683056257146,2.6137881568064123,3.3055459101786466,9.723725828536443,19.220950225261927,27.610921218594182,7.626877636709235,13.311824051963418,24.47589365064989,11.995743969353015,14.346790535122974,3.71693978129553,9.74111125688485,8.157013074829916,4.30386107954833,1.8906865430932087,13.880798297295902,3.732644603304217,15.55590129123918,12.663804732942035,8.054819131085981,4.973861912241383,2.4860751703901576,12.843459263890864,8.621998681912364,6.079931386715908,2.7840038549080437,17.026372574885198,3.1962714573224695,3.2736167893004926,13.334642709727275,9.534195697307108,9.351190350977184,16.11932885824849,9.010803222265269,7.230002549801527,4.5621179671816146,8.495555482277657,5.4162933190082345,4.133494432558721,3.3639930100936906,9.951445707186245,18.01006050025317,11.635730845071963,4.275357493433029,10.218262289363704,5.026178371670107,4.825574061451678,10.167331393578374,5.41183428461342,12.157714064782656,11.26589488540447,14.199872217167814,7.922482843057177,3.1787872362798137,4.060482183783596,22.002173332527125,12.131488700651545,3.2344512393173215,4.320498208736171,2.809267320632858,2.805161035320802,9.66969303216081,2.6607601297023256,8.624365653049109,4.494272211097401,3.3826883681993665,22.97146707567412,3.68036554412461,9.698750379601544,11.180022486885216,1.85076404107031,10.622412625750284,19.063546633207924,19.410183444076576,10.374572622768287,3.3452761264538746,4.7657131861500925,13.361777290471652,2.6328434713050273,6.490011887242353,5.0666912099454695,16.48977566855861,4.36198988560479,14.870053145126754,8.435110623174346,6.448611389790922,11.485115810404237,9.437103510484421,3.7320500352266337,9.304472542249627,4.410239458054277,11.08353119165564,2.752304917316671,9.775083882960978,26.272134657884955,5.5777939834259,1.7339292746095465,3.9690229653771385,6.570368033781214,6.715223884492069,7.0436024174565945,15.948411192411875,9.852193281301544,5.6061117650747745,8.548919907459885,10.490415749737254,9.533491013799175,7.097577033263849,2.8237614063128116,3.1594391768135734,3.0525467308875247,7.493507642787063,12.214216931801035,7.641438188111661,7.566064302621864,3.1841142817173202,4.099760355388409,5.563081525938176,5.635025949901141,2.2941431668597634,17.179355700351532,4.812530913956103,8.159026813000548,7.864611146732496,3.85986710882584,2.2755220428446967,3.5702747000127553,6.991497384402718,7.773777326716427,4.626464926567345,2.9782506385709593,8.845065881028159,3.600865847454304,4.164880166599662,3.8153200054339647,3.5654014068732747,8.557724256020897,7.234289192605268,16.02818800137123,16.634440495092864,9.354793977587406,6.72487413316514,27.94045588923489,5.271260758254102,2.3713611167072672,5.550639395171105,3.4841253039973568,5.593720839195809,7.023255637858184,26.34876469995882,4.229000264422908,24.04700363214345,3.3487793454135772,1.8158808837776643,5.164348045666279,23.44231888018402,3.973597522694653,5.797840501553527,5.38091309623131,10.65488061285451,1.7576319788031383,9.22537469133119,5.2544246628593925,8.690562229276228,16.193073417583303,6.070720666784323,5.9695274432271885,13.425604885465667,2.3342738100579843,8.395505827765387,3.540432848009958,2.2697065588513534,5.272684835454492,2.409713520193569,6.802731940036598,20.363368891354195,14.067253321341072,3.4760562773778765,9.363693452554475,5.875652987199649,15.751128717912476,5.266686806029054,15.839768962973812,10.794999542013647,1.9563669768781806,9.78236556508796,8.089543130732206,7.372185773044061,12.985994029240574,4.995958832703567,4.759986150237149,5.0718772671708585,21.405949434924146,5.005035850991939,9.133081746009186,4.027390567667515,5.978476552936252,4.55510080322348,9.532298237327026,3.8104210956907205,3.706074613836595,8.418084916349848,19.23290294797336,5.241154920751811,4.870422484597545,7.349561845573926,19.171865502458736,3.10808744409624,5.124565737786483,7.24968279731411,9.439722857038127,24.271626039879497,14.443891641368202,3.008801374276225,6.607809294837726,10.548858387027177,5.005215169205773,2.8371799699661766,3.9395924400468774,6.122885130779326,5.70628242042211,5.299978269118322,8.185044760549143,2.7987505591734325,5.219755729810167,2.8151823960368447,7.15923646311776,8.357902346156804,4.306687087971371,37.94345583460939,3.3408797879702132,4.102506071398475,21.505255859347777,4.84708904210755,16.141677689616216,4.4033309506786145,2.9710867794779263,4.911068078214063,2.7557253320248813,12.671720775473931,5.447567279334788,4.194200833825465,1.717734989116057,7.533221737354618,62.4793235290069,2.6088715714289066,2.451428135813514,4.838162722600882,9.171698009216287,2.3774795409774216,5.545611008142715,3.581441838430215,13.219205615845455,3.6095765181864756,12.377130436584027,2.479940937191357,2.416802785995401,4.513047681744613,7.761832000410094,3.3652702703825454,3.979084400744809,2.9094888117833935,2.6782909576721314,10.991939767135008,11.30335304614946,6.524668379611853,7.113559670739451,3.0749725082617583,11.760122444819642,5.7131911446780315,3.572305673649238,22.075645128580636,2.498702537947413,7.826412590409421,4.5386456167906735,18.818352450204387,5.720117875068801,10.27891328550259,10.66715089402933,20.75937040317148,3.957363048293615,4.119982545604226,2.790481518564204,7.504435172565165,2.8944149750791563,14.142635120160238,15.69873803936035,7.477276573546868,2.843550418046091,18.31001579663761,10.369158977854392,6.410926629627648,2.946968096466039,10.530136695870473,8.664522410511854,6.307797155475144,3.6261727020082235,3.3963588654701176,3.4630344886152375,6.1694797520911795,7.359454322846074,9.024061888901468,5.924698546561348,11.525477665174519,4.423265620084091,5.937433380243155,6.873123587211469,31.061463902083243,9.614983942205269,8.119725180417351,67.18956188342474,13.56714017383173,6.38996354528538,3.560955813174804,1.73500752068442,3.65792248266248,1.8762121276378232,7.546361445924731,3.1443598365946603,16.255812413382312,1.403608523255101,16.121212876925014,8.144783927530476,4.558935970237621,8.53800839299053,9.291605005867455,8.821500126074058,3.7412979422611365,9.6620104255925,2.092073907322688,1.470008588246122,5.670453340739591,7.110075693029479,10.055399012872908,5.0560692785318,5.966176937631252,10.40935066663374,4.50539464181777,2.5411520640653626,26.016651150177275,6.695899036346452,9.719524451756909,3.7425812822374036,8.865844207850973,11.71151819553555,5.666130132939398,22.84647758552313,3.3415860756134363,10.421910744792347,2.6851756952093573,4.321714730489754,2.0759985995882513,2.8065296804445667,3.2171660770415103,8.124216242318203,16.134938510657655,3.1017725785219055,3.6497648899091573,20.148223271446188,7.303106946244504,10.690608650440034,2.0025825159773465,2.171059589157829,4.347772315942451,16.04047754831,5.059900858274519,6.684098456415074,5.289555491372037,11.112704275386355,3.630492637126682,9.591955495628218,9.60334158196617,14.041502911299283,2.7635513054517973,6.45570375501667,4.8475871110854705,4.067876091083061,7.745595568813298,10.20102645548083,2.9132720038541224,4.985864479596719,5.832871599366669,4.545195545223117,3.4517981346992697,2.141954672264798,4.257736994144638,16.974319105356802,3.303048220774091,8.474099351931098,4.55128004325685,3.500593016184903,5.756153435817358,6.321488760379042,2.504235335357933,5.011802020912191,5.097695127381372,3.714958727544167,4.315365729698111,4.331349646600476,20.15789335406746,10.458829276819792,12.295501828916418,2.684569243142223,9.330206059503336,3.070236877260503,2.895476439187934,3.6461839462865755,15.137318865668462,5.739207622865395,1.2630434762681466,18.351482845361907,3.0278358668681165,9.43816522764415,5.916710960969909,8.047743303488687,5.263193051631613,19.325849836310514,6.467524132569817,18.768301315513856,4.976131997727098,2.077940542729056,3.8251854370735408,6.134550141037403,7.346524265128856,11.016682036129298,8.913176681035536,6.735261238857899,6.567130585956454,16.478827667516903,4.216855128327895,6.260211870249595,17.753464773493942,12.343115485598764,15.542665240603323,4.704617318390612,8.048805684765863,18.59270324813009,9.59731175443243,2.921097522860301,12.390405915158691,5.269553722296879,5.8920106509352035,7.517011739961143,9.196931857150185,7.332850558164653,7.29789724794607,2.515019269676216,23.25279802627929,3.7281217794896446,14.301465623475718,6.028059005865566,17.737487875818275,14.388991211111211,16.53185167009685,6.4382069266782915,3.8731472135037683,7.12415046113406,2.0688305683684285,5.880559396483697,4.865660464392907,11.849777332770385,2.982697924306069,12.885349245368724,8.317198641949755,8.138882464165047,14.329075614995713,5.424384709980039,2.9999680510533167,3.069311405316448,4.997273939624169,11.84591295044779,15.770234424860455,2.7514921635843965,4.5446099065278025,4.565073253049298,10.071839415305343,4.244428813186274,6.93024903413575,3.1721985336115126,9.911924169476544,10.696687476812958,1.4309130406441357,4.002968082368135,4.299910293420188,2.9927967989275976,20.86464285833414,2.740470846280445,3.587190361118311,14.300729009477822,5.630103067278234,24.116675885443055,6.682004944259162,9.75496275696114,7.302189379031837,4.08783556642228,4.345995711773077,9.509514503857561,14.377388076448353,11.32682054092669,5.581280810455616,2.744695884274407,6.4468611845014365,10.420173753161013,4.89627570837549,21.872312058091126,2.1290063355946307,3.9208644586272206,8.003496472184539,5.960747639310812,7.759556003359927,7.060458280181838,3.680144429611036,3.9446413259100255,3.6197550484941297,2.88078544527893,3.8130227281587294,4.518462149645302,12.000342964092274,6.53611822409459,8.65954964261474,3.184797536641922,9.325766550352315,12.786385954537423,8.20396089034079,8.274937263575792,7.742020080518812,6.5886725107253294,15.780943134841317,5.534075672706853,6.99951196536257,3.9907003265784744,3.5036191570936044,14.565698882764385,3.2220152047704125,9.799898826341174,4.159994989445897,4.43307751032029,5.270121055623562,12.364388104251086,10.043008105233497,7.997970314415635,9.246070336624465,6.753273329898567,17.28699646615119,20.332978041319155,4.305275172636991,8.060956493852036,8.73148759523437,4.926439831749414,5.744715778500818,8.942014519590211,11.083333908630204,3.312394449682238,10.06350674051396,16.691665366817578,5.074202992488273,6.44389814477723,2.1599020614952824,15.26733426534621,9.728903165467836,7.715470322549336,12.248097872362091,2.1590665872364285,5.4197341897017575,10.922841772686184,9.537963838280369,14.890600291369308,49.32793543996026,1.9967016130109285,7.838733797756923,3.915304758863546,5.071645306759444,7.057369262457366,3.1126426123765127,3.2006826700570565,5.802074324126041,15.273008939818098,5.76333035852063,3.386716124594716,6.230022986391142,3.1416354350838764,3.9278231036496054,1.6983146787483814,15.131076615583453,5.526522270115769,3.712163234514537,3.184550223258836,7.497408937683569,2.575237942490471,3.053972169653563,2.6780307303669235,19.168047514148487,3.597398387346215,1.4237874211908161,18.264938711144257,14.500574382326793,10.747254493028217,5.655047236538752,3.2698508453962094,4.806471002343775,8.37834066282233,2.1204900061718317,13.9777192959622,6.023349624689497,11.165103194692783,3.9735174706633,8.137613961883527,5.227130699247771,2.247300690505026,8.366411032372751,5.295920837163106,2.9773192251809473,3.446024527479613,2.771606557034291,24.22338692960153,1.8167628426125497,4.466346933663126,9.200964166221798,7.1394487054211755,9.37652733990841,6.122934077227135,2.4169360756952423,8.051308021245204,3.1871127930602134,27.99677319704446,8.829280732844886,10.812828427590084,2.3658059062576684,7.024069455475718,11.005772030954285,7.370526010376968,8.071805292658434,16.976668506032755,2.926271592231816,4.607308634097735,5.925600675923469,6.65890480143567,4.047464394374425,17.164453594502696,10.047500371644901,3.8262386452330635,15.003634947428917,3.5774969279638396,2.2654838495381195,18.378976304955078,24.940829282070666,2.58527486937764,8.930284656914099,7.760951150649952,17.779774433813646,11.653012800284872,3.5353560248004734,7.047925689826521,4.311816735228818,5.488702557834577,2.8710473414144806,32.876058976230375,2.429458267267215,2.445424283091429,7.5016949324028515,3.661400501344502,6.435403594320043,7.03415042809457,5.139861840845882,9.433592336991032,8.764885503314206,4.789405172554611,1.2917199478717132,6.354037183370718,5.8592812086129795,5.142199068538247,19.59466842508173,15.446857319556122,5.496169249439739,6.611785432099941,3.405062436754847,2.2820002393275174,5.7338148974939305,14.308518493039873,8.618282871905183,8.769110608666367,1.9509839338740507,35.094449193483506,11.472091823151116,22.14357073421915,4.208749258816106,3.5230959108085824,51.33644360518171,6.191937160228397,5.062545214361043,3.410941291217478,8.816846405238847,2.9271339687372255,7.739411884160759,14.913620271757702,13.478930948296167,5.206137381566372,5.73207105657463,3.4147148090736223,1.617683550910908,7.1576261159110475,4.326447578865099,11.114756879711278,1.0520844045681796,16.386437224710495,32.151220354455916,5.181596300744863,2.2350356941240115,9.308900874365465,11.270279993586819,3.625352958497388,6.741122699649086,6.2401962700831595,3.9954813490848644,3.415633021949271,3.859868815426437,3.4636861632742573,15.030316574798704,6.800541692869083,5.5086213676923155,6.057457235060066,5.165267815098503,13.853814377915288,8.225332216929718,2.1086901154711892,4.555070040260922,4.60635004309179,26.560360544745475,6.945799516920454,8.409622455733235,17.629135773889313,2.113152302164982,6.6454447660417255,9.639931638282457,2.200505009654809,9.974842118982354,9.797876303079217,2.9972680520150377,10.020193311690292,7.9413577135730264,3.0898216952378017,9.773468569899103,2.5876922653689003,8.684006606297887,12.516454771242254,14.423391683951975,3.666475849374984,12.40164201968573,3.309744810573441,26.035349021274133,1.9965526063700956,11.053740944740692,1.4786321143099146,3.186763116117257,3.007594825025882,4.873246657530683,2.517128004736542,8.878964463891931,16.02423183870046,16.066105451141368,7.320040823496318,6.99736602884933,5.6796853073103,4.076083513251154,4.995544466498368,10.074422987193746,12.424915453639773,4.939683961781793,4.242440273547679,17.07289088901658,3.421835229072097,7.014969824051334,5.137425897946609,30.01652994360912,6.481954147742674,6.400705461510983,2.474528361827607,2.3611209714550445,4.968088539593508,12.345121671256605,6.479093658695054,3.5746994833414862,12.274098396046492,6.890314687530528,5.085037917502024,11.327825277727772,4.410833633974546,3.6358609848757544,17.160004454652977,3.4456049028685256,13.820318364987779,4.5389885247241955,4.188963125155161,4.934038897965331,6.797753872785185,4.626704940068757,4.528042356637662,2.688192953928198,4.568668174150954,1.533528141975442,13.28736234277412,5.323392500165095,4.393433463104949,4.053272741201172,11.505318622686598,4.431423676577579,13.476293752480444,13.161304021428572,4.045694232016533,11.193427604078568,13.242267921733808,7.667457253745382,7.893970241651713,14.116142873034395,8.246624369994056,13.401292910508747,26.728229146988163,5.7558611475651285,3.790729233795394,11.636306100266799,6.55011712258797,4.346636182214375,1.794089684552649,4.857540643456248,8.16281778563584,8.272573625189025,3.779245756892047,7.707423093805734,12.650116260979805,4.366801315863358,9.369691543627091,6.649388440420467,6.956865042092758,10.872494779336558,6.5928212535899755,8.631201898877418,23.44359132659737,8.134305284697097,7.483392930624546,3.5169691524090836,2.9295651038852735,7.140275980190575,2.6250230579270806,2.703062853375026,1.7213891544632396,3.4998208440291885,8.34181647704617,15.403962326390669,14.624320099436765,11.19968229674131,3.647263044749325,15.101328729402924,6.597873631825296,8.33913849097031,3.4281015138322775,2.7221890058686578,6.019882409185945,5.698223405676613,4.633425952471386,8.593917825268544,1.8792504095602969,6.735893682432024,12.55190733034272,3.3566533117308306,14.599888109399489,18.957663964939954,1.796025437685968,9.192942116962909,8.66125156960145,2.80771897897553,10.301648616426553,6.441616497827495,9.99501997860346,11.154963079310553,4.607106431642703,6.641384200107613,1.6856003651559976,15.723925913416014,10.23031276010763,1.887353999186994,9.4694881796386,9.848267601262098,10.023007435253202,5.190761400904998,3.0266989770878916,10.949310196791847,1.711016726692248,4.562496980413498,17.850901091958544,5.2011616128376295,13.301241222758833,5.455573749276736,14.736906977735082,5.795398156392003,14.122214957163521,12.292072237413013,5.256473109062989,4.510726540087932,3.2801817066107923,5.645182780626333,6.763135671794107,8.450610482185548,18.116141877200185,7.6358671740375375,5.809242690380902,3.3642011986851594,6.6821515926402455,8.006398140039837,4.921571696717796,65.69946245645048,1.7339227171369087,3.743701165406924,2.688868144277337,8.884996367492356,9.565960474583495,7.205432784341809,4.539115456962191,5.873474282490558,4.771152897592893,16.302840011576542,5.33778479067353,16.61449124079198,3.420446254145186,5.5652439129057285,4.534805839953597,5.114766148681461,2.649859075489801,3.4194484209194647,4.981308162978318,8.04527313754103,3.4244213989887897,8.122444783808206,6.440007543214736,7.404410167311135,2.299864483099481,5.275390761623831,13.199530841844252,6.801231267085085,4.172095586111412,2.12555162979708,2.977073661286144,7.270903499548193,5.298064005901728,2.485491135140281,3.9790224134617165,4.279116628926646,8.09917442263034,7.107219083993639,7.599331457792912,3.329980445498561,9.285929204432094,2.951012297032,7.670368701817531,4.157232545115597,7.416916102704063,5.488535314208358,3.522677338553118,14.753978349876071,8.102944518156855,8.440373151637562,6.7746524273506,13.993847950972665,3.050794386295221,6.0692918453903975,5.951603038615019,3.9247830219795805,7.249945929893792,1.521511393995658,9.67854461762688,3.0525975066941142,13.115414897096294,44.11689865576721,3.9143062015042043,10.586002597473437,2.3035436493611146,16.038106072741087,9.610854995500857,3.021857692458738,2.9236155240367534,6.286915405117053,5.72817954274138,15.969523092096688,2.33395472009514,5.53947598826594,4.475999472885081,8.219357690282722,3.1596345635042664,1.5384667691654417,17.47997601767268,4.779286112838013,7.091529642124348,2.02975699426841,14.739850907890311,4.202646772312869,19.36659953371581,10.533968593970515,4.527392010594434,2.9154376207567414,10.030838523953044,3.120012276628403,16.435641007231744,6.584122510483549,2.74018272527877,2.8047301528896704,2.8850586338596687,35.757444169971656,12.809107949558417,3.2167873141448786,5.573255630283163,3.0394137373180277,6.654103080496924,2.8677964738354373,17.794430379073308,5.866122796800797,10.280495381644666,10.65216284356459,4.734958161866145,15.000741781796798,7.358743116449606,22.118660260982026,9.912659453112811,17.284458479703808,9.557265742374073,30.673761126628907,7.323884189360913,8.016542773564252,3.325906118470841,2.6931523093946343,5.405126136361628,16.02527318831898,8.632846244231319,16.883305771230482,3.654316176286835,2.6306906374185806,9.341293616922773,3.2854970233562666,4.468008014765845,3.5763715304810675]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}