{"self":"http://probly.dev/api/sim/3c7zifD6my94KjGhZynpdk/","id":"3c7zifD6my94KjGhZynpdk","created_at":"2026-05-03T12:18:47.684674Z","status":{"status":"SUCCESS","status_datetime":"2026-05-03T14:02:05.375357Z","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.5413579792388368,0.31385637511713516,0.43579592972212766,0.4184691632539322,0.47104018781195595,0.44481064225389344,0.41290168977632025,0.4716782951285231,0.5670480892827631,0.3450421939697807,0.3247735036200422,0.4346358783491538,0.5817908284987277,0.5145238079936633,0.5143042619648613,0.34404324381257445,0.6059761608750297,0.40550564026914093,0.42026901247733855,0.6689342269012929,0.5783102065321464,0.4337567367703163,0.5575302975262217,0.5401653986047124,0.5440505913595084,0.5489729447203193,0.5610901712353796,0.3775193008794352,0.38829877189549455,0.4726696983175125,0.5551462485568991,0.43990202003060647,0.4242997081796251,0.5330374974946964,0.4063049528090378,0.4178028912509699,0.37576091543799767,0.541887926725738,0.5082834780497444,0.43585787972949447,0.5336402392865369,0.44316601556478463,0.3467775930548675,0.37916036766119343,0.5020885492811846,0.46651314388520576,0.4466535686559088,0.5791109535633318,0.5197423438588064,0.38260173221323684,0.5734145770469324,0.4662184508041392,0.4600714962824006,0.5893581209465267,0.4182765099510859,0.4768869356915026,0.5047063892514259,0.5724839030296048,0.44935857899045234,0.5060674929751802,0.4205547196317745,0.4465975077374811,0.3265184970558886,0.515615691438172,0.4337528840119128,0.47964382648204046,0.47352589007969637,0.47469698352432893,0.46754201356637864,0.5143372197183712,0.6095162001156994,0.4293851014013743,0.48646570012153517,0.41836418234154127,0.41667635568527367,0.4792349229785844,0.39849930293493446,0.38828156177679485,0.5878713139817335,0.5802015853160114,0.4329418646473906,0.5661994089902398,0.6022273833912498,0.39294396485112293,0.3929427087444062,0.47608700954407424,0.36331181924643213,0.4128716550627722,0.4763578343193649,0.6183638761341294,0.3658152096009573,0.5701329934151785,0.5664463045039193,0.4040115347333768,0.34943972567781995,0.3812467718179017,0.37050617804515656,0.4652201579688495,0.4489353336013338,0.5136284177406638,0.5059685847787316,0.6716705443150933,0.4458679901942637,0.411904320194582,0.46175956661629924,0.38703617598847684,0.3491002102649369,0.42364179175094024,0.4639903479111621,0.5011803358253554,0.37164034902007864,0.5315807830102621,0.4505647013150813,0.5571899622694778,0.4024001139546469,0.3751155381403177,0.46111126970988575,0.5073605194690431,0.22028501651114119,0.4707869120810646,0.35090567320517624,0.3062516247175571,0.5185372397254079,0.470039258137225,0.5273266610248373,0.39693868159378864,0.4923895995471994,0.4627007700621464,0.5547145004609846,0.3701557212129975,0.4293147998859232,0.4580785984808119,0.47062224972748296,0.5420519993235816,0.5497288838496007,0.41044744996603,0.446329402844915,0.474812281224926,0.5317514335892172,0.5110491755515112,0.41298202812528123,0.6441260154361068,0.4602811095298637,0.3448821374571426,0.39955609157994365,0.4695022957257874,0.5832653709406451,0.4216855442514306,0.5014278787189768,0.5061173487799804,0.3533187455878435,0.40462137205656534,0.5122159749398992,0.31332118157371563,0.38162470249474256,0.3220922654362404,0.49257460098626227,0.5553587995964956,0.5482920191653105,0.4064312804890397,0.504803432715794,0.3761738585025631,0.44659511419679304,0.46736851957967657,0.5067139739175126,0.47837267554407664,0.391416134934484,0.33976260372386835,0.450585111332953,0.4757656012344136,0.617459691799009,0.3837269083293478,0.4809238807179335,0.5103202456598658,0.3237616273557271,0.6766485709959331,0.5129001094499599,0.37304416961241815,0.5259557183563427,0.39775427719129275,0.4833758288258248,0.3672936111202539,0.5534135775131714,0.426374636701611,0.43097688068040596,0.6636333815426835,0.5065676001453094,0.4063352198983464,0.44272263484486785,0.5613785079734294,0.38936347205419075,0.3893729526259846,0.3804077825259829,0.5527447644586033,0.4491637031194114,0.5291014624015751,0.42923642154596087,0.5671319758868248,0.4575956573960803,0.5766725523269431,0.4121105292069577,0.5426560940750755,0.431664312660601,0.5113146088162747,0.39151391728951673,0.4393165253805367,0.5165497002893956,0.33585184850093,0.4135404214159672,0.48181669094966717,0.4248855968246357,0.5236653752951453,0.4925499593644365,0.48001914953723196,0.4921886464218421,0.42508166274886944,0.5307309209037558,0.6203409437855788,0.4569578677165798,0.4663576917184986,0.4008729631150557,0.3227970203859305,0.5596251901469905,0.5104711722978038,0.3013509207888513,0.5138578814708966,0.46816482077917787,0.33662345016452466,0.4750447587263839,0.5143181286963213,0.45340772605190044,0.3374773197836514,0.544835145073705,0.46875029488076553,0.34441899326858477,0.5145074128041192,0.51665645807848,0.35990137399859984,0.583131622122302,0.3947235499347194,0.3493666720197396,0.37318852419226234,0.4681305130620905,0.5195179360471042,0.35622648202364204,0.47002632634161895,0.3798233482622993,0.5043927626223668,0.5535432191347459,0.39117975129347626,0.5814677550237111,0.4210243682702414,0.38353744120170097,0.4781753373321527,0.33962659256791045,0.4334028042410467,0.5164564287634631,0.40220440208774716,0.5421324736818759,0.45265835456146797,0.46498431275812174,0.41026749532313866,0.3191622855225841,0.5114121218487234,0.5466482439337138,0.499225786160303,0.4112370928546643,0.4086612530678392,0.3283198559615202,0.5404450081860775,0.3782874621291661,0.501738358836827,0.5620991024544583,0.5712320962968267,0.35871523944511685,0.5269162419976741,0.3922021038665262,0.37695279090365225,0.4174563838043829,0.3739047489607639,0.4339822748382225,0.3328239624330001,0.34305839738912197,0.4314518602722693,0.3644307544370934,0.47906074410247385,0.4603749221311659,0.6140178287774101,0.3816133734887271,0.5360353928211399,0.38607409794598807,0.5947118427962766,0.4924592803863613,0.45273467047813404,0.3973160161502511,0.450391522471567,0.43023416633256556,0.5881138359993938,0.5152850917488153,0.5154842877836152,0.5365200328760185,0.47357838618841475,0.57883714018307,0.43758279395531746,0.5173424766444001,0.5340985437441691,0.319292287817076,0.4048608830234538,0.6263068291846616,0.5203931247431373,0.5308120565099972,0.5995813639002774,0.5403871618738758,0.592326510097654,0.44332674547316786,0.5434836112838248,0.5065395074817882,0.24913384882190007,0.44528912362277073,0.35835437153598937,0.4708539059803407,0.4893029289157747,0.4683936918154531,0.4826838322037524,0.4231564565962884,0.5806433552308031,0.4620359487272181,0.38628267640894765,0.4554454927074147,0.5914970622133595,0.40239285526465546,0.44912756105104973,0.63534881142611,0.4145759761398244,0.4938015317696197,0.7366475433468412,0.49128179701399055,0.4228800859823484,0.49734420562827125,0.3939523521240385,0.4175775285887185,0.4936059316543761,0.4842078456404763,0.3233564955025957,0.4789635428199105,0.31412756403820935,0.5769187086603027,0.20017890441987754,0.3621775957571104,0.4756469976468932,0.3501623033118967,0.5487408044690371,0.3876570978876146,0.5260381144503102,0.3997997717308607,0.47197136088377695,0.46637374510080476,0.509286113654796,0.4251860196537821,0.6169323663684587,0.5083054586428313,0.4537613981391306,0.5511200774475509,0.4977405173081002,0.5856476451035109,0.522574298733701,0.6292576761838757,0.619501982333449,0.4498425357675535,0.46473368003688376,0.4294096675450563,0.578556638279671,0.4334730581261493,0.5470447961232475,0.4469757430337458,0.3778476652048546,0.34772986466282496,0.36746772450076415,0.4852755343015033,0.49848410424871836,0.5013202028351329,0.48661233754013844,0.4570973589865645,0.4331755586774133,0.5215714871118684,0.5203758923778516,0.4370148939679587,0.4761524131177647,0.506396969475453,0.5027593952188126,0.44531873851720466,0.34833796935556277,0.45289538465859064,0.5649003891326331,0.489880653893375,0.5152506587652805,0.43590393095797125,0.414852473440889,0.33823906307151286,0.4980204547444411,0.4041543928685762,0.4964806216065498,0.4274131217160422,0.42663786872977894,0.4121152315063775,0.5566610298069451,0.3874038543113165,0.535901976872531,0.48265264925846113,0.5633717553049259,0.4955925428597183,0.4451571097667461,0.5043115562130165,0.5094600125861081,0.39020998635445,0.5253604357361455,0.4827715829217011,0.42470184217511975,0.3547559107031138,0.4830770571727088,0.5481123762295252,0.5528057419828456,0.4757600860706386,0.2898890563449082,0.32597202789226687,0.5757596897803914,0.5543901298406259,0.6364952042512644,0.5716789435187418,0.5465294669847323,0.5793655744914123,0.37217912354203175,0.47675101612208975,0.4963053106308827,0.47333248084629814,0.45734876641915756,0.26043797081832476,0.4624059675087708,0.41972781320730945,0.4798621522320496,0.2817554668254847,0.47981883301357203,0.402611270790701,0.4374300911206692,0.531089841961669,0.3049212565200691,0.4082124166294521,0.44022400966038466,0.5890832349102914,0.6234376757023197,0.5637161653021522,0.42606763904369965,0.3150687324403445,0.3653641853203208,0.5320338415211446,0.5309668220023397,0.4877327147996604,0.47134718565240724,0.5990907582587873,0.49271654720077757,0.5989742884536676,0.4486508376176529,0.5341559508392347,0.34251736554409506,0.4531043643796649,0.4092535874623154,0.3649660224127819,0.46021214020787404,0.5605211618087588,0.5462896238385727,0.5666650994364316,0.5373102724534027,0.45508348077966815,0.40413708547291444,0.42715887648130046,0.3722381001046801,0.3743498539096298,0.4559583245392103,0.5851368602726986,0.3860532300400466,0.4312704342970329,0.35405757213198163,0.5430873680537096,0.43990289003209426,0.5543009711571771,0.5452779119258112,0.5085724615914631,0.49981163095860903,0.41248577466645364,0.45146396384004783,0.49360185259014516,0.6018409083120689,0.41869786499129275,0.3644281208201224,0.41949089743970897,0.33308497938199483,0.45109242453243653,0.43872700895530053,0.5014600725975317,0.3339072515620054,0.36757407095174344,0.2875622268933966,0.3144507001808196,0.4835583024072476,0.4689315705652887,0.46865701196653925,0.4516502604935448,0.49895351990157183,0.47858041174501165,0.3611817062455476,0.5437180222913922,0.4874931261748478,0.44697778491882123,0.42223187725643163,0.5565460621973917,0.5872936244053916,0.3433363361058233,0.31410019448696896,0.3697561657342473,0.5369331738496488,0.4006524064091756,0.4842483093339212,0.48795594065067094,0.38571543227449634,0.5042330345018609,0.45091277587484335,0.48064263697354415,0.33798869837479445,0.44876558886439427,0.22744045154736084,0.4622502000683896,0.48120297168636894,0.519111901105346,0.5575701849978928,0.5066483887424311,0.4471187498211446,0.5456931468493602,0.5950774242645268,0.6106743544081049,0.4943566328441877,0.3925910226110251,0.3913785133675481,0.5329293094760555,0.3757862935674621,0.37770412724504193,0.27983086183056494,0.5323849835307778,0.535562755087617,0.3784501543837761,0.42659091050033127,0.3138918533657389,0.37060524561284514,0.34820031954192454,0.43797508414393616,0.45212652418743976,0.29842818897453055,0.44666666482032436,0.48789190194265847,0.5134533013826422,0.42738413009179804,0.481667642400877,0.3954035022672175,0.4562301068105004,0.49406530142133537,0.4952625035359888,0.4376095411078668,0.3980141684621017,0.5069071369467053,0.4884704189086486,0.38171274919417886,0.5295814407081173,0.3779885260061177,0.5286590244546824,0.403764123429412,0.4180973974233441,0.3792446080754874,0.42629151108348123,0.36460588649993586,0.3516316394966469,0.46792072972069443,0.4382666281345896,0.5652539987181002,0.49905337674094097,0.4086542516731937,0.4115920608563922,0.4780256463150823,0.498386659257516,0.5047540023062127,0.4761553312090046,0.3766382010462322,0.4262601753835594,0.46513560076658933,0.3915021014844074,0.4495087962873615,0.44546278353746094,0.45556657584403276,0.3628708090165953,0.3586620195896457,0.40514684956396546,0.38414469956756103,0.4374130343027936,0.592114842200636,0.4819099802613416,0.48749942418990033,0.5227342640637532,0.46028051406429094,0.694406021213869,0.4486991465611953,0.31204561387741564,0.3668715831432107,0.530804051951789,0.4480024984456362,0.5324575699992861,0.4173814749610821,0.4697786785827504,0.397251736732215,0.6104696897921851,0.3888127531833839,0.4677559133902795,0.5015005038494648,0.40813318526376896,0.434408584552026,0.3849573554386414,0.3865662853817558,0.39576097441513103,0.34542365823423865,0.44587254693123296,0.5417959456921105,0.4374448455651384,0.536982145886753,0.2801099543536127,0.46153444152456335,0.47134248760763975,0.4297897793764076,0.5076674769170776,0.4727642454431749,0.6131721970487308,0.46705139587262107,0.4496337668182542,0.45962239918663744,0.49703616673539436,0.36893311552515506,0.3810106012438216,0.4505675302367822,0.5441090670793436,0.503293280272879,0.5408136392811855,0.3614484686660883,0.38054230690940055,0.4575292277270018,0.48377431063112214,0.48572685600777377,0.45839427841315294,0.268349495144358,0.3821963615527159,0.2631434824769258,0.4201721753337452,0.49779063333311524,0.38667098029350894,0.47389726375839586,0.39003499410348297,0.4436385194101935,0.5505444140086931,0.49520205034739334,0.47451697800826087,0.35315465844531047,0.39188675940363316,0.5825602509416958,0.5385485734696511,0.5834531125110186,0.47565892114790675,0.4765842928858183,0.4310514339720272,0.3266407367442706,0.4585433715387966,0.5332787064162992,0.47903434561567065,0.5949168511930547,0.37278721087961003,0.5343329470463647,0.3579104967091832,0.2736378649120238,0.5129190407063582,0.460987554117334,0.38798837377677603,0.4492704852566125,0.3685158371004404,0.5353745305344036,0.3642091429151677,0.578807400758878,0.3624109870413529,0.587541694985885,0.4301756887745194,0.44062079798669485,0.4588337116338708,0.4623706719502408,0.34423577926945625,0.3989561178799234,0.47019388097608666,0.4026664289375804,0.41794379185728775,0.5014386259822649,0.40587325900618554,0.5391992926083831,0.3415084676560244,0.4617151122247046,0.5282299426435743,0.5906593426668187,0.5766676125586401,0.4213414878777284,0.4073007392725204,0.47669311046567553,0.4000103076114786,0.31612669689120154,0.5326993625823426,0.3389309023164223,0.4363083515057428,0.4095106940294814,0.4701108004313548,0.43312580772392445,0.4263673225503346,0.4729635547030374,0.5697175402315632,0.41757400166876696,0.4771395717149984,0.4336773765001047,0.563064625138746,0.3518374344184168,0.44553717263790577,0.4621030617124197,0.4951813797078431,0.44201545011357385,0.6084476480358527,0.3258543035602372,0.5088599506678855,0.5587278770742186,0.4985166533355942,0.42180925526841095,0.38930175600693906,0.5296117401996737,0.5035318469452916,0.38052563072449264,0.4997168451171666,0.40519058158282756,0.38164403407368996,0.4501662438022998,0.3643660061227474,0.47711374622755054,0.3961115444275317,0.43133818774763216,0.5172163203646656,0.40769968751930064,0.3407928567679262,0.3610768530940599,0.448680615154151,0.44240239899880174,0.5091580912330558,0.3971512844852493,0.49850712490882104,0.31266890485443294,0.5087208087281169,0.5309064873609922,0.5359459841712089,0.32852488477938213,0.63631073907106,0.47302549610355576,0.3912731982484024,0.5123013626390458,0.3724440326467097,0.46443078696154805,0.4747583905253766,0.4364209175387748,0.42827537128591064,0.48925772450210697,0.5738010197807135,0.4476831565375003,0.4783886138444805,0.4386356973075215,0.5211849329109818,0.5084000484386324,0.5364636850804998,0.4404509502869946,0.4638624727357985,0.37680449127061594,0.3786190220589046,0.5545234274824844,0.44107475339009167,0.5885684419733967,0.513424293257358,0.5463927770841983,0.4716860787799085,0.46486070379848865,0.35628700350803433,0.42054551596815076,0.4965734728323357,0.4984045240290857,0.5316086102042039,0.562780548530585,0.4446314456166255,0.35582921954338065,0.40176700799924475,0.48674088179240527,0.4664471120871829,0.44892530404335446,0.5724940649953912,0.5051943363993668,0.4352958976846942,0.4171858534442911,0.5008036119044916,0.4279797955813703,0.32277459659350743,0.28866453696741146,0.4443859497771761,0.6429707630361556,0.5685283639243839,0.4692058712438805,0.39758281703349796,0.47176109705164687,0.6082986406590354,0.4395002361356953,0.3531061023248045,0.32526065952035177,0.4115192674122526,0.4597597892483513,0.31161761044654124,0.5025479209266807,0.37949086783804864,0.4923275697985686,0.5049102486019413,0.44957477083092084,0.3473656977029493,0.4387630806470434,0.46646550048489915,0.5007173808773266,0.2729844370602015,0.4601689440817639,0.43173275769992153,0.5107994953850663,0.3763644625139251,0.5138872867997921,0.4429178940341743,0.35143718242207067,0.40808780672235156,0.452576171427225,0.5472991381540933,0.29400071572829983,0.4091600635173497,0.3905942344807746,0.589562557493075,0.39132216189862273,0.424413628309512,0.408865340393386,0.3866363054457842,0.5248615374608976,0.4195150436800341,0.5064855818405803,0.4528730360631657,0.5623811089745855,0.33182765182168,0.5328658116885706,0.5169980345468668,0.4293158433564667,0.5544303152254727,0.382737220414527,0.5574275565933821,0.3688638591768377,0.36462723161162974,0.4991971941986119,0.5482934368207745,0.4568522217597829,0.4116511148947469,0.5490221106928618,0.4879481547307804,0.4564535602732545,0.5929055643177871,0.5565623308570127,0.44853510480227254,0.30504651955205464,0.5117172742143997,0.32860775547444715,0.48909680453502113,0.38071704797730355,0.4118212794770918,0.39090548562091093,0.46554121883521615,0.3630253189033891,0.49542124957814737,0.46715157627184345,0.2790514213928948,0.4113358768079025,0.43582792967185563,0.3717110291155177,0.40570153775993145,0.581980559613125,0.43846829457331016,0.5049897506178405,0.3861134021581314,0.3905745725876103,0.4947616503422878,0.48052246647948055,0.5958949091224501,0.5224424479238726,0.38871259229388827,0.384839301113129,0.4954859172876189,0.49364597129471277,0.43629593982205134,0.5505098922400596,0.48640603988015346,0.3267794774643656,0.5595848621439027,0.4246809701229534,0.4544448072015262,0.5922946133169189,0.5752754537999941,0.5936309545335609,0.41520956718568724,0.42622876444573143,0.5153473439848003,0.5207893401770424,0.6426030373766267,0.37486145022721623,0.3636644362749806,0.4930978148558285,0.3947586054958248,0.45175144353483715,0.5257881154327735,0.4080601822895335,0.287254080094064,0.4554973371824347,0.4951093072672836,0.4609097473806564,0.5186467636790959,0.5464215706868191,0.44021340018191846,0.518043256082594,0.4920517417783175,0.4363502880569591,0.5289199585378709,0.4231394618234634,0.5900112698956135,0.4181388030575358,0.422487344131843,0.4839989919829962,0.5195629468551782,0.48065606662340116,0.5032192956580095,0.42169253126293266,0.4741645075569303,0.4237492308636539,0.3901102047061669,0.5053396879398189,0.5749356160263336,0.4638941515246534,0.603706191286533,0.5052639423250622,0.4307141865267459,0.37135146871276076,0.5312257791331776,0.42051390167421965,0.6520403069159568,0.5867122957091987,0.426646890162963,0.5601778406904854,0.3924633685428042,0.38728679573771463,0.5080850883332578,0.536204972369745,0.5464613563093037,0.4472514013888228,0.39010257208853183,0.4089121965816255,0.4524878590460989,0.3358014577047141,0.48786003316007176,0.5306408701638309,0.4800148670601755,0.5006677708203854,0.31322872675422814,0.46588211998108103,0.3977551704509709,0.4198147445621195,0.5284456653681655,0.3673507129095389,0.424815679517933,0.4039475865623944,0.4775136390935958,0.3764955565161076,0.4971234059255917,0.36878760455889703,0.34912468985357165,0.41149485169142785,0.41198018100111794,0.37263483798755154,0.5148245439293784,0.4561633750856557,0.47144454690348986,0.37684037305904394,0.26859621265603406,0.40757281788049915,0.3707484211672756,0.43877647214983845,0.570473693598392,0.43728690488240185,0.49321914660430366,0.578545051321273,0.5991963751540292,0.42396499283277345,0.47727343025768354,0.4477465935147282,0.5878217283265972,0.36899214628516525,0.43791062851979506,0.6067966136048706,0.4989596453137952,0.41687010345910336,0.4019638292128741,0.4649538010143458,0.4085672588303962,0.4663849495114192,0.5245577576667849,0.5335786360151081,0.3786031846286608,0.5936109018622483,0.3895226198424959,0.4787984228609672,0.5376360406340114,0.40375242096959807,0.5033986917850063,0.412858648100881,0.428873249796463,0.5767094712094604,0.47246582310579427,0.2896119369449667,0.4729626937330671,0.41504348700890403,0.4843076211060166,0.6376297820607959,0.5662619630333164,0.605331987384698,0.47218186614978386,0.3783904199033869,0.4928945605822543,0.44757338875764147,0.5016905510958501,0.5189672845728354,0.3691417442024787,0.3825163836880917,0.5299598514071537,0.501908420905914,0.5240643485714822,0.49074996356968337,0.447335385451585,0.45443066791647063,0.32199922223317085,0.42125298341297457,0.50953541732611,0.48411546193342403,0.4889007000249986,0.5626775833349915,0.4081011738344688,0.4909673956166346,0.4445456911631034,0.36625285578805894,0.48211679125483864,0.4622952332735369,0.519990533127115,0.5028466984303356,0.3284958263940122,0.5251956046860546,0.5358418443355911,0.4181775512098412,0.5705658778616809,0.546375078802453,0.48538262167708185,0.5554590037918761,0.4851763381654632,0.48777452568311086,0.5813666193352679,0.44968309547433793,0.36239900906965866,0.5254332658302545,0.39685352884621033,0.3910985920046658,0.4078147456210941,0.40095143111124476,0.4930388153013126,0.36562518768460434,0.5608134127366998,0.5075411631291782,0.5414555080649737,0.499260891776615,0.4025593881046909,0.3339147326953121,0.36486397752523064,0.39067951713303073,0.47582928766732047,0.5824508078366645,0.3881024896332646,0.3392232700395048,0.5211219355217024,0.5453204605448114,0.5894658490784582,0.5267316334826475,0.4568659825196697,0.5049362804103784,0.5216544620299083,0.4966360009454755,0.41635828529093766,0.4830298942834484,0.2828855180189573,0.5594128158412842,0.4376730182914837,0.4446002016074253,0.48445917376244596,0.42020667538613504,0.37501242276832675,0.4636225196590379,0.33570040191809625,0.45485953173756616,0.39316203927229926,0.42411962700080774,0.57326204015902,0.46986734725222495,0.3874179820955666,0.6576331755480767,0.47376172610229894,0.36247311422715534,0.5813386372667096,0.4096046382680129,0.47900503529088245,0.43273815260846527,0.47055066507061616,0.413813907573734,0.3789471858372091,0.481157860213777,0.6112998585664264,0.4148359704557161,0.5395589123918135,0.4779454326833662,0.421615221042252,0.41540857763539923,0.5473400472771718,0.44417368709685306,0.3549508636823094,0.4518306741114419,0.42100153959837217,0.4154306113390256,0.5711334628625454,0.3993154408044129,0.34461624233978155,0.3852846827917097,0.5430120310841668,0.5001040340137853,0.5243963815303262,0.38148106285827954,0.4191270784946521,0.5914099059483744,0.4549923529040375,0.4276320891192009,0.36504857804301644,0.38618341680504786,0.43209942135777546,0.4073051534452472,0.3911091258778502,0.3739031275667502,0.4823243525459094,0.505363541747681,0.5325893292355586,0.3389355838218426,0.5414559282183316,0.5342486696735581,0.598552502127325,0.412936439740434,0.5658595676350064,0.3849080935474789,0.5679106058958696,0.4283006889295176,0.5222166208332361,0.4564777792933715,0.4852689799767825,0.3993076916298307,0.3432561366941011,0.5752246030951056,0.5339739212750023,0.3799515054501773,0.3845375029959962,0.42759351676028595,0.5688016579089641,0.5585970619217725,0.4291944912390288,0.5002923549593284,0.4746249314647971,0.4443929156281932,0.5100204315354315,0.44502251417436595,0.2967529988596006,0.5387275343638158,0.41427626568365156,0.38065091566147125,0.4091114471888296,0.5839966906817297,0.4365199191103423,0.43519114410249876,0.6015655688551198,0.5184655054673494,0.3631342068162993,0.5446994608489577,0.458280587883309,0.5027337543714119,0.4628161793003936,0.3773611642659605,0.5089495116093208,0.3696039785538125,0.5644291048748354,0.4081701232897127,0.436123847210059,0.5504643841409584,0.5056201635519085,0.3090255605387772,0.5699158100204923,0.49618927072211455,0.5398434453064818,0.3791798046167367,0.4741464606382892,0.4980799702512865,0.35297998607279113,0.4434866517132067,0.5992127997481941,0.4326595670748167,0.33362853995513,0.4105026174340002,0.36543544049492926,0.4234136970654342,0.5381488314165798,0.42575324294309513,0.5393614848222872,0.4054268419602187,0.5004432184357988,0.5283222003173907,0.5274120382308323,0.39336574639440736,0.40921631170159045,0.411001469579451,0.44095117600229,0.5332134721609859,0.44131363318554934,0.47817314297406344,0.4107772759380443,0.4139045504841721,0.495644257832756,0.5103490186565057,0.5461530903587916,0.4781295335183164,0.5366663803128608,0.3974140873769341,0.4879523622593488,0.40644372065959244,0.38307034510109494,0.43774368410150344,0.44374656202404605,0.5267872238620825,0.45371707178763887,0.5147874135223101,0.5300681984038299,0.4979696746643764,0.501446300263201,0.48941334753649157,0.5088267960689968,0.5782883716934224,0.4264579191319256,0.40933653740297654,0.4900012988697091,0.3831488776657659,0.44688526870832634,0.5445710127650086,0.5152073069405793,0.5802144434911711,0.5328517045111324,0.4898486922029297,0.5338097086968663,0.47532711672598454,0.4893630613201995,0.48122453031762646,0.6015080717792977,0.409687168896717,0.4603795764949945,0.463018067051172,0.5090569984240418,0.46070870530463276,0.37554587847855575,0.49662112990530344,0.36819705156314525,0.5681837920228023,0.5183654596712026,0.5333966316579908,0.49267828375745426,0.3772652209966812,0.4404326533798776,0.5658454587965076,0.44661991213927554,0.5633058050489279,0.48129367956111213,0.5531489141632749,0.44880600894601363,0.5238858966639881,0.34608902884008264,0.568801190633347,0.46618180066999987,0.368335066382399,0.4157281358972854,0.43576369985372576,0.4696135338008525,0.44101088955867856,0.4870931728275425,0.6465362335004328,0.425726517153921,0.4947847226890048,0.5475853696917085,0.46045255090029147,0.37536820692304135,0.5460274827119352,0.34339051254007397,0.4855662883920265,0.39730273363621493,0.4736639281539589,0.6136229385753474,0.3939942306838288,0.5082668525535021,0.5253544643017244,0.4799652693630315,0.42927570616136024,0.4599420666539506,0.54125236842188,0.41514209176145983,0.37186994472714546,0.4817172594899231,0.5852979113385147,0.49607338637210374,0.3953632394792713,0.4608991468149917,0.42765329897754284,0.46937141692265194,0.6525229948917123,0.630398803725051,0.4903016130453653,0.46923542356102815,0.28691937370181503,0.3522797528017889,0.43574747463139496,0.5023657385131289,0.5612108091100674,0.44761677796754634,0.49458927458018925,0.4440645167858494,0.4774592724040823,0.43000455034529983,0.4912177237506996,0.5593651133900239,0.4051912849488691,0.29664808250731156,0.4110437361030078,0.47623790518023584,0.5265985880965702,0.37131627192730854,0.3073976178235053,0.43305299517621887,0.5418661212129133,0.5087736534602325,0.29348305806096514,0.5942838320729135,0.42498948020429145,0.5387184763865902,0.562450095083431,0.3778080588061865,0.5461487176417003,0.5468570398164028,0.6441378061662453,0.49213658203643107,0.34658736169177445,0.5344859342951588,0.5175636392961916,0.5182105414972598,0.4349971104180866,0.44518152120666954,0.4661610994477759,0.4748151303554363,0.3922286658656802,0.4867472235243029,0.4550073394121625,0.44977334819719483,0.3957193856814646,0.30648520778133914,0.30740971263681416,0.5482855946146533,0.4166049644125207,0.3247268404642429,0.41703515660127927,0.37013878163700015,0.474050040044449,0.5253561955824856,0.5195670066205548,0.4255572674031708,0.4693446794517693,0.35954657756168595,0.44619483807597526,0.4049136083696943,0.36061514194794164,0.4958788736113054,0.5273763726080699,0.4613568462513759,0.5441380995169742,0.5244847166350818,0.6174203312063457,0.3900536884598548,0.6063683797290176,0.410512600080968,0.48865453084459587,0.4618410977668342,0.5516480523233303,0.5399019732585757,0.4643632731071052,0.471974512185551,0.4686919486760576,0.5471445039214424,0.5404597331534947,0.3815656808700494,0.4016119772039078,0.452854106033855,0.4662733996434992,0.5315198849691604,0.45939233738657487,0.48415056866029393,0.4326788164861625,0.5055124273592303,0.4016460465657687,0.45125603087049965,0.4040872205856726,0.3815726581134784,0.5700547209881024,0.5705502258739891,0.5021597668842498,0.4625257309750981,0.5066725608584419,0.5651657735416276,0.4393239234389567,0.38418539060693613,0.48743117945771003,0.6514049031390973,0.3940156176428596,0.3457366261985438,0.48068852257770794,0.4548044855284697,0.477584627001827,0.343669230838992,0.546970638997371,0.4935526498318807,0.5330810888380799,0.4692921866094847,0.5064305715042476,0.4145311185690626,0.3458455728943751,0.4925661194432533,0.3179604238598077,0.4351220556150595,0.584356241594266,0.46950860659998694,0.5396195234462575,0.4013418865989717,0.3582255675105414,0.5031987242269745,0.3520927123326889,0.567830299158294,0.47447309321469866,0.4387042714212703,0.42055226010525343,0.3801593805762672,0.33577248920526426,0.4749624272087981,0.5710786006693446,0.4205495703417252,0.589506476969595,0.5108398952342991,0.4535472721500821,0.45425621460883786,0.46641161046255847,0.40335954734042323,0.5623167057323895,0.4151554374527703,0.4005160755756668,0.39025255798062297,0.4738380178710909,0.41241977627701243,0.20456646511372303,0.5183688093337491,0.5239255340994521,0.4695636706838822,0.47797768442385913,0.41867358272662536,0.45141340577367356,0.551812111131118,0.34731259551690863,0.3949967871107359,0.4929787306779788,0.45831048199103175,0.5734639433887381,0.4829570974802685,0.37661181995185045,0.6765427852798679,0.3997111954046839,0.5544769095853687,0.4561565383031887,0.4957629154861844,0.4447038715977373,0.6594685938080308,0.4906085328129676,0.42030279321638764,0.476820017668586,0.4071176433796952,0.4987372635050985,0.40838202867469936,0.4584427548765253,0.5244344314733524,0.552650734148218,0.440237602364926,0.4030100980409567,0.5099120210052625,0.4346762498781217,0.4019186610891858,0.6102928193387385,0.4913339144708071,0.4844934481133025,0.42763472618859966,0.4405737106184782,0.5341554246038402,0.5557461034875667,0.40229051566795493,0.4717697427458595,0.5050015480748522,0.5138163840459692,0.4038857141234343,0.518369816412569,0.4609523273595348,0.5576083304347434,0.42268204266238335,0.4864799928819356,0.44919735577563474,0.34460081158399963,0.524883806844646,0.4455162750331611,0.45721533637354994,0.46363490372351274,0.3868538726279145,0.48793600849096896,0.5171333585714458,0.43433419045369587,0.5753842786000787,0.5116708425613036,0.4129782654528098,0.44232333512675986,0.5665594283826623,0.36809670598841915,0.40366986466325405,0.5070380374920805,0.428061000776361,0.516080970729302,0.49565041217923844,0.46613597855687877,0.5570661346413849,0.49237097470889335,0.4417274184952585,0.6580649951111008,0.4357970197796657,0.504319292648761,0.4993792469002725,0.4644845424926147,0.4287180548863994,0.3804643828839408,0.5829431597723044,0.317151375326124,0.5291684823178053,0.4150599378308888,0.46618355954348956,0.40050294559585975,0.3875427042230744,0.40482401919372096,0.42124806055452263,0.3270473896270666,0.339370429988617,0.2728614633716129,0.4983602302092227,0.3593228874319126,0.5615454260586558,0.32180667789261275,0.44888456002088384,0.36211712664952006,0.43576175795870026,0.4838054204196948,0.5520518883546607,0.4737407839502435,0.46082726535221596,0.42248828288232787,0.4398465057784459,0.44085822243198813,0.3560674104330568,0.42715648450104154,0.48378193199443925,0.51216687012648,0.38848287816068117,0.3751823623820995,0.46957732261892093,0.4890304015721334,0.6118948721981423,0.49159967523348297,0.4538381908247406,0.4753036184261005,0.40296346449022596,0.3896466239279604,0.3498868593796629,0.4128475083641465,0.5177933590674305,0.38959405497246724,0.44628472633179417,0.48689223550762445,0.32398522628320536,0.48910936617800765,0.6547827465036186,0.4372524632804051,0.552655743099247,0.31262211227244385,0.4791232210033748,0.3286914134420467,0.4962915482086015,0.5689929379384734,0.5260101364835698,0.5923270301727076,0.41947245305549974,0.5196663121207709,0.40469732612904374,0.4357343394946603,0.3176840650973431,0.422341285523595,0.44631789556439055,0.5301362891189697,0.45589995724393817,0.4599207793516647,0.5034255148995358,0.4858542408062777,0.47074666559569117,0.44552136615029075,0.6106116172064189,0.4315914043996744,0.4558160382718117,0.5430499835453825,0.36269424703688874,0.5323142874385908,0.4293187008129117,0.43474994643898557,0.578952474925796,0.4688626768380498,0.35589484761057383,0.4365720919674098,0.5190059327530475,0.6542736853518207,0.427683614158255,0.5218521931509593,0.44990441457318325,0.5416060621079266,0.482326034647645,0.4115738532467892,0.37345533268580317,0.35706694963949076,0.40990241601371225,0.4710827120781276,0.4021767427400586,0.4344991722806422,0.6368044812437408,0.6364994067939455,0.49001052817061047,0.464672600899521,0.40813064067680677,0.4454215352555921,0.5450205406718828,0.4146018687689042,0.3597674458720184,0.6008044521842919,0.40429156741385147,0.5470067128887293,0.3432921498911038,0.4290374121516482,0.3450845339385751,0.6387721175959217,0.38616348313492044,0.48425231081762976,0.42085294633183135,0.4892604512580724,0.45624270374302744,0.5578548766103382,0.44696678989982724,0.4848578601207985,0.5144466266236623,0.4966782863155561,0.3958694768275574,0.5443240521087028,0.45139757008180637,0.47196303080963653,0.5947649189087129,0.4861712300136643,0.2984855739236618,0.4136546280801962,0.4721663769411568,0.42465694554718614,0.3543735253361625,0.48009062992407964,0.5577179064141894,0.47993009185662533,0.44929657834493386,0.3458274794822164,0.6266235127711582,0.4422998069757682,0.4794620635760863,0.5443801565369437,0.32235006869937516,0.5047406048758863,0.42262621309550835,0.5583828185569353,0.4755916443756777,0.42180088174562047,0.42971911167562965,0.5104414579695848,0.5050272414937593,0.4416216569997782,0.4157674006340894,0.5199117241247156,0.29214140633677477,0.4876095240220449,0.5278931019398858,0.4591085600303041,0.4795116872281835,0.3713329581061813,0.45014846276881737,0.4860561706232937,0.4652575554983747,0.3125914942534073,0.3948562955925027,0.522064131223816,0.44146457608828404,0.32508050216536516,0.5006431867830651,0.49472290319185297,0.48971915278395556,0.4723120680907594,0.5757581750228109,0.39013429692746177,0.6601755098790766,0.5460369783966735,0.3757537986831147,0.4285858610754884,0.4290805030327446,0.3633335825257061,0.4768396220742037,0.427167077350967,0.3461324131718634,0.48160626815721136,0.43946866539320595,0.5646135996073682,0.40466379983832124,0.4708348509522525,0.5078525614758613,0.34202472977029547,0.49499626400753105,0.3493613932879531,0.4345720529435706,0.43252663589544654,0.438771896025298,0.38611690145364774,0.5274089552836982,0.6184228626377287,0.3286648560578613,0.5360825176261886,0.44365190072289246,0.5685980757545469,0.493553478300517,0.33373229295549744,0.3679342583952326,0.5248101210200632,0.5118510143617697,0.45711263314986367,0.36600403110261404,0.46691969665367267,0.4087324359684544,0.47398324071720993,0.3759108088704422,0.5764814996862754,0.4324842719078588,0.3436425214433812,0.6334553031394489,0.449450670690314,0.4519896769611863,0.3837633818614651,0.3398877764771763,0.4022590058336893,0.3664298376629726,0.42982446776646355,0.509979433889439,0.48510107022237964,0.47545567626509655,0.4942617550332102,0.48790955599629804,0.46275794172735524,0.4496247241828136,0.4765596934944721,0.4451339809780274,0.37990489868000216,0.35187795361736146,0.5095121952395423,0.33754933622969135,0.3756046189252559,0.36703107260442064,0.494423442597811,0.5629254845998619,0.4599837570046293,0.3670363258850995,0.4885763872659842,0.5066095436248037,0.3686853969936316,0.3802363866598486,0.560976009930443,0.39817838253076343,0.5110557135179699,0.48852228040374024,0.5270766607155041,0.5444375170911402,0.4677414237091367,0.30413824737840095,0.5315903159211488,0.40061760012971637,0.419080432785797,0.4446390790371637,0.4449209778239282,0.4801223519267315,0.5307858005706375,0.4430494470960591,0.5513712531077906,0.5531567654871948,0.4559943557737696,0.49508404579459314,0.5165410443128489,0.5512100409368592,0.4070105945922694,0.6088372434395778,0.35376901755323864,0.2521713201260569,0.37742919394737057,0.45529325611947863,0.4944104474466722,0.4402018462333692,0.5745507510404867,0.43758434368434296,0.5246081512986546,0.43973193829796153,0.45526828098161887,0.3893069142091626,0.5625606875298704,0.4571562422830766,0.5087518030489175,0.5833670350886341,0.3803447523493209,0.3786962982323484,0.43634965011362437,0.5292497897745757,0.43715847124538754,0.36865216346579793,0.4919198669703167,0.5799042190714262,0.522911321979431,0.5861483993889577,0.5095805209037583,0.4529167048449722,0.42667683185728705,0.39010917128783873,0.47172678291402675,0.4602365346178041,0.3602823730491394,0.4788426619928692,0.49740154707777584,0.48677253218693944,0.31791078378825977,0.46276449427727706,0.5233580577103214,0.5354050066358429,0.42384862702493575,0.5417749182790657,0.45218194662803346,0.38818925669853854,0.5008483415321403,0.5695660242064087,0.45808046945903597,0.4013721869974922,0.35951380347237893,0.4978494128389228,0.35906733871367663,0.35799424004356667,0.3926573035426733,0.4648728000222193,0.4711533905381155,0.49956726312537075,0.4169937407487658,0.44199450155910086,0.43724066198534534,0.4769412371308402,0.43965632561003143,0.3845317274989771,0.42096219618796976,0.5579559704566766,0.36854335911611436,0.4696623519699105,0.49799687421824557,0.4481741206259462,0.523537047133068,0.5234059623630766,0.435702524176776,0.4838365747608376,0.5748321133752429,0.4482264995400138,0.4042955610708857,0.37335518647382426,0.4814549124343479,0.49762885399474405,0.5668200370403514,0.3881267390942025,0.37863980009028847,0.5235202985360025,0.4837444188301622,0.5448979424736818,0.3776461828702218,0.49126356655227765,0.4376196293427925,0.4503783935875794,0.5084094364048861,0.4783160510131369,0.3565650208030799,0.46472869383326865,0.4216171399621891,0.4719035596147964,0.4522400515658023,0.6096626567565813,0.4094280425569855,0.5697943169324521,0.5184776145183183,0.4005214659205162,0.363227314012004,0.45974846009652065,0.36483765148070396,0.41079973319112845,0.6021611962876994,0.4690454684560988,0.4996477602511839,0.5077280184480603,0.4491261000173704,0.5235737986623583,0.4483458666457286,0.4235141332267061,0.5178321352255904,0.4943976471616999,0.3798649303241182,0.35856398445050386,0.3955648069348913,0.44449316337050154,0.4428173087011353,0.417111484074555,0.3681148260866177,0.3719387711182671,0.33890813766119604,0.5205570307319157,0.39048990441551046,0.5174025647653594,0.5462581102209383,0.31287510311765127,0.46287899039893127,0.4353237377721118,0.48530234653152526,0.33501323259165056,0.3515603845454057,0.558948874971999,0.3997119097292754,0.39862193200318174,0.44358262115166525,0.42787390510197226,0.4340829831775691,0.48254421621770344,0.5344876346013575,0.5810991323334547,0.44149706645781617,0.5798202316326533,0.45174531970355386,0.3644096881463685,0.4986703368647598,0.6109553643850227,0.46460420106178857,0.6194012024166201,0.3943248269859498,0.32974255230080374,0.37816157661043476,0.41931764519222814,0.42602950286800934,0.3950521361808062,0.43684551600682764,0.5437345741557315,0.49018727012769864,0.5675432923469711,0.5443266078660642,0.4353121495647956,0.41261017588973736,0.511695810601253,0.38531534179991983,0.5657242391639419,0.598556854703948,0.4245313550133738,0.4384198288908751,0.326685817156022,0.5901588683782355,0.4044762690085485,0.4197107245630483,0.5394655409054463,0.5291765781944718,0.44349629340422625,0.44433462217240965,0.5294885022828062,0.5004369975662467,0.48936804885741164,0.4709614939100259,0.4577286200227054,0.4976753301356411,0.47465971929790973,0.44830328886578963,0.5499981859101253,0.464883942295397,0.5108863565369683,0.4382201777678664,0.36931096571820643,0.4749050995604854,0.4424724214520334,0.35562430026366804,0.4405859541716218,0.4685692970597251,0.37736927886582966,0.45162282040931345,0.5568146944454998,0.39392933129210495,0.3985541634662878,0.531319561614426,0.5331251859801498,0.5979422607057757,0.4428502850913952,0.4422482429203366,0.3852170383144729,0.360943853507551,0.4963458984530896,0.34276156188879287,0.535644105278806,0.46083454900076415,0.5037152918734121,0.3932866507486002,0.5148665080781006,0.35580626540436583,0.5454037610974622,0.4024027788737998,0.4984348179468208,0.44254767623454905,0.4056463958701234,0.3817860271397181,0.5083735142178616,0.5809740673256939,0.42974985655295445,0.4796127593087585,0.5051560582530825,0.458663277942101,0.34178912493060803,0.4802532032800338,0.4549519358678877,0.46865653920990114,0.41802203421726886,0.435529288477861,0.46023767024064416,0.5294134437712292,0.5819145295622906,0.5082615306603533,0.5919073537576497,0.5009526559699071,0.49550415470400644,0.4128430910861881,0.37029841839729993,0.5826711184375911,0.3533584068837703,0.529740293153149,0.447420166626419,0.5030721607252322,0.40988438309616,0.43129726918221245,0.4797649221949756,0.5535626825940709,0.3823347800822296,0.497279484558367,0.6213521268022298,0.4649431541320534,0.4231980846072685,0.4659282905035959,0.5361501455331837,0.5277699379017551,0.5030354649327137,0.43761098489348715,0.4434192624972249,0.425539689459036,0.4785819113240664,0.39292329134220666,0.36073041158526764,0.46025242780821163,0.4859181694560072,0.5298349034793673,0.5898733631148662,0.519432095081359,0.48465205610627216,0.36968615111797165,0.5008036342883917,0.49425090348455525,0.4729573169982994,0.5275250860159036,0.5474233123316347,0.5218667079346581,0.4388495815942695,0.4538242881487635,0.3981209714703446,0.4592389753211924,0.4818792242670001,0.4119197376636888,0.506732254758028,0.5404491260616892,0.4235143637867579,0.2526174938199827,0.5575585686694186,0.42424797872970543,0.5115126305118276,0.4359406595973342,0.49336087647202687,0.42165679797273414,0.3468893204094529,0.5135017237103664,0.5667472961198159,0.45649464015620306,0.4431909322422985,0.4704981035039428,0.32609191328823095,0.40411117185709566,0.4960892710951523,0.6397021840884661,0.3542103328454678,0.41374853455594984,0.4834502560605164,0.5009085639650733,0.4922416201558837,0.6001778807631946,0.5255077256334248,0.40398253173668475,0.35839039070300316,0.5205969384068874,0.544461833848044,0.409055736429663,0.3212171785021544,0.5113917646711847,0.3970194257400433,0.5233114229967638,0.43609671044009457,0.3516981144613133,0.5987019714807794,0.3654949694225181,0.5458797467889617,0.514607863659988,0.45271366969327925,0.42375171585767074,0.4492295817793708,0.4989907633208601,0.46865661090960115,0.47613757750183505,0.3727099853152991,0.42948135389305525,0.38274218821529715,0.615935914483504,0.5685563697183721,0.4742624912425887,0.5084784275785083,0.6915939576101496,0.4366305470383413,0.34560672724229047,0.5122033907642044,0.4346875061206704,0.45952115855603626,0.4390787968686256,0.5131774413066928,0.43051368281045677,0.5780008410843789,0.4857218025224267,0.634032973304646,0.5405941205128251,0.4586964637976995,0.44684543162634177,0.4826147961334283,0.5613116943521823,0.3479519071890938,0.43574392340374996,0.34009933309860135,0.5447808104197683,0.3162263421251223,0.49938718351925776,0.38539301958263744,0.4963706575339352,0.2400187095446309,0.5474171956254054,0.4740395376695023,0.6182811572377565,0.5524396816808547,0.4468961873589566,0.4207741399415267,0.3086990370189951,0.3134182241699158,0.4601634103069043,0.4372191909986647,0.507295563629276,0.4314646016434151,0.4108472835691198,0.44703567635653135,0.5036959352571921,0.535260053212591,0.49819816785356386,0.33295587027466567,0.5334804100695101,0.4716854262343102,0.3640146922403209,0.46708184705644157,0.4904875703530577,0.5171974627170507,0.5857000973114037,0.5183528818388999,0.48420642093915683,0.4531270097440515,0.5436528156613812,0.37232585064592405,0.502514955705506,0.3216980525596906,0.3932804065637449,0.5318479173542697,0.42603282674536164,0.41214237549313354,0.5724851014119459,0.4815504306957117,0.3410821856290981,0.4865241892507629,0.4738939685754496,0.4431307336297021,0.47520237796438314,0.4015939109269138,0.45593641576712124,0.4158871073370669,0.5447613882535681,0.3950591134866811,0.47973392835344675,0.511918905433882,0.3101054392239133,0.5849014932343612,0.39571037306466655,0.3612063128195532,0.4029600590311045,0.41221082658706687,0.4708276293913097,0.43125571453626266,0.42318515656175487,0.6412288398235231,0.43484132432674627,0.5279635639050417,0.5533676713996191,0.382129127962375,0.4542961566855063,0.5370093266182553,0.5424991347886889,0.5050557633135586,0.48889223061398657,0.43906169246307863,0.5339741312371838,0.5090213218115706,0.38597726473651583,0.4295798130778794,0.623357004899271,0.4954956789094433,0.4293303088482286,0.4679798397006499,0.4429513654888031,0.5852771102577741,0.4781771882291268,0.44104678603162706,0.41703362140563627,0.591329572073892,0.38320412897101336,0.4565913393436798,0.4704364878146651,0.3451462693420136,0.5095026418403565,0.45436577739614903,0.5350330607072281,0.4744160037909479,0.5533691285508955,0.388797350321519,0.4383842762849086,0.4490214050947428,0.64370242422383,0.3821312547373692,0.3672465370773809,0.5831818770820524,0.42054622710458184,0.41020133418398996,0.5507270639605824,0.4795409489052556,0.5568245552964639,0.39597720259225894,0.5363748298876716,0.5303990375297766,0.4668620165891289,0.4285687656011262,0.6379338141051097,0.44435749611259195,0.5690292271327841,0.4071800696186445,0.3481493353388644,0.540079963794105,0.5900064892176609,0.34514560630720326,0.46342751646573727,0.33340154611624984,0.42232219556648215,0.46992758089727726,0.4497656089821551,0.46243300292444844,0.41855665958545435,0.3967453057667857,0.6293077202288713,0.5592605233508289,0.5128339698940647,0.4561698061686653,0.5424437499366658,0.2679118694516542,0.5183569935952941,0.4631768609030239,0.402027767606979,0.4570510189301598,0.5251253210701465,0.43789670952725934,0.463929935885734,0.5310492105671466,0.37866030644603343,0.2831467416031434,0.4348896635014598,0.5131989539418126,0.5495581477588036,0.3078723103088722,0.48015238727531356,0.4981836024743498,0.5561049423550656,0.5005287056861046,0.4471962344911865,0.47753937353203263,0.5056944017557536,0.5300929044170872,0.4849368158550773,0.5139620968252557,0.5168461589152488,0.4932974454688078,0.3552373976133442,0.3977657871561318,0.49192410278573656,0.5170184037311916,0.448103067078741,0.47056577749414025,0.5196357862760632,0.4911575596522443,0.4427904762544036,0.4997612203892267,0.31284709384287923,0.5903035143147953,0.3919097988821917,0.4060522805627788,0.4548773867889839,0.35033678839324195,0.5908768355163404,0.402269731463114,0.4471776584763873,0.5433397012338725,0.3639762386649704,0.4437164393080808,0.5419451726928082,0.48188370679073966,0.3363500258094034,0.3978125828781243,0.32603306018401496,0.529681149673177,0.6630246371145535,0.37903739720804297,0.3649754153161857,0.45783169505338434,0.5263404477665151,0.4480456417932485,0.49066029811680323,0.47360468627058117,0.3204155982104493,0.5902401655870014,0.4431874949805896,0.5523582281196976,0.36737051335436094,0.4939036242631735,0.6570318421665714,0.5175191704746889,0.488547521198734,0.4449566271896201,0.4302959222650859,0.5388523146560437,0.5780103375969937,0.39728245121410355,0.371703291774926,0.48156514658762417,0.5846068943085836,0.4168338884180422,0.42272500590080936,0.4443458527469437,0.5228491144603893,0.4163190021709694,0.5308171002232848,0.5016358763397826,0.5929895192267932,0.44442291360505337,0.4936640911882544,0.5697723193614509,0.33715342344094523,0.39524537900521856,0.38136380527412395,0.4238014309002893,0.3983019687632184,0.5369639879100454,0.5187884532328036,0.418780035870015,0.34107005227514914,0.523904797472761,0.4159212910462809,0.40083617057363236,0.5126817852599199,0.5677090484815344,0.5388505740717768,0.4266908188143458,0.5259159532905325,0.4502477411168042,0.4137516017128646,0.49594336060412897,0.3673105434735695,0.48323998505094756,0.7267340143211344,0.3153851632617857,0.5416160943909005,0.40774107434790385,0.30716646250062163,0.4479004916037599,0.3963684169635269,0.3990584376165384,0.527672133762942,0.5093036572387497,0.4422232505135351,0.4790803640556815,0.49210401589234415,0.6005872105122143,0.3942138944650685,0.3827619360135394,0.5144861795089447,0.3906520144395824,0.5028394208472932,0.32224690995112226,0.4848015550427127,0.5209575751084173,0.4614780153041539,0.42808045076096257,0.40029293318959325,0.4460072517282189,0.45683210681587566,0.3758662977440085,0.46520569375147774,0.36902177461911223,0.48817068776303507,0.5233995488426681,0.6000170629142134,0.3823714230913407,0.35731831460037183,0.5369770840912249,0.42577172213704195,0.5793504136134711,0.4447972320207363,0.419181262051714,0.3968082437509139,0.44757442428006705,0.41902641181059963,0.5845620385857752,0.44309192342385795,0.3927938948115121,0.5238909112034797,0.5484241023628064,0.513209982522687,0.4819802429137402,0.4078208888570337,0.4390982318812933,0.46402912422182496,0.43031212722180984,0.43415653915675756,0.46947350191419573,0.3995832617154884,0.4305435019185701,0.5122339270061284,0.4658491522806166,0.5482267344289036,0.3741877567865281,0.4605139781646974,0.5333780629661721,0.504901168751445,0.3299813573608186,0.4912885518282355,0.4919334754924913,0.48487118718351335,0.38051555119162855,0.6135120343651125,0.39661390969589333,0.5736432175830574,0.5940995230671385,0.5589171095796178,0.562021903366196,0.4737156144897789,0.4244622928018821,0.4611033312067619,0.4395018888953161,0.5543522152575858,0.47071305432423194,0.465010562220449,0.48197150875984063,0.4985791687614211,0.4270578458913005,0.5281717437413669,0.469113365362051,0.4278023477450125,0.48979285464199174,0.461242798961538,0.36821218045557297,0.5227314049251311,0.5348374206234547,0.4799936279926952,0.45286646493843274,0.5450966555041417,0.3974078913882666,0.6232377211461397,0.6185389716183024,0.4494181507291161,0.403260942740097,0.5149799019183261,0.43102641533139574,0.4841432636269141,0.3928576563777192,0.48034408353189495,0.4787144513803201,0.26019924435931835,0.40283082258758357,0.45014036637138516,0.5293104194162755,0.5542245946982151,0.5439843510170339,0.3943032220599715,0.4882297759527588,0.5190355128336622,0.45810019753494285,0.46983466769805343,0.4772690793537513,0.3975531703573423,0.3212786422672582,0.46281572765933743,0.4851011372419134,0.431460117368829,0.4543257696957015,0.3980509964007164,0.47889688161997956,0.49635219760038546,0.4548825154206637,0.2997289235483826,0.5606363524902668,0.3902928928075746,0.5310655558205095,0.4203810170795514,0.4681025836561525,0.48710635280496645,0.5213301181994884,0.552919801316696,0.41830486590224336,0.3913087179774901,0.27173814704808097,0.4146069508048969,0.4739775506838673,0.46331336985220034,0.44438046385419583,0.42374136193568385,0.47031452543461716,0.5646647481894064,0.41277204314740373,0.35317565111975907,0.47942723576407464,0.42196646219027567,0.41186273038174376,0.3819126214041462,0.631342431661335,0.4908113104559832,0.5678954200569333,0.5332550231618634,0.381007445375654,0.49805017378848,0.32803695064918825,0.4489851345430566,0.48543853590716013,0.45004530618532845,0.5146484082328093,0.466716101568933,0.5582438264159743,0.38014444865770136,0.5536458799195402,0.46708072968508435,0.451928878399849,0.4969058568469828,0.29763588889628295,0.4611761663318763,0.5230665860880389,0.42353509608605144,0.4190801350445384,0.5404742938693561,0.3505511877222762,0.42560495207391746,0.5378191492450591,0.5550082991672831,0.35136442506998744,0.40523027835744513,0.35659300673562694,0.46487906427694237,0.4250417735012018,0.3887922006352712,0.37893409550423424,0.40469864864788185,0.6168844230781135,0.6279244191569058,0.45407634120698454,0.32426030583805543,0.5173081275290925,0.4735688268696906,0.4061009913922559,0.4389798628861366,0.35190954669674535,0.39539218246421953,0.4116656618615366,0.3912100460587081,0.45625188544018763,0.4619484283269678,0.44713178055956326,0.5329609551134155,0.5254829343160113,0.3950870794029623,0.35072570813294784,0.463672611713879,0.4242666831550604,0.43523705966505855,0.3295825398845148,0.5638532705523569,0.5136040735982916,0.5178297678405714,0.5330686118082542,0.5109859479337161,0.4148227073860081,0.46505540133519657,0.4387697950785943,0.5697324040045131,0.5023439807955344,0.35973091698930226,0.5601971986205465,0.6784320905950365,0.5239788582061413,0.5523492305701236,0.4958150598572623,0.3994076092603731,0.5173806389830853,0.49114057014988965,0.3187369853749015,0.5431427816741313,0.494332731354585,0.41630018866917606,0.45816094905594884,0.4608612851155634,0.37004575131864426,0.5465241300722982,0.4711706257620831,0.4479483624155869,0.39024047542156876,0.5384356899614026,0.6409315070196322,0.5430798700964374,0.4337169536276944,0.3401922992588767,0.38537080800052365,0.38673704917636803,0.484860429872299,0.4692398415189596,0.44649540146231775,0.3932791220185868,0.5036419555165303,0.29548259300835833,0.47749951525486783,0.37108506255421164,0.5519071417198729,0.5419378425425257,0.4336182356807733,0.5776435059317707,0.4575817328004633,0.5003078642494999,0.5208561547017101,0.4956238824907129,0.36373370661149385,0.38761055333249284,0.5114549892710061,0.2974498406404298,0.42317835581384655,0.4584507041117018,0.3671214665021712,0.3751607676453954,0.4167253042258325,0.568561889798551,0.5134956017149096,0.3612177605512918,0.49702303500800527,0.4844901999510999,0.6607212502803897,0.5256439764151299,0.4083333277524599,0.48607933350729304,0.5388506209315773,0.48075007254600377,0.32639633527372797,0.605121737709985,0.5567113371228333,0.540520469044925,0.46219680373764926,0.5039052796300382,0.5191678180853083,0.35226043035370985,0.24368966072717105,0.4712079306655749,0.4634070727472414,0.46051677553853,0.3820507133130738,0.33864513600136015,0.47391869897793865,0.4048740223553312,0.3901926216043678,0.5265115816368423,0.6657899381796469,0.37651199092841753,0.5433139056704827,0.44236367559416256,0.37259985864259,0.3518794292448705,0.4459780939677826,0.4053610655814193,0.5130651607857164,0.4350657146771489,0.4630845665349834,0.5055655871321686,0.4364457252345357,0.5349164615921889,0.4722885512820789,0.3746250430082446,0.5931922623077098,0.4090611998391049,0.3990116444951635,0.4565711521803187,0.46756472345581424,0.573103922108432,0.44216055790784337,0.4798319971262214,0.46485640763467456,0.50564879255088,0.462208564959402,0.55648360275708,0.5633570651892312,0.5147986977221581,0.5864090430390462,0.44985754710098635,0.5107766502176346,0.4789265353586567,0.5209083316714361,0.5065035607227513,0.6575506054400502,0.47006305464257814,0.40691793058659126,0.4831595178658995,0.4861068489985529,0.4286653460890501,0.44945836396377,0.42449987578352516,0.4897365843259831,0.3980733185727029,0.49864248019646645,0.7467338990193753,0.6361023373660529,0.4032729822909565,0.4152132797560562,0.570948813276908,0.5541577947023624,0.48092196035970525,0.4219316292269065,0.39191056473089586,0.4569267957937658,0.4365914221964614,0.39012643745969083,0.5633618520559407,0.4874006307794556,0.42291711692599504,0.4275279310459245,0.3419330157791572,0.3972421794758435,0.4407355221775539,0.41493222745514713,0.34511461078659084,0.5128779564411553,0.5958713172295205,0.4283926162373006,0.509015671731284,0.4435947682211652,0.5338693832906314,0.4499297123400221,0.3915968654882118,0.571678003540224,0.32129477826678143,0.5003778434026916,0.5601033677737939,0.6080513885680514,0.47086010057162386,0.5484918027509115,0.5248725293290796,0.5596468265486862,0.46512829905749054,0.5563535454690647,0.5071209605139172,0.42884199483820734,0.3862559296362959,0.3644989636886021,0.43411136485018387,0.5367971734204267,0.5074586450199075,0.36543325203049815,0.4897510410445405,0.5014248219921428,0.4174455784546953,0.507393788248925,0.40167466384051753,0.5307256881616079,0.4856790600105458,0.4766478611716203,0.3617783668864403,0.4117867051723611,0.40296031154738243,0.34990120017059106,0.3837811212634932,0.5762720385057901,0.47608454107954135,0.4580488582738553,0.38094604578326857,0.4424136576958917,0.3838534954025608,0.5551170160067038,0.6204758635707984,0.5328004019171032,0.5106015571840707,0.35999469241876453,0.49875263720886553,0.45878735582631963,0.4785464259955303,0.6089582512913401,0.3655043154494345,0.33700862768682155,0.41251233912186286,0.4115673386829558,0.5326898527605507,0.6046440573463665,0.40193054980055914,0.4739725635211945,0.4403728172145344,0.4226534639391708,0.32396538521945906,0.5176733997664658,0.6243758319318853,0.5322407208344038,0.472457470159341,0.5873984694646754,0.4520545427267808,0.46058021484774364,0.47116518642635136,0.5355449890601678,0.5278065225901005,0.41421576625896434,0.5604604031988822,0.5272235419883782,0.36949150336603054,0.41970502913170554,0.41570007036835394,0.5151536920827343,0.49518906583197314,0.40408362863973546,0.43884106000098616,0.5710654931737763,0.4176442673100577,0.5608983077541395,0.5254564054099851,0.4902385490702668,0.35228549049563324,0.38825171523392227,0.5458684230256898,0.30906342499297607,0.5619031720755397,0.4270222169371222,0.42965566502244484,0.44884878183506766,0.5387055845571965,0.3278639838851533,0.448455655421321,0.4354284057695455,0.5335380533738372,0.5168689954806587,0.42186608502617495,0.4152048969970169,0.5329478275503794,0.4764194289062338,0.5653950707471642,0.533391305822989,0.40767975512665305,0.5985619822516359,0.47931981449554656,0.40549580717344513,0.4937901662843089,0.48103255468790646,0.4967894960765782,0.5508074352006895,0.6057442914702398,0.5523461062414243,0.519522148212115,0.5053644453701194,0.681660227858779,0.5505351358619671,0.38099826571509815,0.41548099596473625,0.5121764981732034,0.5085757151302468,0.3839424358251549,0.4373577687432202,0.4353117161755129,0.4267031346881545,0.44901669037583425,0.3508157006702214,0.46714865305640124,0.4296308559073605,0.47525939776746406,0.488792967522766,0.41071222915213895,0.5885771112688325,0.5017371389118048,0.5422351526611245,0.47696747495082503,0.3755184156968242,0.5226426889512448,0.5611681800276246,0.5811532993408186,0.23699706488872355,0.44954350476937904,0.49085726398158425,0.44008521223011265,0.44812933361464763,0.4734166564125445,0.38834842163396865,0.3409429576292945,0.43079084970524234,0.4392348880262703,0.46874927707421915,0.44660046198268954,0.5125697285404136,0.5099622298258385,0.46383821031644584,0.38388189946290757,0.39246449793169824,0.5764545420873498],"value_per_10_000_usd":[139.20694340858458,45.875479812940185,84.31080147177627,60.9808663422872,120.81285315310525,111.89208604140343,109.1497204782677,124.56972787306303,104.67609568405217,51.31761564184087,110.13962180125031,82.62468178314802,137.68763997750318,133.6566958784172,68.49706038901874,62.29870295085215,70.17972569147973,110.0256462897334,63.169179803896014,145.0740211464896,70.63768923090424,49.322696430348195,106.94320608041849,59.16345270288057,223.81989278139383,184.2166529822987,309.51227496176074,54.69485424366211,102.41036723534954,90.52002606175624,508.70249293644173,137.139670399887,80.18085768079894,315.7342989272133,81.55822744429746,299.1181136942782,200.08527389615818,112.24666306926636,52.12788587530876,63.157804969662436,129.16635017730263,369.71383827934784,71.3881645030605,74.35926748987258,90.15831219583986,77.07323370141937,149.13283841545783,237.7106955143871,602.158891126995,42.352372468233455,139.1659050617014,138.17980805191266,47.09253346950917,69.60556535105422,98.63384286144957,93.87927714922601,103.20105525634528,134.9382643077025,55.777338365932444,207.9355271106759,116.2064067674023,63.23060322938396,75.91584367645773,129.4264694833515,85.91681407919205,46.6239254438361,98.7170758421278,126.22918472409997,83.91860829261563,73.3798021873742,162.14629203384627,221.5653989845689,104.07721837031619,107.53968060478681,49.464953283535344,116.29431975042911,67.85440020201955,83.86215657160709,263.71039482164264,177.47829302139502,177.6030307408713,124.12073084636263,104.40599752939629,27.249694836374744,53.653755606870085,48.26915471597889,180.17525402921362,61.53976147864269,179.10001123201036,266.10323914814984,74.90010146890187,109.63299989775801,104.19136081265894,60.05281247929674,77.10641141375339,63.11612172262134,41.61166693417636,101.15116217627514,88.08530127583631,251.66717866991507,118.86363720340182,129.41635703837719,317.48256939874597,61.697502909628255,90.00714267134255,51.410286228410754,51.32895940891225,62.97326741090599,55.7984540832587,120.76512316786449,65.21827386823007,98.63603797853352,40.18433023272831,196.30706831467268,143.1864131876059,37.933593403766075,148.3246163104652,257.5086536859294,72.72700150283059,71.52198210663833,145.65146108869743,57.085646269945805,667.155550354867,69.93081142474007,107.72507317220173,292.72293470297296,91.19436743892715,87.26964213829207,80.84887520687954,101.80157239468299,111.49536112763307,144.92457571886388,122.31248197248381,60.2128134457239,62.88929793480578,141.35894731041049,199.11475426200485,85.3230842213708,177.81869988446658,69.73679212854083,211.11731623001106,127.21659683647835,115.81264861304794,68.32413887156754,103.84869777338082,92.65937842795691,64.27678256222997,51.20647963914897,102.46975061926727,81.56173802554068,80.68362352629042,55.94590584513991,159.83482792873244,89.02287972542177,118.03529124788153,141.81918545128792,261.13630857177463,101.98177797288795,229.5276561406662,70.087141979775,48.257012151393084,227.8534275473047,170.41249769028406,116.6813891925671,46.94887262655237,216.95158772837448,43.738896570468114,62.21131592141715,97.98997299530558,134.37993424139395,245.0808263638358,61.75533703259389,197.5984041336834,172.1644313867378,41.22475375206257,117.03953351552167,90.85500035396085,138.78467129177488,77.26447322270182,79.87226246012813,62.0903498397127,75.11631912274353,138.06563400881575,80.11205620549815,291.3738365520531,247.9574793019168,138.5933184490093,158.0952251072747,98.32159244285415,64.83315386382732,73.28830934683454,56.04602860086583,64.46894583498116,176.3126084849518,70.81414096050119,156.7513182442031,54.858379637137915,116.26769721091398,127.96173787696688,101.26930836549761,64.48772516963093,215.53601407956944,83.99661505503228,53.77487733987388,59.112242596400556,114.24908620227248,83.58544398386847,214.89058732185296,151.2575422636715,97.06415375950219,72.68977297352605,70.93627750954211,168.51263469976954,73.84017014575298,214.59922072883344,75.77926302012133,123.83322005716006,118.23786613309737,76.55359312469554,147.71209159187103,148.11405786465457,81.27220538424763,83.32510255125634,110.02424968828133,65.1208018221248,74.14533135636584,111.87643271867111,119.39343518263667,397.5376358714167,101.56055058005217,110.00177690326046,78.50412610403455,71.99521813420016,98.07092974199547,125.0785564831571,243.50708031471865,225.4026544771926,47.96580998845688,88.1601706116424,153.39599487397385,91.67240133083602,58.36297853536046,170.24370891663804,113.14188433145807,81.1557693408748,235.24402564241925,99.69988006584128,121.2997521878131,131.7138483401858,88.94309821022325,138.23720220018456,48.65795496976048,46.469050211726056,93.3833909385362,54.141631413146044,473.48207897334646,53.52859358783729,29.98939670404028,118.41677621823283,137.14309621259113,362.3838480436355,42.131121629656306,69.00117261835359,305.3252748822019,52.48220247811558,84.34329812244229,44.54799482959536,42.49792532311244,61.09617430465177,170.37506223624095,182.85077872514782,72.29332126433575,52.513546978445646,55.45533199883621,37.048339458338944,214.31337396865726,40.95094846339443,119.28516949428274,79.43731413087423,92.74384307377092,175.25763387571794,60.036341404078705,109.79741560196402,114.72176812229075,138.7549541835159,48.66427862396509,171.38638236207214,107.62134530808444,145.62827357891797,86.92531292674465,49.9804593696631,79.7505065180073,125.08772626271862,243.19682706774896,115.439559038083,113.78820887002573,80.08808747527834,80.57611858609592,56.22948417020295,294.18849241210296,211.4349118610376,101.88818896021886,66.81889790863268,131.7407655777539,143.19837822347316,66.8334815914078,60.77983021980085,70.86489881385235,395.7658812667098,76.58699009070727,105.68878128074562,88.86334543853798,197.82435596483862,165.20342549581815,83.25385372683058,95.14390524782087,150.69780404261653,28.356639494019706,124.43356394909901,65.61503566710061,67.59703906517151,50.03159535548838,60.35763306282682,43.52342735538202,53.10444163055209,160.8966816637324,124.8150198995694,164.68634683314914,327.02532567445644,189.30504073156064,44.67404342976509,149.23584325536333,193.25679474166503,38.655139172969925,85.37507354795376,133.7446284689685,146.09192360056133,77.85126923977481,849.4936902489619,198.50964175629116,240.31868924153665,84.54845957498222,74.78437662643641,34.99975997299511,89.13446683243497,104.97927347722576,175.70814393719658,85.91300136031036,84.83342861695908,55.89050704964647,57.74973446870668,603.3713497505881,141.0053970863718,105.76609569848381,411.28846625012653,67.26374721514024,58.62769753587589,49.01951202214405,102.05220089311425,203.94165551013495,208.16597490091473,186.19850624039253,371.0460729200834,84.62226141183272,133.90477369602505,206.6007081807057,126.80424607071564,152.15602006390608,99.61839876791984,378.63084198892597,89.3152428847983,107.71356892417288,220.58622637376922,86.0452672656376,91.85621945733293,97.83043939508156,84.29568402875796,36.88735086917675,132.27431531689936,121.13840430475142,118.40998692368585,61.92262760555033,96.60543539992254,171.6513018569809,92.8928191109829,74.10960042029446,55.47113898669578,66.65101624563717,68.87598111356904,342.59487886244466,70.36711511240895,74.67404689114588,83.08504833744874,144.91024938337873,80.22144361634251,113.5836633506469,272.43803541557526,157.5071258929797,26.63135859498915,278.02020491914266,151.97080636395043,220.4037190448162,64.65229490973455,45.65321596379547,83.00449920538219,97.50562272921931,109.9980954309194,210.05558028814676,149.45910482791456,97.80878592173852,344.6761761958468,80.20077610631468,112.49753928608122,70.63162008698968,89.1037199085471,296.48475579830057,75.36517104150936,79.15873909763614,106.91449013425425,135.0635817187152,62.36073752822674,140.36901162785693,82.9078572784881,52.05589474049696,39.93403624581992,85.35957237238547,380.00285381654885,95.82028839259463,146.29346186800754,204.7767486927095,61.06273707275679,99.29604614468123,157.44709685171586,110.42633882909092,262.1241999557338,63.05816038850648,143.58704306085974,74.75312830005254,203.3304293498231,160.64602307485998,54.51835644294713,101.44162645101301,68.48310636762899,117.22882084405595,107.57116100792142,143.06533755037665,147.00568395792556,204.98298273219595,125.5490854934337,113.24281209274088,171.58336915941462,158.29780051690057,43.742081941282414,43.404247457887934,99.5092898130518,616.4860563554495,159.7269374637503,245.08011171703234,177.41810863238695,111.29981037135497,245.69676574552363,68.99185354711892,137.7144084689981,75.9708260280216,89.11809180134587,133.72021179448194,98.10755274677454,113.90498640446438,104.34756596891393,129.65380561688576,355.82096584254924,225.01367322259253,97.59469909246137,175.3318826106862,175.24916376331325,98.9871801374594,70.72247582473898,45.23177970058211,120.42410380777868,138.67920823340808,69.27009358239252,46.12581535022773,380.5625659085419,53.33474975228653,117.94940529635484,73.15118439707635,70.4048936129143,82.5073254757678,173.79703111910877,63.95757914940086,115.71552453022737,101.34661467926774,72.70861445616737,45.50954766625569,70.01729963756607,69.71494218999304,101.85979343180213,48.457308529478965,378.9349436522463,64.88235577982886,53.82687945134689,33.95021791880811,32.861441880186774,42.225777375743746,76.57810008112422,135.81716076740304,34.171051368295615,81.86868396014732,253.99339288460965,120.44028540438384,115.90927980562188,187.24535826214174,74.25531906381066,157.74560914342626,49.83079042313857,100.54382066390659,60.27570554608225,306.31568236056637,87.19856238512992,83.58337428041044,113.82567334084585,150.81106890258297,63.62579217619276,54.11697279401156,184.18376097528392,82.01896838693594,157.3287794108878,153.39431631949006,53.57565270143602,71.42299045475036,92.23981855931471,92.30675767406316,161.11352706062797,115.86813824021095,47.61570009105067,63.9962434122839,77.88955779439725,206.5789350394914,123.96676132055308,200.1030991852706,243.87283948675983,95.92228609608603,54.75892784580819,49.058057915267476,55.26075861019474,651.7745740024131,137.63349059182306,96.72521836049043,42.619673865032304,36.728674821731964,31.73157610004392,41.32300222182652,47.086831078919694,47.14676223540376,84.48054209877151,109.58821391895982,80.89700189328917,92.46547367319411,67.9821095925121,60.667064441903364,102.83242762963377,116.23623660083146,52.565641122419315,212.7156180277301,432.9610044861923,76.01273959287325,86.48885720592371,244.9951840871086,57.62359998235798,180.22056596052607,117.78148991237525,76.05786746069109,109.83064496964204,61.449842728317506,74.58308336561336,43.2422096374129,129.05867402683867,54.3250883144308,56.249869577825365,135.33717399407388,150.67190267267313,111.86747372396013,76.97804274689724,54.087998666891174,57.2866322217063,122.31017317187798,98.01117758084372,124.6365594464773,157.2661562577878,159.344983687789,94.81854822603844,102.23287543351158,55.83396160649866,645.2943534144005,63.61962654758214,73.86766482496778,30.62225097346608,112.25830004888458,40.76740409506228,114.01249811059708,68.4746862353462,77.51508785363221,195.916003449112,36.77810208799841,62.76373954406963,91.80050894944313,126.19344576417963,111.46897862252506,119.98552826626018,177.1755829063343,51.24801253078069,61.89751087482497,92.03378502776681,125.17266428494175,76.31442108661969,185.23868343772045,143.55565384332806,62.42762550914004,319.0297037622776,108.74858389056799,50.926438671922064,156.93696487469208,506.69397497825645,71.3500932120296,53.37198765172073,47.41142186352473,56.813143718180704,260.3232711228888,189.2925350457983,378.4567314128465,69.99748737836565,56.10513993434618,142.91295768869742,52.43776330692473,143.5734472084938,58.306483419111,239.57900596502066,70.50065170729358,124.68856744746341,180.37618787718156,187.28440093340578,162.948258890631,76.57370738605589,148.82480356093365,110.01210285625972,90.80569555133108,144.97600581336832,52.08952646251877,73.10006532604551,51.650181849991355,149.55344058127858,113.4316935649608,152.71138334059935,47.02153045588901,264.7977192497521,69.25021568134949,39.643383209778186,231.51803533134043,236.10562140861614,62.376621929411016,207.61584938315187,53.727421570563244,258.1477900191633,71.5253336051462,97.32881901646307,43.938821451160706,48.44076479289146,238.08682172870155,94.35693747342401,61.04082134069766,82.84917895882205,123.25859727226074,83.16579685420695,51.4600463349574,308.9524300637589,72.06460242964826,110.45927406259834,81.31440651722937,57.4338426510278,138.06465606218708,50.1801821995272,130.11088892689676,126.40557623228416,51.2483017056471,88.2365429248752,89.86371625635613,107.10688578387153,145.72664569932144,59.55830197177516,132.64175019728384,104.1396384579989,106.45737382156805,348.32034647189965,116.06301594344853,156.6387008998355,52.5552928890847,89.82176706550534,106.75040750851663,176.4545629666755,86.02737708887668,53.62765002694132,173.17888375491407,212.76113959351432,81.25469828901214,42.6807130128518,88.35169916389822,112.84104349064782,57.119317561360305,148.2914391439641,106.16308573189067,41.08640016561881,61.480433379142774,196.977033101802,52.483355641870325,50.96137076453345,69.54290301402031,142.72119938977562,120.9779050197814,102.60802816200054,59.94678099231706,49.23254402273046,171.2973503173794,72.62791905044526,98.55330867734882,144.83814017433235,69.34516348812507,180.4527901558106,74.0106694101113,58.84520962627591,153.13710563510443,129.7495807482506,84.14806455327887,181.40568298306687,91.11676691717005,123.09942354785194,92.034128927391,163.76058653818384,48.75698415230998,131.1416701091863,69.4276515979238,56.61017919673154,32.95077481352429,78.78300639851444,133.91979478374833,134.51953404859697,189.2097944509386,37.136349850565665,109.36485694784213,160.00109902277342,69.51091835693023,397.92168016322375,104.63233800660558,137.97447295521135,102.9050397568306,39.84032767764388,130.77372274825402,201.93164028983793,60.37319742595676,127.5023031580871,52.17192011562425,43.57695783089238,145.93614545087704,96.48807567750711,55.28344788361381,343.0881798673743,99.32190241025549,112.34202441649852,233.63221851789368,62.34635182502459,45.21281430817979,91.9420029680092,46.65544800365919,130.31845782818203,87.04466012646593,87.8852634952339,56.27142941804448,266.73505180700477,113.5282582830212,57.0165676112132,151.82251635229403,71.61462767571007,341.65741595451624,57.39096723943877,47.69579743273182,41.24050504654903,174.4487228879457,88.13445223707892,362.45996613601716,125.20840531484546,136.7160895039681,89.80035313805476,103.86899767247549,120.66556496361001,48.56650883635897,207.90680485444827,73.49131733460023,402.624768945464,208.8629447798483,108.78770052525628,160.21220483146982,46.64139368030578,113.1855678745377,303.4860220805194,108.61761763716486,83.97853205711677,142.69026294832372,73.90255668450817,88.65555583191379,149.89452777727962,90.71123145712593,47.067303591966464,72.3937380066013,58.27371073778053,264.22942448827604,426.95061607517806,91.23303817983694,199.83838524384956,107.11183025353621,76.58960492342545,164.80677923797845,135.41684456289903,88.02979739489322,63.71390112092834,98.07062809418062,66.78884188102056,86.18336599006457,107.0079648841017,569.6145120625008,83.9669842601461,103.32056635486019,69.90027070880558,86.85619361849417,175.7865991047948,59.594733061002174,35.360611525812764,452.01685002454013,54.866181144898235,104.08349659567695,80.35110978427682,110.83967633945123,63.55936016204369,54.832431038880024,159.00162609231944,135.43667815790235,110.68491171457345,86.52125997004411,94.61343822456863,170.6290946551627,87.83291100955977,177.529480559444,370.2323722255617,54.836768297660946,100.7437475135073,251.9382666505972,179.20633781876498,280.81067067479444,254.36183671190082,61.23146845264421,623.1457077879185,51.56049291951111,81.23497458292879,138.35201929265685,119.00282883706546,256.95693626825135,154.70862458795673,31.1553006340625,106.98210194569302,128.24314622695738,178.3459177519925,110.02664119808149,59.82155251276527,218.03600712543962,138.23638073692973,96.48616054059447,128.3586668846357,219.97410464602942,113.43531611143254,54.642182667878444,149.17718011465095,54.346867599736264,211.24476605320288,65.6451713335449,65.83591799290066,165.4082166183533,174.19316850471617,250.7314765515589,56.0459174439747,59.08336570561974,38.76168243545533,65.19488383307696,45.49740518916828,97.04286155551571,54.50215555215193,242.84761196879765,120.21393793074355,272.04351439224683,54.89025182356846,118.56486979107335,87.75268066016082,118.78259627915739,147.3901976350422,58.16470973321105,168.6523241840127,114.03372825296432,78.58157641045497,148.29724569520948,109.8158212793197,52.449667472504665,211.4027935807931,51.38616212682947,139.51618233558912,72.53808043024635,198.91644355742687,182.1295569726876,317.81367075317786,105.50017223121189,189.7897719731167,49.10756948819688,401.383061309101,68.65258003576814,152.80301880526704,38.97583144521898,73.78782828962406,62.11217184991105,137.919987689069,77.58372012548818,112.53372449993564,87.85821765524453,51.28698641511436,257.841618482834,100.04378031833062,112.19621042311964,80.35283206837809,253.48419255909047,129.28023313888025,247.88950691023507,73.23139690175572,60.809915076246504,87.8914730220706,56.454119897547905,145.65580100546478,71.78515209942049,101.34816995883584,56.41296433733033,116.08294686040522,185.68716432492334,206.48686703238621,45.041334482405595,43.927123754122185,75.83060751396933,94.49910785063562,63.85587429404683,400.67425907913474,67.585761876661,468.6830941320991,189.87830297726057,62.52959858242826,73.86950400833611,183.9758681620636,94.54230297944063,101.77112902433458,94.8359002531378,80.98697984757224,250.58009948244097,48.226803743632516,144.85705969584154,87.37229566947761,143.82225153837138,68.49314650379529,64.44258236168541,97.06833225643948,123.1260089664289,41.10226027563149,133.14460952529078,140.25003274562388,83.16430469570628,107.63827058131018,64.0196537215363,67.71741826215037,99.60308318534149,135.48505928673578,88.6493829591092,191.19847490907495,44.39283786753915,148.0328702137457,173.03556774608734,192.87089326010337,239.85340691731264,73.10569853591501,46.53394776002481,117.42395922948174,98.09507342622882,52.29813500468938,58.98677028131249,308.94231956828605,47.403605844648936,239.36840201492944,234.48126389125292,39.85394868724053,115.65244620776136,45.580690025722014,33.5762648901956,96.82505547844153,53.099945076970215,73.0728383608814,97.14272801772194,417.31184270794324,59.26764978968088,192.59587393303093,61.334570799374596,106.5045917513344,54.48235651742834,79.11769466001157,91.93745118997741,35.022315761668196,150.54930339583396,111.99150366440118,93.00100497562742,35.8825213462647,194.19820764179178,128.50434450034885,134.10527410903873,70.57472857725371,115.24923139005057,83.3738728073997,69.77641340728898,111.90242545307822,43.82568304491519,629.5726324452603,80.59805284538201,93.00586007793302,154.05413313429887,77.07970493562689,93.99543977164714,88.05666115837354,37.35594818069368,209.55816820253713,132.03984243141582,116.44849310954538,265.0367471290769,87.27230506250402,100.68921103517566,54.79176547404908,86.90044080116755,390.92982015714654,319.7687522618388,41.83916362659489,114.31797628776978,95.96992356923316,84.11538088387907,176.5473383369168,94.56937060599486,92.48983065130376,98.66039475952049,169.75693140547608,59.900578303673754,118.00653981586882,190.89985958356326,131.63970921956815,168.4279214845579,245.5316403361377,60.183530945128226,91.04221987004908,109.31027413578283,91.03132781965773,43.692661913123146,76.53979088613943,123.07281532749282,44.67756245107605,63.05258279166937,168.56023438937532,100.58900081392001,61.963256948080634,65.50672298025465,136.51479169319808,105.25392851015559,188.48580736998292,404.2259023409313,65.38575007086418,81.74154794654221,36.49371667043479,64.93382164231224,76.04242479173246,55.02730506298356,149.16476277976,71.28286042407645,211.3968468540934,78.0708784109232,123.129089784926,132.3305521975147,282.71492342988256,102.75121014910694,107.58585922758536,108.37741683486088,87.00815078738313,71.60121086496963,70.51772177378356,118.75230623683855,82.87523134685598,170.80214996194007,73.25564897221187,62.639847948785835,143.80233016937288,81.51903817087035,75.43304221431166,167.55877821195742,83.72759083787122,189.56835024901008,147.79331136479178,109.60527398956992,47.541317597579734,172.22771535766694,48.26450659836653,166.0434012543508,59.884597464381386,95.0844009401285,85.28289878496598,163.67313221021766,46.89041054336534,159.13443730354294,41.21665656368958,84.99790312806735,230.7454609159735,47.99762188214964,116.0034612415012,95.64670636167493,93.38646906770082,30.424192052125857,84.85888690469172,142.55682796198832,133.5134811132418,66.59232352090228,468.7455991658367,33.01687074967742,75.94092570186899,64.26806357898005,92.88272683442125,89.67618820628805,64.34189944460847,382.4286902511779,44.262494140886204,212.3654526135554,114.3139435262702,52.380943184988766,162.09462521249029,77.0041122305864,120.67705477327414,50.33654577251073,78.58293073516842,84.60521549604965,71.7775850617243,132.90390246070865,115.64978819112456,207.73501688395623,136.17654294761442,116.76620203271271,163.33322539321256,178.9753774894365,130.56949334034655,139.59697547728783,70.25507403203949,65.04709247869215,72.9440516476108,53.46887887293276,68.95287114150767,113.61673895175805,761.1090804719049,144.87529437552925,159.79992893725978,188.97846565595654,50.292915054479394,183.4494232116034,246.9929150686701,60.190688006985724,159.08653128083614,277.66497510643484,113.60773249899194,45.932032856209815,175.3776083543843,81.96056857496421,84.1392929796489,125.07745152598923,50.307482681901845,74.89547493861951,113.33812553536202,299.58688030164836,90.9724765947741,280.8960868033026,52.08930657239727,71.66443029952798,66.71252506741583,83.4162000950474,181.16489243223793,45.52309506737737,58.01636415302753,141.04020013416036,264.46177785042227,181.24109188863835,232.1035279432875,71.47504238666451,90.31402656762866,210.07057208854067,67.97116110433387,64.93948783301862,241.41577327826724,81.47212745345234,99.24634397591814,89.50272605409342,164.39046922668803,76.7850141299256,108.47464144440892,53.882962328288414,81.50091496550301,218.33850193958753,156.41603547708505,135.19834223845373,97.16570196107008,501.1379883877347,140.98389258382272,107.3177764071807,119.7777266902697,192.7257613410407,92.60948358064763,119.40809630861922,126.60928750126332,207.87442058658903,148.44808694818119,62.68477919807411,152.22295378485884,64.88982644481908,227.1231056865038,77.96788920533162,84.56724533805962,118.36072628377336,83.27881853479899,74.97542674925455,134.2236427484013,196.03015787513047,107.76847234502607,78.68892838057232,143.34976303646562,151.13287722330116,53.21201624737699,67.61133253064176,76.88632504038479,125.5602659778414,57.62339656240437,103.13024285569878,74.55948878383961,72.8069881763035,196.37117517636898,456.4114244374649,131.48058811567213,67.11058799952883,64.155319761881,139.09586610028046,83.01876282732815,33.94122676403248,67.65266733654622,81.02774037826141,51.94326429924758,67.165800942601,85.79735466270662,54.76607371914002,136.45465950154554,135.87226463367043,129.0500131332504,70.94882550794968,125.28601952722917,195.9775707145958,59.404908604449375,42.02715085880045,97.67958404398088,94.17524657671045,209.67345577040084,85.16674192452246,65.21035527761667,303.17616557556016,92.0625333665488,182.66713516023384,67.67768331017935,137.72972441738537,133.4071483024864,99.45035191824051,86.3262925254643,119.04459469297635,76.81573504621537,53.280427668739044,190.62875632935632,125.99523076370564,135.87434232753418,122.19923435183884,103.93888710858188,124.51457228285814,48.37438461374512,148.22981872912143,119.00738147147345,211.73932552631712,100.13141267690092,77.84067049925278,190.26910249370587,56.78245195638397,126.78133030400049,636.2989921053744,71.91879894935616,62.72181901325593,60.30975755318068,171.51450163695392,66.34975416132255,118.5746921545922,194.61454846835505,118.53473997114013,71.40039263703515,116.69665137741346,91.81426277290339,116.12608577200092,66.74601069671185,49.52274955779347,207.63967117522435,96.92269995677731,62.366880887839216,77.96640327111874,68.13259410618767,77.9990510568582,105.7020949559548,86.5500618187316,137.5968064961503,84.81323737483369,86.0490498146545,67.71783438941428,41.84907612752041,96.54603062662243,197.72101031407354,158.47780736692275,67.40942285362866,49.62060181772435,136.70988810786855,134.3421143522119,145.1028255540337,151.04849644376944,79.57895322913718,100.2544702504213,144.09115251058984,205.68388709442172,229.32658441724067,287.360469123606,62.4898598489826,99.00302281887126,104.8919900564486,95.48869963158572,185.18876389278984,96.47205341532876,75.75386091358418,251.1567848023936,137.03938437309358,84.92541055541159,317.0526544348801,120.45206858540392,211.29120155968792,107.83109490387808,265.75653341032216,61.4790842741793,57.35131076568051,80.04696371399079,42.73968518519194,71.95871362780318,280.5204441916086,64.66858883105927,111.96230501565873,134.27252749109653,444.4451398557438,96.7601805108196,62.32454425707417,73.9455247516025,249.51203412962738,101.63201667600364,328.97128692458307,162.20570319230293,264.2770806115915,98.55540613261549,88.84576759092309,60.56153138298538,74.53572189312952,180.19491896193045,68.66422158743853,142.2033223543869,55.52922554406755,63.194614050632865,244.0090904238437,158.48429374292004,113.31449329852903,48.37372909484587,186.91678676741876,99.42986127991084,532.6716440042522,84.61135196238581,47.74946439825246,119.27059076563907,81.74497108063981,95.2623766907792,312.32379176872394,124.4467996819301,105.60280704486327,310.3999652303559,32.480197772073744,69.32016454243995,193.6630904881036,73.4353361757524,56.6711116926519,79.6723351541631,76.18957607705408,79.04333933420102,123.4377823867152,114.78622159051454,76.23824459413763,215.79774439120115,68.26806171875053,70.79422280242368,167.86850867949576,241.64295889517695,171.6841066682475,62.0899596817231,70.37112047085748,210.0324681516368,254.9913232927992,320.08827168639226,104.83650821136027,80.36461970961692,50.0564884070377,64.58032290544706,71.71065496987165,123.88253180073757,136.01056636631358,172.6296260619951,110.8384498838018,41.24962883274152,79.15752312602892,47.296572034010794,83.92079406940745,98.40115545941427,107.2809755613645,65.83184639097885,137.75645289131896,358.8502880626389,192.6021532937195,257.7517291850852,75.4739722743865,122.52707287268703,353.02255179137643,62.068489237431756,52.33497511601165,63.8284455068263,252.33850643436105,67.7354380969337,112.99449851232936,159.93633619032968,74.89652424203375,351.3021874244962,77.33236986661407,113.5544663396594,76.12700915786755,51.318515100296864,61.18085750787918,71.4448232675269,55.36522868502117,493.0219760357525,157.86329629597242,169.1613846792963,61.90755444393775,166.4789282680029,76.1141621121106,114.20199313021936,126.56451101542187,87.16360444116924,94.8524928585953,141.3718183251486,120.15046047521848,47.71265244847303,80.51518404415661,73.92733385601818,59.22747799469557,133.44901113426945,77.11303395534132,102.59571566149116,40.820084052834886,90.71198746952405,33.105710158776546,609.1072465733829,87.69945785161258,113.95103797536407,46.69235276853713,78.83890320578263,106.55210628340677,33.34177134086197,60.926397610715576,143.9850498084425,77.83081129068725,168.6355179621023,42.9217451490479,234.47156945297766,99.89962406704639,32.59589861816015,60.953085088296866,47.33725051417421,115.74946479880757,89.63406589938029,143.76404571949584,32.15227002893513,70.38082645359243,64.12597271009761,119.49450508130299,143.7056119867215,92.90709510784896,65.09569614943184,360.3562070406989,76.73283641533284,410.6276391107711,220.0545357218512,162.29562290392712,57.26524663252561,137.4450619993232,78.20748360417186,88.94881682023504,104.52664405923375,90.19793833592448,84.47201239455023,167.74540890650772,87.61062116626957,105.83236997941508,177.37856369649245,87.98561674796467,216.97674967433994,132.42303184667344,128.28587566421567,144.3544018078519,141.5480552410043,84.10799581882712,125.2798180297379,107.02260644850078,153.45199695506625,39.501681210598164,198.3724472712813,220.39921892398397,99.61590491774447,72.25808661706084,98.09590730876812,158.83357104460748,50.66381617558799,67.8355096315103,102.81634245027857,108.00786368913347,201.23055854787745,106.33629021549669,202.34581149353164,233.66315396330353,72.76092128965807,117.53643264914871,97.27959568830035,256.0174040969378,66.69145861995499,66.08347291767743,178.50815823504468,69.13844556283671,394.7102139347054,168.2862029572323,259.4322299484446,559.7338372641212,238.97543486517242,330.1868082752152,48.349738440176075,121.17016226750722,89.74587417570874,70.6336805566728,130.02340364883963,48.31834970632611,88.13088737789002,97.1344490377338,153.78356790384248,154.09618008353922,181.32418213180097,314.7738659571593,52.83314454262534,57.09629034811414,54.8511811783813,50.09117124483038,36.64487408614146,88.20794201896803,112.63961464128556,160.36147510892914,66.7089331605099,228.85275562692453,34.88423428919763,297.44985531668715,79.42251609726804,85.61344412908026,53.94544136225039,67.32966771292888,353.8800584105617,762.2898057154838,85.28649748481186,71.28499044790327,50.11843879917618,190.24729232409976,149.94441896929453,92.2285207151186,55.09448320423759,94.39805971442523,173.68351690853117,88.54387084345387,88.8565948361103,54.48348550247221,148.7519833172902,247.46696820133513,213.07066114440423,80.0454319629195,119.1267072995597,42.53928132548076,51.48846144823279,76.0180210023099,46.69975498356973,46.73401359863391,66.63767578295703,79.28301027440712,184.32937967458136,39.98590949013354,70.5944306576403,154.58162455935638,74.51724884457882,161.74601400999572,44.44313328943161,357.5972258263387,54.89093255448852,206.2777963824339,118.8520428637739,63.54741493942011,166.41830744825165,461.9981982706129,113.14151471237851,69.51998425411689,271.2009567311019,66.1800841173742,88.0904303956259,53.33793330189046,78.96252375926223,131.51997545275123,154.08954721404572,83.65568247709025,107.6532870119836,319.278587425597,103.97198537123509,115.28852348211606,73.5964190695097,112.17525695475773,69.76202963183799,54.942109756035826,124.7953665885486,96.56669467357108,54.17560040495815,134.78340980143062,150.44547735280267,78.46507713074482,67.60261030708759,76.1041950566161,58.74702291053607,112.92632828271567,112.10299234098794,51.304615817743766,926.5896560662337,74.44184141701028,133.96452118162273,265.84319753600164,109.65952880799891,76.98617730037108,93.68444701466835,54.420547470327094,80.97061505981527,84.95583612304442,77.16229220158228,145.12996795498194,79.8452477000148,114.23283731013109,125.22949941239621,182.85222012035103,90.20832335084181,151.98923246118042,81.02518560104566,221.8612760293165,227.80237910118575,24.672569731016043,79.4401438915787,25.61639543537512,107.68132063188449,118.36086180946768,103.74672496884685,147.92797790255673,140.19560815311482,67.89136341499328,66.77535976015974,110.13080575135643,189.922999742644,251.66588451846212,117.42335002028287,52.730289857423145,221.54835701404122,44.97737005031253,174.53378519498452,180.80573551831202,128.13071429373963,58.470091105050784,64.33434042567211,45.80579335903414,628.7996950513952,68.05114553833684,58.0103671423032,647.1931701465631,96.35196464421938,56.4900193003795,73.36546900665084,132.67507740360097,170.6226174825836,80.19804221740961,79.37641536282855,55.914861346779304,111.05146000171571,123.04737903841135,182.90646025748805,48.74590834699371,387.5427680841394,56.031290931151446,303.2046836409739,216.9326818679361,97.61030241203999,61.23009912757251,54.595351052053196,76.60945590970665,186.24857546603778,148.68315925608343,60.33226176904647,147.60327823746832,45.285737277606984,70.00488109846415,136.46982061069474,179.60370160889624,49.27954450435829,292.6766439410766,202.64399904008943,28.928770751602595,104.0791750122551,105.72332340004651,59.238978773521666,99.8421200204271,188.1093854037807,100.27324871309803,95.53492326792939,121.38052639977468,80.2336078377992,99.96319785721252,168.9453293485489,113.17800171070536,105.50226029741856,132.3558752097546,71.28182886012381,88.7834008394151,201.93500783064079,329.16828448631094,159.60863193946273,294.81593035104964,133.19833017998752,265.2251942296788,166.75970717138105,145.41561705192981,57.60285151746622,139.64034369394463,59.11507164175355,66.47140242214691,83.55875599478091,381.0747521662755,109.41477337157218,84.60767928949595,131.24645132406437,133.11657495264728,170.21238222563676,121.84914199957696,54.751465554117395,62.881045039181544,223.03620247358498,144.99775635393013,150.13542834024634,99.54083331124791,83.89774774943196,257.4302911382776,75.48606647696325,94.9269331773168,329.3127129356221,95.35491195074323,63.39655535026262,72.2459846224369,72.65119783283504,427.40371052966907,60.13097734347859,27.510786412732337,65.44479452542285,70.30786115263895,125.58305309054744,135.15430347938226,74.57436114999769,205.37078388247613,328.5043810472418,194.35218658933496,184.48348603138058,201.9276913996168,79.41394055165239,56.70324430673603,44.996165726476384,46.231854649336846,89.69539822950306,60.67684962680712,121.21241515838987,100.61904642694122,152.08776652794023,174.51160896449096,65.82666268106388,68.23451544012917,130.2788765471242,264.264086280248,58.485502668834606,41.785445542996335,115.3666735881601,47.92550586127112,140.22466091735038,101.39560244822805,103.97504536763886,106.38813794460854,152.7061626963582,394.8249543592928,135.3407913867977,68.05218372012656,106.9559182982702,70.3653516027879,227.57827471744616,180.1734461121604,88.55057025139452,134.17410193135237,87.26362137786803,98.45950335229091,119.60843705284012,118.86733217843151,73.59296721482254,79.13686977794568,65.2312948902721,57.868221978851864,123.71691048824916,42.42778458431982,140.3159333604704,523.2404612604591,201.26040536373074,240.7310416029718,84.66724831830017,142.2059959854399,139.74515695490146,183.77666941539175,67.69773571776885,125.5225341624706,75.81640275991961,93.89027339481703,284.23241563494196,59.66007381521701,60.45254629674782,84.0478473580997,65.84701047804748,345.7886717059944,50.483634336953294,101.24489432363984,63.0660874041138,120.2686696722486,68.52023329352541,59.697899308830685,60.128702091209306,198.8140133470975,58.23021907204987,197.64482827022903,136.87213383747562,188.1968487940667,197.18011889763923,181.22226853433958,96.63617355692791,77.58177993394443,30.800169760584726,83.42813892885192,413.02684968209167,299.3083080232968,40.513013625175134,79.6055451172986,101.17576709638632,24.149664879869338,228.0652031839506,55.99197910936179,185.60614866602359,72.28485852505197,59.601067014775644,108.1236167854227,88.14962454342792,48.37594201496395,74.92534622063702,210.61546632642222,74.55209904130662,72.12701605149897,55.96499576994235,162.49982252335548,75.35948642514407,114.62388439341304,105.16369591648814,160.4881073428864,148.8313052938843,62.11676361879913,178.1692648984938,77.16014487304236,94.00307227035674,169.53384113632384,103.90016359080549,73.17892674536839,62.48769549197522,642.4686554911705,301.5355363455167,120.65665568181574,53.47295958051117,76.57974133003971,83.44417281475563,177.98332022789225,94.73044659360895,123.17253426127442,301.7694367266617,72.90146054430193,101.73351148886562,191.2692688100626,66.12210872723934,230.39769774528577,35.56737979652611,39.682482653876185,137.7750257875838,80.96937200748998,32.340546583468864,158.48197213680422,259.6938636580593,66.7059910383339,41.39312211005732,160.60883102986958,126.83504510736245,248.86917102260634,73.24693794546197,109.98923570996746,74.20773546031256,58.5048842353589,106.59854662724781,84.68596183666187,124.9555905283531,96.10756654929182,253.83727503348354,100.87605080875073,167.50085212320363,150.9204854095621,165.08255996110313,83.42954563171796,40.20838572522304,110.60665665823011,203.48765232443395,105.64558616250277,159.8817734409831,214.0299346722067,144.88007097291586,86.51914515313258,54.49510935633736,68.8319073135636,86.46725761614583,338.3167578763625,49.6880627065882,101.19496577340124,91.24889277947327,112.18913811347484,211.64087266164893,136.4826450774825,102.51881553660914,141.91267643989508,112.81846303526602,145.49949168591485,160.02653149746837,91.31378846933528,107.28223070724047,67.58758308125778,36.091649129485845,398.7789942206106,65.8224561239848,132.10839861843615,198.64490550729704,137.77751916449546,93.04194340219388,54.62903993644571,100.20112029913228,160.68458649748814,158.5023453386224,193.2961071549171,108.35598677103785,56.5076863419164,59.66892647416932,115.41611634984798,46.841582042139954,351.32799425245656,115.55682277677782,119.91281808853682,88.33668930850196,60.08619219746854,119.38027758638015,59.24500883144495,56.088183933018485,215.1142377477141,106.34288812106946,103.973536040599,49.996147107316034,47.418726409435465,80.91929575432106,41.56748320439816,184.21357193109594,62.81336232039348,105.16928002439151,360.1915253063718,165.07262814380286,44.57632453938808,95.00369528780526,133.0579645738825,285.8787331892702,125.993932235618,81.96068274198606,527.9931370586986,78.22689963386078,74.64892018699449,72.17695777509046,64.41037096261581,130.06661353912216,76.17823336558891,103.41323877262141,180.88681869432904,50.179019997923334,93.95722513339705,138.76446506164314,52.86927311774087,83.5992785450331,101.10971967091693,284.0017500179702,124.75247740519654,36.995445492162204,54.21261968792375,132.10701298400178,89.1456901089284,153.10804404836836,158.3987928267797,169.95309207326366,37.74469310164376,93.20930169362697,87.15523942573626,111.73886252203363,244.77730803574238,132.81849571100156,115.43057052643684,314.4376770460155,185.66152647700073,129.9695164133077,111.35645486512486,124.53706394760731,257.570204012333,43.35969157503402,125.6834861348022,130.41199940423218,116.814063557847,80.67889727776512,231.76616554399135,61.713957958104274,178.7112086538949,94.81642197510325,83.7177319803393,124.18973569884524,433.1943797917154,471.0464358349348,242.97913850824193,202.69368912789673,118.93870792382312,660.5062570304248,151.79439516070428,102.06650507380232,333.3054582962407,168.02890655952535,124.00248637917396,389.9472152015367,81.30167199082135,186.33331759108412,195.30895110166716,78.00590317259109,367.4841372741931,321.84498845455124,77.2319238473746,100.07122894830752,63.30008504681079,98.0853010857696,164.94235791348567,115.86490550072062,132.1886513740715,926.5137116503766,173.7331180642115,79.02778000575803,69.35405558427762,90.7161708988742,64.84896451437984,89.40360366449228,101.37512453586587,81.41782838060927,62.09966989209352,151.73148670978776,85.06817478860617,344.7388205956771,145.25531216023586,88.10653035506841,113.89710152721698,95.32157055609137,76.27668969548833,99.73674392575958,74.87810044159525,90.9081163151492,157.7486616424552,201.08367124848616,110.24994728269566,203.19048245653693,90.27800714303054,189.41346564678983,440.4432008461527,229.98879418010046,82.0697711694857,109.74947756213338,153.59807054517256,114.55468046581278,86.87475624240574,51.04862359063035,173.77964546020746,215.62530528947866,125.56647199314784,81.58922259813372,132.65945481277004,172.419541689503,84.50571843264444,65.26571641621949,114.02908649373246,160.8942956344114,285.20780687220406,136.88718377528357,58.87286922144289,66.73522287278855,184.33809859771358,117.18909923442675,70.05662850358067,280.0900034643946,137.47407611023402,189.01536791858976,91.19309137010636,243.5516667460915,115.8356469027887,535.7989294995222,30.36518890237005,52.25183887009053,249.54907525675804,57.41050876550152,131.91108713866447,192.765660534816,39.27727465642781,130.81380174174072,115.90259553988471,157.5573951753959,66.16432229776406,104.87040444235123,286.7888856324988,45.52641752546299,484.9846001026155,250.5154759911553,55.03485413239571,161.93605671773045,62.24184457359986,184.77534156016176,83.89470665760885,96.81328688705305,130.22939203530336,147.51210583030112,88.5901213037192,89.12444960413998,228.10881698494302,99.39736052447579,143.36614162214414,108.5775105587971,77.38346059517318,126.65187016028965,98.17190604377532,57.91643232127535,122.12388644262505,127.10743227784612,90.65261687208115,66.30857219862986,109.60373382321869,68.38778596444641,145.7268449366845,132.51920749397465,160.35638240312616,156.9559602295282,127.17969874378787,166.6948465478247,51.547239934335614,73.13267950967206,236.53631212533563,139.29960006848162,60.576905766710176,82.14587978700854,58.71488014765067,131.85465085446975,115.86920921825845,117.05551145896425,60.33374713531341,60.244714784508695,232.25795621820254,89.65304284838838,117.61857229862945,63.23985924811274,154.98792205431934,144.3920589292934,72.29360914316126,86.5311592364742,323.6133348053042,387.86350681559384,104.821397494953,86.44120648688813,141.6471916608836,101.90559545571443,44.11338218871436,82.6053794256893,289.6301606280675,63.62589634900381,234.08335069626983,114.84296257443468,114.38461440399797,75.36186226091569,75.81637568208647,393.0259481599992,137.70453405322834,298.40399910341154,65.21326770312066,137.8484975995618,100.36898341723371,122.98392351844538,95.2516362047123,443.1343990141053,132.14394303046672,51.019218908258274,168.5305737229013,73.42581225083413,78.60038871923058,79.3957312966953,56.972958787713985,41.805808039889556,49.537563558313025,169.43616556183713,58.32434372580523,97.11154907361029,248.08961327640986,146.09285117310515,111.33195421277425,265.41898375302634,143.3729437074583,199.50102462275245,85.1675184002064,133.59414397517673,141.83177450172707,176.32329052468862,117.97090826475613,45.02458837356234,278.25342760814857,96.87388510905652,100.00838443294101,66.98204286191289,134.02706530571797,115.99815921925276,136.9304011376256,68.01042332611412,126.08299109852481,111.15834438980764,63.407411233441536,58.987577549497004,43.83789322549496,200.87124658604742,192.76089403585152,114.32234732454172,97.45774608697437,34.459238521671296,220.70458796647995,100.41539149922308,81.37990485606272,81.12057900208933,145.3943229480117,120.32255971485478,38.7963643957637,38.86177371442017,66.49472915728877,57.88254978115133,66.74622584823348,72.20773014220568,96.45783603224933,273.25256059208715,51.207273254546564,156.40305093776763,194.00297478317506,124.16096496172568,45.63356334663089,105.94588573684149,59.42753879981592,60.0959471130014,64.09088447596089,117.56400696350956,481.2497737627506,507.9055734113974,68.52917490039607,103.82532709482852,83.81683520292977,80.25353681061978,98.05767394905172,248.34242445507496,59.25898790759627,93.30428524794519,78.29942590149142,155.37877284031893,277.17504709910185,55.60737600679715,84.79712673811834,100.35746295594895,57.51340690195726,39.877635405496,65.29522129694242,122.94377577886908,226.61851661784667,56.924079051749686,49.5747750247183,201.5124133353455,73.29866425021501,94.1915361540329,47.24906223991361,48.705082872650365,102.60984864761434,76.38732034258463,39.879247628635,111.6178260497823,208.72990006779932,115.3010956733945,131.80248590334153,79.35337022394151,59.15979560912146,55.3685503588229,49.63407268377142,95.56766363892827,94.20471238502371,183.84194626791992,85.64050962871268,193.19909604776336,109.54098148750539,585.7942464693361,209.57908074313275,84.78398961868662,107.36095168799288,196.74763423177566,106.1759413880559,292.3079269720203,305.0594907530404,320.50555486716866,92.15907707495828,226.6837153167096,85.22744623865876,190.70061470483003,76.5061563409844,104.96414166718218,83.95258953717361,57.31614380895356,148.6673815385575,46.19242019910973,115.72323710441594,56.460741733349366,107.11345004063918,60.79688795038871,45.31751874128745,50.01095558518095,53.077321452360884,257.18537889378695,88.39432603001723,143.23736477028933,121.55416483186805,138.85625132432068,350.952074515103,91.53006027112829,95.62531553710323,80.66562454192707,45.53837767963528,77.0631456998326,83.52246606005623,193.72483213803164,135.91055524064234,70.6316979799173,118.73098271847631,255.77762856874642,65.7308456713861,84.4656421889664,267.32696110465685,85.07172100145398,242.91217325413052,170.1573572970854,78.40932646966556,58.05084243935546,89.96567532331476,308.7608132802251,59.318482176627484,67.72419240150118,76.7559939766675,88.93104383825315,72.75266414143724,85.39026607592075,67.16165628640913,223.3001423365945,63.138603871172975,88.60834253735494,119.70033462944471,86.6501641660849,124.74381806323673,675.6723525856605,209.2551439065261,95.38318433916629,116.1828157463504,241.4996792711558,58.417088155478034,118.97833494462537,126.58968304763403,71.17219592663032,110.63254314036813,120.33521677543887,98.53033626956073,77.34100538441058,131.70449079815802,163.26741325560482,77.86538728175024,191.56161755400953,80.36557985773638,61.3826212466558,73.83945148649272,172.66719510094592,93.46963761272293,49.51432625194848,106.3919691933706,84.10222327179766,140.82146838224565,332.11056185543896,134.64994543391728,27.909440655258617,89.59229180781861,155.92445943684737,53.57798231124358,68.28322330286275,328.2768206694614,147.65024371924108,75.75681442619639,447.01444568485306,74.00159434222954,223.0198468553999,323.2722924137609,45.761911908365036,129.42230700525343,128.05846217744025,185.9131669338781,103.322582748433,85.94543585955796,236.7710260351969,53.76312362566599,204.52461794519704,111.10898725394786,221.13230374310507,97.50785227804052,81.03302532905944,64.58372798860405,251.28659984227414,163.91715325961286,129.1768904777118,178.30324135961115,110.2993115237057,63.24049935630485,70.60140825590413,87.24642721168564,68.74574830106737,66.15709700212967,60.87126671027076,98.62038374454453,49.80920248093415,276.99005276747806,53.158119596228914,56.0376839917399,220.06158614957528,45.15102572871878,143.31125567818268,65.23803344392414,37.852024345276085,37.27899775043254,147.3297618153685,175.94305866281707,107.07668291471461,155.9638083415942,154.92399869875453,54.03365659876247,527.4772004376969,54.403871687561086,78.58590883447576,138.7784908095415,41.364638697561716,61.055057260960055,76.72602251965803,103.79366315961424,382.6319624598584,58.99873135282989,38.47922158282435,88.7534425424814,442.9058987440609,49.2337772316646,273.99685754142666,492.3275744983949,53.90404496538649,57.357688462991355,153.12279761787815,217.34640156109512,71.8529543899152,156.7593167277951,194.4845594558335,90.76380057976797,269.6133483446608,115.875727499462,102.8097689931021,839.4943796589483,81.81235211623469,99.31337480685967,247.8161817069765,204.77341704247408,100.77570461769034,96.31080450666278,45.107526418032116,48.05798544079266,112.55653574203656,108.95587438898565,102.03557987480596,97.82969998565166,162.7356154596385,80.04750998005136,463.4063253267089,134.95708110147524,236.21452335980902,201.66926871756624,427.0870570912761,103.62230889821832,65.59067152929322,50.0353554111866,246.29022595960012,68.60132485680865,82.86061345507231,72.38619674618442,107.99573295172789,114.7373958028949,26.518008792991424,80.4004877585754,47.083017625645056,102.84757197864475,232.6405269842851,111.15322360019796,191.86576310406346,179.67390504818246,97.89085694506716,53.79324766517354,212.52710587893876,181.21893835136638,64.09318059384177,144.3286515949797,69.50750600627634,94.59765578539877,63.837295678937025,47.73359899320284,255.69371722249207,57.01256826275987,96.66579663517025,56.50534128714372,78.41518887408158,430.00306640126405,35.612193502038735,283.28050413472016,65.31739571299673,199.83997103577016,73.7635489738659,94.89234620493252,162.34887474094177,77.82964613557517,122.69044883038391,37.354981575827196,111.37721538910903,80.20164670415042,139.3220433220676,194.45927275109463,35.97222864643766,58.83346880038848,239.30644014574048,98.17259429320822,75.46935054742347,234.6417372589033,89.32883172569846,70.19302312143762,62.061507617478696,88.19119399087582,217.3775512580019,225.14602187441196,893.6955706516911,82.91322763995086,83.14930128236803,47.77849070898572,86.98741762215519,109.6904548704642,71.10110884382021,184.9097905637562,53.5375662585973,149.16022121906593,102.19231012021966,185.7133251110074,93.50898959310481,125.82847884054327,72.4217980588481,33.981971055862445,89.83440784592304,289.442089785808,62.7583242521742,50.03185714277266,168.24078259768814,82.62467953657305,80.74021095313675,94.26592218342164,140.60149422588876,35.60865182798847,84.23909565234662,54.795692889116346,103.35088702714214,68.01750514757865,53.25815264261434,39.66950609597436,199.97420028976714,94.2972989392506,169.7678054234095,43.14567476791239,115.905869783532,52.732721252216166,92.27186603235786,132.8761128841569,279.1338405150546,82.49855816522059,120.58651095984989,73.12086446391858,161.4733677294902,106.7864486803288,63.625289755862326,72.60383528092646,176.2542655358026,118.77218261116394,156.26359320815033,68.92402808749279,63.178889028466614,93.10715476870627,70.59726805843816,59.524592316825405,64.52873388657679,139.0886737781181,134.7547880959978,211.64330704532756,65.50244001430137,200.93070084122942,158.6872030734802,85.93839284888683,142.40032212286496,245.59325915588016,316.73168964768433,59.73847218505872,174.10934573715366,642.4036639722701,117.36596699745932,162.45978451045374,133.02539436313856,89.29944500667376,136.72209459595635,80.3847464572144,236.92211560434512,80.14987454112045,89.26501355888914,80.42173076198648,101.24657808477625,82.63619177009521,128.8776360374988,81.4892645646662,121.05354042462567,40.041925839862074,79.17188146516696,667.7761846519987,143.25050804577816,95.43317611668819,55.42864303467877,151.95103074031414,49.19283608660688,79.12203362051125,112.56979816510771,154.51715273772334,69.49968133420072,92.48304497053566,45.97869007917256,56.60456070049371,47.39815100860854,86.01302388018414,66.93640589263087,81.53512800538653,98.4539004051827,132.0319400662749,114.18851619548178,174.03625228803793,127.74715411928943,98.99222281738632,62.8247870261114,85.38630023436,47.449696679379215,166.87604270546538,54.59084363761171,84.90985473280406,46.12741604262971,205.1200091468226,270.14331196873394,44.6515680683259,79.61087434084396,70.33763267883232,58.9815242634924,149.72157838471972,74.43535600539057,87.45780984492379,96.90234783032902,64.43986892554211,79.64811726076599,50.40586017521646,137.0815824793137,75.55016223336297,83.93037457274752,86.09773421803959,89.31159324421735,386.4977979156384,168.90241966042473,145.00995651663484,58.99143645595103,73.52275747905591,198.92509621922184,51.06312944620389,99.66174955386921,40.018063509659434,52.4608580324284,74.99575455118813,102.99478514681542,124.60125085948066,138.03469193553005,120.56741416854045,93.51511039265718,151.9214146191569,34.84529485637174,82.8712017800381,255.2416359066866,117.5580447615283,108.81814985574333,111.43595005587935,147.28260134868952,78.56441896112588,105.72764326966414,79.03261700083567,58.13731804123554,149.60372107454515,65.68158272923901,46.544152454412014,77.65332451536119,150.23225712466183,90.04562086853595,57.07792494791935,314.9428048762207,68.41004918209065,194.55657372984408,123.6969252912366,67.12383679456126,356.138873075159,289.42788726423584,108.2660022100788,70.19906205399712,102.23711403855705,93.99392087902372,91.34453688569599,53.86774893308781,189.34955769299606,186.19711048600212,96.80682199660977,108.08876827770817,97.53515492226425,120.43151162521094,46.592288293487556,362.1389638909131,100.49916308257248,185.4710264498093,147.34676111909346,164.54228107400968,48.198604776715904,115.09885971965902,75.16360888810303,80.65748938570968,163.35794168722362,74.97692574692238,48.561136623346115,113.35018720978434,71.80962974061217,93.38229036218313,50.398252196591464,53.32446106820103,145.3875248172972,62.3749771320571,177.16047308882708,65.42152232423192,59.74010054243733,50.619731857976774,49.81388724033736,69.24722538247156,304.75197659009535,163.5334282637695,267.3054530449191,85.20972000716966,83.25262888115242,122.19261294978308,65.03399367872201,42.27810874311458,159.96565654699975,141.52040217092076,77.79149807312092,141.8038732461148,64.2298178671698,97.64434254561789,164.42559362482197,134.39284240541767,107.08823679580694,538.4268928365791,113.18353134686835,254.8349496866769,102.21616602112186,50.06584306580379,98.90589563240285,85.8709983126934,193.20183155843515,42.73649824951386,44.08279007253421,55.565878758288925,103.8168227839474,76.62104940099339,96.83564361547081,56.59665245495663,56.48565359197507,168.28667297721177,116.41250719918719,101.22690901937959,59.227355955526434,61.5202582491465,81.46849720110777,35.57640332484097,61.215234977281284,183.04816577577444,54.54466104652011,82.99402959884682,117.04159314008389,42.3658720573612,134.26291343626667,280.96378913173965,365.93886847765594,103.96740718906007,38.89746567560894,268.14020446753995,79.66049361589577,58.34135727806055,67.53356078775563,333.8726848971652,78.88485721164136,69.30574570245643,30.144887048810098,82.3832723580059,161.42376245458007,62.28121011157938,109.91623330684347,73.2422941235892,69.27560055052061,218.02146331377,73.53500211571551,224.0969358491339,141.67439851545484,116.10709004303335,117.6141029489724,50.665635232366455,170.44801053482388,160.88345651589665,49.16918414444056,102.24557031910827,79.28773265951958,337.86320627952824,53.50398755448736,48.669870637625536,74.07477628025794,104.90737961359297,57.14615751509399,72.89804024823019,91.7955178212913,60.80434991395689,144.19380541718533,437.1541685466677,77.02617920842714,96.40052631253033,112.97477446044688,105.84102136907534,146.57329452197584,87.30784127691709,200.66315984075044,73.91988392436686,93.63805748977356,130.16033243889012,114.10539501595763,68.12956826598925,306.49006363946046,201.01013238031726,129.97837658050685,127.2104784951641,60.71970710905939,68.45386135327598,365.9963461520961,215.58780852259022,200.4046208738327,94.73790777994284,191.31191340788507,146.90629309796023,171.09560429880457,84.36632506481932,119.84956803753276,46.46374194824412,42.711427628679054,33.78525146305303,98.7847858243595,148.36853726094043,229.80102666957976,166.37395582024334,154.7453004833006,134.06228853287294,229.1500414101041,52.72364836102947,53.42923865138778,99.60737618135005,159.64712318073495,36.63884022894168,151.78875716403326,80.59050532144187,295.1039402043603,60.648503522623585,54.935935079007436,338.7839247223494,182.24407514389858,60.388260341472325,114.64707199686751,158.5262321206661,313.4734833183352,166.8539410735902,239.5693800701754,83.27225491542544,46.73193709775201,85.64005970197813,106.30273692375123,88.79143160680478,60.11676357957026,112.89734077054217,57.810181538624114,70.20736278406588,202.1279783733889,86.8310311958701,83.66769455149654,42.66961375308769,47.91736384936327,238.7522937102915,63.63027961279198,121.5176883899974,177.24045480450758,151.19343088754908,142.63764335934306,80.04104147611157,87.30801402475703,67.70700096047187],"multiples_of_cash":[3.019253905806229,10.2302762950608,13.023052981990984,8.918064470197914,13.014833085782746,4.6300690795376545,2.137019195278744,8.448882105938951,1.9948781986940787,11.424028552074134,2.2794704380310225,8.65613366272953,38.15917378145379,7.4778241111420165,4.187048299874126,5.941850657740482,3.6228027866448067,1.9068057029667036,7.870794156285152,12.910781940498861,3.220333037878604,2.9235792694773335,4.9463226068357535,5.611313925572749,13.215479639983391,16.11922353159385,11.44147687707946,8.168890975984636,2.8961261447195015,4.722480970681323,4.264286655597278,6.815166226759567,10.688282606999847,6.8907289069963875,14.611654721573746,5.585369750076448,6.7763259545422665,2.9115942922966567,2.2765408464391723,5.149224170133926,6.720448464386024,11.216809339864835,3.4537052417907796,3.102297322426297,10.260679131703357,5.957845483665921,27.24295573824809,3.3134607211760847,32.3069834546646,6.292804600426097,3.253389728582944,22.67503647970906,4.378624192474517,7.519736772298181,4.334266174980717,3.8812442070349116,6.2353604623099645,6.505795615334977,6.470921767296053,2.161985349553084,20.788396607165136,7.888968056757927,2.330557057715361,50.59894705591042,2.328754804912136,1.9657837326771352,14.71092769439248,4.34533390574001,4.217570753066249,2.7543636115187082,7.027727718003237,2.6324328126340264,2.9163711976971083,2.213554232024048,3.174701641479789,3.534699107746675,4.248799209787993,5.339217114048676,10.131420845148073,15.422663985112656,4.259837315993271,23.311779289190273,7.6720218212012705,4.6108202712976105,3.640135696756324,2.165796434493275,5.3981664231542945,4.28143314659194,2.4118159825373846,8.037335955037072,4.435702217276927,26.00679184597691,22.391465891826115,3.603021287023841,2.1542808132695477,4.895440539193576,3.4344920407251363,9.415051510225252,38.3257477466148,9.266313207498325,63.69818033468809,5.224745515585209,2.2193105653426306,2.983112479455762,5.863493878223472,5.58440938865687,3.3106822853112945,7.193538303841023,9.210625829442527,7.7526554864701405,13.041028470334878,7.679897135487796,5.293796406989552,4.396553258595954,4.859064240408959,1.5243102807083202,2.94491217359851,24.00911961494354,1.5145340579685813,5.744779653636414,6.5271135036675005,2.6474799429360667,7.77245331695624,3.9024242302092684,5.557525998523274,7.532636769983843,7.080691751796142,3.552704003256903,4.426452786128032,1.8387687004822566,5.788017422894271,5.6129559840253345,7.233166997001068,5.245627208661012,5.630866812922647,3.12348730777888,9.585296576489817,8.607515807976378,4.1099602820819445,10.870344973527226,2.5293911259107027,6.266624063113799,6.527740475308046,4.429042377530344,1.7341704990107727,11.57535877466992,8.741001880424655,3.937069025544368,2.5094028622298556,6.800152014755358,2.4154407356664773,7.529833501546543,40.794504850159925,2.0430566909987733,4.824153052036722,2.7587971536193407,6.506454395008547,7.4197472481153754,15.57295022089076,7.2101942920437,3.6790111276699458,3.5942608044898545,10.110648420666775,13.522701184785104,9.12280464989215,7.620643814787586,4.038370228368112,7.455575872567739,6.701601596876478,7.116679437299999,7.41245905705771,2.26709480500743,4.921955622140093,6.875882414005904,7.9844743007545125,17.13551931105082,2.372957308825076,9.117161000470821,3.169938618245481,3.9961396882141402,12.985453550689869,4.0222475460511555,8.341215493967757,6.035044459139859,2.366802361731506,15.475922672549002,7.242430981722571,3.413892026773925,4.092678917084709,5.856519226571692,1.7275206471801166,3.257911816593466,7.088799468312655,8.455980831256783,4.10316501693019,9.371233154989225,29.843226196306652,11.99585807855113,3.793765646487125,5.018720933598982,3.3434956871540993,5.223538573854785,8.410756286226468,2.5220685092474397,9.542877320221422,4.543279696084908,2.751635846577639,2.390753653152842,2.3234937027456377,20.06650046998927,24.230323322799425,3.6712046575559802,5.4263613800066715,7.358821923224073,5.484566531128992,3.3873586561832703,5.285391189558826,8.244866913135741,26.560244490368564,6.374403793313041,2.1955321466125928,5.30056725041314,4.8357846923206695,8.745404752588843,2.3018687080176687,6.544077559670206,14.807087213777717,2.0715442792499625,11.834167842871812,4.738534353879593,8.013639591876442,2.57476377784981,14.038774108514307,16.62494807376507,2.7354573075624824,8.106401453024667,2.482302159227505,1.567914250099029,16.176601352072375,22.296061739649176,8.138840770225825,5.8307817407959,3.2061323411395497,11.971597938817752,5.237600366862425,25.763715541666727,7.243044332945811,9.25327259493767,8.715701810028435,9.758678287180443,4.59481394655142,2.800107188024469,5.758767348650499,9.125560239975146,4.754375803616663,12.116097120527593,5.286637925298362,7.282248969265629,25.755988914281026,4.423972456772406,4.378822342668696,7.436757891166661,35.945531549971115,26.367246964919907,39.982398944804245,5.5769409849543194,3.109884305411855,6.519843437754077,3.4757104439459288,10.434731127816526,1.8420877387915988,5.011698921869259,12.47315669701026,6.523892294628397,2.568801189802715,2.184101963204313,1.6044086821911758,4.207109514015178,2.5171925956970824,2.7137761050327653,5.231264749452367,3.0125261558900487,2.7152199708466056,2.4510063284634156,5.842289292742152,3.279911596480514,2.470982567035812,28.104772007772283,8.601931145388516,11.463920605027308,4.970284491805128,3.2846774002502444,5.4291302928216645,9.05463588309131,2.599179047458323,2.429220622404349,9.719763220355354,9.12752601927627,60.61434381303377,3.2057958391558015,24.065013317532863,9.690930071043995,2.3662351356523064,6.1794499545829,4.424221870365879,11.089560432458741,2.9808355162949995,5.000661749693118,4.275821956494873,3.4201435068866743,4.267257606947901,25.017358810601134,17.098166941874215,3.3938617265445457,8.883313774497521,8.40547588698688,7.7641850731709825,5.5975853956087125,4.047617840281606,5.624083833795834,5.45046426169028,38.42361536177371,3.109873777027568,6.239087351334306,5.984925303295277,23.029016985007463,6.094572789520665,3.0235677004004047,4.690274838031159,9.94648291085979,5.0743109253531165,23.326692305845643,3.2427547921845106,1.7060627274128803,9.949901526687757,11.939696337086906,4.392111158663421,16.12379602572591,9.149900098826064,4.729678724594769,6.661408015249007,11.678911471867718,10.448022050322754,4.702196694467735,8.77684655534603,11.521619704581044,20.66057661987463,2.3243935743647905,3.306061286152995,3.240150745090052,6.440959153144011,4.651725523420783,3.6303420551346264,11.934090303958934,2.6420783266723236,22.898825762277063,12.305511817163005,15.597839337002139,10.94107474848477,17.93116025221097,4.018979953251123,4.750056724952087,3.269996281130221,25.415468221587915,7.794353022545814,4.793715725844584,28.935339278091995,7.887011499524717,6.390025172888663,7.179151010177256,6.136251325617689,6.285806888736454,12.599100789543874,4.976377576596739,6.139383587107201,3.3836883208218946,5.024888756716571,3.4964234595113948,3.610546063996605,11.316341565809207,4.530306029629869,26.01430351695537,6.705708860902527,34.431231723755474,35.70458241142635,7.469490446500995,3.990216329962976,16.254455924066992,4.749047391889229,15.49545124049048,4.5747820860339825,2.3636824082875245,6.219237957097828,11.753934485956554,3.5248014689023948,3.7743137500330937,3.3698511211951403,13.227733159149315,4.757366592221076,5.71207441855881,8.2833024470628,5.335157301736661,6.668488089095858,4.728889107505509,16.387083755280774,8.604245826711935,3.615954114368182,11.829291296606195,3.6571835770586363,8.391977111608897,17.302416914690895,6.814060650474109,5.9733130244845665,2.400475413085195,2.8205758966725663,10.756423854808531,6.141962527099794,8.533083739147044,10.966947435227336,5.248297392284882,13.89885457335101,6.091014651596117,9.482438650453036,5.623983696973208,6.617846841080776,5.724581074701826,23.433269797223705,4.347124985669613,24.406307340104252,14.79419603440297,10.780090195670985,5.460492533459321,6.805924464024479,3.5301040675399347,8.798836175987727,10.698406048622804,2.396059647287115,29.709655216080062,6.547849351800728,7.687526492724452,3.717449004827586,4.117373923630291,4.923233837761414,12.398425366907242,14.94724126452917,1.1915190641266113,3.3577300775525365,10.05451414146539,3.000381801524267,4.730229946547017,4.976447017880419,5.022570382197225,4.282563015833272,15.903281832613157,9.720756119986769,3.372522962215905,36.79591510463771,9.016752767836296,63.87860452938067,8.271254930055475,6.055528473481789,8.40579373899679,31.679098970507155,4.242047270525276,21.843303503458156,6.916835865158082,5.732201377347362,6.337318849381471,5.294513920801326,13.366433277823202,3.033026069934922,4.77245098560681,2.24991977378755,5.644986974382103,3.4109412068142952,3.52952242529958,2.070058435279922,7.355930657035965,10.529248994055104,11.34839035201752,4.57189227910663,4.366761521743821,4.440391391608653,3.1689371347232154,4.817991275511406,6.989507915380584,5.614943008857171,8.670899052082756,9.988171472374471,1.3010208002262487,8.730053049288191,17.956015087363642,1.344944443997292,3.6067766534857255,8.769290345805917,2.8887354210167673,6.020101683529016,8.769413610058017,7.303640638424932,5.782910036913626,4.891971673683571,3.1197234785370975,2.2610724066922656,13.154141648438705,4.7475188790302845,5.858256149687222,6.735342650445835,6.534720982832022,12.229249454707317,3.1007872849657305,8.638544786556325,3.786365629327831,6.484732262815237,3.950705944860005,14.158003175553597,4.402099819515619,21.92623136719228,6.1122892987509205,7.745719778151965,3.9766935776330263,8.807987086481623,10.637062783959623,3.988834409415821,3.0491225715894257,4.992163253883488,5.474622815506552,38.20995877882071,3.280878377148005,6.3450886631917065,1.4225346227876556,7.405107413082503,24.769475370883196,12.377200449825771,20.89234638301675,9.145659903435197,3.372008278869384,7.349173933334351,14.744073029039171,13.899027445375712,5.940799628697003,9.843524646759558,14.47606907500607,5.317915752162068,4.975118422543468,2.0022987328788875,1.6832123940129906,14.504746021136842,18.342990092100695,1.5507415427940772,2.1434636479145373,5.35193236288983,10.232030732080096,13.919927541541469,1.818809703363706,2.367696044231773,3.4099138940937914,4.361386264882623,6.240018804817001,9.543183521262115,4.119822949314291,4.061636938396541,1.8091662264154182,7.8816715517441915,4.171856931767086,18.855630126852642,5.554133169296289,5.100544235317297,14.974645338940011,5.235470553684732,11.572069737395083,6.627394340154276,3.7388995139202157,5.960619535287958,12.810466871394558,2.218625890120943,10.539164874486179,2.288674793447118,3.966910735649824,3.686518019942451,4.190892924442032,3.4482263713026313,3.0670478852085674,34.03015557384073,4.443197579938657,5.553969460247778,6.584356712584256,11.604897307108441,11.377829068000224,19.963098112257974,2.532199816237915,10.391130060780085,5.0278725937579,5.025265719500731,4.088560645026572,1.9456105643015746,3.2346395551130307,2.6298479546925293,37.93936784441748,13.614239968604952,5.126162455621888,6.234624969427995,7.858353402759161,2.9501094082462496,9.57311024364927,10.007002398064417,15.3362754344376,11.339144296897894,6.281034769195372,7.496857488136448,2.1369669929749326,13.500968636449489,12.289485986628764,4.1557155598753415,8.389916078826698,5.25602857916772,1.6747288060165058,10.947082224742415,3.174645615935473,9.339897189912103,9.31896742295101,9.134815924822826,16.25030493472079,4.14710396137741,13.816170552846025,2.63312230895228,4.54465356316103,9.30949013365792,4.867401303622494,8.386102819078385,21.857829621785758,2.549410314589281,7.01458130547493,2.77217326331482,10.764599100916627,2.1024119689834335,13.206047891720505,13.535186643060072,5.732070223256528,3.743113302524195,5.155595518111208,6.27673788692773,5.385906528169496,1.6754909717323019,5.504596048441003,41.67496767475217,4.465275706892146,3.8095252601795924,4.08672659092761,10.34115551987914,2.6631700321344125,6.426749092459972,7.183671455276347,12.477838975355064,3.647484951636217,2.4416192648688586,2.228883947530555,1.2058372790149547,5.722772581671142,4.4673166898139725,5.380723057799351,4.488055336277625,12.263014958615189,11.294533239698815,14.186459031822986,5.321673771493523,8.267310225544339,3.131100211256484,56.77338881666794,3.5299947227377597,6.845683172642986,3.9871185956813098,5.10661927622802,7.564582782506279,5.731876323409876,9.636070312952484,41.73094590130478,7.524308752395955,22.92314997607854,11.621505317451236,14.410558753890273,4.168768689656902,25.85312753564204,5.946581155791313,15.121894889176787,6.481392232280215,3.9978261746795396,3.6661267535496447,7.933313217747513,2.374085163305069,7.104565319603449,2.5508471025686426,5.558511459863353,2.126709123196516,6.957328871858518,5.682119904814701,6.580938187531422,8.261965176191172,8.835984802651076,11.642977362529024,6.688962607316093,2.9729012830991706,3.4932925672517667,2.755469148759926,23.275333877205938,1.5626818314097564,21.57853586197043,4.032675392611787,7.429072514848586,4.084613710011009,3.1887422040272146,2.7092955543665007,3.840108825365436,4.826337845599523,3.808655293787943,10.738604544664462,6.788867696284269,4.549830627222764,5.061522661011863,8.388093069397787,10.502739024210271,2.7305603609537834,4.047801301489428,12.60661546659394,13.696644901216871,2.8867584360327703,4.179094415690481,2.6200484514780227,7.480658503638949,7.543614245808853,2.2351341197306698,11.635346195753083,10.07603423264315,10.193047580823226,4.389461822268397,5.576336983589436,4.558705080923505,4.99766822295372,8.54488191885941,2.0652675168187082,3.3659067123633433,4.261563707974015,1.865357538231454,5.031740796826606,14.069198663249624,4.311756429071013,4.11640492140296,2.3128530091770485,14.531282273272177,4.513460291666085,7.445240028846848,4.289469056724222,4.880499247003534,4.0450020604465,6.905308109440653,10.845996776434326,18.353313942412292,6.366530497931424,5.333595156716189,4.585300007295593,3.8481778916637426,4.803766488394246,7.842233617475814,4.5835164212851005,3.405093069199146,4.574034118145912,4.0110443682198325,3.964845237712678,13.783470486241471,3.3630356676619177,4.365347237166961,8.341481551218743,2.5864677949272297,7.700062471755154,7.654033921801318,8.961809041864797,2.0804545513239345,8.447403661768472,5.926319278011607,18.582056513574443,16.515738054471214,21.666305491644728,3.228566779569878,7.6240884443361505,3.3419135632223504,3.107735961043017,9.262602733950532,6.711620374305115,3.0448448256686826,6.009732342585771,9.652976003426465,6.02570560976429,26.850752398375985,10.580339599986816,73.57530314836023,6.213453286057459,11.569173522827759,5.131499122913517,6.385738615803673,8.75519327684787,11.436779743268358,5.669432326694862,3.224659003304233,2.9300799032185347,17.207679089989043,19.82693974740386,4.0009849390137,4.984555714712203,6.646469506661133,11.143144678194227,6.180441359481271,6.808390758376081,2.8024747542578927,31.73967235637939,23.182579636661604,9.118409960449764,3.469368462131945,3.731571267983631,2.805887025260156,5.35208421032836,5.042888949310305,2.6001167890214862,7.753108318892108,7.3640763655007015,11.640274797756588,10.059569069113161,8.943157887952344,3.2457669145450985,9.131570100509318,4.273793927048377,23.027039862489538,4.9727420839710845,5.249514757294047,3.976145775894014,4.878903868105364,1.7168177082979448,8.94992700070574,3.577739061370291,27.01315894722363,4.731306360063289,10.576008462318464,12.916413895278199,2.3560372770185047,4.245810788451834,5.074076891368314,7.941022124364049,2.3860031292822432,5.468109417092196,2.657638329512754,8.492429618602564,2.6126657721096294,4.091856719011826,4.035259214462499,2.5772886220601885,8.980588477499268,22.494911554510455,4.652052252184853,10.795050213569617,21.182612959984258,18.149925292456704,9.589427272025544,12.391931429590196,6.546532287528213,5.1802141842712635,2.5511153954310686,3.6723516204769946,9.051211071516645,5.134146260381949,7.381386910480983,3.4402450772982442,3.615528273112788,8.393713887439826,27.147997880778775,16.223299166562928,10.382561653660458,4.302827896893808,6.413007458953633,10.862932600219008,2.2234940179262144,6.9968299230949995,1.3917078264703697,4.788384482592335,5.485878356585194,2.682011927788358,6.9262856536859445,4.594625979382423,5.1855930334341185,10.240921736558878,6.998442162904627,1.435433930413495,2.327904303827356,8.568424740454724,8.537943917100597,2.1918744979346254,11.237216730676842,5.274539969131923,10.268411998660198,6.431258797031827,6.198155444479183,25.605845870783334,12.7473951738684,5.063579808162587,11.409652266625192,91.29012415639382,5.510802728283938,4.763186392593743,3.5662160932220432,3.471565921957253,2.469990615581991,3.2039130779008196,3.0018408222695014,7.629043262692214,5.58445183533612,9.101494965254437,9.660059856129788,6.806442292486238,2.2825944388157375,2.7700694427740196,5.00449547431904,4.632100939744849,22.307295764518006,3.202048499581145,5.879253845401039,10.684756130339844,4.329043310366875,3.7870603778041554,3.8433427654791013,18.00870704185185,7.216285467317819,9.56125695364693,3.3803157428330595,4.640126079674069,17.580892719833006,5.983917263849358,1.9063467258914513,2.006489625890808,3.863034948840604,6.982489613376811,1.5873908580341303,9.64934675468115,2.2576768233175786,6.306919859718333,4.268478616361772,8.663184091878318,3.9009201676034526,10.8018936097353,3.160437370120007,27.500997575262254,14.445853226536855,3.175120351778831,5.922527560040682,4.949013973731472,5.223167999440678,4.420002376233001,10.79586355228087,5.11791283168863,14.222558905512445,6.143543662613774,4.03479193557591,9.461195977957434,10.262854552880961,18.138613793324264,3.5828136484427664,2.746491573526978,5.999111832531889,5.394792000028965,14.858096449063959,3.400032892140541,7.52449459329388,53.86329385435531,5.194596499578827,8.412139108441647,6.344308364692219,6.007222154400042,3.945095253417988,5.004599124467863,5.881084269422204,5.294474120536694,11.689077681731602,2.689810919890904,9.064285707507928,5.85339293106506,9.560506447514484,37.74504902276666,17.903429905891663,9.160862261659851,2.4106611375513327,2.643146906848348,5.234401347023345,4.429170816024106,2.336620758748079,6.546975832876215,3.0459429125358084,3.831541561155806,4.804918114649446,2.763691529465222,1.196871309322516,9.089305716984734,5.7116689428377825,2.7529159827383,2.4607183555088503,6.918462043392606,5.6262569659857915,5.869403549275498,2.268077775793544,1.8308182796110448,2.289873128422512,10.215767170756843,2.5876244817578526,1.8057345810109664,3.6701163770026093,6.737153012858486,3.3220873724720756,6.078654658588532,2.65580449381358,8.782053719492673,3.2723119382162404,3.9147851581243978,9.498524304251232,3.76432743810839,15.664239436562575,8.395143386634556,14.388786654309339,4.262762036315453,6.591391926347426,2.7794076806784367,4.937465348559952,14.844856228096406,24.7203958519201,4.566536985380005,5.551817835899157,7.195713881015651,10.253742279119727,7.238546065491084,2.359088772470476,6.926122079641079,2.732323491125743,8.339865662823048,9.494905499175495,4.532420971617352,2.246037581474847,2.5353473748936715,4.879342052172171,12.500122286581915,5.484302708802555,1.5351230496379138,4.932687600418165,8.405378626776224,5.989456054659752,8.366216038308712,11.29961903318547,11.146764231409325,8.453332846384173,7.985116414880647,5.629944075846019,2.4226750960726897,5.314899506144843,13.066016034719086,8.810432296002347,27.181467500438075,4.990569231209103,6.030261410643,12.98279004641417,8.993390578563487,2.9200122088003155,6.633335176672002,5.184883406865789,9.127425511846916,3.3216297276073212,1.7054703545155339,7.64542053810438,5.102638508483407,2.8602078189847524,10.903245491980245,9.529030408263257,4.4227662506877605,3.363544327155462,6.607778774830525,23.018252472773167,6.6971485013070495,3.062372403874224,7.822517408811462,7.075949210126106,4.321702510616829,4.074606918165601,6.087925021055064,1.2619980570245373,2.9441699762441997,4.064467730006604,46.0081230117909,6.699601667551598,11.958205224844153,6.384108828186591,6.337326099714745,14.986380052425506,3.1927238460920777,2.3786486667946845,5.093817044018522,6.570310208605966,9.944644801374123,1.7319638834373454,3.9988978787086285,16.323946491269528,22.486175203788918,8.317446932956237,2.0934344467526955,3.463247693363186,4.765224929436963,3.2359371986426124,4.2489578768834315,10.324943889981148,4.6106583784655095,5.8067116866313695,19.60153289170333,10.551756941396457,11.990692781637314,5.998003592955461,2.7511907195453777,4.974954842557854,1.3212594267655131,1.7720511774205385,2.243279967889919,10.646659718873616,7.782779661069309,7.710526844517213,7.459861219609127,7.038776276233897,10.1976126317065,1.692474991233724,7.942757941599102,5.324827975491245,4.506108693006383,5.312894584465368,3.8626548559145055,4.100126470021088,3.944116268026837,8.89467735334555,9.676484890190569,6.8514397492746895,7.690273330000176,3.4709085699037936,2.439675115807963,3.676203278283207,4.312243466167712,8.211386900111497,8.976466749593282,2.3705236627582056,9.128812075116745,3.0403788494326034,3.678211094310366,9.291427603645271,8.425363720728587,6.06419949613899,5.490650498321606,4.369116801942483,23.842272259999007,5.410539806162334,6.099998402228823,7.860946696759265,3.8078990379069824,3.623306844458098,2.019011714492126,3.886001119389074,2.8858716233541033,9.169533163964195,2.7266582838537787,6.250375632271677,4.886746691958702,2.853135627783669,5.409228706248141,2.5682746617182644,5.228077954414525,7.065606575524588,9.639864094432166,3.7244916352369755,19.186485325362124,1.9689586508950536,6.921105476362215,15.955631093497772,4.072276024612296,3.0600313383714677,7.056520906478643,2.4904246862257176,2.116852487446284,8.665385204706837,7.998677968645858,3.2068096710543585,2.4249094914096743,4.988711881825957,7.828145381736768,9.205584087869054,1.7531455170864867,10.160882125208179,4.04668956554891,4.406772734086144,7.315859250674214,7.987358974999417,2.7494958047010525,2.5364874672514155,14.621365015862128,10.146993537645292,5.445286386586721,13.90064488382576,7.105347718114828,16.17044900192306,32.29558485385263,18.96337828162007,10.81245553356062,5.648667670100618,5.293451516389101,4.635195964965549,5.6790139028370925,3.0594099332780322,6.033591794467722,5.677232015933256,6.595892809887299,5.616767388073158,3.5845444317032493,5.390752670338097,6.355743950436257,2.195125365732636,4.724527877156965,16.58743114038944,14.748459370841623,3.3418038693906174,2.749724354533014,8.055165931826124,10.313864923968357,11.598663658037644,6.514143185862056,4.553233339683037,3.938747262433709,6.9744638602733575,2.4566556770416255,2.383709256690133,15.356237477350092,8.252685082492315,4.772082407752329,11.272846370950113,6.776688879868554,12.031072301789765,7.1664765606032725,2.227212272703297,2.5926865150682787,3.5586294497654327,2.9701459884085573,14.542173473683826,4.453155252226116,7.451385161193517,7.9309632086511455,4.4857163905053,3.6833744257057646,5.205272598255469,2.851782095614579,14.573945517961706,20.49698387645249,9.047325727697716,6.652548189828842,5.6478106517298885,4.939162838931327,3.41603575459873,4.282818071450979,10.001934133817844,6.9388277362432085,3.7439648895889537,12.156875558443973,16.23607319101356,4.7703808716440355,9.682157741920628,12.161390860778761,6.049741876271164,6.858242928559157,12.416045562902308,3.584347120845121,2.5135671008472036,23.988382613448483,6.14197393757931,3.070802097975536,5.602927190368812,21.55082801930788,6.860975809540009,10.976568901048093,3.7181387305382594,10.2220678958836,21.49808599829407,7.604723927183059,4.041635709693983,3.2655131043897625,8.318340855447765,6.587605651926666,2.5768523964941235,1.6372682820177886,10.293806370517414,6.169688457305611,4.983224798904373,8.606689537967682,11.04567563526634,8.543506802505465,4.001337170526951,10.177694733645431,9.247692340445584,4.285961506289154,7.373460646571296,8.047707226912516,4.4428389155620955,8.699673669549997,8.557273655254662,5.14012556163915,7.094171639127627,23.890812427798636,7.6044835188063304,4.96274367132175,20.521621632832602,4.379662566623839,36.34240478678796,2.1990067465729015,57.97063836640569,5.066339466203891,7.776487915261544,13.560803092696629,4.1218952670136675,13.966460140118745,5.9650579595558675,5.9072296502348,10.721264701194775,5.077195422158935,3.2412257364268893,8.115780928406803,3.406746563499078,7.239364590330294,3.7548014347351475,9.085012403224129,6.339204515795348,10.232611487058904,28.139199156132793,5.563491280144856,2.9376326244960915,5.44577738886277,40.97400873387456,2.342552852379896,5.483504645698069,24.33742504748485,3.2953490793793776,9.906005865204952,8.07555768492202,11.359718630154312,4.627942986655079,6.270199397032806,1.6326043784475335,5.764232049903808,8.008555428158386,7.546591156842993,3.8720835048302478,6.502152084544496,10.557506559112444,23.028140220544667,7.296930875267107,4.702415760024414,4.893290442106477,16.913865139857155,4.499485991420867,3.017950098645993,4.938899536282798,8.93554368997184,13.145155641567575,8.88944836863561,2.798881437930755,3.7991603039278505,25.63057255933734,16.794851044096855,14.440225651362354,5.121782044240721,4.5417019623504835,4.649019070162004,4.78039230108546,9.57107213105579,6.100107651804373,8.662796794485617,11.926617173466992,3.625356458552542,18.514309644044733,4.197185965360872,3.1942667108903167,6.442778545289764,2.7037373284435984,13.791770915776803,11.120023847294249,6.475188303332649,4.706794958607697,20.23746305885935,35.78771980007931,8.306576312197626,6.128070651232968,3.1795200463461413,3.542022477165864,6.1013114428917765,8.001596578884042,38.42321291865427,4.391166342932312,3.385338683003648,4.382355296217832,2.2107776937445895,9.97857779968074,7.049510975670084,11.64654263682995,2.166364089528966,7.251679190601186,4.088766235575944,1.7619761295090708,15.215031765943035,4.7582395914515825,5.406203504151036,8.131313276236508,13.27359660474994,5.6468812827981045,3.1314762872812394,6.904944465079418,7.632412383140875,11.451528691993238,6.192527134022957,52.23538412669224,5.071293680404685,4.526578705261059,2.5681563901843742,7.348743121780305,2.825320183800832,3.367634389785696,6.293163438824033,5.129811851595734,14.437447157866945,4.509210588515886,3.3464584472496557,11.560652930608416,7.828089740129767,3.597275032833968,3.6699301519249685,1.6408084776869742,12.04706268694259,3.2334221871867626,8.002368406327605,18.491660118357657,12.148216585065533,17.242034689201464,5.570470551711144,3.2394517165227215,7.320412636545028,5.3489105364361444,6.160042307668572,3.9848109171491632,20.16031573454617,7.160993857017295,4.858200093008369,4.342670288623228,3.9328574386081647,11.677402323799557,13.433684721529257,9.094824661832952,2.588412150944729,6.158426690809797,5.724213397142083,4.204891219170322,6.826473289665167,5.380293308938544,4.2765186243384665,1.1836548643787141,10.814964740419498,4.133002957301583,5.169485887665278,12.723660519122438,11.417539562837915,4.826278206890572,6.14231348949213,4.018851293963437,3.383219051104475,3.1295945097899467,7.522374994275051,8.072332391181185,4.590800858206046,15.808414900417297,2.6402787047781313,10.383986553264537,6.213901380800051,7.194469876637934,11.82922470993927,5.238313020920437,8.573527617776374,11.66230204714558,3.774935119358524,9.050675402156065,2.2680174616364637,4.214769194497891,3.048037701658366,6.3321333200986585,8.868799104533233,1.496143418451494,8.538903022040946,13.640615993450915,2.433494192382826,5.755800061594054,15.037339746402322,13.092433452431157,10.370655520575692,3.6634851965793174,5.028775941036226,5.723353072584479,39.954334625753916,5.769363705394976,6.230540273099352,1.108680113464382,11.77428670098101,7.569873953257691,3.489513545792531,3.0284690284000475,2.3774433003458513,9.606358589922248,19.881307753822462,3.160245765294889,2.222817340005962,4.4230304741114095,3.701932717262293,3.085854169026894,15.770740522178249,10.175879064852536,7.827774690616989,8.477674310314104,3.456708627791512,3.291086971417099,2.7841788152915425,6.352204876909356,4.748044772726528,2.7601505233439663,6.4734839920679645,8.435225881969437,5.021468174527561,2.6189284330257063,24.30949622520936,5.716196493454862,2.6544863444877573,36.129862547098746,8.369866505866337,8.688114784474617,9.183902633895409,4.354041282999901,10.607026580568629,16.644788382803668,4.141736007418307,8.500708468340093,3.0386858280143776,2.6995935095083,17.26639456891904,5.8577188473261765,4.76734085028925,9.745629675994431,2.506694202489105,21.407173816132374,23.27974669915978,15.065891496952673,16.85103503657402,3.2451331534673247,2.325549189811926,10.097510531984518,3.2385038388049097,5.770294290766988,5.095680839806572,7.499753221879654,40.59050844633229,1.834421776123423,4.065705498866892,6.27010747562343,5.391394728131251,29.8764329385099,10.006071508184911,11.180327406165155,20.521029699869857,3.3947986482561814,18.215205715578673,7.048880832329165,8.944682732365068,2.095506811373683,6.801199223713245,13.644880651284998,15.22531350506965,1.6095252872468901,5.793642581310799,1.928377660782327,13.276539349878806,1.2426738677895899,18.60397433531182,21.497780372082982,4.203914965428597,2.134911425827235,15.197577264407482,3.5356953315487463,6.583624224350157,9.656247965116908,4.4125271680266716,8.995393819368648,7.915327847416975,6.950731777986494,2.261987783326804,7.003317656270709,2.629272780374696,2.8809529396617717,4.4077050018128965,6.5142773934632014,2.642724294203403,4.87033629261639,6.149050249896625,17.31903835834062,5.709625359165139,9.223005382742516,3.0047361192292716,3.3375076932117826,7.620282919533327,3.8890958225408654,11.209697118690308,5.228332396423109,3.971722156502393,2.6889037074750477,9.802211633777238,3.510772777580949,3.8055358102872683,14.255870226103966,3.1457916704255364,25.779755765271425,7.279206804202235,9.775763137721766,15.00137340604036,7.804839096569273,6.937893450559584,3.6471262430852938,14.794314924937144,1.7644760080143798,18.547679888626845,5.477456763100858,6.279328149845766,4.299859842431708,65.89347464137863,5.779908695502852,9.806352282372014,19.19304873481537,2.51643306316071,3.5699920613823846,5.544573136613968,2.069167113206549,8.05226066425496,4.828373774337572,8.119640671821154,15.642798113809251,5.637244225278182,5.62044740270364,6.586998772905116,5.2131318549359795,16.795365309958633,3.91263233075552,2.574022811985995,17.524525572635437,3.9089281708253516,3.1877709247891093,15.795253401123896,7.3847424557292545,6.196223251436349,5.599874713175352,5.173332474572901,6.22610238085612,7.743346862926488,79.65385010216617,7.086641052842212,14.378096028927098,8.133885648164613,4.153685665887971,2.4451139092824707,6.583918133967586,3.993024324990395,8.297064567118634,6.244197105622351,4.584134522926358,6.939787407073581,3.530931691488009,8.840615299693173,6.118602792032344,10.828996072056189,9.819578991872074,5.944715376635513,3.5012174552015507,2.2119312054326397,12.750122954785347,10.408354135290143,17.324403707197224,1.7089489443237957,10.936559082176549,3.170995974932769,15.384300275806682,2.9095025405841155,4.569046434763765,6.126725298921906,4.8898293457506625,18.95599741810123,12.279523137467848,12.470861786234853,1.9864306186225282,10.331575690269892,3.5187634131245504,15.78536508823892,11.795996441955419,5.430596509237622,6.903668721285988,6.139323723797534,4.298008564814391,1.3500887429427373,4.825513470384762,4.5730728665352025,3.147147967117341,14.096291126220759,4.655063978761015,12.636845183780197,22.577206415400223,23.519476540603023,7.765710675055089,28.539796272161524,2.1382513323281143,8.007371626544167,4.690913955375949,9.124126995484188,2.5212637855957936,3.6992628743460796,6.756959253141854,7.1174216475386185,2.2404681748739383,11.818993123632472,12.779548606457595,8.63508308922303,3.1365356169031617,5.177641525526007,2.451922052290904,5.937186751916766,12.573260095013987,8.514416200369311,11.33770166971554,9.930337506211213,8.182973668437677,14.79028762200908,11.105214483979648,11.094706538180803,3.3790689245022145,5.675282963239406,6.957992490604431,26.730916338341913,4.110302991873149,2.829066709915537,8.366125469034586,8.015727710710078,3.040288606152176,11.873009089483986,7.294217121513733,6.204859974333793,12.787546796151124,2.662917360902587,23.63983381889504,2.303199036324553,9.274987240928173,14.559541866684777,14.565312623858835,2.728459497365843,9.542117499690741,8.530400597684054,14.514220622466,3.60845354557357,6.441814065662245,21.143227156847846,5.383591732810488,6.736825822425339,1.749091316407211,3.6673349999340603,2.0503775726178413,3.6287209107451686,2.5770897716752486,7.038239193507355,4.59226733607713,5.997002207952291,2.2874530982287804,3.5011306498794723,15.57764480868185,5.380141528794643,2.456006819328252,3.766854478368127,7.6599663692096245,3.0752310535797376,2.3924986123571426,5.061228873996093,2.5689268285696585,2.244843109275783,16.20555430620979,5.047377515433827,4.5311445980074,3.0468333735324142,1.0358981902104678,11.630597730034646,10.063070458590195,9.677434642397845,6.844796622343327,2.6076158960204077,9.250865659500548,2.5692460181642476,5.643093535389363,10.19184541943619,33.24812851549182,7.4469559042724995,21.725108264109622,8.923648244850076,6.1343259507420385,3.6876602726957377,5.462918325226036,5.9840110488542155,3.766171660122297,2.2917766651903415,5.758192463015051,18.41876064670484,15.166517838962111,5.239542475078395,6.461440281705029,12.111089201569339,22.12162733018415,4.380359984323749,3.7072084339027556,14.108195455599855,5.165209900736008,3.435166757255304,3.7013014236593387,10.885420203708263,5.957379820718558,27.17735925361194,12.953054405391104,5.6539197960359555,15.62476621190515,2.982196511669102,5.737151316778898,5.4457014875427125,5.129428170133473,10.305327064760377,3.503570350112635,9.356619654586137,28.494094797310733,4.2263201151715,14.15657018771526,6.684667141368665,3.756649213818752,6.982344529668226,6.023514422218621,4.1932681821995965,2.301889728214827,18.513518739206692,4.461042573449659,1.721299469923161,6.7313211447037995,2.7118134468353903,24.625839671933292,20.10835470074227,34.972531866990906,3.205970763904738,2.6167615325924793,7.71911375596283,8.846153397317606,4.314102208367834,5.4954181170997884,4.824229960445897,8.583567649271167,6.56115189417248,2.3802122661381886,5.987389791118227,2.52551972168696,7.047607363826732,2.302306433964853,6.146652981455143,10.442210117498183,10.229377149804256,11.871597503650827,7.577836374809676,16.407060153310177,7.123258275799343,9.740961151277508,7.118237030752254,9.687770819763738,3.6617905802262274,2.4472042316548963,3.7480797474968806,7.968072717850034,8.860628560564912,3.0454351650450917,2.705895716662643,7.049395669598823,6.149927333055006,2.868885138253543,10.572422080265993,8.58612336266948,5.670462437939212,13.732095623590883,9.366441423805037,5.788165129847367,2.5110634507462692,2.2307151014128643,9.831493120620522,10.416897444375598,19.85371364330053,4.2086402787863335,3.1651134605488473,19.289064696075553,30.187490638615163,7.07010399088857,2.24411992958004,7.156772968515963,6.210865359914586,6.306926959406134,19.353516643723335,15.805531100015976,3.990332582098475,3.1850917994205212,3.9249155598926233,13.577965578474343,5.291605684830388,4.99700978358895,5.043289484630082,3.2439553501658467,5.782869907719663,10.026033970172545,8.83465057988928,5.520957412250356,3.53796640576283,5.959747615570722,12.896167406355953,10.971381086758448,5.662933824171411,2.2376190891589105,8.394489856194472,16.97449870740212,6.905308964398231,1.7953966353772208,2.6037788532585844,2.451867805391159,5.350642200064405,2.714086869734023,14.289632910740536,0.8783381944078652,5.250203823904266,5.864446152490816,19.588503797182078,2.9943298738759685,8.102288628127186,2.9837316866482255,3.0556996167693695,12.58255457477716,20.96951825841604,11.725870797975311,4.142921047443195,8.329680794165839,10.594142892981223,4.287433027836876,38.13179522891079,4.633094143322911,11.173016786102341,3.1091128202941642,5.663347903603505,6.518677875301784,2.958851853933407,5.4855510335522055,6.478356438637052,6.182906366244293,6.339307638451463,7.464079488667488,1.8397175624042774,9.483139112317547,2.1232093337605775,2.6585363795068813,11.285486589246618,4.5231676813656225,5.773151330260744,3.0952048516523667,9.187530450094757,4.166581255119141,1.7887320815051928,10.994686900655065,6.384631567122011,2.6911791673971805,4.448940011515502,3.781541307733101,7.84770851860093,7.269011480126107,3.536893375316489,2.4455152085640535,3.604708031019262,3.5797537904525987,7.651394138424298,11.723599417656208,5.091899367726651,9.876889014908134,6.304920675401344,7.544065664120246,5.235922921017791,3.8615448000688786,11.870979980802183,10.074825984394437,2.896916663454051,5.031997073934603,1.1554894216302714,1.5826585831536648,2.9025355161630557,8.655322276110924,9.303917579676149,7.241608830573419,6.100270411189921,2.1752624400583365,7.334147349661519,2.070234865311119,2.4564430767959693,6.30516008550862,6.991128589549788,13.324490449598304,2.0196059515380473,82.52205591333615,2.2219748260034553,5.0279216433791865,1.6171982048337668,15.858850935417488,3.981107706213082,9.781604783117247,22.813837680767527,6.251933986393382,3.414904416052297,4.964562104445622,18.510818187673113,8.58189462656081,5.407168688366132,8.656474223297952,5.389995522156551,8.24878882657955,4.011785016137532,13.840626071161026,8.665918202689207,1.4786392513904503,2.6011089990477108,2.58396003838906,3.4727429923887607,9.432808588750492,5.511265695900297,7.28422543704216,6.1702413779897665,3.9710405052561177,5.583528450579342,1.7860742626360429,7.264210427738235,4.133035176574738,4.9768324417509024,14.886547931125628,7.6993628950786,4.619803588288077,2.145791937740367,7.249594236342175,3.3223650748173386,5.742617130033761,2.5920240832038886,5.15240432699994,6.892184993585583,1.6230794539101954,2.9980271477498985,4.38959876488378,3.383017341595506,26.651848947076676,10.295362620160583,2.3208188462765325,9.456070813357757,6.043549907182787,3.3326781371336605,2.955297899542579,7.15465087466202,13.751963717690568,3.7151018645931115,6.316006384521935,2.910680735479821,9.789771041917739,2.4189370079443817,8.83440307676749,5.0816066718453525,3.5729122342692734,9.84847654116591,8.965250490659345,24.567768246056474,12.442153468601123,8.02872648924715,2.287532425565232,5.384576609484455,4.815058699244185,6.283134265668212,2.19765184237815,4.623818932818354,14.445879419888179,7.037233329877874,9.814983563990113,9.568608341437228,4.430370918591586,6.0096190613910965,10.9866063559905,5.824411384228874,4.83373737368488,26.31629661151157,13.850211475736254,3.3644433025512734,5.948145354538989,1.9109122685198847,6.140278217684766,5.007571041995224,4.231372749842986,12.441891850798573,6.51002243343735,2.8277934298305847,3.0815956434227356,6.716059541497579,8.712818575940032,1.866628786687847,8.900191920381229,43.122585099685764,4.061330650493249,5.083536506434952,13.02026757846096,5.072292393876,4.473729762152414,9.528040619186681,3.0884961794034584,1.7818067219387208,4.889066309243114,5.436294334317957,4.75189070669715,2.2661458768625433,5.265924657782489,5.670854974525585,2.1851952387331868,2.6881909650518963,6.697598101200362,5.82288757755798,6.479151975609105,6.114904839158775,6.35116579930351,9.447912529368905,16.303663980660083,2.7113765672113543,3.3349871958789366,12.287353201268644,5.616307237792828,5.59299164001404,4.423157712629488,4.1657800043784174,10.089546107514524,5.411441582222979,3.968843287122994,1.9154570574131085,3.3439672060452366,3.4440150306743527,10.848945576662311,2.6438358596140965,12.267659425803256,4.332461098303279,3.527182822835312,4.083698807112718,8.740464795919713,10.777365652341597,1.4792932458907129,1.6120832380992842,5.386892978205242,7.0041180747396465,2.34568084659441,11.233235642271913,4.185552947308679,4.8628289533520315,5.850989007287653,3.78855246463058,3.884506620730643,16.67430613063569,4.3152731300839875,7.474263207007297,9.089560296022865,12.888339561378094,8.01838495337046,12.221521205744677,3.8677806625880815,3.9237787046757595,2.5700379663303945,7.253768642139299,2.687186613857229,4.086326346969576,65.59656467332972,4.50174568846441,5.465153326662741,6.306566835798916,11.539339238030403,2.6411780159287446,3.1032157415780626,4.364144583821652,13.335043039633078,10.168815752671478,4.921044173204351,3.696446867719738,10.423062711182036,16.321371569069594,9.39485372302099,5.496931961217208,11.384059507113479,3.1954258011929753,14.005851650792286,2.4576193894071126,4.865193760730663,2.7929408530129978,12.92079735610231,4.486838464368816,4.53390896556991,2.7021457871798815,3.6953026244766085,2.9880368727007895,11.29195687154254,1.306572831667363,14.086715861322581,9.502509639638387,28.980662544580515,4.67079066726922,3.255941243736061,15.787841485209519,1.1323427666573103,4.930445278212469,3.8117146357274483,11.157037659633103,4.47594317891502,13.950440895927041,7.230036648435202,11.982533889834123,2.3793363569905948,13.851644090051565,6.3685510818411455,1.3538453091430835,4.7569384452088945,9.523093346490787,14.057026923896148,7.347402970891231,4.877595477797296,24.088643589342016,12.81959969829084,2.1190147506058827,5.038523936180103,6.86854105409059,6.706531454507197,3.7535739949619016,11.711369741425752,8.067581407067001,7.339770728373384,4.8572137661758505,14.364269855104157,6.21299144680711,14.709556838630514,8.220652328614653,16.57157218309523,5.720479851133904,4.0331670940946465,6.180822709265788,4.983964565059271,19.484546671605376,4.084424017863137,4.954131937246572,10.268799596066714,8.736187770623498,5.192216699942601,37.6894249780247,3.9430842221627542,5.481032114312017,6.580949761086342,9.412902068673938,3.275240197677064,5.052265542654482,2.574525120341508,3.1945670909248327,7.858229497946609,12.349626386484838,8.48732837214155,10.27116386575807,6.881096808205054,13.447534043691922,3.230206764011038,9.304999067466387,25.046623555735113,3.4551737620160328,5.77283998462223,2.9780594502722275,15.467696850779712,8.031396202212859,3.502712400605976,11.345181803698251,2.54457890184354,6.466514857539337,9.86873552413606,15.87919147996541,8.471026658428613,9.434330174417855,10.07278268263135,11.596189414795342,14.31024779503668,4.819252787902829,13.202677710262648,7.412812097905199,3.7263550504815064,7.614187089609577,12.648419661934067,4.791125432464067,2.320377822905213,3.925845137767077,16.089750323900834,9.195615640990527,8.98243254716248,7.792681886530232,4.792234926699341,8.103600712337283,3.172531932242543,9.915789338601794,4.831358134326705,3.547024479712002,13.204479334269067,4.691686157636621,4.383650979578071,13.752092679399956,2.9288227248165932,6.116799650116416,13.391852168388004,14.412710272170642,3.5208283639826754,6.627031055180338,7.233778640890694,2.968828888802099,12.739077644503556,5.154749720386023,12.198406408875236,9.296492374059152,7.406639820835784,3.5523789953693092,2.0966130723141307,7.785833306684979,3.4098881121613367,3.367143738300687,4.38748828279235,38.45767708995183,5.467131488205961,7.912400815346864,7.103876228142185,4.268585035084599,10.144405530498386,1.2739773946345232,6.325696646373079,9.058967017312666,5.861300932509901,4.455996670193668,14.334718731458912,2.2024221669002797,8.206654491115692,34.835185324121554,9.974197375048597,3.3491617043183175,17.23736442781131,6.1255296620149045,15.284868126788151,5.5753926669467875,6.795577674983918,4.9271530407452175,4.529884570651222,6.716829641122102,4.749405692313656,7.575155637161884,18.60382582381767,6.9844685295696,6.186469126378445,7.68580843797428,4.736111481992568,36.25610579656638,3.9733493430237266,11.638021714039077,3.7353247321068683,9.506065450747954,12.232566999711024,9.252802248080142,3.9098260309420896,6.85665883891095,14.40202767428021,9.989677693775226,3.0177325282769196,2.986918880521717,7.801403212198198,10.545665460811255,2.819606456092955,5.577113304921386,12.548561874400223,2.9780881839482025,20.989874348112117,13.624831791854113,7.613944584041923,5.295717476494769,3.1295897391620353,9.490574132281202,3.792073753815826,3.537715775717147,15.560920301951413,10.106366925972361,13.550329906765326,18.344780398483536,8.193995842420426,2.739631579506819,22.194602231939747,7.136288704629345,3.900614127522297,5.11025878177791,10.724522222185708,5.068495558863116,4.287418060922686,9.604234619315477,2.507820165495067,5.667673521106737,10.992604412375158,7.569954452433168,2.52128057766022,3.6758489382239024,3.8261088178108236,3.3643634843729293,5.8468149371441305,6.557312336942601,5.379710104263977,4.067776321657869,28.745612318232737,3.395787282219453,3.8169836664733334,6.624490226857526,4.660100804154101,3.5472667444537325,5.9761642908508605,13.297399611304952,3.6482621666678337,4.357324174442855,4.807334454014863,8.27924581792643,4.597822829172389,5.126449331176174,3.2371354842877755,11.040464174943546,6.767568593129532,28.26067966330954,2.3671645558309495,7.0016984714715775,2.3539605560915273,2.25598598505746,18.732485414886344,8.166545169585225,13.469474116501173,9.824457399398451,4.948773637959789,2.796073151895881,15.223690296659369,4.859018496411474,10.544824471141832,5.695856293916007,5.618169714756069,13.550779994685831,34.87432757848296,3.6369213114078556,5.147672727489051,3.5826711474104425,2.505473542663731,4.522614760782774,5.317599483921982,4.015328079819962,6.369354901304118,10.189630712047663,7.59092759441368,6.441212936352728,12.315506065164467,24.877961691541216,7.846096321944823,2.5886841704942096,3.288572473130423,15.180978170786778,7.289282647688642,4.539545417347547,23.33447034929323,4.163310731135226,2.723945781312648,4.588924590762027,6.553932113732578,6.005025603358806,10.11392637743274,5.089881816700997,2.9359944634076065,5.895808674151434,43.967543756606446,2.498103373004611,13.587130992094703,1.6058075022013054,2.311084645075361,2.816657170926249,5.757130018919304,9.436860811291114,2.1033103121742434,5.216085946495222,3.769783115962086,3.1660757383853304,9.952756304997868,23.758508104495235,9.263902640597491,1.9293143209581352,4.2824565243769985,68.6163161616042,4.7581706861792,6.101293120649315,11.736308148272087,4.811054213790988,7.4598939383023115,1.7346866005774826,2.224660558305551,5.047014989656028,3.613430870785753,4.346251538478192,3.763419124337944,12.9020766384945,7.0934634842359126,3.7332409470736474,9.07763660718988,2.614064723075649,8.438668152575996,1.8383883932252474,11.194035333695231,14.741897852256525,3.960277833448795,2.810082702355052,4.840849953220278,2.198491269189106,5.360859062519259,9.594282941111922,4.417269896781257,14.121161126147449,6.998878826843124,8.178591331509061,3.571322315325503,3.8988214027221995,4.253847695991083,5.948015373682383,13.418286574980511,2.6528413464109826,3.8335849193578615,1.5777434612005816,7.509344709106174,10.061109173906436,5.657389233965124,6.49871103500254,4.401778120649224,3.851019412875726,4.069509769655909,11.880158333178473,7.965907972283151,24.36396775642015,3.870288817125509,1.9427921064765632,9.778957272227046,9.897755780321177,4.971440343452095,3.1607222175776104,6.262167645826221,5.85421539088444,4.2599769813759645,1.7103208176980984,5.544898570541513,4.462371427342068,3.013920055937725,5.0866845866857116,6.536797463828598,5.169056191379786,5.278062894416765,9.494286709172108,9.880352960998056,4.418819209009053,5.845208176231139,67.88935435831249,5.937956513059024,4.701211507749899,26.39316244461715,9.856418354168342,3.0881585517827745,7.040754318697351,6.097629420875244,5.935222567621632,8.900252545629549,3.3623756465777284,16.590250603056067,16.177928829480425,4.282297982489206,3.586379973273248,6.963587385400623,3.6704846887949594,8.32424148230425,3.996786753265387,4.859629898257455,7.221181598543927,7.59669804617269,4.7254983084728295,2.9362635346655988,4.3428476095718676,17.68729666880322,7.375422781183213,7.435271401837826,5.892031359412216,3.0880401588751547,2.4063661971219177,6.51454983427679,2.5316190846303535,3.9649739284416063,11.35267612427317,7.270145778466826,3.9351831420868617,9.527965413118102,12.589055948007742,4.447609921868381,4.143091470940208,8.612895036846263,5.539629621590424,6.641209979947731,1.4848625427785132,19.989399826669946,4.647486584632734,2.110610029931394,5.513319743676271,4.670621449270064,14.278238228142477,3.3884958302481127,8.99451828425985,2.176969775662705,13.571652408984864,3.5210298346385196,2.235631269318966,6.582914738612551,10.572042899622765,3.087528444411045,1.8224685986674394,1.9841308227024197,2.2506685074731068,4.240817440389004,6.353671686039433,10.224918932115855,1.871057945046687,8.996680028802768,4.436313209652895,4.198391390046282,8.940095594685257,2.7794772532696936,6.3600272232036374,6.429319279718371,10.727779779788312,47.83924929692298,2.4381929966314946,4.909174178168006,3.22143510836843,3.209657498888167,4.19922766187213,4.00746713816382,1.8894724588812215,3.122616803321711,6.700792735602147,2.4703726447007983,7.043953038196415,14.402904662656862,24.994147867797246,4.098439746591231,44.6246544324103,1.5164314347196244,9.824321785327792,8.263548182235187,1.47342724606721,4.313690993997507,1.386666966475558,11.896260865960048,25.93901571707155,5.786642540590449,19.482544726302493,5.115354868923176,5.259500048589724,4.315540557547175,4.427888628858461,6.630684202218312,5.386298709604482,3.443965466682274,4.034737583877011,11.551419325317706,3.1107500880569687,19.94760940772505,11.455934940430135,3.2950757509913364,40.7583897478887,12.51981778324019,2.8502644074980283,3.838307772328861,5.345385613764702,9.899580209500808,4.120255923587825,6.2499028312867555,6.610509052035938,41.42592079806289,8.269774869470464,2.0769064283730296,23.8747909278695,4.74256938283214,8.353525386298399,21.982637445590214,8.21751687722384,4.033719041229528,26.68808004486476,9.453781282691546,22.25071196762434,12.05172526051383,3.6440837759145652,1.82714372370945,6.3814659519366765,3.6222490243565053,5.182263595644865,2.061127978515097,43.760209133823835,10.349253027211843,4.825291083323713,4.1531865326317865,8.310233301411685,31.7354986130455,13.138227776248085,9.342570814694177,11.830919968529626,3.337337154962714,16.413467122732595,1.874723956011179,6.188313900169677,4.997141703048488,3.8091348022099973,3.840741405351253,3.521876201769988,21.24429172525275,9.476178894183297,10.636856356080097,11.533499911300744,2.4138644124377997,5.0036758915141135,11.04491151206461,5.443544951292206,2.721571473759336,5.968009420578077,9.52775792350812,2.0895365961301677,6.315998192900719,8.123402465294584,8.544535616469854,16.85975416823849,38.02809268220183,8.683978653315783,2.902845337541993,3.246802299610087,35.51222051125439,13.088564042930793,5.5338976797887796,7.135051195107214,3.2555705180485,8.901070316272177,2.7759735563895482,2.138242879702471,7.866979936098565,9.03545005619815,1.8432277053091373,2.592005205423874,4.938938659495058,2.274344353746452,1.5393506065028377,4.603362135556898,9.666154327597498,12.48143708020974,13.051897756890046,4.656758241123905,4.182368072415294,9.750056895231221,13.168080938472553,2.172507040005138,4.855055071415673,11.991605246092863,3.899204921881423,14.017447918074083,13.671847410744602,9.808296054535424,3.305826606814535,12.938157840187108,2.495015529673525,16.783001516208365,2.1475647180980153,10.205304382486576,7.503641427383811,5.406099034851391,6.258365378808996,10.199931096358304,2.68171465082238,7.226425177350085,11.221877704190005,6.551964604703704,3.128962207697781,6.874706020795351,22.672547296451473,3.03027047260629,7.010304397797346,2.853945835404994,2.9078259831799977,8.810489409687523,2.804819035747943,3.759891627207669,7.057709519856463,5.119548497883547,8.954489467003798,7.9129781745805445,9.325869187128367,3.0415953296089806,7.184171239492198,7.883731268302728,10.948280874994628,2.314112206167089,2.314647834775977,2.767019755033418,11.629592840460099,3.33168737311288,8.42516795018198,6.428426085359069,9.43415350837499,9.268025878293505,4.352546773853122,3.31771991764618,5.315812019654702,3.326508536224308,3.0530646766021925,5.264094594257976,2.503284442285424,2.632384784770801,14.127726526720306,3.5266040327412647,6.4226314136141385,4.694513356604118,7.229058962273827,13.702954105033355,2.425564976596067,8.675569146549254,14.379550648178071,31.662450840076257,7.0833183337814525,7.180189446555319,3.6159231644076724,2.9964946454279864,11.96602325104692,14.65796935887659,10.39713559644989,15.658157171935015,6.527483608772862,2.528627617236384,4.1433281431361,5.812041052170488,12.89674874423382,16.77811505808928,5.481635667777324,5.107805982526526,2.2411678306155336,6.681986140442332,8.958228347418412,14.052910826189185,8.423260777478731,2.236895027092226,3.2187376554100413,6.079907766398168,6.030097900039292,4.675777206955151,5.5692063457930905,8.136302874407708,5.388565621868597,10.33691946060739,6.882451209670005,19.288783222718465,7.5127341790848226,11.320256374739426,7.911323592808699,7.17457585878238,3.650859474278826,3.1406403633982896,13.308636759314231,8.462858778388222,18.147388315227786,15.318003320202553,2.7434424587573356,6.915620601239365,11.298018345380477,5.456937469017584,6.6040787445869205,7.6975062722608065,3.0623346248694943,6.467241198136535,4.027068750289682,12.333572706129022,7.633945934380197,3.781517843862801,3.5656572761909193,4.1183546181347515,3.9559259259636264,7.043924260216107,1.9745930123891529,1.8797968087465395,17.309548217488462,4.598885722734449,23.145748717788596,27.712384692339043,8.333033076763751,27.615548122322437,9.045989652597699,5.177208324180501,3.8099984992686,16.25022801346358,3.9541043842431027,2.6893935759245107,4.3758242247377845,10.492695093418062,31.03437820144146,15.244129016410296,4.501036298960559,4.3726884203110865,9.644832985933952,2.6473822408009586,11.91162715593221,2.157044799374019,12.24099218356474,25.167586394119812,2.5240108582738894,8.232898393149254,5.153475132658616,6.944261892377328,1.9983510185396947,6.628598792149969,10.225919474443975,3.150928878302441,4.95751933147286,6.4298601635913375,6.848583962385846,4.469778608439016,8.805563085583419,3.6076913232898686,5.351133135552202,7.503008796295492,4.495977119086931,10.656712773361177,9.579134626297288,5.970702558342613,7.684216570418727,24.740086158995553,32.202775240067595,6.189398740129104,9.613630120862506,2.7447167230452596,5.2083233607280635,3.5066769856439604,7.150735335809529,19.097999037550167,5.278132940045733,7.116537509519598,3.986137724793929,7.839678788072497,20.251512567195732,9.403491409887625,13.458732828850021,11.63207169225674,4.4594517936447025,3.041850401998783,7.463201748519569,4.045055446366705,6.179614443122822,45.23242507483872,4.5559261532473325,5.015704758894847,8.584413733175998,9.424046374201584,5.922631425072764,4.601393372900556,39.11985791968651,4.923227079263012,2.1666506723182537,4.369114673596951,12.429513837723984,15.697355707158886,7.599000818310997,20.534086251105027,1.5328701803928273,5.677816058847249,24.531727913902156,3.6595954553122674,3.5120941246846713,16.09986164669531,40.19640160009732,7.614802401444171,2.967165749592143,4.591651774718552,10.31762986092787]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}