{"self":"http://probly.dev/api/sim/ZpVfY94dYgCgPbQphxt4Wy/","id":"ZpVfY94dYgCgPbQphxt4Wy","created_at":"2026-08-02T21:22:47.778252Z","status":{"status":"SUCCESS","status_datetime":"2026-08-04T00:39:28.597890Z","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.5790263444290308,0.4348996075455669,0.4513729130777533,0.42218884336965246,0.4318461610994865,0.47789947125392795,0.3525104681764904,0.3239259821696764,0.4201790681874018,0.48526830919925606,0.546346585693915,0.4900255186416246,0.5068067357338911,0.5379302770281162,0.4799930634380511,0.3841781141205853,0.5161199883233664,0.393398544376947,0.5601532887855657,0.5950734491400986,0.47994940843361916,0.38457210172795775,0.46193257910068836,0.49207801916402333,0.3979765507776299,0.6254217661911247,0.2709299868930154,0.44012061319085555,0.5024306998398204,0.5506512555501475,0.39414934181801603,0.40574780245842695,0.4903704182472338,0.4201075199004833,0.38727332964029476,0.5870602815055308,0.541945505937952,0.5290037158744698,0.4609152355239535,0.4929928501588165,0.5661497684558816,0.34951008922794397,0.3862949325474235,0.60387225596802,0.5073034245727523,0.495471812660155,0.452087580546687,0.44383823880538303,0.6069872589711552,0.3291393269016895,0.4968521900672985,0.31303166020563417,0.5128734329515252,0.4419962061957502,0.380420941172386,0.33793062582780553,0.48090938418799867,0.5243212673263863,0.5333864705615996,0.4138729547243512,0.49316370678646065,0.501598764349039,0.47330751049832165,0.4246876483529239,0.5843338699490153,0.4662701645819144,0.6212242832985226,0.46643915386039464,0.5260679109301103,0.49612037476163207,0.3917949677626684,0.43840577609796744,0.706354772040852,0.6456579402796805,0.5385299381077439,0.4237804279193083,0.630494248910035,0.46875789661715955,0.3394507853581257,0.47940252068523587,0.39773711229645925,0.4436420487391942,0.49777202215110444,0.5727020255535654,0.5501248002551845,0.49044966744599416,0.4832932327586066,0.47665033289039327,0.4347490366492176,0.4971618747731931,0.419097108023401,0.4309693773574014,0.4158626804286148,0.4764943305817268,0.46298959668673384,0.3226248711706293,0.5359247514812819,0.4875168988752748,0.4385656316106403,0.4615015130286921,0.46778418342036593,0.40279596916256855,0.516889210529397,0.3363811751485204,0.40538318807575424,0.4863539359124916,0.46140898360012084,0.40914705819601976,0.4427705147019948,0.47172843330122866,0.47262952287640336,0.4830291405976107,0.4164465675937167,0.49787089546197283,0.503715574152467,0.46002063758560646,0.40348060295080684,0.43171509661553953,0.4222423818609757,0.48953032119559325,0.3537842406792055,0.510756919819784,0.6023554260532544,0.4022806106193805,0.4791999947096878,0.477394850399339,0.354968517688952,0.487830149707229,0.508846563026569,0.5179473702993687,0.5052625428432901,0.5274658810559207,0.4548704691987754,0.44102104391303526,0.4242657920270534,0.4188354510871467,0.5400687216612015,0.5285157222959399,0.5037931322109394,0.5003421818272867,0.42804288740013674,0.5958243801796547,0.42420877122389195,0.49964689276707736,0.6035321533865439,0.5387843659206913,0.4322374795264356,0.41132523271384674,0.3557924196874984,0.4895658984790999,0.4763630663248021,0.4060629190771395,0.3979673971185776,0.49073525984451194,0.5282425962179151,0.5109768871422343,0.36344115474537775,0.6059122269332817,0.48626087578074373,0.5308378966559779,0.369083857145705,0.4688780443932564,0.3386097247022533,0.4693909331653753,0.447398899528247,0.4276873383917734,0.44009309266174473,0.47776470951601546,0.6682866527671347,0.3929008932070329,0.5108358183767057,0.404473562064255,0.3096318502589497,0.4114183776945049,0.41320788197422476,0.5208947676439941,0.501682145831268,0.25714794785258355,0.4452758505384763,0.5495146832315366,0.29555733515156585,0.6445814802998301,0.5759079099699074,0.4903124999500397,0.4675678237918243,0.47783244117244494,0.36805893879050344,0.521102098179118,0.44632398890725317,0.46120868251340763,0.519586140933302,0.5084260981387361,0.3079084781264715,0.4642560469993148,0.41437054274457813,0.4251739394139502,0.5458340265623186,0.31235234871767054,0.363642031158988,0.4591764264005181,0.4715472558588921,0.45239731201256594,0.4810709767055723,0.47024919406236776,0.5266923599537533,0.5211747258737764,0.4585056151693133,0.5253665685291143,0.5182608685704165,0.43808647403187717,0.5688954491526658,0.4001576128945779,0.5592848396505735,0.5172082721847351,0.4303847548829432,0.5850400485327539,0.5264986128705224,0.6267301901663062,0.44636133701904485,0.3347776258815566,0.3671830018294548,0.6101574089439655,0.4996075084355876,0.31715183146384646,0.38459572116071156,0.48843573978041477,0.39976216899575173,0.41655685950185584,0.451202934630117,0.5114633515098576,0.34816414513170735,0.49240912413521953,0.5519802709339824,0.43252665672107127,0.35642283066150543,0.4254236529735778,0.363560089790729,0.4010186401044706,0.4109583830724736,0.3841222271208877,0.47092958029375215,0.46920125232744214,0.5175159249024776,0.36086311278551114,0.36507680978942214,0.5829444766052159,0.424004001329473,0.42783972072214477,0.5606272817430616,0.41624291027982224,0.4665383714521993,0.5555951817763862,0.4199005637752088,0.43599661700669695,0.3628859994700965,0.5082143369048917,0.42140717966053703,0.4290236667490799,0.478164108044984,0.5183601727713604,0.4259291046652652,0.37491165734837845,0.5649112895197633,0.4462356550758081,0.39361856434477427,0.4697863880354949,0.5367355101430928,0.4419155898883925,0.5647037086839918,0.46515978328295127,0.5256492619914367,0.543894557365907,0.5189670199845189,0.3301447156368046,0.3543640273048613,0.4485412594290288,0.4854822030080584,0.5443721218976948,0.43456446285494804,0.43393023963075933,0.6201866161831766,0.4406753106259179,0.426607327063502,0.49328033419903494,0.4337023147079483,0.43145377268484336,0.46098947457559786,0.3965686757306224,0.47266315934478886,0.41560338154451876,0.37122872329771583,0.4637509959877355,0.4730159983113126,0.5998256388099907,0.5699050145426059,0.4649270531499237,0.5641952698542018,0.40086195111851003,0.4743610274946604,0.4462449174119084,0.5105725831256209,0.4821458893196975,0.4924908214763964,0.40908943876178466,0.4627776628743099,0.4112999150578017,0.5460298110144116,0.40074654261980536,0.5354731225739886,0.4137754485823161,0.4346018992966041,0.4811776983381076,0.38487719855805336,0.3693345582550527,0.4658056692402577,0.4101055700513108,0.4758332790177113,0.5885963130851463,0.46937886258216377,0.4523682643792801,0.3975111449581622,0.4753928217146746,0.5399540567975131,0.48896997417249677,0.42148201154981013,0.32951058039099496,0.45277790092696446,0.4922744379337071,0.49336670248484954,0.5124494612191856,0.5246816189539583,0.5335815478556261,0.46087261218632414,0.5393560196121755,0.35203676901791287,0.3900371272968772,0.545373966153834,0.6163775317350282,0.3283533529501697,0.5421809757320704,0.5561648357758748,0.6232874052528679,0.5678171910068528,0.4282551048605373,0.4741787359271017,0.4244962263218688,0.47092462402063306,0.407606123280794,0.5110747780947816,0.51037679830331,0.4271218534165552,0.5792895856533489,0.5458563695553814,0.38698363170137534,0.5431946997370486,0.4448918410118408,0.5060694644932404,0.4566590271119513,0.3862786998597776,0.40758760972328717,0.4703273658040366,0.5279173357983643,0.46570391570002134,0.4911930963822545,0.48591996982327346,0.3840296722113092,0.41938436347653935,0.4730665386060421,0.47957727102578646,0.3415626331055705,0.5453738711016562,0.5845761168784845,0.44009098074451913,0.5265647520054162,0.44381855015572064,0.4391840352751677,0.30601073032170795,0.4739356364243118,0.4998242084635893,0.4183714236848582,0.4145392325410753,0.4583913403212003,0.4657845110281542,0.39822608604069715,0.5053174474798158,0.5630391375600386,0.4471721769739154,0.6119089947570631,0.36966386581723887,0.45331549635990787,0.3999008607310986,0.4084274843045965,0.4266261348522865,0.4443983173520181,0.34428079972124104,0.42450370154835537,0.6189864898582933,0.5061272483301964,0.6574406353110079,0.5777321615499933,0.5324288274171701,0.4591259688375083,0.44429456111326304,0.4912872612306117,0.4027583639682765,0.4103453398730067,0.4595587189654273,0.5034428192834585,0.5405044913462743,0.5479690893407012,0.5365148174214867,0.4678095409465863,0.61817115463713,0.37537745791308924,0.4886715165590304,0.5199071945406016,0.5577090986553037,0.39170508813301846,0.37241029454697666,0.469104004133804,0.4830977901485347,0.36318868183952574,0.4640698701507481,0.603283648515426,0.4552219073180398,0.5211872882037335,0.5418612577874766,0.41888454456217716,0.40715196139177434,0.5825522704429599,0.5681385882323243,0.5397240291017129,0.4842048611366301,0.2025962040018657,0.5151627461555263,0.45336200554815725,0.36296187148305165,0.46438821234882843,0.343065796536605,0.4440827470647087,0.4099201308147723,0.47908103718566164,0.45757547233155077,0.5107171169361725,0.4720183537198559,0.5856772413069044,0.4293055044425169,0.5847698731820635,0.5271885342029081,0.5569626144450762,0.5709040951623248,0.4941193134445532,0.5031638433452362,0.6164914777279509,0.49575149643560684,0.5351087179954539,0.42617647826397553,0.5548693793011598,0.39226684319218635,0.47179059961975217,0.31895549354692676,0.499769116850941,0.4738385574925861,0.5001096681746978,0.5374091078829258,0.4885496518978996,0.37711265167705743,0.43082024457054185,0.25674416263363703,0.36983293705816095,0.34706258647542587,0.423480082897388,0.5253961763606275,0.5175445949174471,0.46147646813700294,0.43414240382785724,0.4676767437883879,0.48726629828967694,0.44801877324698036,0.5515132267395009,0.39829990240389307,0.4859463639920525,0.5988802293062585,0.601381440138015,0.5064221326759843,0.4860044872821223,0.3487561995749602,0.434719752837917,0.435143284805021,0.5205812530690924,0.5139608378682259,0.5059043195205564,0.4598074449825571,0.6211244766486396,0.5775601635469145,0.5550285097910109,0.3610493372630866,0.41919932398155524,0.42789362798312014,0.43077041179847536,0.4303337343198339,0.5069548799883647,0.3640067126455869,0.4448468092473265,0.5168031979782202,0.39081488676809517,0.47623338999441944,0.46863964063275954,0.4666874978681873,0.36489097578104945,0.3655845367329433,0.5309208772208228,0.49428026981099515,0.4420193108267258,0.505084146372103,0.435688967785443,0.5719855299063695,0.45590493902545715,0.31720386597597255,0.3565914036929137,0.46608550584195957,0.4786276990609513,0.43746375317066977,0.5242889107677646,0.5296351599346192,0.38394569366441045,0.521983422545493,0.47600247879394075,0.3592998506538227,0.46732095001074175,0.45298193616356464,0.4803157280394925,0.558994285446822,0.36929816700414125,0.4448924151198714,0.46828919372864525,0.4881929827473201,0.4719842061756446,0.5755637720418383,0.36474771894043256,0.4286772141779013,0.3341945319725535,0.40837840865933844,0.45361723109591445,0.4760241757895624,0.5017072723525771,0.3807112373258464,0.4047170662919067,0.4718126923960364,0.4325056026144819,0.36330897000058543,0.5105539048031682,0.5338699639909467,0.5344063269553101,0.5142333492567799,0.5311030842644678,0.4313335909765699,0.5050130139675875,0.46101423723258644,0.3503819729175119,0.4487928373238789,0.5336012699238809,0.4397046307353115,0.502255277300666,0.5501977767268689,0.46959416154881256,0.6656291039107151,0.5154132873868514,0.5090235201652995,0.4022832638031136,0.479523820083176,0.5602343106228851,0.349869827742709,0.5041943560356762,0.45198929590013026,0.41550815806227526,0.417445937274614,0.3095946622028824,0.5630213136156064,0.39225478793069796,0.4756172175567906,0.46645341840177323,0.4812992234141669,0.485523706989014,0.541658963316681,0.4944249366636162,0.44253651983781805,0.5027007492571067,0.4263980813273757,0.44989764461859033,0.5835853698071155,0.4408257341758008,0.514394883651653,0.38649224493444706,0.49457775231282974,0.5457464493309817,0.3802554531999699,0.4311944787175419,0.41863234309693653,0.5591052320618142,0.5662918024197274,0.48682898569601346,0.5595783183096404,0.364672556519936,0.501864076533579,0.5178030585627399,0.4824550143432688,0.4611491132164079,0.47681456928062466,0.5027164698658942,0.42519753590404447,0.5175428576136637,0.3786581720507292,0.47845963912297684,0.4459629895302341,0.4791015075677679,0.4293146994250774,0.35008087158389384,0.4031921283707303,0.4220381969159968,0.44372797366438355,0.3646667099630068,0.5867487299192905,0.5001379976111462,0.5350508683185148,0.4716316676665646,0.4337399056748995,0.40643499500517083,0.40969742513672036,0.4597724651830798,0.4219418316857576,0.5188223561057674,0.32661399682691217,0.5913361019264011,0.48894533326926676,0.41565331931370797,0.4157149427651157,0.4236948921892248,0.566754710924108,0.5844196537119218,0.4897130169176452,0.32416776210555187,0.4339415731280516,0.4524160576353046,0.4805141878392615,0.4018216303814415,0.5095850751702042,0.5361678918952449,0.26438078725253883,0.42366260580391707,0.5488106480664219,0.42418241775391075,0.48495646150561994,0.486655191342243,0.4805102206641837,0.5790162598544637,0.5411301609779247,0.4396348749938216,0.4705650404951344,0.41513396303686306,0.5567381281423822,0.44094507968006796,0.4028801074733521,0.48437975442334913,0.4951075362006967,0.4101624767748022,0.5097911637451283,0.4429412877731592,0.3659816087622057,0.40453467585899094,0.5850768983164385,0.5569107350651521,0.5617126476956442,0.5382106295182292,0.484911898364057,0.5070287997914988,0.3837399292380843,0.5019177202519387,0.515535740521047,0.48515851500028473,0.4185805525600477,0.4697352016082282,0.4475820359711822,0.5376972314241293,0.5084289250292243,0.35334982658147346,0.29453177172305584,0.5394022749229347,0.5361306522066298,0.3991130294730319,0.374838362286445,0.5398881250997779,0.5040992367945082,0.480934737090572,0.5469423617628337,0.4647578531546634,0.6068575300000851,0.4972509588438348,0.4615655006568695,0.43542885400752235,0.38800867738132905,0.42083299733184065,0.5179929266956202,0.540274541793719,0.4467924883130093,0.5791993477122912,0.4366667681348768,0.45761403348648144,0.4783077940168753,0.4370555140585784,0.39619284638754765,0.5083289290815111,0.49222441894745883,0.5057662006405355,0.5174449043303259,0.4265625782168951,0.45118550542199165,0.4470707349307836,0.45573956678656147,0.42979692829488936,0.4836966245915772,0.521468357689947,0.5163647583644982,0.45644542476372585,0.5182116659408635,0.5328565151094609,0.4926999050081775,0.5421041904100359,0.5649492857607822,0.3352736897642459,0.37901512465696074,0.5647741933790875,0.48228830262442796,0.46470643637807,0.4537441283813775,0.47133359081724496,0.3884222425572259,0.5961160294912997,0.5505567995259035,0.35750451471678363,0.5209792361139667,0.5407483658358172,0.45581377472343343,0.46044648416002393,0.5192360593768875,0.5064276515092855,0.45063680989735666,0.3613934806206485,0.4299586671501203,0.5005858623214041,0.3277875721273217,0.49854742480492603,0.4656688524161967,0.39889868013611746,0.6030968211011513,0.5111054394628853,0.6280591931718729,0.3901281220331387,0.5991226181710517,0.4499529111391537,0.4306886893650819,0.4886897727234371,0.47116178089192545,0.47487262463943186,0.5756875737729936,0.6101969962949639,0.47519521489885125,0.3000893174856185,0.43347012964966564,0.30531227097498426,0.4176649696233662,0.45049618933155233,0.47467635479222137,0.5626847517760681,0.482978488419169,0.46681515106486454,0.5495146883880834,0.5323301208902592,0.5383099619192353,0.4459093421233703,0.4963620402035282,0.4549741647566014,0.5316956407607301,0.4714257023656021,0.6399888951568452,0.463396697700251,0.4820449627766132,0.3826532359778067,0.4721958974066895,0.4518207134411517,0.5160586510902327,0.41953851323028646,0.4048619396482131,0.47857956507854876,0.4295368897946621,0.33230513872639744,0.5378460301688947,0.46099274188226574,0.4652729346670007,0.6791866113249955,0.5427234267899459,0.46802138417652567,0.39470403486908334,0.4619302854753312,0.5618382233089985,0.38946009635951756,0.4763438786696571,0.41886309876882594,0.5178655204211373,0.524668083260138,0.38245012337456685,0.3927780051590436,0.46689009500740725,0.3550658259893293,0.37077096519385583,0.4491389107296485,0.412518648168738,0.4866119012998281,0.525907360860446,0.2723656591280052,0.43538608002991586,0.423749049393225,0.4411423284104859,0.5896028809084279,0.5151541417531537,0.403409315953067,0.5831152822383313,0.5529508819824955,0.41659378042099177,0.49658313509317176,0.40239652542643745,0.5146606546576974,0.5314920392717045,0.5518456963939667,0.521508552441464,0.47605839466195493,0.5724228641563031,0.43884172007649913,0.5064985229050996,0.43436089015740437,0.48191897653868476,0.5111828512044347,0.3918681952976947,0.4618300690231882,0.6240237884803161,0.405016751434322,0.3024335416102634,0.49931487076645154,0.4278168624945323,0.4646375925964702,0.38746324282358713,0.38263711106358433,0.40622407998626564,0.5093342206684152,0.5496875156666219,0.5926694772750805,0.42360782938861175,0.3744658924314698,0.427056655192108,0.5551158173203943,0.4167103366003017,0.44415825723690333,0.40808640446583105,0.47705539000252706,0.465205960814747,0.4036827816770795,0.5232905798118082,0.4329170200169208,0.22743430023372724,0.42996074611485036,0.5079445415743624,0.5068128346365423,0.574496193515954,0.5250328888032411,0.45517434725967715,0.4186594680295721,0.4909427215352408,0.5420441479714255,0.46610153474085414,0.5106346942195548,0.5195053849753277,0.5268740101681717,0.46967504661281895,0.45793028866568947,0.501958212217419,0.39761733288989815,0.45486170870188564,0.5180189822272746,0.3201207860774255,0.5458936136999286,0.38862063414117953,0.4165267775251763,0.43997924171248826,0.39156651470266507,0.557232479316291,0.43650246398619796,0.5587818322905822,0.41651697730610904,0.4626426531978911,0.46990526574705627,0.45232830166876353,0.49023295405001893,0.45108432371966106,0.5358420384902706,0.488808688431852,0.5556229559819701,0.42774468418578143,0.6042536820839399,0.31380074454289963,0.33986203851036845,0.43247145435991036,0.30038117301293327,0.6356629757428086,0.4364821037235331,0.4035771419116763,0.4728412329762796,0.5236546486464583,0.5493156633182746,0.43873821914470224,0.3552615880591116,0.3693502284395706,0.49673214116535314,0.5237165255529709,0.4529170999076683,0.3627617791934691,0.47288166675086307,0.4085470434749244,0.5633756293475534,0.38246439382729236,0.5825915485689174,0.4200490350300526,0.5742969450908835,0.5127299199511556,0.4193189262383447,0.5242665986120214,0.437708047095065,0.3891946163263547,0.46063007204504003,0.5311181469923122,0.39005347575563654,0.4619546503464356,0.5661522514979966,0.39812614442662503,0.5212099421378877,0.42709730267919976,0.335301923982463,0.4965023635336558,0.5541124349581746,0.5014079739781296,0.5700503541222768,0.4362784314713227,0.43215090998481864,0.4189956456500257,0.38821410858090033,0.36382199520494796,0.34405816193039596,0.5017281225800051,0.51095635777602,0.5323161923461371,0.4000796558867769,0.38666351264880383,0.3561501275813594,0.5350276503589966,0.5847681474954334,0.37567531841127705,0.4844562687437564,0.6914518209624807,0.4068473011482622,0.4524385872977199,0.48599817651296645,0.5170674658365504,0.3727936384218386,0.4682657570551533,0.4540392720370644,0.5881654664960401,0.6725991500935261,0.459539511477873,0.5460446877060543,0.3613814377260555,0.41566692703287794,0.39198863326681943,0.46678062902724554,0.24651308037108877,0.33783517988144096,0.4821296149570361,0.32272930184692256,0.507936443018922,0.4719070189755093,0.552816284982291,0.3366370746180247,0.541660025429312,0.527916477496836,0.5825770022742859,0.4889933935512349,0.4724924112194705,0.5336582515444036,0.45425902396328327,0.4880564707928554,0.46919199206119033,0.5450456206959968,0.5099931886618778,0.3637703519150555,0.3506832469659129,0.38065502360727593,0.42086087279551404,0.32954700511353313,0.35777961159350186,0.5143319450795595,0.5406077735189508,0.5329494269901169,0.6236385459388504,0.41898509017366864,0.30950654613888356,0.5241763494076441,0.42423773794953573,0.4403494655143426,0.47372309152245257,0.4454347319230106,0.3476964631007036,0.36780304782913964,0.5601878509992666,0.46230760488933886,0.5143301483582347,0.4185655669303639,0.5101967187662713,0.5108598182384928,0.462280737822074,0.41730163973098633,0.2771936087656254,0.3804372986884196,0.43655477995526415,0.46683765321822057,0.486909395014031,0.4577484705968478,0.3402091350813026,0.3968145782650674,0.3617796993603158,0.5916581488055013,0.44152378033304546,0.4211149939788526,0.5634297795736174,0.4425181742414643,0.45727522795333647,0.4605683874373511,0.48595166839146775,0.47233645020560355,0.5273975387581158,0.2365608480954598,0.4269770147739563,0.5584100187251324,0.36422119331467745,0.4449960304222837,0.5500794275614812,0.5078787503939967,0.36274790326394957,0.4718379144650997,0.5779775086023622,0.41813671459636215,0.44732499182658797,0.49553469248273946,0.3749058995182081,0.5265999374206689,0.5552674286644026,0.543261952887955,0.5937466870210755,0.5373135129069635,0.3875651893811253,0.4225058160052225,0.4528187798125279,0.5550125195293576,0.4182066092356005,0.4973163113454186,0.5411556495727593,0.4264459362379651,0.40219205470933084,0.47123262115081305,0.5131275035195972,0.47737952996625804,0.500344206598191,0.43530517269904573,0.48447110923471776,0.616578099690262,0.5725495067660289,0.4450233402260237,0.5352715296149501,0.453158038556687,0.48580479610537647,0.49115373259375433,0.42833068745155384,0.47108948482568463,0.610444591243405,0.4341800223888074,0.5371519754817533,0.451641998894335,0.44612857057049926,0.3029612715312964,0.38824442924777336,0.599181169041653,0.5292059859399748,0.5670166034799329,0.4756286798997727,0.5537000248986323,0.47192052912716304,0.4612255131938935,0.5224526654202348,0.34486326701145964,0.5390016167185304,0.5027546947713064,0.4650701811765424,0.35135075616749306,0.550212937838988,0.39494473410320247,0.5097213566814359,0.5644219978354417,0.43711935072964914,0.5449700706454601,0.5313240177022788,0.40319012778968233,0.4063881287478675,0.558652943737977,0.5007311759742992,0.41677922313846594,0.3930036833141384,0.4326273375366415,0.4626729295496187,0.5585780863374293,0.467972430334944,0.4852121959690361,0.5864618063155936,0.44666020735523404,0.47754607066843796,0.4536177467927561,0.4703350544721081,0.5453086021212359,0.32091507576382533,0.5633681553112622,0.5032840717239849,0.2951992284968379,0.5332563886232198,0.5281623425380377,0.40099132220226136,0.5156853917710194,0.5110338884838479,0.3805562974626424,0.5143482866258535,0.31011754832235117,0.5043049283147834,0.4912002680363704,0.5034277613697399,0.4595778366555093,0.4082209312836229,0.28357433330383836,0.5441031242009563,0.34136442969102726,0.5417801628520031,0.6230510635143549,0.4608343365439901,0.4461309487842825,0.5315941475023237,0.525773141432614,0.35636359189909766,0.4736635657614659,0.33712607006303325,0.590521849341577,0.4305386563182536,0.47557619300735576,0.6001174105924831,0.45938110293989276,0.5075377661025137,0.4372450766477046,0.4728422310759674,0.45773180403812347,0.5610026319645554,0.4053167227483472,0.48892899693485553,0.3808497400585666,0.39319295100637275,0.5736432174479064,0.3771866391939864,0.33382073110299965,0.4583517090952932,0.4145730472900194,0.5288452831122431,0.5233904283558639,0.39075453111754943,0.45373793777148896,0.4057425551928661,0.5559559162561972,0.3665213663653544,0.34795658934053825,0.44120254983400664,0.4282134763929067,0.44117165514216494,0.5870731070564537,0.506037715421335,0.545157932495064,0.5034303435392082,0.5548486950965856,0.4978217438385499,0.3589025653429669,0.5026243922004664,0.4936481888722839,0.43987997665410766,0.3778700141780986,0.4244381472519345,0.542861608226146,0.6181030453414399,0.4337449367645496,0.49251909130947996,0.45000369830603615,0.35863930476912514,0.5022019194490225,0.35076265447008353,0.5331860297175086,0.36892085316255213,0.4750750287441127,0.49064213224806985,0.4882347614568687,0.4315622251840638,0.37599927133813776,0.5306489060394293,0.33866432628013804,0.4609842955058996,0.45053945968431064,0.4577437069879662,0.4550423278869651,0.3303855026771267,0.47058044782725417,0.4212171238562249,0.4138669188278876,0.43332819631986663,0.3484457424104207,0.4625975659181125,0.4783102553762073,0.4717877159973376,0.4304324682035677,0.5204039548543594,0.4633495593534712,0.3778733478133121,0.4702131184943596,0.5070756439173046,0.4774452942716034,0.515430264842028,0.4963953879103663,0.46708977782540617,0.47750254771746303,0.5677645658280274,0.661415515282672,0.6572533226453604,0.5410841972843696,0.5106624340487279,0.4751105211480465,0.4941610395695696,0.5542659373835809,0.3997715548764005,0.38251821425795807,0.345370665839771,0.4200268181737337,0.38259422057017894,0.5327471651167172,0.5328749722441701,0.3874394316614645,0.4809289431361434,0.4914327545893344,0.4348263254023244,0.537508730378979,0.5871969964861226,0.4816440441987738,0.25852221371515405,0.5221067479627581,0.5171214783618474,0.503252159312588,0.4649530214414103,0.6791139923994786,0.39197269709933974,0.4365643076523735,0.43999632127972316,0.40471124259065955,0.5111419658652243,0.4889865751653504,0.5317826581145111,0.5042904607823,0.3634933615439909,0.5659837235515691,0.4875868098623329,0.4278560190227132,0.4262923176677832,0.35603829364719636,0.6174805144226339,0.5256876722851943,0.3615304838801004,0.38510828350377285,0.3876843796078436,0.4837734953072089,0.4571819351950661,0.4183186400669848,0.5203535887174067,0.4755583558926087,0.4780013266351749,0.4542101656513972,0.5129901332941528,0.4833798593537779,0.4821507338913751,0.5163823561446361,0.5706706261866257,0.4868576965538924,0.562213722189999,0.339400790219514,0.5459487759749116,0.48359795546805506,0.4936770678226436,0.5463652655566555,0.29003972072780876,0.4679020533533093,0.4354623637904339,0.31083270093115234,0.5619966453457423,0.3559995511804727,0.5369270355311441,0.4450728608854282,0.37310948255667026,0.5618434295676461,0.52712783580604,0.40982153415658673,0.5093823313557966,0.4519936567184973,0.48817385336781494,0.5167997906278354,0.4506357405434097,0.4584734845830648,0.4009375044569492,0.582143806933215,0.4503630984747468,0.3552507744728744,0.4795457808716564,0.5774633332181969,0.487648118146375,0.4336607750605694,0.5321948673023131,0.4969698254275468,0.6385668944261922,0.4578506374111121,0.41270226038175445,0.5811401377026879,0.3947897342539021,0.4562485741096781,0.4994438457334928,0.6383458597165144,0.4921277481452159,0.40108347046658716,0.6154792915585162,0.4980339775962564,0.41212962043551593,0.5172898004215479,0.5896523576833348,0.38435049878788136,0.42027207875828404,0.5237224208958079,0.4194014857762614,0.5351918100542037,0.4486330745255068,0.4651187373078766,0.4549690613789878,0.47043775503856133,0.5349443789043125,0.47714318216254065,0.4212525309140923,0.41284384234487004,0.4695226483589655,0.6030463065685642,0.5862352737294537,0.49586804155619063,0.33134834635382204,0.4868046771824004,0.48386617042526503,0.4951152453612648,0.3934454849907169,0.5006658158068292,0.3430364935426738,0.4676726930788562,0.4508534797171671,0.3335746091649455,0.42209897231734866,0.4412070306256316,0.5506404981839438,0.3969465397473715,0.4346149553523912,0.511162278915906,0.5181866910533112,0.4563664771469044,0.47277334101131346,0.43154955698463315,0.4519339683109837,0.37482223335250353,0.5524097702676128,0.4688207446778844,0.5165217909075345,0.4569655906626973,0.32515176461077205,0.5167377755501429,0.36354672520439857,0.4409506264362701,0.5374027378901576,0.3827665201012494,0.43078663277486645,0.5556548258005877,0.5492471309412481,0.38990157655565,0.5067439573688174,0.4701395711788654,0.4076473582351999,0.42104539383521844,0.5637617608091552,0.4807932950239798,0.3412155045213849,0.3140800790233384,0.42506931296871686,0.5062668919058472,0.6597720955844582,0.5281020031957195,0.5619845595134777,0.38610311421035953,0.4480401194904833,0.4199964141559589,0.4492071099674705,0.360559667340558,0.4467051467187624,0.27224964175380906,0.44807386701205815,0.4247013007235429,0.44881000339546545,0.48110011964509786,0.4572050134703607,0.5448823747723981,0.4733540037432934,0.42037726187269486,0.38206614333720756,0.5233734035816701,0.3906142933087299,0.4346328898861077,0.5663203216936797,0.4327600960054484,0.4930669456845005,0.46222115717565776,0.40290190404593595,0.4470973200381606,0.6294917625189792,0.3202331178654566,0.46561832327615066,0.44206991976903,0.46448458502421686,0.4050563762956735,0.36521424639515326,0.49347271904708,0.4530607972417189,0.5334301889798138,0.4279721215562381,0.41549503483774824,0.5307157417298639,0.4428574719925006,0.5036061564927852,0.4796635138063154,0.4559462229596412,0.5032538463434563,0.44706207528575764,0.41869020871527357,0.3720671847094164,0.3376193794897349,0.3311422188157642,0.4145199794652985,0.5760581250275604,0.5022146223122564,0.5452425227553,0.458965288236442,0.48553147679621345,0.6279986503965724,0.5858167643432722,0.49417317172330605,0.6104508327258215,0.46280572084066235,0.4135299822010895,0.5958755942365856,0.44221657006418125,0.3917645324746754,0.3972509435382883,0.5795881782731689,0.4189134934918595,0.44059127149760163,0.331961019384047,0.45139937003889774,0.4077647237853782,0.4812551815904132,0.5513085571443661,0.4079195037766104,0.42476139661177303,0.5382558280095338,0.5860097993523626,0.5192962054599266,0.3375058953052376,0.4116565323439419,0.46573662993455245,0.5244200348564795,0.492514498097456,0.4982329485307886,0.42774248238503704,0.4492744011467728,0.48812369201718886,0.5286822710892651,0.5790571875023897,0.4046300240410443,0.3406850392254064,0.41936914675598935,0.5307354987106359,0.2829312570433688,0.4514741445280646,0.370661806448531,0.3383858974660636,0.44308265049237977,0.4293500850601251,0.4704736213630568,0.4572945724854023,0.5230639919852986,0.37943084222935664,0.35588602879940806,0.4619687449610137,0.455226280253039,0.49972019191422834,0.36854159287054666,0.44123586486669164,0.41149625284771485,0.3330221644742967,0.4721217649250437,0.5635189497607084,0.39670465876410704,0.4755730303532672,0.4279065983055665,0.3638991595960203,0.5367276970538153,0.5740040444143178,0.48169946008026693,0.5429808907947264,0.3852616446993225,0.44783378722473377,0.49280204373046865,0.41797271618221005,0.5845864979312042,0.5342437324034988,0.4879039473988768,0.4334015351015915,0.5477605730263235,0.6852498240748373,0.3675700061796834,0.46234666556500964,0.4517160288506192,0.5143546875707875,0.4557315142993326,0.39614988274884194,0.3270066753751742,0.4691986504300817,0.5493797248646188,0.46475124283430813,0.4096697117631082,0.4089013207303187,0.5380063185602,0.5336148605874332,0.3749547959592851,0.4316518422172515,0.45163567055572257,0.4620848038329944,0.42309437778399744,0.5000690273239679,0.5142859389646948,0.46274558589975506,0.31340782529224886,0.36778307057198795,0.464826793249452,0.5548259481358284,0.5332040854299935,0.3460579724255219,0.510526691291272,0.5417340275112248,0.5549237132018169,0.40472821726455027,0.43390850997325175,0.45812101020335966,0.5266367105283171,0.43816392690514044,0.3223117484625687,0.42758763734781197,0.4487709568433518,0.41461746685396367,0.33713406154809267,0.5320136758470361,0.45351299702351555,0.4203419752498399,0.4142042141109938,0.542370054393712,0.518758289207633,0.4560943002215436,0.48897312417847505,0.3592923128389723,0.41328641041433095,0.47142634221470386,0.5321249046787515,0.38507388036140755,0.563359780514082,0.49445738636780945,0.36944780386785164,0.2804459429149855,0.5822709966796548,0.4364412221327833,0.5276208717770531,0.5044868794859043,0.37929087894243174,0.3835668379964621,0.3869900012684102,0.4521936869072186,0.43323101764334154,0.4396427156615438,0.3743140469175718,0.39684476986827616,0.5206192572221491,0.4716635708952371,0.4453572211835257,0.5514326826005237,0.3806482634816203,0.395928051692919,0.4995382801349984,0.4029043268051872,0.49688012665591075,0.5077442878659923,0.4629091033928924,0.46314761556857426,0.42775484302560113,0.5392799955649492,0.5327117193738815,0.2834375927087125,0.4541918216218527,0.35904314284496924,0.4043685168705203,0.4825016758868969,0.40225254331184845,0.4243469269978752,0.3542513047104733,0.4426057617344766,0.5396897641016424,0.45656496048881673,0.5942056595296721,0.4594026249210745,0.5246365424147287,0.4811741191473757,0.5188034122476426,0.4329239727734392,0.4391809711735418,0.3520831045221748,0.571564541543596,0.3438817750477758,0.49298760180904627,0.46198573301975476,0.44458238733129185,0.49284251839200366,0.4001255218631696,0.3404884070817181,0.464872827010243,0.5235083820887975,0.3710763202074794,0.508668634655208,0.4136125774231326,0.467730332210331,0.48770103530927655,0.5840841224228968,0.3615414226383147,0.42661082558624613,0.6432758678883531,0.4702579100931264,0.39984340137886554,0.5263659999679663,0.47400830086055823,0.5072604028093742,0.5305745954914295,0.3253714408982037,0.4429743706956856,0.37214785079091134,0.40999471496091777,0.5458486040635558,0.4889647084642289,0.4391895933685026,0.44527292561601456,0.5747147319672717,0.5110255590771592,0.5392282871926575,0.401386066184751,0.47754189784494844,0.42378849870356483,0.3987530213940272,0.5544043955653936,0.3670130122361442,0.4852817306986655,0.5185358164098737,0.4675656337893698,0.4616879393158241,0.5725755494179604,0.28861268966935216,0.35085400923543203,0.48714312936772763,0.5728371308359793,0.5444089850187549,0.4320631627112308,0.36104729065297797,0.3627333798260861,0.5318178710463719,0.4840429238823432,0.5565812532707134,0.467323135569586,0.38930208885758705,0.4491783196007206,0.34598931064109584,0.5478059146241686,0.3932563781198542,0.3309964678511284,0.5157981976806001,0.40060406495867007,0.4965834117640196,0.4812925823300435,0.4823710176498036,0.3353718388706968,0.3790630512313463,0.28600687738466657,0.5053724624858751,0.45933318411984675,0.4530327962291965,0.5092134584405371,0.43926441743849653,0.4561253432322017,0.37422643306916675,0.4754152958208247,0.4003703478449763,0.4701639078887383,0.3723785760767749,0.6064673614937528,0.3503797689004663,0.3850027824039482,0.45077640747132736,0.30991413602761,0.5837021655388215,0.49382310949422864,0.6162836387037205,0.40736959093356856,0.38198899617424437,0.41859540352768443,0.45704209859057543,0.46921149429967174,0.43625000702876016,0.439667130770197,0.6748689104825285,0.38743473310384535,0.3747548611562621,0.599846044982295,0.5393411626493182,0.644194434746779,0.3595071194525378,0.39143628654064777,0.2813224797221041,0.46538070027316825,0.4744311984809633,0.5351750465615316,0.4512792948471851,0.4864143128548854,0.4515042630657852,0.5849247569232313,0.5247692041608725,0.603913153018922,0.3490414903051307,0.51703478153975,0.3692291866270319,0.3436773621102152,0.46557396951984065,0.4736322195225428,0.368618901259893,0.422438544728065,0.3655444646974454,0.3861003596177353,0.5329533566677642,0.35116044000934715,0.5782592026820462,0.45726831462064066,0.4904359284450936,0.45235002022866067,0.5260579371295757,0.5100591025222859,0.4689317366885024,0.35506436064293195,0.3831896674125995,0.2361711017264291,0.45755991862282097,0.4516002395630462,0.3657026362691896,0.43115511324352884,0.4485495286622144,0.5612129942026405,0.5459412881712269,0.37940880637799057,0.5641292104828409,0.46437129857213877,0.5991372605980609,0.5011115034544392,0.4725765708000017,0.40262262910026964,0.3729207877020306,0.38249544459171736,0.4625205041837079,0.38638945265285074,0.35139327062905756,0.5670786183715193,0.3204816956441143,0.4234625203357536,0.5653392785750064,0.5138849693665878,0.459174061671873,0.5050361352695495,0.5265347633550449,0.4817760766949115,0.31339001588475607,0.47445837345583336,0.5658623857803633,0.36648308392106366,0.5069310838649528,0.5125281982569233,0.47469680102592726,0.4272993221946515,0.48387120422462926,0.5471344904468668,0.3767842403273881,0.5703516701733737,0.4862658826322243,0.5069263084089906,0.3721114292310459,0.34198929723951876,0.5492072507218734,0.27803360574348246,0.5532069655531183,0.45009265763957423,0.520802702053957,0.452168853474959,0.5340949024301119,0.383073847886784,0.5079411743002867,0.39333090319994823,0.5304833144239199,0.37840320609884986,0.5509343239474035,0.49915210802968135,0.5548895735568915,0.5752117268152424,0.5702737027346082,0.5589212249211296,0.46919461698900716,0.44759032858654146,0.43172015074478376,0.5340949733736883,0.4999244536046353,0.36002446424742546,0.4900918685971817,0.3779627937935342,0.4245950144753352,0.35214647369517205,0.4124283045905577,0.3525653362072645,0.49781767168450847,0.3674603896604597,0.3495234642968155,0.5592230908029621,0.396965089369972,0.3872993532858297,0.5315606058601077,0.41646770806121003,0.4842079450007412,0.39385029706066094,0.4844626747434942,0.4364967386456773,0.39575666648137375,0.4790882221627117,0.41361529950202175,0.4084275625880058,0.5330783612354447,0.36813761015006213,0.4832406802072198,0.4626005607458378,0.5291887544605481,0.4765823161340248,0.5806566410669037,0.4696119186910352,0.4945733892630047,0.4686380374737848,0.42432064719834534,0.4560111054392485,0.45757401651006185,0.2688728471038341,0.5408233209799804,0.3575819360055477,0.368112232987977,0.6162619198650588,0.516992394122852,0.47532039784157487,0.36107616379415364,0.4421549982990387,0.35736113256491087,0.4099429857232481,0.5136604676951878,0.35034278001521973,0.46847147296813363,0.4905732954452163,0.4925759092345455,0.43933682729222984,0.38568809098576456,0.5592201677802362,0.5228411895497455,0.4668277037107829,0.37302841652500374,0.4535162190057207,0.4357854823415229,0.3961215316225258,0.5192006699045483,0.5362176874727583,0.5444656766230249,0.46462870782442967,0.41882079428868735,0.4865375597921977,0.467662089230509,0.3840756091885728,0.4710945932579995,0.49789971004002365,0.3823679054128066,0.41579690560929555,0.4453646166233887,0.4213730860258525,0.4961968168244008,0.4368973516252048,0.4427516020178891,0.41288252534621794,0.550333108159355,0.38899228460655555,0.4905117347588043,0.43662953532411675,0.5703471750272112,0.5459821847298602,0.43481449070191297,0.42551756471171465,0.4783455216399368,0.5139568312793361,0.2644817474116786,0.5869200637867803,0.3898045711703745,0.4138805471980485,0.33941287133086767,0.44761129354393137,0.48256501270549657,0.46492809683861863,0.6024968679181077,0.5446849537124471,0.43623113728686397,0.4185024180003268,0.47438586108808445,0.398044765000731,0.4180783590244884,0.4406485397125366,0.525984838091694,0.40355591698492854,0.43063496874497187,0.5562469618660285,0.6099227402100001,0.39442871300262494,0.3786666547488187,0.5154738117065749,0.3635535873184325,0.39070580915825187,0.46622812200699426,0.4071312824416193,0.4867284437925712,0.3380744762714877,0.46537741402826494,0.36791443970535653,0.49339968072308044,0.4099632787996151,0.47334293372502906,0.3764527162635903,0.40851407144440244,0.5611249624931984,0.4908781565431315,0.4760634810265812,0.5086196660674933,0.6137885181382046,0.4003755466534985,0.41185967976073534,0.5502641900947722,0.43148233424223426,0.5481867085376512,0.5221155429922684,0.549782900443746,0.5200657823433142,0.507948331075007,0.4918485800977708,0.5117838784919424,0.47064635512482833,0.3034318084944244,0.40289969736830256,0.5108255700789105,0.511580242728462,0.36523911039287227,0.44930606225156555,0.5099264048343014,0.4246368787778324,0.4234527367429869,0.49736221766481786,0.5403107466680238,0.5810284313740851,0.5103989429379276,0.5119182810196077,0.6099450591756526,0.5542994966417334,0.4587963361826199,0.4960962930029511,0.5922415587917838,0.38107449468108623,0.47214310852712904,0.5626842039162366,0.5525589540158783,0.36738546982689296,0.39004857975785656,0.324675400567599,0.3689320168124858,0.38064708364913974,0.4613880625107401,0.46565723320061575,0.4146658390566726,0.38612719767480497,0.39397579734367844,0.47289564610850204,0.4775983051558658,0.4177211207218226,0.3895199562218283,0.4231625907224396,0.5410942812018988,0.31112921379929626,0.411940862526275,0.5173057486231882,0.47270217628650085,0.48865045491946973,0.4171550495103435,0.535852258427688,0.3403612560054811,0.48720292906367957,0.4467020559319734,0.3867731072733619,0.3521480155563673,0.4097625155811596,0.6014476551494108,0.5564879871205327,0.470386799918178,0.4431037883483064,0.358961869390045,0.3068995160997984,0.5781447578718384,0.2825000521457497,0.41200345673596733,0.6125383538203878,0.4348854801615206,0.35454180438807453,0.3430773314261376,0.5241052456640976,0.5609095992011152,0.39163840817658996,0.5006289322078468,0.40158336125150224,0.3986400650900568,0.4333028870168646,0.4548319396221432,0.454864551929938,0.513606455104438,0.592680387274026,0.6036415430700449,0.4937331097762514,0.5240005927836268,0.3543200201434207,0.3486965931912945,0.4207176904275938,0.48217543498158616,0.367760621703854,0.44154987324161193,0.4957038529277968,0.3853717451352999,0.5317338659691706,0.46937562272823646,0.38334329814736073,0.3779787405689767,0.4728348255471728,0.5418853440334048,0.4083701969122089,0.44063801467978975,0.49362700625479367,0.486740793517436,0.4727389034372274,0.45745884463739606,0.49965519404178266,0.5351205810707684,0.46148793179777164,0.4891732545699953,0.4577773833393385,0.31040019209893477,0.4824566650348203,0.36597414786861987,0.4081435138343743,0.330339165861212,0.4489165596968549,0.47687427657205905,0.37562636711583813,0.5374966345967175,0.598480289445785,0.48321797423811386,0.5251093328137181,0.5329170850130357,0.4377153013623171,0.3345845380939744,0.41449826597940065,0.46254987280316073,0.41512141519501183,0.46115286290902147,0.3786828128040093,0.4117054133075986,0.5624451854299013,0.4811984060728099,0.5749017003875244,0.45707092073802863,0.3492628350531823,0.4793654103888752,0.5627901699060675,0.439628323291058,0.4877312978438666,0.46007956139244854,0.518065488404051,0.38044837823587224,0.5325736615626017,0.3466700551818087,0.4549660611236557,0.4964292143563445,0.5945413846766473,0.46276734263563296,0.49130080622569605,0.5072220034054291,0.6205910126281877,0.47764666992522264,0.47606440895895974,0.514861885909718,0.4802419878042911,0.40988639835991364,0.45643211312829346,0.5034003476539628,0.3529158023730081,0.5447713586507129,0.47876609438338374,0.3586035145183846,0.4877560686707998,0.40542938773845455,0.4172240201192474,0.4208818706413625,0.43768280731942316,0.4928454790321982,0.43515275951331533,0.409481852639743,0.40556726831105416,0.46933341867666095,0.46468197565791824,0.34382913479236404,0.5470044534860605,0.5879999071382738,0.516271790261636,0.3721202265059557,0.4268469117727186,0.469214625534128,0.3222627891521149,0.5086443138665162,0.37933676274578726,0.4584873579852798,0.45907302323101024,0.5077002637785141,0.2746462014574941,0.565575633374258,0.42283144134008366,0.5020958816222854,0.45434180705610994,0.44441752921967964,0.4557523179872297,0.42221450697418944,0.3711043009687072,0.5674922294295959,0.5104465810714477,0.5515955480256015,0.46770225365206836,0.6093447171164431,0.47269356697463355,0.4412191581047494,0.590066529010035,0.5339930773268018,0.41338170791411294,0.5510849879121599,0.30264255188986416,0.442603779572129,0.4315024873979689,0.6261292061335401,0.4424406738334319,0.5699351452934819,0.5263943554787752,0.4398717650639094,0.5184598486492168,0.5853156640828354,0.5481695221029691,0.480207082094788,0.40784598625616836,0.32856960545775304,0.5379247150266427,0.36217107895610057,0.5461116599647967,0.5796847509162981,0.5692491832153369,0.40359311231479894,0.48721454265605374,0.4144819206768714,0.4861785538949959,0.39589593208423934,0.5479147514999392,0.5902052912707534,0.4625020051033439,0.43755375975847305,0.581011724398741,0.534474566034088,0.24397315851241663,0.5431743430475147,0.5811133606849456,0.41678341827047505,0.5602896932853729,0.5400890999553681,0.3087917626631988,0.6441147382808791,0.5839414571585767,0.3924415778115833,0.4192492812993,0.448959630699281,0.29455281856304993,0.5672196353601507,0.5356250878716299,0.4545161848967835,0.37220716869474413,0.591488701495883,0.41312537799636795,0.5154260611770897,0.4140407872825128,0.525324375733072,0.35527645549200804,0.4249450411657714,0.3126928508608452,0.4748031272850142,0.46452135357762986,0.41891990905032184,0.435245069729408,0.36538961444578805,0.5240216380508494,0.3993110771640807,0.388208298921209,0.4078610280888377,0.5754213703297083,0.47004213728972627,0.5312013667909905,0.5329926105496362,0.36799807578196386,0.46136087560398165,0.6009888427202263,0.45176380399780514,0.39966402232233844,0.5227557542639908,0.500298237324455,0.303683925930552,0.4156339906804474,0.5312432523564068,0.4356900316317308,0.48668352914096696,0.4045895462559986,0.4095249890310043,0.5881280621216938,0.47364092267015195,0.3863594532159596,0.4408524994015422,0.442372294040884,0.49179659759798267,0.34629285508958024,0.624569359033784,0.38918678887140773,0.5276821452830748,0.47140939499333506,0.396448011301445,0.41702632674539447,0.4338489761994811,0.44989168754674597,0.5138644577408404,0.45778355967552514,0.3421970535406259,0.5725595185905569,0.3947726834084108,0.4730837343518291,0.4995719154468673,0.26852490141717456,0.5458001014357443,0.5492917221555026,0.5277384760295206,0.3833323958635397,0.41229463248842413,0.44919557341571453,0.3592322895891669,0.43341769058439095,0.44339564817925464,0.4012176254788954,0.4528723629915269,0.3789480584248072,0.5067035868487205,0.4456107262402682,0.4114730967670021,0.5660171372703287,0.41052319429485484,0.4106720245414791,0.32178765714868857,0.5444543394888921,0.4742389385529974,0.3855760840887271,0.5109305223344637,0.3875706383430033,0.3794012319704897,0.42159693344950006,0.524837943307401,0.4956489200084418,0.4432200023245994,0.4321357005454567,0.29720410741704234,0.42180361559735036,0.4633500686703223,0.4653767223158862,0.3979548892957862,0.38497762488483184,0.5231413506185801,0.6081964000152168,0.396680052265544,0.43659586598429345,0.482396817816246,0.2819768900071707,0.320031543157869,0.5671656478126812,0.4095239599605861,0.38673250171561196,0.4727624667437083,0.42671610160454165,0.5412712355301526,0.5700798548324915,0.2878177026339163,0.5251243937380478,0.5338637180300365,0.41080308904916457,0.40826139145488455,0.5067132850536263,0.37440231063791135,0.27803052265679,0.5020288527853605,0.45729874441672275,0.619565760969904,0.3736229284326073,0.3930561233407138,0.45877726871619384,0.43281247747652074,0.4318932780263821,0.45075887475031085,0.4649355308325723,0.5796530474980995,0.4139718086915262,0.4496444946348406,0.5788934516919927,0.6289986174899724,0.4569885016610578,0.44941821161763645,0.3866735070753949,0.4640745973217432,0.4399077797048932,0.36570746711173324,0.6036337202836947,0.4287382409275611,0.5730098486282585,0.5012293790984506,0.5644199312942796,0.43476793055210433,0.5776482460871075,0.48043820671539056,0.3783677490262304,0.5368283065351469,0.574029938001164,0.4423021197980099,0.405824058814835,0.4008086216181241,0.5031615385200205,0.4482536108648458,0.5120159930000766,0.4649471035645523,0.3495838800632955,0.5371683920844211,0.4088635944513432,0.5626445690693932,0.4447252793855021,0.42339649492315823,0.45430891318813804,0.579266434276195,0.4845986623491613,0.4802380166153584,0.46864455268306593,0.37323089063529813,0.5153906455122024,0.4946938799005807,0.32588184820699334,0.4372260945682119,0.5790437258231839,0.4852082513048466,0.6031360771101819,0.4007435343198361,0.4409078243831417,0.46366704716424334,0.4814317409613582,0.4403732699785936,0.37972204276609317,0.4827762469286027,0.523682982977053,0.5825443413567531,0.5014844337033121,0.45309269165148913,0.503194085703715,0.5288762133360934,0.5111881624201015,0.4688357201087115,0.3469090516124395,0.3139452492625403,0.46741222200205323,0.529989185349778,0.5792051167564781,0.510101243635491,0.5285595812025139,0.5239292682003128,0.4242743261532484,0.4160437509782216,0.40960231464406605,0.45567659504620456,0.39708863127949906,0.4842352156852727,0.49186573856551513,0.40657316451564113,0.5889482598240204,0.47663787581865347,0.4407732803424784,0.39593853432585907,0.5837048969279036,0.5022931808817848,0.5623051874756552,0.34887498096675584,0.41395515173200825,0.3900825604238316,0.41681291600305875,0.3918253263907691,0.3915192138333732,0.3766286937662272,0.4395409165870926,0.508039137876497,0.4016104515966937,0.3954875339311717,0.42121354204420525,0.42173729287638184,0.545488250865329,0.4732805566826496,0.39908558349578493,0.5328227817519997,0.4524610677940759,0.4291056080897685,0.6031982363755893,0.5221303142222198,0.5713665363931492,0.5504850188978905,0.5311829797569071,0.4421752265425743,0.3519897436860138,0.5235992426298991,0.47580415614738913,0.6377218084953197,0.4459074300228794,0.4032728325367875,0.4946764039401568,0.48744641466758953,0.32787108575160656,0.49841697981863714,0.4059719110426572,0.44675994517480877,0.533578563836081,0.6724238060761357,0.5827670071109483,0.48038094613138294,0.40080558191716287,0.3496446698694583,0.48160511299037334,0.47674541560772804,0.46647642842470843,0.40870205308286894,0.47850327440087126,0.5383159946476852,0.48084799348257584,0.46538920573971354,0.5439245441490997,0.36438460016719676,0.540055070319962,0.40579310361296306,0.48984460400936164,0.38662088060849376,0.4281040705005774,0.5265287276553817,0.3268665802562709,0.528728052024679,0.3798746434770479,0.5069088863816996,0.5901576812729542,0.49777229621980335,0.44883189211607033,0.3672004771961035,0.6294209136507929,0.4515016072759043,0.42394853416935,0.41466027299287406,0.6277138324007165,0.4246599090926828,0.3205042757739077,0.43376601094220896,0.4158232744842876,0.416010783839276,0.5827370363985342,0.3845893454236419,0.549136135138044,0.4684543589837778,0.4043559355713267,0.4992584718796361,0.4318720768877452,0.5716612394023673,0.5969440136222735,0.6523580763188722,0.42929118409432737,0.4104725519714105,0.43613539436602233,0.5164023287897158,0.3639394726472987,0.5238962175277772,0.586744011658288,0.5445101277357823,0.3747101082733919,0.36511122722461786,0.5686906953066425,0.6585762620370521,0.2784821069390622,0.527436573767146,0.49344013651069174,0.44032725925516886,0.4518574169122218,0.3765434150751157,0.4856179818214557,0.34911573329726037,0.652718590883676,0.36151874104614207,0.4774941484213809,0.5634900519692209,0.37470052686791555,0.5737369091998501,0.345157500600737,0.47595438270231233,0.4347928782563761,0.6391584863817493,0.48812088712111135,0.45055511208347376,0.45373551751341573,0.5172005236086521,0.44771077475397775,0.5200083399096489,0.4429718803092614,0.3063907358988781,0.3851849109839392,0.5265522858844229,0.501931899050903,0.43798829874221423,0.5220957048644304,0.5374865850965982,0.3747971770142231,0.3595657582310019,0.4855476095098939,0.6307930855359476,0.41872777273936995,0.4546080427563994,0.3172219536005121,0.6191495025964464,0.5239672216208747,0.39612833923280355,0.5487661265139597,0.4099148276535159,0.40748907707291954,0.5156659069083338,0.4084229585565958,0.39481723071319474,0.38136584228931764,0.3331517263996349,0.4603218214296097,0.3997613005844865,0.42617868229623174,0.45832861221569543,0.5019416524422339,0.366563753799572,0.41823437167991884,0.41635093303723936,0.34306405960982606,0.5136360923524915,0.5118245129469781,0.5356897771530429,0.4956576212461794,0.4165409888805638,0.6798502730815076,0.5250139892539555,0.4810776263716655,0.5257473371712577,0.4168250593612297,0.4240145127558743,0.35841623702234693,0.37392892625021734,0.45525868948923975,0.4676233241561247,0.3261401413590723,0.4442126488723709,0.5783114647921663,0.36931149557821885,0.42956607757584914,0.572678712538691,0.5032982899336619,0.4147261891424747,0.46060865713186766,0.4206767937933214,0.4318628035155053,0.42268124672457835,0.49963584303564595,0.4348773421579172,0.49070509447080646,0.5727459713043158,0.4868580697983199,0.4722840764907126,0.467537542406878,0.6397620981604374,0.48480971249992116,0.4822097833297282,0.35629074544119416,0.5003994925206174,0.458402432787443,0.5358283715244138,0.4811695712817638,0.48662732353937527,0.4782918669271546,0.34283009861513586,0.6054945016837062,0.4854450095136969,0.3790154175895797,0.5092519066375619,0.5707229065021431,0.4465662627692279,0.3854306470708265,0.3502391231814759,0.5214768477550886,0.5270063363598666,0.5609034816747068,0.3422057163767508,0.39945961841085154,0.38433557513269545,0.34259380674012396,0.4091098227338557,0.4482970130461453,0.5005649655449786,0.4337704881043775,0.42440902395814495,0.42391292324602803,0.5051723834743972,0.49298876935605346,0.49761254444230885,0.5172697778714472,0.374731412257103,0.6827012231530137,0.3598767142449967,0.4111158539191823,0.3508610647862572,0.5882440423483659,0.561914351826253,0.5643311490407213,0.36772327697275853,0.6331314286309981,0.4203204290651015,0.47107695587079296,0.5484433118524558,0.35991775496936323,0.43614351266858736,0.4606844043577922,0.47634413858792723,0.523389877967323,0.39297586013171815,0.3612664768251053,0.5121866884892269,0.5614213156036179,0.3727572714064036,0.47397932019556194,0.3385991156688361,0.5712330498789214,0.5010031539072367,0.34615074646503485,0.46564738238143305,0.42009921422440905,0.468823386327471,0.5890980199516282,0.5536541497538053,0.48077648318777166,0.4738843954661316,0.34137120005828675,0.5301947021169185,0.5820738179701633,0.4719967011168868,0.5064582951831917,0.39798704594278983,0.44158440450153014,0.5131410306409119,0.47600414768100957,0.43712323751704135,0.38726700248634627,0.47948832206336683,0.5680893005040639,0.4322045976564369,0.5372939118862075,0.4506568807615731,0.5314441624286366,0.5187254643680874,0.41752607836241684,0.5331654564680922,0.4685561929967857,0.5245095128861471,0.3873152481153276,0.4141852383535986,0.4663757236610915,0.46537149567891134,0.44927975450430674,0.46541983612056576,0.38894288759320755,0.41454260663467707,0.4537283646059041,0.40671603502857506,0.437659331021953,0.5098820391156715,0.5732343079544652,0.519018591538864,0.49698994690464454,0.4637928442138546,0.5130310167020128,0.31528430914797406,0.41079332003874736,0.5943401324464681,0.511203699160856,0.4168134943932698,0.5608586788408539,0.4477239881330505,0.42247107724688365,0.5573708479250332,0.49814154928399784,0.5015259807306537,0.4239037722034518,0.3928301030709607,0.5957133946059002,0.34284908106281864,0.43510743497801724,0.531055079771516,0.4654537959641699,0.44568817735986077,0.3518567079576434,0.4907156885852934,0.44200552089822875,0.545084946712036,0.40748882828247973,0.4641719339759871,0.4641130492697462,0.4576557051898886,0.4701539220101948,0.4511438287706544,0.41026541704293007,0.4219950089718476,0.4516233028853061,0.3527145872198655,0.40827740743751567,0.5310724779898011,0.6330856104707724,0.33234515685985816,0.43911672573445276,0.351225206506983,0.41667786780127675,0.4929112803236243,0.39397849199407914,0.434023559928547,0.552042068674351,0.5364211667487663,0.27269774472117675,0.4177278957186338,0.37754274981609387,0.5125504797918248,0.6009442692402751,0.5343079667721509,0.41470770461697687,0.5762648155366576,0.4733179302355212,0.5128875751715878,0.397556639102731,0.4456328794290195,0.5091260240068339,0.5805509082599569,0.41195516108853997,0.5354422498849024,0.3143458917695228,0.3969055524230005,0.5017254297659438,0.4821262312869958,0.4321143537289415,0.5857536638911774,0.41528486313924845,0.40337326661369016,0.44430974794178,0.6037957757026735,0.4766894995908249,0.5020243221189447,0.4746452827060104,0.36272635809648396,0.43327047209885894,0.522484081251384,0.41508271488039183,0.4829177035060451,0.3924550775866355,0.323732666611163,0.5230668690220136,0.5430665111865797,0.5934575390745709,0.37905676499621616,0.5794670978857165,0.46887833296881576,0.5561881692858263,0.42742437163228886,0.4629921827516768,0.5604657373719854,0.4545412664224684,0.452014353515277,0.41854321165125696,0.4975337723589018,0.542431508162357,0.4818200383138419,0.4817297962629987,0.49400916403301115,0.4243632703965827,0.48355092834058183,0.49302395034815794,0.5794807844438835,0.41351348316440073,0.46512538745121534,0.5377429692361124,0.3652402927249159,0.41688610324060293,0.34644366763704115,0.5591223602465734,0.44321796590822515,0.4073183228300771,0.5480570886266922,0.4888831454785934,0.3985496231770196,0.4770651635649971,0.30174529687060336,0.4665187603854691,0.40107611551228783,0.49633718455094117,0.48733378819501605,0.48240644082485845,0.4320239110621572,0.3116141387994085,0.33228572334211604,0.5885695920181825,0.4354967941517444,0.5042566235096322,0.3956144448469019,0.46138655862962413,0.4419830992300694,0.4520192572411323,0.33267744094361656,0.5136276971360108,0.36748650782242254,0.5091927643374866,0.5731180714104688,0.5161640418178886,0.3749358235105938,0.38119084783902846,0.49949133465637946,0.5310081473980479,0.533974015992106,0.5487441947821785,0.3539102746637931,0.40457362252563095,0.4768622391940111,0.3286986671983553,0.4626183898297535,0.43446874417954556,0.4757608247475876,0.47158954441428813,0.5439981014333157,0.41232984715013316,0.3895156591003349,0.35864863416033865,0.459233665498306,0.5831894938631854,0.4741425008888619,0.3714104482151389,0.5535605746524231,0.2734946049252944,0.49623807881121895,0.4791610158492543,0.5057192467002912,0.5980004583918926,0.40450995564311354,0.5533273240752185,0.5155242053306471,0.3397371716427307,0.45097899622909704,0.3594690146018865,0.48090219482602736,0.4341407821592821,0.4357537240501512,0.5364591137826171,0.5320596447681221,0.5575549938337028,0.4270895817530026,0.5912093227770644,0.4682325732228086,0.4545052106400648,0.4643499281817875,0.3862273791318533,0.4729799643695988,0.29103183161947327,0.38425903916196263,0.37068191736771605,0.44002007209649435,0.4227808167390789,0.6667472962546236,0.5017578385817798,0.5277265273160836,0.4100315202373428,0.5325308401610079,0.4371317276363427,0.5323625877948723,0.5437674676799391,0.33783548049890283,0.4874691735315038,0.43997976436428493,0.5561545862474926,0.38156980116444367,0.497208736106895,0.3975886958700332,0.4885528673444526,0.3852620219113254,0.3442817491711917,0.5536725516650444,0.3903953470456371,0.44447390452554764,0.4082968866657864,0.5434748863100932,0.40819258487829474,0.5275027257458295,0.44050485658317406,0.46567302704639213,0.4663876865745547,0.3914159628007177,0.48068071204070406,0.4482543497048763,0.34638941051822975,0.4568222925098936,0.3226031421216804,0.4192170785476584,0.5019739582117321,0.4268667251071217,0.48062215357755106,0.5839397600502085,0.4507683873871969,0.5544227743227257,0.3951495652105382,0.4339113598034762,0.6265344167973873],"value_per_10_000_usd":[98.05127880346005,238.7816589257557,63.5467560913968,105.48366474677877,42.353628736812595,159.76868399165542,107.99549226171028,48.708298044653546,147.1431912383894,50.54828659955503,271.79353942863105,90.11871869836685,60.201349082262055,134.70784053854936,143.5713155663756,50.076454282015625,229.02901707045027,95.24984464499502,42.711955750399035,102.37113373714803,133.88353354881903,275.36950481201256,162.50775668097538,213.6861193396189,74.01881030702411,141.4927937642919,30.07052417701532,99.50321236078037,108.09123841555227,126.88955020704213,24.928033903464083,207.89472045319857,72.8875704502886,75.60673193633659,154.3500879160589,55.873386152118414,90.4261462433725,55.65908714869974,71.70711625026459,87.99077927049014,48.915407597757394,89.71711620867401,314.29882395539136,351.6597945357372,149.97511007121471,204.59634148836318,69.42640463636694,81.6301824608604,338.3164920562097,87.456639410843,41.49357702686525,58.652078458342565,39.30355041244013,134.20139924322544,50.76085295381991,43.707125142615816,163.55306985111935,199.15686880435024,258.5341199342565,94.76438316726865,70.32291738599054,53.46419332779343,180.28476510045684,129.86051340095304,220.7823753472292,107.16635990586694,337.86923420226503,146.8144389671725,163.25996883181114,136.93063007962846,115.16979901369167,220.56342015445,75.66034959266607,103.3134367169415,82.95119429759087,58.295831604280515,65.02697157654801,110.17032089096368,27.203963276919218,104.60194782211359,64.3901382136635,144.15011568721323,157.27793115656513,103.91804685957295,76.13548816064025,66.52199118702364,45.75520484282428,71.36494803824888,87.65455172103692,72.8101704605082,207.16406005370177,41.519292592347284,42.30888955663876,82.94147247347419,71.19917241841986,55.423426211746886,73.45111587101381,145.46897574988643,104.12762673290266,53.07243638273482,55.586520336666034,178.89876871668096,137.00529144893562,52.253448110111506,76.40484285728833,140.28595682612195,44.3417005682412,335.3255418125058,175.1705482350122,143.13602720626443,166.42519089659248,97.67701592578933,521.4297096341819,210.80858424729,115.5877275500908,189.5003205485275,47.92925197542447,155.19012240048625,33.14637669315234,101.57310061479309,75.82492980467642,140.38715048131718,105.20307894103462,49.376278456176955,101.31889119814278,118.55087113011395,74.53205339701752,102.61618035292241,257.0156586250776,234.03587959045697,67.5034057636723,115.59405594045379,74.82543986606052,47.039989778214036,111.71353016645581,38.85424814022663,84.73893804453671,172.6826203711174,123.61851592943249,127.63159399775725,203.55567015009942,153.55077377996972,97.0419484626621,80.76207585820772,90.37318939032525,407.7553528214623,102.0383273726917,200.698493650384,111.84558796027737,76.12005764951518,67.58683242382395,29.85775840920671,52.36461577894098,64.84399493639538,236.47903236403246,75.90444304021148,53.986517749550345,116.41545175273663,106.34786189988324,72.98182210942241,50.66262203387172,195.91679112996061,63.997866832777476,129.72456479514847,96.72697530695685,116.17948375130113,148.76823641961036,149.3066810192948,110.83342092926422,70.39754295523453,123.58424370566175,45.9982238560913,46.135322691788815,124.87082220759035,172.85870859107277,142.56023157464853,474.15475792235407,68.38861977341668,96.0840318945292,125.58871764534373,64.02422030390896,128.23067650933717,175.23700423949288,139.100622113214,112.30204670378667,54.578569684835074,107.24423178216608,51.86145641645625,65.15822820784649,249.4560165824319,79.07971147537006,81.98291037513107,39.78348174990543,49.47795972492893,41.80263708248186,47.89151275060002,568.7323660902983,78.47473229029721,77.94162808079483,76.47137147035343,89.19395042868129,150.69092115611457,88.23426881141312,78.47209973216953,65.27909658768496,224.3799898910158,153.3027633287877,52.91253909376882,112.14965838915718,93.51834197582677,95.50936311092012,100.42729412547237,159.67698050534975,322.7310291873749,83.3689938085523,605.1085444018033,124.98464071880503,178.32162824495703,231.17649472212065,41.843535439935955,111.76632124440394,135.47954787175226,254.149386383413,56.86571584196927,61.139764345829285,149.16320851821877,48.240668872120274,75.43124532243348,147.6612350960307,131.32640210555326,262.63701938834885,134.99922259855546,159.10790306420031,95.24743468156417,80.73153249742903,169.02117265145677,92.57846983852596,66.38403703522648,100.68441436797885,368.2280980406796,129.6027037096926,132.2896643090468,127.72630666105658,80.8642719199838,111.25374280711756,156.02836278557055,177.40352907803447,130.52136507584274,92.06291315979368,78.91383885376484,77.22050766661698,125.84204979932679,46.52173984660432,386.11254369512034,171.02152297424743,170.6864273708063,423.05074408465725,66.0241210448145,82.46267955997531,183.366757488614,49.10270653510872,212.68668475961294,89.79753821356594,155.42711656258604,43.25007273094361,58.77668856861974,54.271246233304865,41.93496898884635,201.64200660023076,87.87430075061695,106.61725238364947,131.3400916232598,300.14767839447285,76.16621666609852,49.16837174551969,64.13815393008537,197.7870619201754,103.5050431531155,110.60144417231562,88.05947670993352,174.93530506226006,29.918912168852803,110.15999680612528,87.50405796903307,88.88325661816619,96.75459265735427,113.14587355668976,72.00394545664595,68.6766135430074,152.48821146703776,97.92459457941847,70.90005501044674,44.03674629778848,126.79857037935051,127.3693183968293,69.80669459289162,117.07591943850771,144.37338949208888,89.84850603477098,55.724095271839495,92.69255042095232,90.24902735027906,175.6628255603615,130.48415088588774,56.32039356141318,365.9959816959654,127.91967082256241,78.46736848746383,86.01730758710723,93.08977869623199,160.15455602157496,296.42828444968086,53.89743923704709,94.1916749601822,110.4961633327083,45.78059071447204,153.38305389649162,78.37163751979918,248.17721022864768,89.2061767034724,118.9508447464816,197.20512697165233,92.20318469733306,183.06500566740053,85.35116029905846,122.87007931583292,111.54931471936325,274.9798315437957,79.65581544837383,311.88123305599345,50.87476895717298,77.05301867281297,180.7578463465062,69.44375964021815,64.41850520950493,44.442136499773845,196.9768278925057,365.168072815718,65.57529266288793,113.30913837578531,288.5153879488783,261.24116832917565,317.2650920414738,93.22870034551939,171.09239909939825,127.71421619274844,267.1084896165447,85.3556998291393,432.4707078745966,85.92691213926886,177.23607193464326,92.17661743317763,168.0986356411702,132.75826886952544,77.04953033819024,67.71815805646321,101.91988527079899,108.60966366766033,81.04658558433741,75.39342682080012,54.07127517976342,91.607155435968,133.63086747144752,62.09904536965467,157.06633019819733,90.74876756771211,69.91426551509325,79.9494382884562,77.61741780274944,53.996599068583976,194.01663305651456,1273.0637256859618,55.58561058774023,133.57118841969182,187.99857242810762,344.13980907100046,90.50237334757793,149.03888356897258,180.47751265481872,71.14439949275365,64.57945787619339,119.03080984357338,109.77741029528366,53.2417846399123,98.28883770740076,100.63152383457734,28.934158725302083,95.9152314197327,65.63358298895312,180.06053548901252,46.37816239442041,131.58128333718332,257.09864639879476,89.83194459598465,62.111499597868125,57.366913456818104,97.17338110718774,81.77430103172526,154.76777572626088,92.46997604456072,125.85087278951443,70.67587291403869,135.51015026889732,182.0279192973741,48.750132128525216,94.43301474698686,63.33309031331207,124.1249763440326,87.87406116728978,126.81848133704753,212.99127185398402,120.57165481398238,82.19590861565061,80.88448021724781,76.74749986332625,158.76721893543495,131.6977666468659,120.80854219144692,64.63785485707908,35.73939741468568,190.25563206636787,103.76354998924958,62.36796146294494,202.48305126338937,75.26279927914187,59.88503738883722,126.13534018048536,299.8987679165763,100.58527351384504,146.43121824884642,221.18469613041742,153.121838111283,90.5795822468787,123.35235945666822,47.68705367269571,33.993829207302255,45.802445367741456,120.58266309475549,181.9444087185012,41.4064657023934,49.80451147806041,144.3001559233369,131.14222840253083,214.4022374967508,167.94373583367684,131.78500907915407,132.80645813961425,116.54163090184502,84.14179155781689,137.9740593723413,112.19977282128488,149.86980855354304,106.92821464243289,100.0118391351803,40.59993151330501,140.43229497675347,86.60029345659434,121.8416058880686,307.7937089993964,105.2959655425525,41.85716870406914,75.99164690466193,55.27732304684813,69.47848396610084,156.62856849245728,89.9546223948061,72.17057924084367,157.21983833964111,45.34152100388597,29.020052153057854,64.01030493223398,164.5773766312882,117.27446039714322,126.11359521747607,85.05640183349341,78.21124381200856,202.16799059074665,108.74990846384716,51.442902508658975,416.38029075149234,75.3345735788488,178.10262921884623,94.33914905577352,114.1185557562101,86.25447756531311,91.27108286910037,127.01683653462347,62.384677083300296,105.49090225887431,89.26431312293924,236.52838570444723,106.05617387564563,90.90409633163404,116.46400614993179,138.06261339844482,127.30325982551369,147.5738733995849,51.12346058760356,112.16669888621017,67.65180789434301,138.05360676999206,98.38478884222805,60.14981396234208,66.70365269163973,67.45786556892263,250.59845111898215,60.26829946705949,111.17762054044402,60.73850326444162,191.20577386772675,63.36395420337222,83.15609332633113,188.82863566329874,216.17653316452348,124.52594408642325,74.77931377700665,91.44573587480717,71.1938906792657,57.35234214873246,100.44658228546751,153.2779957094598,161.98845475352883,121.08507507521404,238.0287762741543,67.54330665669492,46.61276107233017,181.32871357971547,94.45550842838236,123.81933224293073,111.16540092705145,126.29870956224548,60.88070899070262,142.64305103931272,94.49844395121795,92.42253173233065,67.05324957368505,141.23360832720883,228.77020454881466,131.4083397176351,42.65490357298961,52.907024808867234,244.09746555518814,44.62771899705597,840.5526234095382,90.0174981799008,84.34042394773414,45.62346401404722,84.6555475368104,479.0168323461547,136.23280791202893,215.5138015148477,63.928158622891985,65.17348145211182,47.51956802718874,78.15651082622792,83.88800312161898,47.486482913852846,92.5035234742062,116.34009224210847,104.11354667358542,51.15396880029732,198.29105415737422,113.07749100185616,60.174138641150556,91.17331640041259,69.70082663388042,212.04826962517495,37.260200165498794,171.46984938803743,56.176280463132244,362.43469324086504,102.19212481293684,130.02785285188196,87.35182014002643,215.0032255953901,58.821542626369364,63.21495255040445,37.686145338296335,121.10899639130571,51.924010189493444,183.4137300821398,127.73485606023613,93.64883134398791,211.84496642423,55.58786887951407,170.4034648065031,86.20199373979771,62.75296528565453,74.49295425888884,140.1203173994551,291.03188427230236,64.05144085418502,160.47596941776948,36.85411660662018,60.68810872355849,146.43381522671126,73.233774612829,191.66734694699775,175.78931361774428,114.04762513367302,63.24582677173123,86.37222948990143,82.21495767947647,137.0541789282511,71.76839615133787,100.30526513075814,362.6247345620382,77.5154922378725,93.65584207897476,87.45366911328732,110.00084686189801,89.67716653069148,101.55210653671202,132.16364436449106,89.35045745631788,71.57534046302297,49.067285648414995,84.87181909619349,196.768406978912,66.36890316697098,116.05953472376655,72.00460608023717,149.41525761414118,178.69192659979586,190.9507705596714,239.28157537870302,76.9640785635441,59.519583448552375,48.63016179804008,65.0464731622319,131.80936847117388,302.03036907228625,55.779248304702676,99.70676912378043,120.87281686687666,302.46169923610717,116.62234362756472,276.2522411069186,107.02069208846902,149.85419522831958,61.445894815614245,82.46237376097037,68.2586655993314,296.64127630190626,98.54768158438199,82.36837925530186,445.6424514837466,147.93833811286632,78.7293726016741,100.97543689007027,121.59615770558085,64.42487704706195,97.53680680676278,62.263346635969285,59.27327952695141,114.99655052794057,112.30329600001892,88.34434391635216,139.1020810372013,114.53281817976884,119.72044392540994,138.64412687685095,122.41152568595535,124.4775736796749,88.1192354098888,200.14531172138956,141.70001472150557,50.20621419905004,57.493467470709355,66.96571122699049,341.37104079947864,316.68094264940135,215.0471324174632,99.08092691564259,92.05595779812454,211.91771035383903,59.31707566367029,76.41812953606924,71.17938860252744,200.69388014582864,400.3453527486914,95.41559303563261,123.41845490649436,87.63541774275599,200.95864124303566,87.3655105825485,96.34929030179413,86.94752542343825,122.23545220534757,46.29157177435934,146.8610430614288,81.32181465140329,209.9640355002965,88.78397562547477,89.53384830323526,51.644617600070525,382.53292407053453,72.42878930550532,507.86116857267433,348.10111523906636,56.96600257008562,65.51462351245183,219.15212508304222,180.48066970637453,91.54034824052896,114.56328373346197,219.53361119737028,254.11585667172847,124.28741867008928,62.87628089034494,54.31298977967052,205.81807362846615,884.7592924105494,78.48260872813499,277.65665776463106,66.21333067461113,238.2407604571192,153.82354207815757,263.68348187878036,65.89389496914227,107.15963227806851,174.61548406314034,179.78306955230968,203.10279870293928,222.1540931286465,302.1380890431866,251.77917460873306,155.34092780125982,140.65339370777392,39.4560366227413,60.579849742898666,125.31317623656211,60.519123469265125,143.8647725791803,48.31533660262491,152.75800036640027,84.16806720858085,68.53663111695349,253.34518162347143,211.50675176812268,417.11887535020617,72.26216558595081,118.97552730281262,50.688375209793655,240.33355174234256,88.32857498014675,215.51393010071033,97.54207923170762,146.83485894076202,807.2729076864241,45.09575460093009,107.80408645965318,75.6635334901794,191.7307165576058,109.15025167280739,202.69777008829598,222.860725041028,45.60798488247284,274.76083097525566,337.9050451328159,126.2114904379394,58.54580605867298,444.0537459681361,158.70850709787643,100.77067590100748,112.50981696332252,60.073945923249354,47.257224128321546,149.6976540596437,114.04718313644852,81.35015533230465,77.16622018276102,144.7722887853581,94.57811443173249,129.72826374755584,69.1552948477844,140.38550916876392,92.79681610893446,129.29916894590124,110.63387198033351,203.75518213998637,36.27859573641105,72.67678978513148,96.68414565903177,278.8570066896113,168.50098974012587,213.09761906243494,102.56122351234445,88.25914147864188,55.29510384651003,139.58023918794683,208.79052607217895,186.99416379437832,92.43088689926685,65.05232408570608,154.19844088826798,146.30845448304655,90.480733997137,86.77795904368797,172.20649352017907,99.29294692428805,112.63358802580517,197.39175877995282,125.97007698777632,65.90794392590428,162.0716126794765,80.18818581954407,97.5554027036113,140.73388262334183,67.91888197293612,176.96434001670812,123.63996199308068,67.40741929496866,102.15640257666466,87.37421812962344,233.6677172589213,44.87172248545065,67.13537597902743,105.19244370663611,65.79796201863107,84.43436279183575,54.55818564488518,64.45764578705636,94.3637333323923,72.33157566669955,192.93950270223027,111.90531886866667,65.51002034426091,64.0122314413417,79.86142425486415,157.38373335335822,140.55633771751087,343.58141126698393,246.04807111400117,98.25865909537947,98.42372898270682,132.71797567465958,59.963943221966055,267.8961675416421,255.16250108167458,443.3793405402746,61.482250752210085,207.1557874098283,66.23481558894457,137.45411000057913,101.10094816416073,127.33750030904844,94.77127654800728,63.23869492167944,111.87711683503677,110.90532799726839,98.12292928112548,60.47893231102913,55.70554444553223,147.92682474020643,87.0892182106266,58.2362429283494,105.68942852051882,207.7738335566412,96.89105799261085,51.12003906819369,69.07794466258773,113.33412299976713,70.39979122415103,76.67988785193408,88.39054693005606,92.62267310905585,59.92268902991602,38.19615963439352,79.98873656550819,68.88961551042533,131.28588632472338,94.39304894236884,75.2204409696128,151.46646674868222,102.31588929390941,174.91264106754414,137.19947430988077,54.33132085647974,104.37966217235602,164.83993831531032,139.36310592303965,87.03134781316153,215.73281437576404,391.7635693513273,100.82984176461683,68.28780772325344,97.10015548233054,290.0355419994908,56.760738989017355,78.77005669256977,66.53568223216743,205.52098327731647,154.6553560433752,91.4737073964089,52.57139199103759,65.77346706835472,58.83117443790302,77.29593915639161,553.1483609815745,102.532944790626,99.53310267367716,89.07682450547395,98.17759260541507,39.74170685876473,107.68407682403773,129.01718492249702,124.73305504373273,108.67131370907292,37.02499409460045,86.02594398643346,164.88570136658484,144.6815450942845,57.35750317706529,64.54336488605108,53.31367134951551,123.47518549563885,67.67554526997436,44.95687868746591,30.817720041677827,61.575911299031134,72.14130447983304,64.31208069118166,92.99206829834083,135.60612335265677,287.2927164987289,108.5015633826904,93.38594298494138,99.60363541739555,249.74750625975693,112.65360549248278,206.4137188130368,165.33210892907837,84.7979314172928,680.7627712830076,52.21116629120322,53.95499225717017,80.82935960223816,90.86930939898552,170.72519735489243,112.85324356016166,64.76314946062749,161.6965529109274,102.56182780271071,83.09367407505307,47.73063280975858,76.18260419926668,245.14033138975532,68.6701380009146,186.00465479086304,72.16890568372035,218.86827856036555,68.1379539272658,74.28151086631921,116.88424058773248,110.16222167787836,76.35195599088696,37.81247365643828,78.95266533423674,81.68013138574177,54.372887927687934,83.78170282664149,163.2315559068361,200.51327868004245,59.05673300806498,80.4666078643935,138.49185874214643,149.60209382184905,99.79776371864612,57.31830775600754,181.8340451834259,119.01950940054343,41.083799313204494,53.27813200930029,65.97004833976199,298.03896681476266,115.89292812623194,244.22815116910078,55.3554990490873,140.13134947897927,139.46012298400422,87.48765852700133,62.95009067437719,61.90960549206479,106.99276316277981,31.533077823349476,80.98055508117243,113.36225322232734,55.15038316748433,53.95091151873909,99.8807663543166,180.95107193845365,51.56941192419537,45.07985677300514,470.60448685551813,251.05742236276467,104.50006084017328,148.60488529186537,94.25792015543634,79.83566442497515,41.154038350604786,71.46253880016201,26.457918299336466,53.17337184948181,221.78975162695244,76.23479753501447,101.31581833838345,35.331536862490374,233.4171026763029,51.956342899690945,140.7414888191175,193.73898765890902,44.247277410847545,91.31760859481541,43.79374753556704,49.17149108935747,143.20019406675647,54.809304858157745,121.12393239561128,64.59130929236545,94.77969168687606,289.1632537476523,144.22856337560972,88.5672852503597,299.26361365246424,204.21580099401402,82.58773665107145,168.7497048765488,26.314884490108852,60.760065033554085,81.73944238451409,160.57603164720214,297.1197732056722,81.39389464803152,77.05781068575911,52.91251778067607,89.35825911245146,104.11264543323045,394.79943323014135,51.75664102104881,141.5768642749867,105.78674944090416,121.34551857035922,75.84604463611478,129.81516630975457,109.0240637149493,159.57881635647635,41.830758770772384,64.65811006284443,152.7758975495369,76.84560219226752,43.039249351079505,90.35106131559014,76.35190893774646,55.36447118296423,109.64205251515857,103.70797951052153,143.142399432054,61.29117933350647,781.9429948243469,160.28416245964604,306.5335022575719,153.47841106767328,243.9464268146727,249.5733471509735,318.82448706787534,37.27521157183674,122.3257426011672,92.61783904454404,108.46400956677503,122.02565507566686,94.48466910594013,123.00669569773794,148.96116403644294,44.46253563374252,78.10738050487485,152.68543126610768,74.0413387315708,139.18797993936604,56.10028021428276,133.09546571223808,223.7821476579598,98.30175042115219,60.38424826353092,117.87062117587878,154.88027538528723,81.41371660644687,157.3219336707275,62.24043895848191,75.26736342870329,112.2094418025605,46.97038850027129,104.26785256762277,79.78971837244801,428.9664730234975,43.12001710258633,48.6160297025909,160.6872369151867,142.10210031357306,101.594702397609,138.28786451622238,132.13242567025176,114.64460069753196,65.69820631830518,53.4354330067534,108.58505555252539,60.714389723524285,97.23179061169024,140.7385622451093,62.11498023626551,85.80537217540581,56.187086436297335,51.386028095016876,117.83224950926238,68.91951445874615,178.62008374234054,102.87297624038075,100.59081329028218,94.89281407745788,82.99330593632132,68.42761629395415,80.38918671906416,53.31623149771974,71.91796212996101,90.12780729329435,129.2041430514696,487.98167347533973,106.57032869699998,304.0430522714634,88.74735730135923,77.29670832120351,100.34953538013022,209.63323005494456,190.56920788661367,45.50330269239105,121.8227865008661,60.56435532356529,64.06518547184166,315.72735347760806,90.190509587607,184.5471109867103,97.48429017060464,122.29563569690184,96.52835317053395,111.32814662301156,44.37989920366337,129.04927152058215,180.56788666608736,47.193054647483876,102.38860209863898,97.79407919199996,69.05015150863487,120.52766608769208,42.936484325326,92.7111289806078,93.5770739105554,61.55163113261378,32.74947531411856,124.49558375507132,188.34564333715574,35.168433654421285,203.55450069098868,240.7440675003024,152.32107178773316,97.91278967714007,76.1664722002315,217.69488641076077,130.10656601505318,77.25240068593912,82.34796180684009,85.9910971230778,97.71090274714699,239.85358160439552,121.97105139785502,180.49996727651506,66.19400771508143,75.43216665162119,196.6704041798518,92.07844408489822,67.56236611152146,356.2507401863473,418.5008428212763,64.22819593400413,116.39787636629048,36.436070701201636,96.57077899430128,56.61104664714671,177.98655129692924,46.72496150567419,277.1365887508544,136.21573608076235,141.90570009869785,59.74608097454933,337.2842253728678,247.1024638273525,153.48110132907576,190.16338751747588,199.03059097133988,120.90501805325599,199.9687637099871,52.22663718413766,111.89587816824043,77.16107234149058,59.820913434801085,131.07928151228742,46.68573089379461,103.9649025645416,127.55725042402631,110.37036082058827,76.65299038151518,55.39907633474649,433.0037811875419,59.09155200552837,67.6739855865366,31.588473277985525,233.24373278972033,235.87479753371358,116.42025921927817,37.196731719791266,114.92073015896369,388.58974499374074,50.25775245502102,165.25305317899844,115.51554928918345,60.29114343249661,292.09662142339585,65.59469878579719,196.24560448566717,44.51588197741319,235.96886075924158,78.27837635550303,109.00671816253752,101.2847425098177,235.9086804392807,133.6901720695463,76.80500143230458,70.39659025423214,94.27360691589047,82.99424787863454,57.959462691587596,176.00490694973033,103.59892395105332,133.23499431896212,161.71295938724558,65.23067093234837,91.50934388074596,157.10472475738646,252.65527487340833,261.94509412485166,90.92902391240433,110.92094337772203,88.07532378622635,371.08980538503516,59.96301678309468,47.61983375813002,63.488854802884646,51.584813234167086,47.03942141500648,109.18453189227453,75.33127304832392,96.32822551147854,281.7694386555007,95.71126092276229,80.16396807851352,290.8967190137892,295.777638464501,90.90604218631366,122.55289850166204,80.39562146443673,89.45708546982536,161.2141540075501,53.406993576071876,67.3148215326333,97.9233588663907,53.67332431696998,216.48723276978535,97.42933631249173,54.42153954480331,50.007980221454645,212.93111507676346,144.94911345736907,203.40699294328874,255.06957848470918,74.77323654117751,134.20530259550324,104.65654498169658,44.52477288633578,90.06052138467058,150.07799969567827,126.81490540247215,64.21944848625057,55.699458558307484,153.93317383903266,79.37170253244722,119.91111890604859,46.97343408618394,59.20302349653778,79.42542943226505,132.76386823792183,80.26241003579186,107.13833211877554,83.71762458671708,159.70713198181463,106.79988468392709,296.443373926413,79.90882954783746,102.3169682163947,33.82804088158507,91.05716312173385,140.5472970459531,141.7995395470902,75.83480827723328,24.225881652910157,74.69620457209533,71.73828367582044,132.2958977022207,42.85636472005985,151.53599444579214,182.18622641330307,85.47027413322833,167.84889963267386,81.561234962794,55.03399800214709,306.7866539598924,72.67212450740328,256.8296615858787,195.81560636170585,129.49758931786323,143.26472818691838,83.40510971600803,88.370504767859,130.95434781872115,32.159423967911124,68.43321966022418,106.2013032308643,98.31056486666824,72.345987895039,110.96995084477983,624.6676903101526,69.95979591872299,109.16483961987812,65.02244416026821,47.196360477117956,65.22498139232016,108.9009708712865,201.88734660243642,74.68743432632309,89.84470216124396,73.07888618185477,95.00831788919665,77.45878247086468,49.44155740347958,112.8313001557994,170.24679157654535,62.8625875026289,214.8265126418726,108.71542624220176,218.8295595587652,151.04469635165995,96.63076126863214,42.66966265026828,133.32227634801285,71.53218618945084,115.39844929165645,245.05012912804273,131.27096347105388,203.00778657464505,203.42208360283453,153.87308837617812,101.60771429462113,198.97335606084388,150.08087288908084,61.963720252987216,77.0426953673481,97.68465358434148,93.83269704951238,32.38355743249047,177.17710525479947,25.480228608640104,61.22829128941911,100.32197498171067,151.5800459104329,33.75964939814914,302.06338090594363,148.52906920997776,255.231453235459,112.5313975542215,78.54453778716906,356.57926551885294,108.60434672243453,82.94187618981923,85.44178916837714,69.80350775708459,166.7127663152327,590.597739765839,89.4021829545595,126.0934453816542,46.267293703391864,30.350855609118693,172.27521760574191,52.52397588981375,75.92408027959678,221.1411872496737,62.5315312822275,122.48613984210365,72.89301604044644,47.7326119960967,143.74253634579262,76.46123693004978,87.14467958695279,134.66204082859753,148.86589380824498,61.1907083606283,62.691218204100586,57.02559484367406,91.6882134796017,78.46766707275462,133.9889045683884,114.73068545582474,201.96914531983103,73.75656877230453,42.54719023552294,151.32941997011608,115.87767225923102,97.64341234631725,140.73178062834305,91.25122746256659,99.1222213751019,205.65163452200684,220.72901286775635,139.95469781576915,106.18432002185925,92.10605948285779,79.18156586469627,153.94319317661402,58.315067703886584,47.13549467641625,101.95897052251273,194.56400908413656,60.52924182066296,95.29293446591508,102.14528075801249,134.3304273636699,119.23732110442096,67.02452729638317,47.12615285209227,110.08787585085936,78.50724822065749,139.72007474965181,63.461327817598615,73.86232371653288,94.87175276035065,51.405292476271185,81.95288978589247,223.08996300596223,226.4523187404194,70.24223403866897,129.94255506049018,138.71924496442583,81.98352607981936,138.25576914721344,84.98439116083436,55.06582756487391,88.49024973043778,109.23447502215058,150.95182090264922,84.43812289820809,33.06888483692718,40.45247478124627,81.34885941383698,132.74652890460348,144.390661837634,559.1241435532854,61.30374942210474,109.94298444450283,150.6951822307159,235.09390406807603,61.14761299248309,107.5693300517677,285.2181081498833,137.79090677706816,317.3313256317272,86.18180076536481,95.82635875079498,81.72905005265129,96.43973040998004,76.34962633300705,68.07588034418535,198.54471448555347,44.24304301791513,194.16975421994132,100.7902406874867,236.64249622566692,104.22807397008586,69.31949614943835,255.80974069456568,83.167536833751,478.4697378637558,116.49095376650959,194.4829037698425,111.50159722973514,178.18660359171324,46.03423462791264,220.7167056512935,88.66981437312128,95.46320694688835,112.21171082297458,173.14012805363322,110.4633121299462,28.675218283652367,59.03237533558804,77.63104044780803,216.08558731244412,197.91021193169658,65.81317395672332,90.70640526296783,339.47597066537674,123.1669391429756,51.36764678641548,93.14937858008031,96.4754805973346,99.46149305308877,183.50494906668823,31.41772824063838,93.51587955419556,103.14429875500811,145.54828040150633,54.97728413247315,39.32560702305419,158.33826375294902,114.15692330646203,91.3151009200614,76.72400749970045,68.47678173124322,162.3993212776488,105.61688763841536,82.810724529451,54.20059765980436,60.791162621897676,69.5256259389558,132.97843988639698,78.6569323589656,111.89324425179494,84.73516832038268,96.29401299932623,178.89599528923358,323.77383679117656,81.70501146148777,52.56549227321827,299.8456092635616,66.1083820588888,67.11425244781195,61.24087705679813,292.34958290188047,152.5652450989108,108.82490683323489,62.25999595889623,42.46692434717559,194.89023256835057,199.11507108258945,112.79515182993418,59.84458573710951,67.1808438950701,55.433873099210324,72.8658039704047,78.54283113787459,84.08739866730711,88.70061229945094,136.64019598942767,71.54495439272185,118.86266780963062,93.45457023742887,155.29000174034726,22.824533361508184,39.07498560911198,116.31347278988302,68.79766111179043,97.1994707091008,68.36946280429744,299.24528421322594,103.19105701915385,68.7158979753118,76.49711885864173,65.90318971111812,90.32398746621165,159.41078380886196,83.14886039408394,53.51719951709888,98.15490322339164,85.85669596771713,328.76352482432094,147.59938538595708,109.29518904515571,111.45954188936292,636.5698835930948,69.04760888681382,113.90172275142268,463.1425001876286,253.00400033285015,81.58269546683792,34.72861866118333,72.55496787966798,47.75256842887283,112.9173983053562,213.78846176781485,165.8883568133252,103.32367033852776,52.16661317307796,35.91750255787124,267.53536226186037,46.06354608109272,89.95070933201801,86.4498941307912,46.13285321534675,51.50023809207272,70.44437726281545,71.65876859217774,147.69147718110918,122.96375935948066,42.92875549695118,87.2804727902442,107.55269201570023,176.04021528398923,139.77434983591885,110.19116972988073,37.387681753382786,89.4095754787384,54.791260303951496,66.0398215401605,89.76717924994654,104.83724129394385,93.28305040003468,113.32063920618639,93.31106224720963,57.49953595829507,74.53195482409582,67.42356413832744,137.33502804562897,64.86476258868753,201.62637070217468,190.4522654219278,45.41879541337755,31.475520575476953,28.639434667031157,107.19916982270809,105.04704463308438,90.743676162982,104.09211234981899,79.2673719102156,90.0985393975127,234.68202724796964,68.57050314247621,72.47581612092006,55.435331554869876,46.667398923894766,145.68163310677124,53.917767099898825,122.56804652422277,51.009501919490056,167.21030510441489,72.27745852875597,79.46411088490537,60.50547810262148,60.09078200289057,224.27211518935957,57.00249878315785,115.71202705338423,179.45215919501743,38.493910956184436,280.9300485371258,71.21307527863816,118.03067692029337,115.57398420438199,352.4806541050852,60.947606095951066,30.661328720144287,179.0534540282772,271.3675617615368,90.20233271515347,351.03804745127525,46.30819116275097,103.66353647979287,169.74655272303198,104.34684943039952,142.68596624170488,39.06419128407535,41.572301908676394,110.69140398305733,262.12456474283937,214.67585313626387,289.52388565908484,58.680346958138216,96.44807192374824,74.12274552690998,76.73864865734764,167.63148851600158,155.06178702667466,209.9119756218451,160.98474650273252,176.4305141197859,122.12104105280763,171.2214594048444,77.47697595848082,108.62799557902085,76.46823007944482,316.9830149589925,60.086566065518646,90.37063096371911,46.598113251217505,92.86499918799052,64.96060907995512,89.56922463303059,74.43406222462646,88.74073490946184,120.41742879093982,36.12006641521568,95.87464178439635,76.35857973391819,88.24781800614255,224.13061443183184,97.42568547916655,62.23663763920159,101.31871450748604,275.5340562565935,224.90157082521532,67.63926007174948,155.07818019878948,26.269051357100388,75.29592333381582,127.87130455658092,87.09150274620691,153.1697704457492,63.7257788766769,73.69890852645511,85.7751062147288,118.34570753664147,107.45846232395446,66.40807747368142,43.54491375542625,254.90176700097936,420.7612321530984,100.35887202645104,92.30567382227724,138.35973708179384,160.86125127270608,127.21006485630798,456.4213512979633,85.7327679615392,56.085063414104766,73.15930117365718,69.09482909931118,151.4744672074361,118.34007443045303,68.08258720490898,147.288783243574,66.63586321105467,138.78314343751,37.659856988580984,281.4144648040383,110.14642620355163,86.08503041851743,248.62088729976116,61.969338521800836,114.43377810377525,252.3056648005282,118.12984215476541,63.960867201754226,59.82912304208678,140.0872413236803,308.34616361158015,121.6675037964533,79.02589871389688,212.17961719977959,70.74260147322832,161.45138828480876,295.01404732101764,234.37181417997044,136.98812237647903,213.51651505788837,95.1205910215799,32.243087776346485,66.02151460789993,696.5227586749335,106.19833995184362,115.07768080876599,83.09359622938496,70.0585657355695,80.65799147694143,58.55516004697795,181.25725683296503,71.67527618978124,56.71072708151358,37.164245635525376,35.55907903933763,77.31874589281134,91.33866429366886,185.65414748644457,40.02091476704985,464.3232179855684,181.74607184495218,190.82858572825535,102.77762418631453,64.95433522363413,143.6909189809123,106.75280387918677,113.77165882772336,356.20830129192404,66.2021389801272,122.69367300360679,160.54441572093464,73.14847151445966,65.82326224565274,273.1470162132097,73.98007315545901,93.22595272287039,129.42861946400902,63.07015461561997,93.88977964830998,112.0234946133748,106.8702404275925,119.67603656305747,104.83714457858123,70.99494696721581,111.7939442106062,68.58786857677124,129.01088644209966,104.36103675560899,181.53969364795722,321.25810127656246,186.66867028630213,69.19630066672703,325.90051945869374,53.30805985771765,129.3501620380342,142.43462816224385,104.32267346417912,505.7998785554886,62.47259099756368,76.46856467629675,91.39517544670991,94.30190172172362,122.53845896377337,124.79277181269684,99.93604742897587,292.95060514994003,50.216549813811504,129.28372026356405,75.0471941693978,93.66826852691185,57.97685524755143,216.1870664873644,57.19209781351789,176.09230131376535,102.72549555324719,1196.0963967868602,63.840837201543636,59.84275282730351,75.15110937597967,96.27222983164238,113.12372442743109,209.90358861224428,61.517422655538155,185.03303137307498,151.77743537064669,130.4669174323678,83.12584702278956,101.91762049309071,75.9913464276274,136.16008033755315,51.19556529628801,247.20785119674463,189.4094093587861,69.73402182154172,44.76422935079748,173.6692978061741,36.980683732869466,59.11166303277631,96.34486094441685,68.44399855995138,233.52009727994238,64.143010568566,74.38946624791693,38.94026373965589,97.37672263414227,57.89243795326605,56.67427381340326,100.9447907933739,83.30800879439275,153.2758705615164,114.49278952736411,93.25946544690231,74.52272196433876,57.48036250839428,173.53724599742102,82.91201925860231,175.23413136899882,150.7250694600138,28.35679920559121,103.77815517074764,104.71580379131412,37.75101245604266,190.11006515829985,107.93937915904522,50.588350784089286,74.73179030664558,49.327284338254294,67.61647583700564,84.22827234387852,330.97551513692173,52.547690765775585,211.98256541791642,93.98557765078272,88.02700403196528,115.05797044664364,47.07711001087344,111.4714888160092,90.51954620917915,265.37744744528106,127.79429450286992,198.2096697170954,85.00025971400318,84.86232455996944,106.69672805839447,187.98847920596438,145.10099735369892,540.2936892939342,107.58158867543457,346.2449149647345,120.64459913072507,160.07751952483395,277.44687990358847,61.64775261184205,56.26211744295835,81.84382433956115,79.97873458487861,59.70857024162018,305.61355650266796,116.07486996025258,78.51108111971084,147.3960980487753,204.25346422177626,94.30450582675002,79.2203079582372,193.1369524119948,63.95452334950518,118.50766798917695,67.67150824906439,93.62596444137539,57.68976268955445,119.2191161837256,47.32310952558136,130.0534941064289,57.35463792944522,100.49708407131803,82.84745731126968,241.0908285982848,93.99763557731316,88.31238408730212,133.37768303807132,181.772789137422,112.62028000435284,72.96960471823388,255.19700520951505,130.86624181009006,32.9494762068144,53.62447255690965,57.641740131669614,69.19523217978751,253.98497635006635,300.5258868257493,151.31570513204673,42.32394145579085,34.118469326083144,122.81129733899022,47.4226451637844,199.15058179970646,117.15140361163758,52.60493704427108,171.31742253160732,37.25042422395524,135.69789995001685,92.23638344585852,87.83421372123327,96.65539075906888,90.09560636416926,91.12604199994593,55.97852332881592,67.68807411198698,48.35604516110163,97.5674306809763,94.10706938698912,389.7452719314886,53.12757392176212,133.3274825143546,77.99110666054524,168.8790029006337,131.58376647622322,74.54658714366826,132.44607358632442,477.93678867866674,89.50010889838896,108.60344340294054,97.11776765881572,99.4395225626858,49.97292087387949,91.23947479862362,93.68970717364253,704.1910774969034,229.5258323002821,126.09054657766951,58.31065420732025,45.41383751643536,95.62233130020427,135.08731909871733,503.046132057072,120.36224478737235,73.75150241754719,61.64487225715599,210.7009878053322,183.22709708843843,89.73675010062196,105.21647049860739,194.7789853710948,90.12077355520795,106.13476615164372,145.9963928418853,110.91217160840736,223.3227344144373,147.6784006761534,118.09451148435383,41.10836088876815,152.03263351669196,149.817720877807,127.35908571656549,99.93085798989061,293.59859639133094,89.42823507654929,150.7543762769681,200.14139095511112,98.7177616558378,45.65137702455966,85.82761118971685,303.79338238138104,28.793403120205372,105.82146394637212,303.44695476425693,194.51521436901575,106.90380848734473,163.9434793744939,73.85274274992972,48.362205719914115,84.94638627687172,49.036933356936245,52.90581914855855,168.07916053223232,48.566528355485794,366.64451016566557,99.24657700693592,102.00051473943695,89.57660968168442,76.09429170308505,45.51871473782596,142.91174426109848,51.68430557580472,52.88653758183389,107.9203683469576,88.61101427525759,162.37747970531336,44.38818326672978,236.66868143936173,58.27051393143606,96.55330340293892,203.07628360183443,249.45626027911698,73.76844892497654,84.45144160379814,61.30307577029987,119.26037191746563,78.35813792123363,138.1012213336374,175.76110462700638,94.55621825481151,52.85129931119333,50.542906673034835,94.15780754968557,156.70268986244065,304.83358137031934,104.61315337822488,106.44241280172383,134.8769092087987,27.30882249039332,152.3742074786807,178.51728953967523,388.7051535495183,62.522357366620405,82.00823353179953,60.37200848184194,81.75131356192801,195.8749453696567,97.80072706377857,74.87784779798896,253.88621879366713,309.19672804914586,141.2972164173439,59.34109011293232,48.37246110503364,70.71040538142688,153.95263775331804,175.85992064227872,106.00400745364557,67.50670273043764,106.65997386660014,350.8868559258561,71.05612841617418,96.6452114885188,48.42691665596217,120.95569143877215,127.23271337501495,251.5193454588452,75.72246584416696,164.53106892438296,220.86024811609713,131.73170431522186,286.7224591057991,116.06969156660377,343.433151479291,174.66749961745202,46.64024037250078,119.72909641912082,112.52365701219344,132.0404498164746,124.72892778327129,371.38872071729423,84.71901405302054,102.82898494142002,164.72867317118707,49.224928685240755,105.37549451622662,140.34733581356411,117.83417083989534,56.471593012333216,175.1366123850231,81.74660024001678,72.26022743644701,188.1387131479501,134.63375688515072,94.99221345746405,78.83978582906208,125.57849619815578,69.64147905373629,88.33161317639863,149.93397766851322,74.36836482870217,73.83446721410004,65.01118624129143,159.95207930536992,44.4866868672775,139.84272692242263,125.51088847651747,197.06788760378296,89.69435548228655,96.05864676688441,107.4125358906728,162.93868371694424,100.10038256959406,47.32440530932285,79.54985018198776,60.16218786077989,83.98002277009385,46.758616887287864,411.56801388288216,63.67757500468622,48.86324033334109,261.6929457567424,242.64558257292052,88.82816394591596,84.9229651564078,72.84711452155356,162.87621165427393,64.01242659887342,830.497281414691,169.04482065429934,243.7869792544182,73.75108221193244,137.62706854554426,30.06961613459462,354.8038134747186,88.63284177295304,104.04863737038903,74.14643120714268,164.1461312497244,417.07727724393794,89.56141450873892,59.1170902547655,120.50382311394523,165.86390890808613,69.35912172689787,119.5356484270852,123.03499031885531,131.44347783909822,97.9194253762313,41.49967730919457,62.58291512916583,57.92301179401752,173.3825727886451,23.47390045757838,79.1348389654298,65.80077155230501,104.53675709804124,136.7501883772913,296.46704672196165,655.6889544015984,82.20446427118604,108.13036784517631,110.74284457149314,101.41301292222323,109.09936277271308,30.0833020418544,242.2741795485601,95.72889123575784,130.91994464102694,60.69283533972803,975.4263618371501,85.14781018466711,203.39780485588165,233.19138380491702,66.3076319153917,201.18773434678636,87.17780026932239,84.55780542095107,79.02749187111024,49.64516488399201,125.50230948371428,175.3460825327538,146.3414429586554,121.71213233713694,173.09784519334977,215.82160766088958,34.73133921142545,161.1649513316386,154.46410975424465,76.69884563020078,168.67786270959306,155.8752163185114,73.9388946725296,108.02070684829427,242.02666213029653,64.70937737020863,114.87546438917987,126.55523421074656,108.13808713418614,329.41020488892366,116.1233492887451,48.21117305152503,95.40572291161222,92.07725000778969,118.47866519300628,118.3087034712259,62.71618659910658,38.63135699254729,76.3889968770624,65.5604693925899,70.37404200943159,104.95211707271125,63.89467011022943,56.38015398357428,55.45577341459446,205.36356312315283,91.14870998065194,43.846796553183275,153.12390755940285,145.12959292631047,63.8565796986083,133.62987946084002,120.85630035850832,299.9373061915689,85.69286922902084,102.47490937657156,75.86037606864117,134.76264671164807,45.073143034092624,82.54175314562951,203.03522504242758,53.51924648121741,96.1355465709395,92.14259126126088,322.37180474033426,198.11789012339202,92.53223219313092,118.90301934845374,161.58089726323,64.9296133469145,147.4035017128688,54.13558604233381,125.27476541737377,62.25128734099247,68.69766383065424,37.18693555199615,73.30949136332615,110.5384409031439,111.54332045084274,99.70298425178736,156.59092351307714,58.17379781603079,127.58196419115126,164.08332492914846,208.61677231532195,372.38529308341555,53.86954643024105,35.26510232094853,123.17139495542335,168.52951666565258,271.491651816796,124.31672535043536,147.01741396696647,293.15597348747565,95.0898172830573,59.46781822087784,154.2048422646082,64.92368974916988,104.99300319259889,56.9247210035094,73.66240241018744,91.97168180312845,44.257218114988724,110.9416473501211,77.00875751030338,209.59366705310197,70.37674765774133,225.8310169716051,47.572924134195446,59.318376276508225,101.29565684817747,203.74392097163027,59.48898041705805,92.41106276500986,137.55374682076246,154.0298724812479,130.41037640804046,249.04490482478988,60.74315603296678,36.10442611291247,147.91111609051302,97.26386769028069,106.89443304802782,64.72478451336842,62.16385263005966,89.87401247614712,57.45569572449443,59.83499386097577,100.57071082997149,53.43621262501208,130.04362367850777,104.60216092302176,115.24534641808803,95.05612584883023,154.816855149479,63.63585177578439,253.49695626123338,129.16703824662227,35.5605101738182,419.4707604766641,191.40917560758805,135.3204587704802,49.43020626285878,119.30608499393935,38.66958402244104,145.45133138204463,303.2804063339675,81.65757261161994,170.20846708040932,231.2448264048303,74.51986567682754,66.24315217805643,105.16566739452108,184.3392776199474,41.33108365213255,131.28305119464244,87.36405257313562,121.05658463327221,195.44851304428823,321.3148422538227,77.61410753270708,92.12924806684504,92.37965945740355,93.25964008155671,295.0562886758743,141.26882612433332,122.994449706995,79.16330646616825,118.81576675369706,201.06896011191688,110.2801722175182,109.22571674032292,62.69087010263332,63.936485193671984,299.3975571623191,111.33597654571821,68.72116907398119,64.58409427085923,330.2243059783148,192.45438390513462,49.37209872939663,65.82505258156108,82.49720912910684,145.71698749091968,1317.2857043687452,177.19172984648955,61.69152837256181,195.53150405974324,58.927335972606585,61.31458167919799,121.79943884897759,241.7813041688881,152.2153137920417,117.19804913520676,35.35087149321035,147.30205936282493,43.87454770959517,168.57213756317748,128.06205730483478,80.96817201032829,64.46306435026463,94.01628812088975,208.43874896381385,183.54410281061647,148.1565099633445,398.05431984103774,202.1416117044262,83.26379581407555,102.38427522330473,132.3604072685429,256.0203896779454,239.7012932212785,222.20394632192682,72.95599292504002,115.62480964091924,179.79626069268852,82.40741139599426,71.24739796464677,70.90863632806096,36.94779747783208,45.46958276540541,104.64997766938856,62.265699021816445,287.81860537862036,131.71657383476864,186.72529613069722,85.10968439296049,109.37263452901783,179.93251220084517,45.24505571051983,300.40552685137146,59.200614667668326,133.67784700515924,143.94919010433713,142.50175789685358,240.1777738394976,74.8021116913792,126.06214117083984,57.1360448368797,148.83699042129678,167.9991089644902,125.51815102385585,175.5096299377765,120.42057005375456,85.69463156965807,102.61162849224209,99.88186662612281,89.34021488229943,143.23955483163905,110.92700335064362,91.77034124274232,89.76900342785011,68.07298192292932,261.8704918745785,80.12403237261654,116.8977757933679,155.02297843970578,56.95780479033994,115.83749540960763,121.04323762182815,68.812531574217,154.79790979869225,73.47234872849201,67.49870226536184,416.70826572957645,82.40116577551734,75.16287028529214,83.5446431918409,67.41024879715002,81.8778482377786,205.75426187098057,175.6002356341291,76.16331644902168,61.485636902275814,227.1832438413397,63.645264408409176,103.43294919828891,55.40548864226105,255.44700763017647,71.19833135264005,79.15159206441952,436.00929037211966,323.2445430801442,94.65561762128804,44.66838924941373,71.44363447758651,131.17939913121333,87.02480459234519,47.278009137395046,195.00399914915286,65.66850763695504,105.90074887895435,99.12190031598034,71.35707944926843,59.71841384230439,139.44949529050444,197.13004126987892,39.17117163878717,37.98444886617123,97.69568420924136,80.7206420008548,78.11272980635479,168.25420758562095,57.61941748336843,63.77475563265851,98.95327425418472,121.48254645281311,124.9600421810636,189.1175148214928,97.06640227623696,208.60108422473797,83.2063677995611,81.13271778160288,272.517349897704,83.98865281268719,94.4421711643909,163.69390060732607,235.6256586176698,74.5874654794378,87.25856165721628,431.4072960099368,62.075426054359,164.4469674102504,102.87130192074659,315.80573709814837,511.73656473530735,119.31354566654181,356.9754316434488,141.69547974522123,74.49785974056414,65.10605799901502,42.509187148434414,71.25073626564301,101.08853844874963,60.30607881637606,73.48211509890558,230.0205656503744,391.53824392448837,39.86223478754511,123.46761808367133,225.02637655064206,157.2151519790213,76.53898942933623,125.54796840004222,569.4538489521699,146.4308176974081,66.07342509177006,56.11538873480467,49.24379869093602,244.37100070136722,98.92544669882852,293.8116330968877,57.37729356778354,218.5664995804368,92.67416660895566,205.64588614568015,75.17827741956525,108.69498627638966,90.00654945616812,424.67195331022907,166.6233069722538,421.9506379753167,131.25373202361519,77.22060852214338,135.48208614885235,103.42465514229518,25.67527945782228,66.1496591108498,142.3314695702586,254.27503384458166,53.43108467229521,78.17553820440045,86.57727739745941,57.598671759375115,88.73667782659821,126.96137250095947,127.20873776664976,56.2689430447676,107.69648067846425,80.86240075560727,195.38355905533746,197.0213580236067,56.098677482304886,160.85051601865615,97.45882127555716,83.35575553974492,72.49909296986438,87.44868576187851,140.04946645460143,58.96519055162638,26.04156334036639,146.32899082902492,63.58542903780166,126.52375295787309,164.09323200656175,90.4164135124437,44.212308643783764,94.8694475367127,79.56290846121064,76.4036417337359,58.791147447997695,145.65378379288956,103.42928689845819,135.19082582126103,128.6411490561582,89.09352635740919,62.906797457151086,64.62140749853388,97.41534835818699,161.36193837506391,112.46607257272963,80.11415968139053,35.5958244018391,104.72765430123845,204.12213551639292,160.05394686789387,103.46034894867022,122.19136550599357,221.83423995609905,62.921354638330854,88.74721400596862,241.47926119490168,57.21429922922461,99.02852616090773,136.48522198954157,73.29024840860431,167.12608702315958,63.97851823856924,65.13896265441406,115.72006229019622,168.406773089779,152.11047958708477,104.6425816288573,56.0154101274218,122.41489512223416,140.35176620534583,105.04478975389547,56.23735338194453,108.3277026654888,97.87023762877611,91.3913976068652,120.59337481654242,77.35345106257641,99.22136875565486,47.04531448022465,118.95020858356482,176.8326463035356,53.48610692462308,51.226296945391795,131.97222461046474,57.99960005488585,78.0840560603673,28.11775946284405,93.63511124968238,55.694532726871564,136.03282840073103,89.51863572014771,129.62805186945522,72.81209176910704,44.87778705526253,182.06937387720873,108.95987773565874,65.7077892615874,142.78623659315468,41.36185754739726,60.13970030182787,223.06358066001604,52.97612702028799,118.59512081515955,127.6807580030993,58.50639601750999,120.94000881202349,60.32302913975724,71.09919590608098,58.52210952583933,370.67604055063634,128.99180250793012,89.97075442256202,74.52782005604577,111.09870575077659,122.64814906463653,103.54728961785875,50.882170252955575,145.47539324709274,114.05146724064959,62.45681897572178,74.73607841406132,122.35078181465697,57.25225674102167,55.91099044689682,129.47020644888894,116.0109584328351,144.8656237894649,262.19606305905927,33.06947474677431,117.02941704443722,146.9816785007694,64.23300250857906,62.54814256853957,78.20605185013778,231.07766672726106,77.27380409281959,236.22959163720972,70.79475288352982,53.0037538038113,231.28371358878687,166.59223065231902,79.77953315054093,102.856894032692,135.8814458729497,105.61046887089006,80.82565863209078,127.11861465535866,40.963702259917646,89.66711732746515,166.35692161075212,51.87193883430825,102.49018742957695,36.60909082094382,164.48442194651975,130.84589309685242,110.81476034411102,57.88234552233847,119.67371612307427,100.7451276313163,111.51523056465501,321.9865662939184,112.31014338324503,561.1899560017268,263.87671426962254,63.85646879239502,116.8426124741904,68.7408969129166,59.86202174364905,170.01595347443367,85.35296683197869,75.48565224181644,114.96115020200817,356.21861971352763,167.93823781639855,108.32600073181221,141.14473490938605,112.39332655473993,101.32059794419052,64.70785461291602,66.77751282757724,330.14833288309313,75.46331528541252,75.15859508351829,58.22499635738894,108.88801230661016,105.50793936817277,104.62548306329887,48.65320033188755,216.24914946090348,74.7502876875339,72.20942687825784,103.71402654422363,153.96372773367483,57.01479455523029,306.6377089269597,247.50488886868993,69.86128087965493,39.23391677083011,95.7936762021117,68.35122727759016,68.41967633446782,84.23230852470313,112.64722690457619,247.98814760751705,170.34203938798314,90.3423483172797,41.83113652201863,203.64398138000848,152.59600674551703,46.5323683926779,363.96036981843275,60.04328157484013,72.26632699778533,279.4552580224325,62.043804249956935,81.70018150852806,41.69260338028733,36.084194739133665,107.12513210857506,134.9672238547995,164.71808736394397,159.51510547566198,129.4863081034249,82.94035261285865,113.19497975080097,210.2399257623088,140.47092862203095,123.12358142563157,94.85920079316534,68.8588548615266,150.50621706055756,129.17527215477236,304.03958647517896,63.458246997311306,206.30364139400783,113.41772572586524,441.3019742589665,54.412401410804655,63.80759736391252,64.22182703007738,79.60723782496264,558.23558382266,68.21226360192219,52.48851577088043,55.2554618768618,109.1303136845262,83.43566029116325,106.74978895172683,149.15275082630862,68.39442864158292,56.17653674872704,147.76341129866177,127.26836794338075,176.295522607478,85.9905590116528,116.17140507999169,159.41376115950425,43.972652892077896,31.081181195511675,368.30176566227584,293.61867300655575,120.5310303947578,97.06791591075353,147.52682747887926,68.46496532632462,50.90992297588974,140.0093805756043,69.99736164074342,44.27449049396308,52.703199693267166,87.77545777924605,94.26801995478888,143.3524177599986,188.99323054817157,99.99047178104287,173.42470030900228,129.11321395315827,144.09933388016665,108.89744801077859,286.67683061338585,111.21012446969067,79.86463244064561,120.88135719309324,104.5203808933081,64.77045204509086,73.1348482716041,126.78826363694365,97.22607212440795,175.86814913001024,60.583478928302874,39.48334500643625,94.16034671598976,56.99478862976837,115.19150093903782,178.50121839174687,112.65347652992332,89.33642832431903,186.5386164130052,123.14913564960386,99.50044125326671,61.976008943130324,47.37554810049755,106.88091300048133,217.4942082380062,121.44035373082527,94.44042384031502,284.6461344654578,39.261121768803335,183.13443219304733,187.40283828181407,70.23979040683354,79.61354516656348,81.83965405638274,117.99920483228405,87.73549635907779,190.5530853738494,51.26559480210996,147.66361760364256,143.43712241145312,326.3086062437757,132.99069123618227,87.33764545943166,39.301828848561236,111.17998783443682,49.66514239386885,97.92936439473554,80.269404149323,113.52454958719422,48.25218582037225,53.18776795278341,282.01708933471076,78.75947552549933,178.71151808435627,78.18025388331473,103.56557017820727,64.58978090867997,156.08121276114105,105.59677447108979,147.86405526928039,35.94467495643056,88.08035344026354,149.05480053826986,111.25264973132987,168.74764761593582,114.02614305449292,123.74569158359937,47.496685096345885,409.01797202604126,86.42170751782544,123.25324792211471,118.61541016784756,53.062777843779834,87.0030718196663,277.5841139880047,142.0165984348888,117.01691346818649,116.3324949104097,150.63063620911282,324.170587101435,103.10458716452472,70.46622829748661,55.346656140982596,109.27617235370704,38.296866833407016,68.50761204850527,61.57828847161941,116.53849661695594,40.536035646558744,227.36643187861296,75.68898528947817,138.74344172140798,48.60917211262144,65.8474927435512,165.2756106772689,140.949651909203,109.42291924357394,56.0881743331079,107.69793974591649,47.20247478163172,105.10822023836856,120.96369753060755,104.36614817693695,66.02348280801313,97.8659126479066,87.71867017918454,34.8703324001569,346.8999403031056,127.92673289238923,80.41466213270603,74.01670770781439,66.84238637125604,161.45776506921578,112.58004738913714,221.6735409262342,40.76942009187314,265.29211607662023,169.44775160379805,56.820432034986986,216.34514860895206,109.77184825096276,81.11252264607884,176.59950140998558,55.21752309567277,230.13150764879177,92.79597483637109,48.427027323887174,129.2524591471526,323.8790275197617,122.19957133961768,39.38138524017155,744.2821771846218,272.9435503959733],"multiples_of_cash":[28.841524375449936,4.203184807170997,7.358900587107972,8.43465736247058,1.90063118858211,2.0938023141204263,6.0826652542481225,2.61349936434873,3.183552844963901,6.543803491936462,31.893084813559245,3.9724270784545572,7.915443267173313,4.881168734392573,3.9013981531347937,18.946684682869,3.0384455853592724,9.831386469185679,9.040006226623003,5.840060182571641,6.714083799007637,4.399000381048423,6.642225424926095,5.584826824994232,5.749395543272322,9.015082809863706,2.172648128682026,2.1889263650823536,10.126221294401569,15.234876094836663,7.681768828183618,4.204534024185489,6.675644702411034,4.529474642324453,6.13373606124784,7.907463924845207,33.94512280793582,4.79911434365293,9.60258081213578,4.00517104302397,9.544910842696067,3.326025307200231,4.220197942450896,2.9148735456801314,2.5476582044033855,3.537010627525995,3.0573842502984627,9.45951614195899,14.847644352645593,6.424402781103984,4.070652539210405,1.8893352558516916,7.746522349839017,6.3518949160753895,2.928298319009789,5.02599232308024,5.194442470704106,16.14412213832458,11.696351827005277,3.2213522348333647,14.55794043462449,3.2656684999189785,12.65259235091469,3.714172198538144,24.301990733238164,3.302605718963048,13.733515773669636,5.957347566819395,4.58808828726207,6.140487650879981,16.522504806739498,2.397995430358804,7.642395857781861,11.520099022091841,6.757242984897991,4.563983422219976,31.03183503214185,2.104525411750016,1.6782134073384392,4.483257805136301,2.0811946595690265,5.448219841423936,2.5607751937912093,26.188381239846372,5.305664939391732,5.58635245195933,3.599680353518496,6.443549706428125,2.3440126806578463,2.5680594291219854,2.469489163351063,2.678669691569648,4.212110100647722,4.117664332549841,5.115716861074563,5.524310510537078,6.72324083797642,8.244640581583068,9.385437205642118,25.201589240536006,6.233054636041417,6.1637715959084005,7.586733836264486,4.757833969315002,7.146569243151182,3.607962374746697,9.683983480938117,2.5045889383028674,41.73570941079079,9.461236702476556,2.706913768347678,4.829959246412697,3.3936120951460667,9.261327954313668,10.454559772790757,2.501133991067156,5.217701697940035,15.078727249773964,5.029217172584197,7.684218691622268,10.648125001400485,3.629013994413871,52.49536139369175,3.36667231485937,2.272701661273235,1.9684291557392621,4.873255824563379,31.39877530422919,8.635871924260627,19.958519443322842,4.424732052928108,9.500758432144703,11.8176028743596,4.165417539404472,2.390242526499953,3.61223457828777,8.037812252997362,8.498502041996009,4.504791388952187,11.793984173164215,12.314503659746912,4.958088985541092,9.006492745423634,6.581331694029209,5.638140456702154,5.532864416302817,24.34501413580789,12.682065122836557,14.701087589542574,9.225960775644177,20.531721195666968,6.472301268057795,5.067160713354617,29.366236868349308,9.162860932546389,8.242338172700938,3.9606193171227453,7.565684986905639,8.388250091908308,6.974230436928775,8.51295906944127,22.371430504965083,3.9400642627795945,6.061907601963558,5.9792967719691195,11.570267420477554,22.410684037894715,7.668128904481378,5.978571576411484,14.2963988680387,4.9120470135498095,4.209108725696028,2.6023383582900035,4.8431073196794525,10.267714416259443,2.931490234379502,40.18283874064147,1.0349228655879827,8.521700844717317,16.900260767082827,9.394845828767021,34.01296024258532,10.716660994424823,9.347827460014944,7.56705486523552,28.57504913661627,2.6242339532170247,4.515891451670829,9.823995537172257,3.3434377526991277,4.994409873453488,2.12880255889649,4.434759132866409,5.672528975841733,10.484236096527082,1.7536135532808836,3.001571438563803,6.233392882935561,8.481332807484598,3.0435450159202655,8.787438619376502,2.415537917352577,10.183592868358243,4.8425855556984905,6.35618615206663,4.347719338354014,2.802948070174347,6.4433673861990926,5.550766985152397,1.9201316779105897,22.993206030942044,9.56747774196286,10.419047171854702,7.284667513623646,8.069448868328369,12.168982912378398,4.167903486469819,4.019822302616007,10.833687525143167,5.683637875214974,21.837748170117536,24.206094252019884,8.290674281542199,7.947044353483576,15.722099085708596,6.495490108719766,7.185314668600378,4.991589154887078,7.998609854935654,5.696107837108875,5.226218995678576,5.3626264332568985,5.58715650153929,1.9250778382204803,8.186350383755927,2.9863870660898666,7.840212813092664,6.613914789298753,7.667562251455591,11.317824747935996,9.940182094328884,4.594545886429455,8.68878467144714,9.273862632398307,4.265263820623772,5.8012727336195065,4.365820455842858,3.6822338635981238,12.643902978134932,31.530602747650196,10.972310951054233,16.097945326943037,5.02546857085347,7.120593675585471,3.568155007510506,7.354748068207607,6.348521624515938,3.1443600382249666,4.551621806607496,25.509169161268897,8.036605787481639,11.140689321680656,3.9913729553945188,3.2557276217124325,3.5507234479450696,8.843195046998586,2.371542764040585,2.0459491657818814,6.64132011018194,7.093120286504718,4.835736239983373,14.331121206170467,6.052597768817675,3.9129832346530335,4.85214996101494,4.69841175459717,2.746522799238338,2.0590275578080837,6.251647622754024,17.10351597528144,8.95511887470243,60.479658227057215,20.535330473185287,5.580044575843428,3.7111578482086403,26.32568590772635,4.569582592620776,3.2293165246858058,5.964516465354021,2.942889573177115,3.728323582436301,3.08652349479444,15.000948443866198,2.88005469877933,8.206065997991594,2.6147218846095854,24.357543848249435,4.171039685771664,15.472619545057672,7.112200398797479,6.087006251674315,3.019947405657495,2.9345131078467244,2.482816495617973,13.171391145088817,7.309564891259543,6.054259839570029,4.452698693600248,3.8557505862454557,12.638274739623846,5.909797759602576,13.808360906667101,4.24015364781932,6.653026451993355,5.680535753949642,11.610646672947635,2.983131463602961,8.958708781168944,5.876046044284031,11.4158744763005,4.64237279457654,3.5216183467535975,8.623825485953335,2.9052763892399702,4.688570702959507,2.6289911604984773,7.085925244772708,2.745042560008109,7.62323547561721,8.114189900100879,10.201935552522361,4.339689869883336,2.9284443391886916,4.943237937227129,8.632684043813224,4.669700377293986,2.512663117676006,13.240935757161955,5.415456401382196,22.275641315672857,16.57719581715544,7.062823316356949,8.053906851496714,3.5750840344205845,25.99694430667555,6.816470989421765,3.2475088449448446,1.541223930033785,2.8398861371534423,5.2887186179564525,3.7794092146902094,2.006176460337058,7.873807528915149,3.3485971933901624,8.960601968537249,5.357853756881739,5.657534650045292,4.2725097011022015,6.870086666282408,8.69814017677877,10.198712767297344,28.912645276808217,6.788355030933147,10.838505832475528,4.6619689582180905,2.868529868490734,3.307211743681077,10.417147158484726,8.537771639347639,2.576753643058009,3.838106703544461,25.82895884376678,19.281072675358903,3.920562208018722,2.847290916309178,5.497864281409835,3.8640589416732145,5.257181369554748,3.4444262949312248,5.630539187731268,2.1710224089795527,3.452986114161668,15.09760049957759,4.406062976280326,9.655893362164944,7.272331161406762,11.054039424747648,4.150759132051716,9.347909076341885,5.7127933795651105,15.763298100715069,3.4127231798533653,5.184967310743888,38.243034735917746,2.2815443565117213,2.76749161324156,4.410386529175739,12.529895075078398,7.371572158531888,10.879758816544479,10.117015004489508,3.5074942981807573,6.085993836490191,2.8181576281342213,33.42280374821714,2.467219584687501,2.7474958820007283,5.764582290976447,4.365914168828086,6.497015124573383,9.635505246478836,13.935970618245177,4.4556777715791815,26.894472563276597,7.576566834091466,5.871810175431771,3.0916519288149718,5.47064518495088,5.0765858144021365,6.790566529118481,53.761702284416884,3.9510141431569212,2.116661760081972,8.155629426984454,6.38899345807804,7.044722248611044,6.351816325264868,13.15616468229313,2.891789673572434,8.76839004886875,3.29543771334703,4.857797029548307,2.3211537284281127,3.0226273971756514,8.343305294989996,10.049569496760242,2.7312355479558414,10.273303571806675,7.207585952949647,1.9640200438679078,4.6223318287044775,7.573892340677283,15.237199778893174,3.9591323179634177,10.145660107491803,14.97592383499443,16.893389082620363,6.404061141762711,9.611935511209364,10.365088281400515,5.728358233040522,5.8581826704420985,4.850982935213312,9.379038452575855,10.366025817112583,15.021388245455224,11.686778423371141,4.179402327561282,4.915378005409292,9.818108418120874,10.380449110036217,13.203571216432797,5.825278833827415,9.179105747889144,2.5389469054628013,8.509662681792433,6.124546550364438,4.33949879798764,1.3844342265305414,2.61017517306252,5.404791874826694,4.867334011879143,4.758329127160244,3.7794872357646603,11.591447744356701,3.217188776390312,18.1886418660978,8.378217801318668,7.563647073813685,14.090113178543865,2.877840208414044,2.012916185378552,14.163095425561794,8.302929696954603,10.213126694554681,5.199748195006789,2.479482179478333,3.052860500164099,3.2756949036526097,12.538591873794955,7.527044465386457,8.746292503581746,10.884048437676094,5.243376877665145,1.8783387778194163,13.206646054015932,23.301014243473183,10.231907294211227,6.765023391495226,15.637580019750276,14.244442763763074,14.931212855064977,4.49319462533397,3.28027885208636,11.049423777889649,2.3406977353429563,6.572014337551992,3.959115626843024,13.705482077890727,4.696459119090091,4.273042167295067,19.67167362666415,13.131318209590392,10.525840303735633,7.923222046493692,7.029696077256123,7.749999546336017,6.871835266791493,5.773381114919158,4.8188126329980765,10.997559635647896,4.538353043724304,3.2151031218391153,8.52671451842069,8.557886216411589,7.067862298984022,7.741096916728194,9.893062103320815,5.74867144606118,2.8718254349883257,3.0041643659089363,9.677890940494686,2.54829464157046,2.107220656646108,3.673299329247578,42.35485419512887,5.617649172120557,11.04169449471115,12.02851213218354,3.4034573150464777,4.545807929602467,3.5989916580852817,3.4952444395041167,6.0999183952430815,4.671343014579892,2.2931075804957657,2.532889534683852,4.346455782338815,20.582505981442118,9.354508478977614,3.4964773608788122,6.226585938304968,4.759865342448547,5.440303504343715,2.2106268331993837,17.986882969549146,4.916263110995578,12.058227009671496,3.316399299842663,4.319738828076309,4.842035700311287,11.822535977788457,4.891108140451658,3.170496329877371,41.328600179557526,6.955022782124903,3.9790993834685966,4.146456958770726,3.7900393229369884,4.531841950565651,5.448393854245773,20.488639568656154,6.093206951617967,3.479898491968086,2.7509137943890343,2.5852355048556177,6.303975807937419,17.22623944202235,5.685363243889599,34.07245916036347,12.68491406329788,5.614317770354933,10.73468366880774,5.361461602020298,9.111602204658375,6.20689176715996,6.0300546085544875,2.6560915697930394,2.8314436869804367,7.217913302557206,8.687186024312002,9.40511517088262,4.8926544090927,4.661769318761657,17.2948819015212,15.04357740527439,5.3466992596543985,2.887189790515462,4.801775904885147,5.304473729853324,23.993574777280767,16.926723685552425,15.285274029761869,8.991860438131727,5.330854434791212,6.79670392173514,6.115561416405938,17.82586591761387,5.914094919095989,3.8302263382077104,3.8444071869478753,11.499674702695023,7.374197585814395,2.093805596308065,6.283394553244955,6.736780468071318,3.650370616484543,5.273515068513215,19.00737746020503,5.6028785431318955,3.6765417147149853,4.215604954318548,2.6690270949170727,7.678010873010058,10.67566656900653,9.555440757863552,7.321799409835902,8.409656499266047,8.82316756736845,4.570309025414917,12.561805507958518,3.8132455675306014,9.921505652029653,4.497458150254884,2.7734039617010042,14.228825521032052,11.880181321852575,6.0641755190955235,19.386552299515632,6.498826167449181,5.0782113819048,3.0175013015931738,6.208321373814835,4.413868815369004,2.0314417756727434,3.1602288458382666,3.4644805469579962,3.0109719373916244,8.8237944774391,5.500511513299552,14.15297410367682,2.4454219066525953,7.71095903967582,2.384546848204692,4.711600072003286,14.777385519606387,7.62388096330374,4.366738801644341,2.9850198117181295,8.44933493540199,3.5184175828578033,16.323555779232137,5.268497852216139,4.143355302982038,2.48813339124917,9.084936774377839,5.056828598222661,2.5214200567481786,1.5033581882086133,3.8172875196781577,11.010473659530733,12.78820042885802,3.837563660019678,8.079857597490225,6.262135281705091,2.547788127612162,8.709181914739254,2.8474627548378044,6.037397309088129,4.68624758957865,6.436047607968536,2.9648119915868643,2.358525836608248,3.7441484178326703,9.005144921643014,2.611119324479583,3.695493628311486,8.491567666586434,7.977518348523149,5.907010526002906,11.160639901437525,5.660626802411829,26.436424966471936,8.59810211164899,7.68425153533662,3.4167019964197776,4.367967750688464,4.805330526977673,21.830388632269887,1.986211087865038,6.705123954681484,3.585378624796782,12.968048718866836,4.964854539209745,4.884212282371153,9.383988436242486,6.155491788591721,9.193364382655982,3.667308522555953,3.95954848345145,5.471144720699407,12.342555002872327,22.730946315809305,6.554221891394663,20.34872664261619,5.694800701278181,9.727197248739419,2.799615628061546,3.9833298407405002,9.334377682286823,8.214536234374574,2.5129069877974377,66.15151791218611,8.975881704295675,10.008592983557614,7.8095643127741905,9.398458143590828,21.79886150475547,5.9181166759576715,2.99085882937094,11.112562128904742,14.116730054235607,3.88188604110807,2.745331728612028,2.556694952881651,14.73410519308425,12.973490869641969,14.642480159115172,18.094423072373434,1.7511921667957158,4.136040323254111,3.024540692220442,2.7264045827235037,3.413011275242167,2.1713246058627855,4.113138017666153,3.1314756713583543,2.3226925044194093,8.58163333009065,10.129271308682782,8.669964941716565,14.00399335158336,3.6973449351851593,4.270953611236978,11.621526630019982,2.4004048280960313,10.44123531678576,2.946395682192953,21.613025563757645,4.685850922280503,6.674540977848086,8.602014296062286,5.603911390189479,3.5856768724423596,7.461899768841562,19.722179478570986,3.0225508264008636,3.104414966034037,11.075118396687683,6.898571179514478,2.7658845323584136,18.095398710066398,14.075425762374248,10.146530313247686,2.010449434112452,1.9671541470371572,7.30898045998018,9.777953105024832,31.58154571924132,5.817454290303493,4.299598244412882,7.365602650664264,3.653054504415819,3.431207696077106,45.171523396284044,10.360211849768511,4.701137731199612,17.523110627382774,7.964607132771891,7.454169415978682,5.82189819484958,5.551670372075336,18.06548763331527,12.621463689973666,2.6533557422686647,1.581662372997675,15.718446359786332,4.365596450719227,4.0586553434730215,18.49513362610656,16.838645348663785,15.919116870789535,24.595726190125234,4.89320550387581,6.25092067976252,7.644774217758403,18.10968221769986,12.337606253694966,13.283656988920605,9.390035822343275,11.738821030911677,2.7767231603890323,7.665325310322821,2.1851594987992535,3.5538598821888634,8.850592693330665,13.085333393365318,8.869742387566154,15.117339579139147,6.129916519403632,4.552806676463687,24.546466041768152,14.13155989823624,23.06525252944984,4.1642022878503235,6.259062937185649,33.64120424688025,15.814484404885125,3.891573295887923,12.059308470837228,5.119325827085708,5.464619912471582,7.024527284259888,4.1937871297844485,5.917958336513929,10.298441085935623,7.02770814861152,3.982472126266641,7.578296253914619,2.6945463717195794,6.6279398183000255,4.0727900907814565,2.9110136642508486,3.443095700367961,6.0123858302994595,28.266270014243013,8.890094585891756,1.2666882799833719,5.127458408583307,17.993348096266264,4.959757976719089,8.474344887066238,3.9457089450945646,25.88504241096816,12.270691092847281,13.862495177301836,5.281737146687577,4.267011207273329,4.364738859984455,16.371975662687248,3.2007799849025487,5.571207699490907,8.375268324548676,12.783374848912345,5.973842663910581,12.371872309956219,10.821271902358129,12.99227184429865,8.506339689417775,5.7919467904359685,7.7315220999623175,6.5613162325988625,5.0464086439165134,9.820987295783086,4.722710932984539,1.609919325305054,3.136692862519404,3.4377778328270114,6.190697753452081,2.3399068555541955,6.540401300112622,6.070681964526497,3.4057462573838393,5.174085586082212,6.4129626476764185,1.7222544861683315,11.393076351248661,2.570287673421073,7.634433938947751,10.360707634959041,8.554063568176764,3.0673449437816047,2.391490005283274,8.442016937117996,5.667197063636349,7.225902113730679,12.12730674484612,1.8753185689740992,3.4655025284245173,3.051293175134874,8.93940086202796,4.009417955712967,5.291132847260223,3.019142436737889,10.258954715672429,4.973404600174517,5.2098264541232915,4.334763539263647,2.615674483221022,2.1562940446501924,8.03480683841699,4.862398602543889,10.984466903854436,1.6985461950334482,26.435672222828256,9.075701613148091,5.678797241806337,4.818644170263813,9.714543327396836,3.7660997662435047,8.358854187622336,5.430983263963938,5.616578915796042,29.851535132849946,2.371733051159055,3.2444278245800957,6.0736815709156255,22.51990508069871,5.922402226306853,8.555547833559547,11.442716271693646,15.706205627670139,4.597981145450405,2.362991024558857,4.082392223863418,2.8541752619884955,8.091328325205161,6.50623196437176,2.6764044041955968,3.044033646370991,2.4359502176589465,26.338383039626596,3.0991197321937283,13.015632455149323,5.721907126436356,3.2550733133294707,8.776718779803318,5.225955964047432,4.186438061843133,7.432343919532648,3.6047361019704027,2.7541687186563544,7.539528641640861,4.484047261464764,1.7768558448203289,3.133342344654065,4.323464317453283,6.264720938975564,6.139733242603716,3.8943809348810867,12.801843358690364,6.234907057425661,28.624447656168336,5.3824216090190715,2.2560336213514898,8.077374355992632,8.270632789139794,2.847499068960265,8.385005250529042,16.723988180684348,3.9840916840816405,3.3578748579695987,8.867159544462572,3.4927339180052748,3.9206321057911815,11.312768232105928,1.6395491456758653,17.452202356396953,11.534157284468321,4.379867784762301,15.411789470197217,10.14551390148737,3.3640881151361515,8.564733372703822,10.87948157768263,2.2913066052064996,22.988879839931265,3.3676786213111978,5.670726404548122,9.031218387609032,8.849396857899999,21.251314472438295,48.452106097488404,7.922751487901309,4.630991375403907,12.337374229204363,4.680951198970486,18.436959417076967,33.60292861575276,45.264615813489996,5.34164304344279,11.199579079944215,4.597120435060573,9.4867818843127,4.127096087342379,2.2312715269858447,8.245675038816584,3.170646776222631,3.855048133519072,14.129648142144388,6.511978801777482,5.349416678648735,3.6437102506240695,7.227698390233436,4.083502597940814,5.692060336114478,2.647363363276712,5.253074168023574,2.765024930673559,7.781060841618853,7.010726054659576,2.4037500686422746,8.51501310529466,6.555133368565483,22.970986379206636,3.3541214994028032,3.0701851667205893,5.3416324362358045,2.7205107696881936,15.848639410441578,7.680562075784379,7.293655515612748,6.96747756234693,11.735423560127927,6.947960294179503,4.063327748239759,8.598098431850836,8.598763553651128,17.22147329093398,7.798354943660981,4.396602891279129,16.583660597429624,4.8058419720197145,2.411978662254029,8.0706555894618,3.1394754359316157,9.020270653706804,0.9427201510349594,16.140695469735082,13.041183249774274,2.1049387515896876,10.479120507394617,15.014278012320739,11.884166622145438,2.0947657324739497,8.416353373995115,5.47566922586261,3.442097588673948,2.4518579069099427,4.145835917995065,2.5257669067258472,13.47845772868641,5.7239239400458795,5.875965280345483,4.554712157595088,7.221085109127659,6.8314683616202965,1.7097234663454919,4.71775202293581,4.283394797465233,17.682349169162926,4.433105187329899,7.766525638813512,2.336799411047079,3.273928573105716,2.4715565317309434,10.901144888588153,4.161876763355988,9.357748438800346,12.282009603287284,4.118770374086412,7.395218996429824,3.788704545633532,4.223995847826284,19.348629822305593,21.428759826716927,8.290894252709368,4.126962273018249,6.575311473870849,5.973118657207971,13.565650353918615,3.798619689081078,6.417298572143806,2.067512316186589,1.9700409190198154,6.339773600813241,4.8344088343076805,14.934184231655964,2.1222708478318784,6.58300981639338,7.1680978967263185,2.5446379473492082,4.14930578854238,6.185047770915623,17.556236894214038,6.262404612448085,4.432168481934878,16.36895623336467,10.185075550058059,13.640388339874956,3.34429219628271,1.3190175745405859,4.065333697305351,9.210325180757119,4.76356899521895,20.115250092841023,12.219139342538892,6.3565820252647685,4.421559162014074,22.80740341537407,5.796869827549507,6.907753641382226,3.137539621861125,13.180842746216788,7.305947247771442,5.191534129936926,19.045495413440857,6.067167832845319,82.9142244784274,15.996019415078136,3.9354203848317764,8.07363790020064,4.7899364557466155,5.401210880097113,6.502652796850997,15.772293796971374,8.011360005693588,1.224924532062351,6.93010161420301,5.40879007639008,15.711805326492925,4.615433958840836,3.6635253667828827,1.8572996475394157,19.74721710351831,2.1340317578061963,21.66596505248988,6.903569180752272,10.340815945530295,4.700927239320701,4.668495451701506,2.2254456072368596,5.006878500397056,5.022731902493661,7.6306579052022,2.6374199756459733,3.5058939360158052,2.865384578093613,3.66987607567589,15.031911674482041,4.12906740800774,4.782297541010416,2.1745875728536688,3.8840091818718436,5.982568471956218,5.9498433563387865,4.582480409456627,6.656986632152388,28.769242719599703,17.604537903039667,5.248992942530854,6.682713786906956,9.152115495762587,1.7387631644762864,1.7291365568316057,6.190643332953572,12.364777381067368,8.96576024165304,18.500444735463162,1.2426048750454775,33.23210534872763,7.557922632809789,2.711316786461871,7.867642811170196,23.281184606934104,3.1580882820056773,4.60155769218138,11.15120782800185,18.105146332354675,2.868751050350875,5.468018336529108,3.0066805186383188,11.90103211649167,6.686153092278349,5.936124099743352,27.1190498407703,4.921115400681057,12.952291999082389,4.50791418099131,4.7863407866877,9.180601961659054,13.964899003761813,2.9742659917598964,5.0546234612101335,6.016962471812635,6.080945346154869,10.396602837801431,3.827239969113977,1.945567199545239,4.320876696894909,7.651852617525292,2.9174098362776095,2.0201850632874985,5.589278514479878,2.3741866214289726,5.141783803328713,6.788281440821263,7.850598461887336,13.460275915229607,3.240925906464064,3.394553194312974,3.2864805862744517,6.7943269838014215,5.365222416723329,3.0492282098572576,6.282758951994899,2.818232647471114,3.355622515191532,7.004073925931885,5.269885167249023,3.8868866098433226,4.259686513236778,31.040446561026403,3.588458873995452,12.626889322322196,10.80074613876429,5.96326109589486,5.294968956718112,8.125795649794343,9.06004761290398,5.501573976323308,5.846218776420967,6.203644687392697,2.2446314727798726,6.882055493113962,7.526450433244187,8.37861037894752,6.570956711596774,16.692386892513134,7.260153602100062,4.790635432358204,3.2331094200121027,7.154863905394688,4.336592975593749,7.994790465295392,3.614269656208533,5.8900129022434005,11.144883559073572,3.7459054077918092,6.50097917457479,27.678897969269734,5.457574826775249,4.72688966652024,3.2602705222177244,4.207717761910197,5.754422729328128,2.9513346172648527,5.057767594779182,5.335689847935093,1.8413008860130677,16.667009373322827,4.9707202405899045,12.648713799775804,6.809770205513633,7.776231236245398,5.585729062656243,4.431144996670671,10.727725960670112,4.338741386870017,9.989350344639949,6.104331393092425,9.713105936271605,5.363421372797408,5.2156853784208135,6.729452119543079,4.8333005833412335,4.70836335235825,1.7757356773578923,9.199130420369983,3.459695983882392,4.371651991654706,3.967184254000973,2.562994463400717,5.817696926821418,3.8626215309341694,7.652625405472446,7.283629327579772,20.395378260374393,5.662950323207823,3.275567923050835,8.129953093210055,9.05291080701685,17.423976529710913,13.479332446799088,12.20640173075446,4.646547489772061,13.936529874097461,2.736881799554571,10.761264040929195,4.288587101426877,6.008007793494936,5.280495262061976,11.829373153257352,5.555240886622525,15.289734882219602,2.7607840064766163,3.9395495125944473,9.0116731261699,11.754982393228989,4.716567564867982,14.493899656130798,6.1517627722748545,6.930983093119415,4.172064057459542,2.990614566429688,7.380136822290923,21.821117150726703,2.785562952140159,2.1987669158379557,5.898224672234145,5.032097886533403,14.696846667284275,9.991210399009717,8.048551781412703,2.830772972628512,3.7215198217234016,2.5188159296394934,4.302897085209543,2.9939246207738175,6.1773169785492,3.285708466359721,13.824405805034433,7.444801919081507,8.417861614752768,4.030244932729664,3.8125495149749224,49.50427616306394,16.059904345856776,3.5574270732914397,2.6756952567606676,9.49663254047708,28.110866674402736,7.803167495157056,4.584157250021851,3.9002010727205425,4.961972680099599,20.33519309296758,7.023212837143731,2.7931923119649307,52.36208253059275,27.480298568818693,8.824883757580638,3.8633426587102067,10.954016405833338,12.093375283017448,2.6260440306352364,3.6212181677496127,8.689878692509765,10.393817146662077,9.475423183353616,3.7696007609641997,2.8803809422038196,5.342312900484382,8.041556695103733,4.755048450415307,4.485076630275669,9.319912286665899,7.393000252898641,3.4112684045585158,4.535326265222208,4.360885114706218,5.848804679242955,3.4476895950775823,3.1529152958523947,30.55581384737885,6.3174050741557,4.272341830153466,6.412662616806858,5.371453691989302,5.397310005792839,11.2764794874743,9.085079405096296,12.853894452114975,5.919175609901858,4.357946779555443,12.327535706146104,3.765224562799066,8.738104776597602,9.420294381155898,13.133877634944229,19.832179483917894,7.140287182101572,57.0829858928464,2.5720513603852817,5.84358550396074,8.58732603152721,4.90682983785889,3.5251916628137123,18.068964915212856,5.654856006201685,17.281126651599877,2.037100474775202,5.814658191393673,4.934874718919553,6.735583766853496,2.3335352163938583,3.2833812025048483,8.694618621610218,4.051088792925643,10.841396676564889,11.514215160890716,14.6052528356345,7.16632933770395,8.659285152224339,17.160093740153254,7.827834388975196,6.450412983602909,5.604232706329066,2.242830086401944,9.276622315169572,6.21017285997084,8.132340205316046,4.5881639050250635,14.692539806723943,5.147988102526509,4.703361425997319,2.139730556170207,14.626668081391701,8.293481307086534,3.8014668858752354,3.812943883115112,13.587820764691873,7.882136766260678,33.637420194059494,10.269282161524494,26.571568051291308,4.471147446589488,4.559004981065171,6.545567764422785,7.16159593110853,3.617796060979816,2.5730626522644444,1.9553653450892556,9.799086627601687,4.66625022160789,3.793610062222831,3.2193281589336378,2.4815401219412685,10.379452008713502,2.9964271392797652,11.676748021725304,6.1441335060990605,9.323553000941262,15.785552172192117,5.667003105041842,2.153364935375993,2.346631590349737,4.003560449390052,1.9726001372439168,10.05687871195126,5.665321633582091,6.082975086865626,4.5518964970967195,13.07458773545505,34.737840540485244,6.8431483629380185,21.31063437444815,9.282548393191389,6.329374320897359,5.232621603139433,2.7732148316011958,5.858938024361078,6.546453514170583,2.6520094630573263,11.281153524374645,51.74793441917176,3.2201294182797007,3.8428431570368895,4.73223975997415,5.767652030853363,7.02121448125168,9.016771333686897,6.411216965265798,3.9579501973269053,11.201869393350476,1.963896122744107,14.9137275393464,3.5563470104172663,2.231077203679594,3.3556335168716833,7.434718506656074,11.839709950211102,21.816899908256797,3.644590723928249,11.03741541872629,7.826503726398575,3.120428610467226,6.347605583243104,34.50845723529105,6.648706544010948,6.578189139756917,7.104764873624175,10.652528059985812,2.590541079461721,3.068110451207061,22.06656286763878,8.374085861410787,9.613927686904606,14.639304921626955,12.169911661323209,8.680778074661195,5.529953185689219,2.3537658530148677,13.025489251959879,19.49616953690667,4.241416112427772,6.233186321222163,2.962083738697489,2.1973933911412065,14.810782853300026,3.4247881886454303,18.275858693613344,3.065318907894711,2.772633077744991,10.731582634616728,4.294298362767164,2.0043380080855275,9.855339915884537,4.112218423624274,2.9524129161554886,4.864143580931261,6.066647964520594,8.471892477913743,2.7421906628382393,5.6828022854806,5.135563509858049,11.099183541795997,11.222191669789938,3.8023613757617163,2.6933267239928242,8.926368868255256,26.831049988888413,6.758427671462345,26.933190080272148,6.386268980146361,18.72688740659896,10.814939376507127,2.316969217020404,3.833511536078782,3.862317159349442,7.262743905598779,5.0197043603234714,2.2053882146954233,4.493502933127589,4.303017927751912,4.185808238496365,4.630137370019019,9.715215763118518,7.431931610643403,4.617587300668257,8.534022208464556,3.5082648787770956,2.641506708833001,2.127086539500096,8.644038868099774,10.158051475388445,7.514952131358916,4.698898789378559,2.4233758233960474,11.385720103575647,5.244110400840829,2.884910266707071,2.1141155041566595,11.617584382807998,3.717740573439114,6.139527907374383,12.222890753226585,4.010384323410144,3.8435096921916743,9.895400653453564,6.031155005309398,10.320291851453566,5.63650896533333,22.858181962608274,3.944176610797283,4.708297538827498,8.363662554784261,21.334677360946934,6.7439045185405835,9.766515223876556,2.619654058768397,12.596992178119752,4.82692369208666,12.969906080325952,10.48891187075089,8.316626760799757,9.239543346137284,3.393313232459384,3.400610012193127,6.359576329015503,2.947685886618697,8.91592839527069,5.33073457942689,6.571011111794018,3.6308915331731226,3.8360084141586537,10.021847059541289,11.419340076986135,14.059665360543148,7.335399635095297,3.520753766104283,12.719784970915411,4.152503326438303,21.300443072271094,9.536149919830004,7.842543322926738,6.483559406634003,10.850974093804147,6.391870959218054,3.8321397673745445,15.882349471161408,3.3657680969647505,12.925734259071787,6.362182550929878,7.072632467683133,3.7226684824308536,7.574056506331414,8.801283627946638,5.875169737250968,8.260470287173748,10.918612394979288,2.12314040014469,3.6080372529357594,4.88951139254024,4.511077869323674,8.454166388102207,12.737327240343053,5.771436547737286,4.257554007685184,2.9202066353637006,20.472443901515796,3.4238689849599746,4.871167076554183,4.8296316711762355,13.932964781199397,5.479872908184283,4.672632228402351,8.787128002170007,3.2750697996459297,2.3557088050715596,9.584543351232847,6.59672922432787,2.212768349866059,3.1015816848961766,13.761600307062574,10.79852575306171,10.298088684134576,2.2378423708039716,7.418763181049899,11.04988483704593,5.378175092152202,4.412383110273574,1.9270233576794615,21.03947271644118,4.456523641635845,1.6183984383052785,7.546832237821791,7.524888811430096,3.6457579175919066,6.264457806474353,6.403567142248024,3.1874347457164323,2.1100932257890634,3.5686505906769206,9.618950663126924,5.855414469723649,6.010451094231704,6.346202818163831,9.169158597871006,6.475529245990588,3.251451923463533,8.896796669113845,2.791198589122873,12.641524699546036,6.767186306263234,2.910562073202296,10.336418153310433,14.462892737440677,30.05893276169566,3.6497436855406624,3.4090171542101637,10.636719112040865,2.0817055437791447,1.8978079415322828,3.491014801545805,5.245573660993468,9.685705710455961,6.495036314031401,26.80175405506739,3.1717498551883305,8.468976075854341,10.013296954621595,3.1826311545960126,10.180339265932965,5.039890027900491,8.782712269122307,4.590251907703284,3.349584722287436,4.953032799302547,5.579827695144569,3.7967174012867972,4.436647058959931,4.482702334919831,3.851946936857581,8.792050300881515,16.540547323369037,4.194192858571491,5.48677792309366,5.415707424318634,16.748832562998064,6.231381785666395,7.118788938228397,3.1141508888343714,7.305714958391192,5.439159430453528,3.73728111564434,7.234485785943624,4.7193304400484255,24.53648492944583,5.070752352573658,3.353450522036618,10.154158327258816,2.0710818615069266,3.4069670297169843,18.43122626811906,5.86207928594463,17.565122654365382,12.97173004763323,2.0888914055898367,4.785535119997057,20.361952464534358,7.047747992274158,2.594146134019878,10.760332119194073,5.260870429797355,4.544554350229285,2.919156203113588,3.5628780040737666,8.348872154641427,10.956413276381982,5.465913258094755,5.5637562081826,1.003318219052444,5.707062468324552,7.964086426973726,8.633325034938935,8.996558090781953,4.023130773023901,4.908508952823888,20.2109008361023,8.019000956928583,5.1571621210692,4.869033799071897,2.220727941686872,3.7599421699520574,3.2301169282473774,8.114732345059037,16.08538438591352,2.2018956785923156,3.795296156924778,19.30327142451507,1.848290894518412,17.135919418915005,4.063243275722833,12.246911550707969,2.6589429028741227,9.647801492798807,37.63685137105512,5.849811332849984,3.708865464744484,11.82565043531263,2.8874070194456003,6.871427140422344,5.956449139375171,9.909899193392437,2.534030400657767,13.954780950424613,20.17190669637586,4.084147373577708,2.5288128351038055,4.491116790468292,2.7802551692794726,11.670766921404217,9.234837221408947,12.724106404679805,16.378079399861583,54.92856097647514,7.061291208650023,3.8047931461704434,4.115972639705631,2.4059069523861654,3.6034429443576803,2.036988309727469,5.314209878655271,3.0014101061598564,3.3729322576613545,3.585237845968496,6.4580541420299635,10.892278024844275,3.8780834554676042,11.366313134834636,5.520396290406938,1.8182580044387244,4.265611933967931,7.0962408707400035,5.830021202442663,10.965622992796938,3.2068005365562287,2.7050220630227924,5.037079149066916,6.016354196450213,6.741490169993493,3.3065713122509446,18.050186309690385,7.4489761211722225,8.846752836192517,1.6914217828178182,4.617611843466412,11.556771709670551,2.3773111608465887,2.9110201460920875,23.027852299913516,7.420096691016943,8.05867149675068,15.007684525233957,2.5985999172458634,6.774917863264688,2.333225644488979,20.99775268602253,8.806199664316406,3.468583156739372,4.961548279373504,3.5855349042199314,3.7210676622795225,30.45372330114543,10.245258183049506,4.098038397201726,3.9927025416348525,3.781872729575959,26.58239565214505,6.3894352416608635,2.0579728245986844,9.051252273361758,12.767121538878147,2.359801191914091,2.265193403669037,10.49280885171978,20.412510619275288,7.441762432724701,4.058817173216845,8.979805712710851,4.678763804170125,4.500555640978556,2.0998450492233656,6.211849051678852,6.602927026878885,23.352731420550942,3.6779208036152267,8.833360544133404,7.113630462788601,1.6361946914006351,4.405325985734002,3.6978974875309865,1.7466934073569367,15.549034793793167,1.1724966941630846,12.787299287032267,3.4317408888161673,7.1079643299624715,4.980447012979814,7.9812181262122275,2.9622796373733453,3.9319882864909896,7.493959434453447,1.3736805079655412,3.972135653116061,11.485996020109903,1.7079629352332848,25.534689040916156,4.732219798586323,3.795524149580424,7.255017458097987,12.8079639810672,9.90789229214511,7.4600837575436065,3.489610869912476,3.1491482681262073,3.6892860753656076,5.336722425470939,23.244546381247986,3.4927607039874773,5.239761175240319,3.3040151204250976,2.7829971748894766,1.8618012826016137,24.26380816373307,12.235748765667264,4.016076642500014,9.51464696228615,3.7467206580793704,9.644678800371645,10.208311099332898,2.37646437517849,7.204642689580565,30.290367365069642,3.330494881232785,6.3214391137967825,13.022916682245762,7.303599503820756,14.663469973341321,3.388995999500211,9.62139875350681,2.555840582419176,3.7709210986516615,6.066871966700144,2.1238296309259552,3.4887818677993465,3.7682185582035554,6.333731328614643,9.16789965444269,4.914652077015276,4.10760639552809,18.135140460785706,4.99107746403855,9.745199260293997,8.941114866640072,9.836228682843247,8.546001954615372,5.682941695233932,3.445670332195052,1.8854551021396706,29.385126517590752,21.14461981858554,3.5771194047595953,2.374640638493694,8.477028503205783,3.9050176108763153,7.273702304493256,11.399737801856592,13.63538528398784,9.60847102027609,7.425643571634721,2.5750313690022555,8.094959697386908,3.2284209259819443,4.905392561740561,1.8288515279260682,9.00878318677951,9.061184955363462,10.22337630515825,12.029606836612604,1.9479323040918561,12.115489432011966,15.669506292773253,8.542448814694811,6.958898154772822,5.186020684221567,3.0944910509327856,4.649438878108486,4.188711722644118,4.840006144159986,1.8570853611954263,2.4399618158528766,7.667895966692319,6.4655283005711475,1.9798547634540593,7.766344283851777,7.069726556370292,5.966529507741935,4.532385106576822,8.704614139212744,8.253563562925297,7.549426990459043,4.835017530898771,5.920848007944382,11.623151879982982,16.94685541093527,28.083397230672198,3.3144159793840773,13.230703771870399,2.0664407736732073,2.339718644711999,5.501306901961714,9.450104950045196,10.229031490275986,30.52308271902668,6.764214450356338,6.752197958714534,2.1231492204223414,5.544533436072947,26.64104618259182,11.277270796412227,7.249537019629275,5.946508571158472,16.666745935161135,55.904001358768966,11.626715695794859,7.492307157218122,9.513191008507784,2.9091526321612124,6.0341226550961,4.030618768024748,11.76538652083034,2.3480140446613094,18.755797629682323,3.671117388598111,3.6374671783296884,14.562738784644518,2.9065219794731294,15.539367330681541,4.205574166187968,9.380367029438123,12.005467527790048,3.9333583859382495,2.996558498288504,11.400659168777509,17.140399820975727,11.174948699730317,13.845227363519454,5.481014907355721,6.426084670511939,3.652956193399654,9.464014685651268,2.4657424866571196,17.204106974158947,3.060791972339007,4.9981878681119545,17.836612632437276,7.957855385451698,5.260549660819793,2.3884405951676846,6.084334639711777,9.15052847456403,2.817413612828518,5.060568740114628,3.6013600162847275,10.7381812750866,3.8748069035829227,3.2687192120237274,1.4761906554473216,3.6571896970780773,13.487842111701884,4.632894227906834,2.5044952531714535,4.3368433018072245,4.4943548809892535,7.659656599266876,2.4909260034832705,8.872152386071665,9.152567279504098,6.453739582955369,2.15353412222045,3.8049366676384673,12.472534768467552,14.761223226106187,26.246821214751854,4.468740087656132,1.8166311353851337,4.189393613045537,5.994203699130155,9.213992992045778,6.006134775449636,3.822590865448006,3.678496747881539,2.893909143759481,4.364585099265592,3.0604674583877416,5.2039537270012906,11.951011984868346,2.5941434490045547,6.356311010975634,7.204017640630847,5.147273817091817,17.550231057184547,3.3249285721308635,2.648554228759649,34.80170975361411,4.750571054489683,4.087216398594885,5.598577856119824,17.544323712793254,2.1399899526689423,2.356515444967115,9.790167724113639,25.303474720647664,3.2362233216809067,8.913924405501813,16.564431321114935,0.9726937471033636,22.607172260560024,7.897356141469815,6.439364758256229,2.145141965166955,8.671815476810933,12.874800621583786,3.9216199787262593,10.720470028870205,33.520038990097184,2.952714662366736,5.1408362168713095,3.0109052385749666,1.5990597948718983,2.498356178017077,6.075887656412608,2.7670291189290395,4.515940643320208,3.016141452996925,2.3666483063690347,4.551571225552231,11.987165462404404,7.830555185033706,4.069914280984644,2.4095499450112947,10.692843416830497,3.9346748954427766,10.907205255812416,9.450762134029441,1.4802269163318817,9.767863645444022,8.128036895676903,2.104327285880112,5.409988988352714,3.8374105507239427,3.9094716225489914,3.4123815430759565,8.239406547302103,3.792222172848918,5.50166136524965,6.480303819239411,33.0774895733728,9.470660387296384,4.919563456321627,4.74863573540677,4.632756470613453,2.500999987647946,1.9989498617554324,6.31006427029113,24.726810724148653,17.82127978357727,3.28463424725811,4.65546072182651,11.699000005573224,10.170037567351912,6.028766253110314,17.18978388186927,26.039247688166117,14.346721548868697,15.464578605606091,9.526609877496925,5.233090798228752,5.175526265073549,15.179356598312125,1.333696512835847,5.635532121814064,14.282844795127707,4.70971876507293,8.249757960463603,3.483402462319559,3.5487955177693986,1.8183486575328118,13.3536816250408,4.305731656231472,4.204214125091907,4.498188733123445,2.265678702926702,7.009733934947997,35.11573096414431,3.572682992892179,3.9995497140004534,2.9186621473865832,4.60856319579415,5.298358655405406,3.3061345363358305,5.618309022735847,10.628714124794698,4.722554642767045,3.576200787006561,20.65640391422078,10.463603862570626,2.5059099818424997,7.499940492795304,4.945625049893518,11.522335878254584,3.7614843293633085,8.903378511624387,3.6462078056634604,6.038124664498891,3.58643585983829,6.281187475115785,5.420647423024166,13.009252536006029,4.28459220835074,5.94200224411818,9.781342052973889,6.256210427227123,4.854451006745039,4.560007952968559,2.3541554145768493,2.2804225089252603,5.055404938300523,3.203009214298896,16.281144131983517,9.970078444268173,30.417059889250986,2.459090057419722,5.501828637284651,11.850733181873663,3.0752088626850282,2.6455229822902444,4.5815195092757985,3.161118544704214,5.962631108915433,6.876905334033177,9.447002863108732,15.537790144617322,15.070005387237565,5.8131880221948515,20.849961208097444,23.413021949610084,4.04489427472776,11.169072952603093,3.2022673351051787,4.875339778831515,10.42789382146433,3.7489923150838176,4.962581593398531,7.554278408624545,1.9153179847776793,13.787236341951031,4.798308027091205,12.082107688137212,1.8567108490133941,9.02258836241108,7.799950967870183,12.267163302028763,5.4402872135724305,5.535575337533336,3.416794034364313,5.904075495179131,4.157362656308095,3.8196297753961552,2.1908924446663605,6.4357544927640395,5.946511032690078,6.174272436543722,4.751149227221601,5.549217893646456,2.4253024663517566,7.5700789019438455,5.350017939695483,4.049926941094551,5.206307634870125,34.88151240491202,5.21212267260876,4.983883789184848,5.147116438723163,15.934111831461184,8.283575601654757,8.916105107112502,4.012356098654661,14.002832686927908,3.5694439475922026,13.241458682657656,9.49711226475907,10.826220596554093,5.2635643401002215,13.176687210831659,33.53891347513388,44.94082286621612,4.4250306114058,6.8977309100575805,3.6057433988876206,5.795306020343424,7.639675428926277,5.172493645890709,7.358915875198859,4.612237907303987,10.559415778321549,3.5662707861571916,3.1991957453826934,6.684013506333129,17.115180510587017,3.542466459197777,6.435507282707368,10.164354584824196,6.25548077780309,10.107057165457272,3.8325574514250467,16.27435947907874,6.996532698356622,6.84212626963935,2.727141293491917,15.72024775656528,9.379300708931694,13.707541645291563,22.406871649170746,10.725878284671458,3.679523907301229,3.8384585288036375,17.742365384284287,3.8486044641820665,2.335098168585313,12.542002582654924,5.123847356248953,5.361063700495456,22.78943098676259,11.956593660250741,2.257446685711592,1.9811881630500636,13.86134951045959,15.27431854664931,6.358835060168008,2.523135890591735,9.712924423674938,10.57084780370687,5.53695360241703,4.133695523759969,8.659135240790752,10.95247183541953,3.120592915713424,4.687346163633666,23.677580066727092,5.705291190226418,2.5917467523910136,8.54747298731417,15.310657544072953,17.77899421945603,11.76060676502037,9.85765468042302,7.419044991765564,8.234748230324376,6.596722508232409,7.653544203238738,11.225262984614638,10.924716790815566,3.5182023119055934,4.327188720797364,2.276297142636285,6.132027757878938,10.27637737181566,12.793025300917993,8.48890960931374,9.171075683935506,15.65935300754602,3.9655881289675765,3.974313889958926,2.9997717960639263,14.321028540884486,11.944233178338429,3.9797717639403163,6.792850190348815,4.9307815197652385,7.824717316329961,2.3600152286060574,8.042754043695124,4.0843536222458185,9.411332067521432,6.964568419159974,14.862757028055865,6.736906633541781,20.421030119053775,15.923733377786265,7.419559930631239,11.074509867042492,6.714910519858881,2.8630073968633103,18.198647764271865,4.5821411093691955,3.3242218685601976,4.4709412221776015,6.952858778288532,3.4452309818561013,12.186106803198243,5.169196500909806,3.358155579354534,8.73761917499215,5.690872638845271,4.419074809284591,10.696834116462696,11.916805114947046,15.878529027658532,2.7758175760110126,2.3326421109476683,19.370299347944357,2.1711197429035733,9.129379632237839,11.797244278161145,2.781298429843814,3.3036439529081427,4.273016236189209,3.0669441331694682,7.216098174678659,12.846217890931563,11.892385703106868,8.521145668629426,4.546163630494545,3.8164577301837945,8.167646015481228,14.486265655586733,5.856748593432583,7.334685152883478,2.50666213767477,34.226946063301575,7.891080645389164,3.797470263917541,16.720468645918206,3.439585360924324,2.2720582341471234,3.7404831271749512,4.966194214909215,3.2182104807478606,5.3918200915240515,8.877605522436854,25.325299957609225,8.12791793968903,4.1120168021494345,5.509444068942765,5.541160831626435,6.641554083120424,8.840255510581642,10.157468279662169,3.7682950283765697,3.987317270812232,8.250876065369527,3.1535877765759137,30.62417085186137,19.34189313366079,5.51811711234331,1.9556203435423354,3.43034307128766,4.745921889011913,7.81674299560025,7.114870687373256,4.7360627399302,4.94798871067384,7.051474499723338,6.183572466921345,4.644433020220004,7.310934759031004,6.613881022560827,3.460203449694103,5.943334651471592,12.887633832931442,6.556729188893959,4.121093652994425,6.17847350008488,52.7887393344267,4.98507630042771,3.8780107123352514,3.440888868553317,34.373497719287734,36.900563585584266,12.649482684336942,6.604974810600618,3.5580239493286894,4.098451046710987,2.9417328684905275,2.815526674817681,29.497507275796114,15.378947108727019,6.675157276572568,4.1213902585837285,10.014033805282745,4.036327253950516,3.197142882267122,4.387785100194113,7.343004179226941,15.175834930740086,5.090149558261835,15.23335919426654,5.3836537681033745,7.5011218106614574,12.366384567365758,19.861604551769798,5.07800375619632,18.70140768721108,4.789785168742218,21.455522656922394,5.525202763614442,3.299421552065599,2.0003250072907472,6.230437991251845,16.8555235345531,10.506996458700538,9.903765193810566,5.07706190789315,3.1086895180435223,8.688247264243412,15.039965877769918,3.0934442324145697,5.700925112253969,5.271817170588782,11.907781932903388,2.351618044601268,10.234853658784099,4.974247786752814,5.688690530220463,9.963546147233433,16.878242653051934,5.221001418971768,5.875326573228113,10.170171752712356,10.834765449342628,2.6695221160226024,20.785742707486676,2.037275052750858,19.29717040370971,18.08534117563946,5.0101023774561515,4.8869247435918854,10.779329673938818,4.983811865431095,13.467045415652592,10.67866433438457,19.939276685621017,46.00842346408949,2.384336412463407,4.511495746374357,1.84751374868271,3.275427076084143,12.26558758775624,13.447028462560963,8.187977435560727,2.7625149234132316,2.786648193989308,9.121972135208367,3.244883681896441,5.869934028709244,10.297705534107156,20.081302042914484,5.756997052513115,1.9087611906127018,2.310976418274125,1.7949701712414874,7.145737112972481,4.506541093373914,8.255714777530429,10.810476742951073,4.101192185067998,6.876752505841998,59.963371411450666,9.893532712239676,12.913785389620312,4.579012640094616,8.586269771393315,9.909513539309463,5.263243882895977,3.4486107314578374,1.687194106535725,5.0943629122634215,2.593684123264254,4.943318733073723,1.7134678421109295,3.393703026545843,10.148933320915903,3.8561384160978425,10.201186238940835,17.63199587140948,3.1106386585872374,5.113410837565564,15.57606541120125,11.053189359992402,4.683117697301409,27.219677208820535,9.10488554548493,9.667832054420021,10.968258636858708,5.863835155104297,2.019183053836599,4.217532995847271,6.586940836779799,3.9311921764275324,2.2608860466580474,11.129715736960751,6.660600332594208,2.883035666952012,4.808144018820613,4.8971193633090655,10.017932460975684,3.7846384113271663,3.8284802075588478,4.202659107373265,7.315095107566947,8.623719988364407,7.694015373682005,7.822461474800582,5.893658317263158,5.733626563787306,9.098392197462118,3.3196823224247187,5.116821853921232,4.993581166393161,5.800796835467757,4.746630363553403,3.63634877953786,2.211989796536242,11.648792989093572,3.597389297023955,3.788099268265648,7.721394089779125,14.166272707817328,2.6777541266150577,2.8797866576727946,6.943340595297016,15.410287501795336,12.855482068031233,7.171438368099407,21.9608598191664,5.622934636614318,4.20394220152701,10.295935844670394,1.6687113041604344,25.1710298115772,4.779326775142967,2.0187517809023587,5.957178080406577,3.670582406290786,2.6625146500330614,6.468145685129692,10.750375617447302,2.1725887093823175,24.771818691106304,3.802094722249527,3.8140475265397815,10.131416008897949,4.37260210268751,2.436312439789449,4.859924369847266,4.168335030401247,8.989977728605952,2.5420960001297455,10.202919792213445,3.839139816396229,7.197570005059609,11.66495446864588,4.158530048165049,3.3018206202044484,3.1754955113044616,5.883261774101251,2.0505644885708043,7.667619846550652,7.608844069030598,4.168124386795759,5.43216899140714,3.7132336712994243,8.54411622159415,18.91734382273269,13.783130356095572,13.295598488568805,16.08321240727204,11.431999496259124,6.825504862466067,11.459184568481362,4.7193227347111275,7.0400793282839125,6.005426260638259,3.45032728215992,9.471768334530699,8.689979186403802,3.487477355322854,16.160273368442937,12.099935988075833,15.086344018146002,5.7012549603608536,5.7304444087094435,4.216164380341003,12.247180834768187,3.47451630066861,11.75295994188027,11.759070021748547,5.094493826791393,3.8650926296841823,4.216194446344797,9.370077197022326,11.776873862313154,2.6701380570253086,3.7326133686547287,3.4757254597503238,8.118597793163149,9.700398793246086,6.077978277226804,8.915175759853796,4.335792714769554,25.311977267096665,12.33978242631463,8.555994288380498,2.6848199311829104,5.087553404468401,5.1264223745688735,4.651467920922127,2.6114103159508772,1.2540234366809464,4.830268974380547,9.120549043110074,1.9584315915017414,9.389644754797478,12.37096536343692,5.6215050694655755,10.43551642164498,4.130404610647025,1.2812138598892886,10.412985737974791,2.0083733712995033,14.2702055521989,23.37028797523673,14.655700025874216,3.357871957476885,9.876756365169406,18.4266423414978,11.643728565173369,12.794264071717416,7.123759717676192,4.922668536863985,27.372400542698593,9.672555740184439,9.328082772988887,6.7978871356414015,2.208430674970009,4.826016337938243,11.449825255166308,6.840851641210409,3.3047369525268975,2.226072533499137,37.66764902019299,6.06631061762837,5.284527438780502,6.956554047177185,9.998912515016315,7.567124077770896,7.280830081302941,4.960599524495596,10.432959319246336,3.0976684528951766,4.778606027768498,2.0861234950922367,2.8954109933410326,3.843171829147563,3.908776444603853,4.852948597234639,2.603208257105874,5.611418292725006,63.423751168760994,11.765501846058761,5.1381099393114775,3.2633510274574395,5.604976418443593,4.501690128532104,9.356207530231819,5.554007500046198,3.936325306369988,3.5071419253225717,15.819661993324887,4.18440867009535,2.546372031815509,7.460390131346862,2.496296797882444,17.558501316666533,6.982316762170882,5.780390140648441,19.756270069954628,13.681904845101203,1.9931276764423558,9.154439066355993,19.745611217728676,3.9913000332510666,1.8656799948207305,6.115773825328213,12.23151141222767,2.4594016634267533,11.564437313572533,6.473476040132288,2.952653459615854,2.790057393025702,2.3225047371889405,6.994082527836677,8.573973817035993,2.208308241587564,6.39448950643062,1.6306896045975376,2.6173449377895697,5.579246866214725,14.087590664370813,7.094870122052818,1.8926261482101518,3.2378137649266825,2.46659194625445,8.726763475508237,2.4301023889522,5.557804405843247,6.409864886337643,21.90694061384407,4.065157202369564,3.3999679248083856,2.0951803103506506,9.090530425717283,12.08396998630511,7.8165410879649615,7.0170640070542625,6.363313574601448,5.353696121120842,15.7607663390438,12.241080060504972,2.84421432049727,6.578703019572059,36.13947941156243,18.850041061876436,22.31488414474864,14.841931952304098,2.1360014748514278,3.350014728445732,5.289633164154449,2.9739614793098235,22.166096672807765,4.7658188230275815,4.026982888286983,4.162450523868291,4.06479488628969,4.571061843468995,7.681877517795685,9.1417766479508,6.554183974621476,3.4253911263066352,3.864387330156478,4.586723659148652,2.9954675093407275,14.859445566279565,5.038662455562948,5.462988346156326,7.047386305794657,9.682015562728157,7.210253301452124,8.946602112130885,8.946273690268022,9.531029398911564,14.51957432735064,4.898402773026478,9.25929410801742,5.881116803348323,12.478064355370938,4.5102082754993305,5.939663433457621,29.874054234509963,11.23872286384108,3.9361609614699296,6.777794094529301,5.657329469146095,18.758396334436412,16.423598764524776,23.201261989521612,8.407496360175037,3.5245749110205455,13.317510972012235,3.00135451235357,2.3240827662734933,7.62753664109485,7.78735440746809,7.408410103794055,3.774298053294971,51.86147585444075,12.632364809097139,4.3966249294829725,5.988227723530808,1.7049119619978006,2.342782230316993,5.023707365238819,3.9182975824744455,6.246242941130732,20.684016410811594,24.087117653592905,2.056227891195307,3.731110811277337,6.389091408817991,7.578286589711683,3.8656723500292203,3.2640559669613944,3.0798655049677164,2.4316748032825117,6.117287328515772,4.999144990928051,12.136877169098746,3.4641762294374554,2.222393911818811,7.03722689644466,4.93937473405204,13.1920672364478,1.7884147713096583,4.180465469599306,6.8730889213413855,6.991672985595031,10.025290798980569,3.055562909589664,5.974473535546965,7.002492017173051,4.9729695788258415,28.400489530339712,7.986103779975848,40.26571763296156,3.8000636692806733,6.061684070538991,5.943147241550223,7.116246011875583,2.7329384563340082,1.6656170295122115,16.57321587034915,11.409041459758807,2.550299034439786,9.054208096753216,1.717141603070029,4.365360740246791,5.032847493072588,16.7249750233803,3.5452611115638244,1.8948870486077136,9.108179496247,10.284784824414494,2.347480870276136,3.6440007081023165,7.021884890168663,5.477353474850343,7.405348050835916,2.315160025015359,4.439189067636792,11.883991555902364,3.518469697839655,9.069620882201916,6.169979511268617,7.6797714197196125,4.223574300039494,6.9016926463822355,3.9633939307790924,10.03662338824321,2.73181902414618,4.339458692784067,2.6916523582678287,5.870854717373485,7.37530844854879,7.985246336497237,4.557173924029429,3.735039748922997,1.8246526009998019,11.051957228485907,13.197896657503197,2.5443516151818364,21.729872347421104,2.5988604866414393,9.455634609135066,11.851442166005276,9.747876128748647,1.406974277346846,3.398063092756559,11.897485167258733,7.698863948416757,7.246023211269182,4.49354859792645,5.230846082170507,4.672835868412301,8.707920412972694,10.634642895023465,5.349385612948638,5.610890573876515,6.708519791989287,6.622164406639597,2.4871358365580734,14.216718385474328,9.028174155112278,4.872364866491393,7.16474128895747,3.1081831239879136,13.848174529658083,1.9322620526046572,4.024767920171236,3.216114366721387,3.297666600515244,4.976023557644562,11.406763958938596,2.6746379569642844,6.791840184379178,7.730672986741127,6.4411824522406675,17.029332554510177]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}