{"self":"http://probly.dev/api/sim/2GuHyyK6QGgAi8hHL3EdsM/","id":"2GuHyyK6QGgAi8hHL3EdsM","created_at":"2026-06-03T22:25:40.242736Z","status":{"status":"SUCCESS","status_datetime":"2026-06-25T11:14:44.290015Z","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.391001246672755,0.41105450467453486,0.3997388223916368,0.49536792289146064,0.5013530980694788,0.44609142764361714,0.4952337377927144,0.5290582305714595,0.36600653177620324,0.3805823711021805,0.4919994673883736,0.42736082751326093,0.36708400903207944,0.4350141981369555,0.5510326132587099,0.5833339483984029,0.5168774210440942,0.4622626241038684,0.4759695137098922,0.4880253966263297,0.284392552576529,0.5167292335816998,0.4195663151314046,0.5697492764154692,0.39694614844673926,0.4266500803764341,0.41352243512010206,0.42170789366456324,0.48876504865115805,0.3643599549438152,0.4282077090153087,0.49011161454300495,0.47829496396434296,0.38107682245510244,0.45438252649599753,0.4907842143400538,0.496481259266255,0.5087026480130779,0.4225156557946967,0.46975365015193143,0.3788532988881539,0.5771927185887377,0.4338477540246557,0.5395380095711516,0.4564449716227497,0.25193869820956705,0.6200988298417963,0.5495067316500027,0.5410200417161191,0.43292732303388803,0.4652799433578077,0.2947331911821936,0.401638923593841,0.47726156358418015,0.5559975395274817,0.3903115268438706,0.5272700290331842,0.47206850070624035,0.5793283528180633,0.45696299134766477,0.3979548939391413,0.4651274786658372,0.42561543451980616,0.39560882690598725,0.564284781328677,0.42197551409418077,0.5331018516732505,0.2612495511930432,0.5210231351027678,0.4256303623581288,0.5623941072965386,0.49214862664436004,0.45372015670645893,0.43950814811246697,0.5236149925010375,0.5989365446023898,0.42355743995665573,0.5510125411204934,0.5429900691096654,0.5232679054932249,0.42609670325032367,0.3666323608736998,0.3746010174307996,0.3870919419112104,0.4792147686318184,0.40032779342538877,0.505954147722637,0.5929531269270533,0.4494402975851388,0.4287372369967246,0.4158609649448168,0.41349889599005196,0.4977898059546298,0.5182122745081246,0.5899598438936907,0.422469540637738,0.4358454487012194,0.4032770430972576,0.5150464953851804,0.4852647755513651,0.4995028841571586,0.41906474565918383,0.4026098759459867,0.30628647870369236,0.4761691413152838,0.37835321783660886,0.523973746494133,0.4642442873903698,0.532442947761002,0.4274707852385973,0.48825080384106634,0.44088294767109404,0.42580969819696557,0.5092500997470227,0.32202935419575385,0.5490915614428504,0.3721011942664591,0.6367301618538036,0.5103064378943433,0.3164534804753881,0.36519183560802954,0.555303058455577,0.4953358070118106,0.4265121200664011,0.547738291028746,0.40816373664448286,0.46421856860165195,0.4642331851261054,0.37962686851337957,0.537461961822501,0.43962783852394016,0.4877684322634738,0.3370221495510795,0.44063139148781916,0.41341836248232394,0.45647419805185824,0.5773945110117176,0.4960179323688842,0.36853624261090806,0.3855286103743645,0.5377877940297344,0.5293516787842782,0.4135414925220945,0.4322927236781843,0.5554051902326993,0.3494748702026033,0.5582153376785128,0.3757053575394811,0.48327035620566894,0.4493403256409787,0.4423931700558779,0.4760213207436279,0.4784459415870693,0.375123190387204,0.4540698635550244,0.4288607972722674,0.5403666110850552,0.5639862144863753,0.4216963793976425,0.42628546975040366,0.4629108568660339,0.42211759957654604,0.33396941270078534,0.4881845582525707,0.48062169754992784,0.4202379549660199,0.30974127265589263,0.5192425775967313,0.5808104243258275,0.47165958452838197,0.4452366923321497,0.525633374393062,0.27255418482768556,0.5203293103593194,0.5168770871100711,0.5413761256656463,0.28278198839284147,0.3266225699042486,0.3666850213975503,0.44985320249141336,0.515842107253184,0.3394192850287771,0.6834022648868033,0.3835099784059104,0.5659097967954313,0.4908519558914275,0.5429822896083765,0.3905257428627792,0.41009501733322806,0.5264258091338311,0.49828004854717856,0.5090304056140067,0.5907976144330284,0.47722357419551514,0.4720107636774833,0.4951587831984417,0.5523658882641858,0.45114605394139157,0.47150659764694375,0.41352086932876636,0.4126317728467094,0.5550183679582523,0.39328654019566744,0.3731433792046479,0.46013664712864555,0.4849811108146717,0.3747184515326942,0.4830039513335883,0.5368354403163841,0.4449189096501645,0.4399936528374319,0.4394440940348647,0.3361155322117083,0.5036889257422452,0.5068055477834718,0.42766502881857343,0.40352273871444033,0.4024221308150943,0.465755909413419,0.5197763573415142,0.5915875138150193,0.6537858370300995,0.4559964175641185,0.3953142324388537,0.5416756728262028,0.4255514797326848,0.3836500767919933,0.41843155998401393,0.45545834292071335,0.4425205183229317,0.5012376220093387,0.5970073433312607,0.4457335905842066,0.5039925327072973,0.4292227328265338,0.24543529808205328,0.5694576965682001,0.3562927414857255,0.5067935864825963,0.379993014466804,0.5627024848441996,0.5663239989204907,0.45761093767253613,0.396985905358607,0.48411797591084643,0.5486060251163215,0.5675001394601591,0.4843147634375529,0.41237595614639716,0.4583164165180077,0.5575018639756135,0.5025010043487019,0.27849510173064773,0.4124990130599655,0.3602985197992827,0.5400559737508384,0.5137872004668994,0.6079614797801575,0.4538681045024863,0.508835613914551,0.43688394937489805,0.35887770885617754,0.46215165858404705,0.38964112223692454,0.4843383330200755,0.39070827775878847,0.501773031346594,0.44306897823047375,0.4814333961727392,0.33195481124636594,0.45992079889640897,0.3522779082394805,0.4310071592786794,0.3996236107608916,0.4383726631068099,0.40877634534057405,0.5336994825410833,0.4063479488638184,0.4446198244911409,0.41631994862972244,0.5272120915727981,0.4475976472162706,0.4958956661177395,0.49306417454173895,0.4309975505015668,0.5052180727320716,0.5922578782458405,0.3529217168665726,0.5848594655366686,0.4179583551269684,0.4612468641128431,0.5405200210784227,0.4228966237300676,0.3416194000070904,0.5177431395751028,0.46147388015378055,0.3993564316643046,0.49193634450289475,0.47819432958998304,0.42577366629369284,0.531963538438401,0.6184816842625652,0.4417940897159907,0.4710917279702729,0.413049612814017,0.4299022829175642,0.535594764577985,0.32257163769830166,0.5105192574629743,0.4396559158661338,0.525089681411208,0.5446506279402638,0.4626564281492103,0.44619319952347475,0.5161335289560699,0.42813553003898813,0.4900667455820239,0.3613106623553278,0.4902237573029462,0.36633037172591654,0.4196531241757785,0.4750403038322827,0.5574351799752768,0.5135432873564464,0.5008861960083718,0.4289959291187858,0.4438026711076677,0.41240807040277877,0.5621532894728825,0.4931013793409437,0.45559809627159126,0.4856012560408138,0.392269891440531,0.5878067790933605,0.3979928987287271,0.4041054880066288,0.4468221220241231,0.42601605826183453,0.5857203545186869,0.5348186951554914,0.47096633132801596,0.3942593487615737,0.2973233939891086,0.4115593004934439,0.338791506332803,0.5194931085905207,0.43236008081062777,0.3305661942712118,0.3898768355393934,0.57564050933635,0.43347830748099514,0.4063008096686305,0.32902150301903904,0.49723714563713034,0.45262833683386944,0.5562944507796164,0.3588488559485731,0.534971441259119,0.5412842206087354,0.5304109755036555,0.4256504130151772,0.5651529300074906,0.38369447339947854,0.45811085851672456,0.38042500324872525,0.624705814593193,0.6786908723075414,0.4682791650977764,0.42745654706690883,0.3427032379234906,0.33411697992196465,0.43004574980131965,0.4639621159281806,0.5019761925498422,0.6596172369867705,0.47445398938510824,0.6226526056120542,0.5803764967094118,0.4469073897130678,0.4311850437899623,0.4238571626906716,0.4300513427384884,0.5081560967622168,0.5030403574266035,0.5436236474410747,0.5228077772045904,0.5097665860276993,0.3730568055524605,0.32931629001080825,0.4560289033965689,0.364322203868195,0.656041511158865,0.43525226420095897,0.38918442452183394,0.474042059711604,0.43878982738841454,0.3518692233469619,0.4816845336042657,0.46795390906033224,0.4217962422211045,0.48602659720141167,0.39750699561011926,0.5263354637973431,0.4398823212533525,0.4312506690724106,0.49121688916852235,0.5915407025806969,0.30939947135062457,0.49813590389895973,0.5359724319605077,0.5318044531794217,0.45769064860587644,0.3787528598480548,0.5662356066367017,0.45259409831354297,0.5490623202685414,0.40003068808267184,0.3695106128876415,0.33719016983982725,0.38075075243528844,0.5270321999505627,0.5356922654301033,0.6375695007893556,0.5250792518215489,0.627765438042106,0.4193800217124396,0.48261682088018115,0.39438059666099357,0.32511392153776747,0.5510718917747534,0.5254537703808888,0.4614266601538521,0.5125597916486916,0.41097583117330133,0.4874301658690806,0.41600341469594937,0.3504483328950576,0.42339052820126305,0.33301803671473373,0.4050511166861967,0.4070807065315742,0.288663830576791,0.4840420605628901,0.4167084183293462,0.5310023096512444,0.5527033968634173,0.46671291794556,0.5493541017165744,0.3789918562878065,0.4064454950369534,0.5814433384553513,0.5021071726997944,0.47554751091519704,0.4450161927069446,0.3648204293595357,0.3332133917462765,0.5358568540333382,0.47560150304808135,0.31271780590418025,0.3920355529066161,0.351397356197595,0.5082804120290435,0.40070904872962804,0.5722824761293926,0.4021346930321131,0.6010733182891005,0.4383699269523209,0.5968153901132218,0.572376858140629,0.47222427974811065,0.4280514549479863,0.5006561289002396,0.491137995715764,0.35905472576619823,0.5674488205662865,0.4992849080411068,0.37630306574248334,0.6149146438010127,0.5018210786106219,0.627129656595037,0.3317573238937497,0.5217801596844621,0.3895481623693303,0.4432470108439636,0.4204621947061574,0.40244935673662985,0.4689733348914582,0.3230802798957508,0.5812850294654801,0.4345403428809316,0.3972435525960664,0.5290590316970378,0.4769369532382279,0.47399168793551155,0.5702042289437304,0.5319065967461855,0.43606509875104255,0.5084959735696523,0.45131075388093106,0.3617460255642299,0.41582197024631873,0.45903849257661833,0.456084301151645,0.4855353183146475,0.36602421987145134,0.3882589007875524,0.4861464195255831,0.4474080469736543,0.3944455805337749,0.4870897492638199,0.40800751005348923,0.49210932439512334,0.41340140294195893,0.5619394890538414,0.469513648402784,0.46423869759421693,0.46912717283543065,0.332834184060019,0.586283672652783,0.4331689701742498,0.49744371850760694,0.4234996637203575,0.4292404271559123,0.49628567408526425,0.3502157798691226,0.4834507320537925,0.5174563989369295,0.4213937950221811,0.5369318467714589,0.4494224789310119,0.47426969841769206,0.4284482003532088,0.47251795547167724,0.29943275273849945,0.5083331182072865,0.512110355570994,0.49052594101491437,0.45194899133567296,0.4929453363379846,0.3880672008538584,0.3139439036046181,0.5274984173023783,0.47430385760712673,0.5064034047465639,0.4105639518531105,0.4430287772396583,0.5308241427463424,0.41862037003082986,0.6151956675504003,0.3738189618724231,0.39244424550768897,0.34335905707043807,0.5295135568706405,0.44056132737695375,0.4152684415857525,0.3761373279336886,0.4176780218000677,0.4046340057585826,0.40690053104886426,0.4355577607543264,0.42950575289221027,0.5488394172000036,0.3893917493975074,0.5612668467368872,0.5611493143722184,0.4307040160830022,0.4401952440914575,0.4273154851011635,0.5224340927211448,0.44161542138636073,0.4268022046875254,0.440702544776499,0.38707277892308134,0.39295701694773527,0.5625436516860446,0.4553587885220995,0.6076322433755809,0.40919459882294396,0.43858743723199717,0.45425032066970844,0.5282441343435053,0.3976101933917774,0.49970035817290775,0.5430847556675494,0.4334724088124587,0.3548712748809378,0.47287628926922504,0.35783629809158984,0.645691084172327,0.3609554639272881,0.6540668314245452,0.3736593364728594,0.40518267373801514,0.5052888180167153,0.5792433612000631,0.5784085219443412,0.446817997865064,0.6583240132060022,0.4278153114121166,0.2835631099344112,0.49465833813044585,0.5144406975164905,0.3897189245927791,0.512615283942928,0.41996129017052447,0.44605267462055526,0.5298944224464202,0.4094155269439315,0.5775128288270277,0.4834245388471902,0.5436767931651535,0.49073213204487687,0.5081029372099589,0.4166067244741787,0.5534958601292487,0.4258714396211079,0.4014205842258054,0.5270273377290401,0.5668859800660605,0.5012371095098134,0.5312889534692563,0.3886571568926609,0.5800331277650036,0.40643167047117396,0.34119807102209043,0.4525280012535252,0.50805789968263,0.46360814803120903,0.4005136023227175,0.5372284944887148,0.36020912432291263,0.5410240549254851,0.7090640238003495,0.6318266340700456,0.4730985978749619,0.4625353351987258,0.3082087215158229,0.42058813477580664,0.3948693069997428,0.4319053496644043,0.375417015820216,0.49209332312762755,0.5808169102974211,0.41455020131236053,0.3289879233225279,0.41257514327489636,0.4039409969778832,0.5824374052435978,0.4885447427761839,0.4252844680516818,0.46065921397755166,0.4678777600046269,0.3924938813768224,0.3813749831343247,0.4064729382350808,0.6259659081184469,0.5317424090526219,0.4437528908020439,0.37253972789418394,0.4438362879002087,0.4658338164617202,0.48814060199725257,0.6319176820043763,0.45327894431784993,0.29783916679251793,0.5662048508181103,0.4745992199807578,0.5404603253946466,0.38951864296405925,0.5430092292393872,0.5030077842417426,0.3958997755435408,0.5240487457945222,0.3439726568411046,0.4780367617000563,0.4676293217629105,0.313632233136689,0.36273495711284115,0.3595553674451956,0.4866978848873716,0.3381101585050412,0.39263823491438565,0.49347921584536664,0.37984640341509845,0.4043403037084451,0.5208109927513901,0.4909158149522214,0.4853384527354488,0.44671115630859903,0.4798124120401387,0.5117762972482943,0.3995828060734109,0.4989062283354356,0.37572755009155806,0.4876438036690537,0.3684604753208451,0.5146811526981614,0.4162422763068378,0.43865230519532933,0.5698661066475522,0.530012974177792,0.44742437870726387,0.6128084274965513,0.5256025777633695,0.48100800703366353,0.43199331983804257,0.603208295335554,0.4600158714810228,0.40683770355969456,0.44888832639840937,0.5360284266855765,0.41776343005356326,0.37920586779132875,0.4219802730895704,0.41292867083321766,0.2526606639663401,0.47808952895156515,0.5158514487730096,0.378285202789164,0.6391163045029633,0.3787915010972936,0.341125915935599,0.45908486117096997,0.3289069106903461,0.45575499356254323,0.4057849794746945,0.5941453148072514,0.5347866892577057,0.48152634202376937,0.4266789047757579,0.42708907427158876,0.3138290658511773,0.42938853508912567,0.5049997661331594,0.4439682682894945,0.38832993420784706,0.541839475457584,0.37707208199736597,0.42417631157276964,0.41723888994510766,0.5714250832042391,0.32506197604014325,0.5291179501862854,0.5029555973990236,0.47384637978208055,0.5661162936429974,0.3873168047330231,0.38444363082671645,0.5099157921836935,0.49119802308133564,0.5051459246632198,0.5432872823927266,0.6589018373703702,0.4439328617577961,0.535200535384977,0.4982142416018426,0.5991265006119139,0.47408425759490613,0.3770911495866512,0.42889113700950754,0.5150390160094269,0.5878514026354161,0.5926534244503778,0.30439638720073886,0.464375317704643,0.3923025909104438,0.4296339204576804,0.5467500591633824,0.5562474921266274,0.5184811509407949,0.5142112598230953,0.3937627672358889,0.5380359466706685,0.5029888252967879,0.423560853411278,0.5515466085201296,0.5435417772176443,0.384327120031872,0.5347946983731344,0.4490119760836945,0.34333133357999057,0.45815742878499727,0.4360581947175047,0.44906637887744255,0.4819827260329355,0.5663098582324527,0.4174092868393951,0.5415295442055955,0.35898796658252397,0.3974588823931296,0.46589355462392174,0.4557171747121611,0.48703388288554306,0.3015005569997045,0.5310003351146048,0.27998684807377044,0.5517744868575236,0.3997515506819038,0.5264307366573567,0.574378326345916,0.5600596339462213,0.44297314860364284,0.43243884598096644,0.40088803869586764,0.4303971718705285,0.40865266993215826,0.3891154829381762,0.5166437802848067,0.4097083206233701,0.6773983166724474,0.5452829148552594,0.49538346022898017,0.36568711880761245,0.4605937125473243,0.43616480997718887,0.4029108751295453,0.4414276677270047,0.3977068106191934,0.31667721221556244,0.5072070271041913,0.5915397101343481,0.3005814983534171,0.5554246805952174,0.44482476102907936,0.4000432996258097,0.4266252294027817,0.5162034077484854,0.30471449065893946,0.4604483198191326,0.5112271136106784,0.4635561700479695,0.48544864571549934,0.6145681618161788,0.4391213985689613,0.4111910068388989,0.39180128222238153,0.405021401939173,0.3417911507326198,0.47363929459013887,0.4690298151500181,0.47637527537777485,0.36016365445652215,0.4516566353092337,0.6465582260046776,0.5937703673687388,0.45328289409193473,0.4617516721595478,0.4127536633878378,0.4049947512360309,0.48366241993533327,0.4407741893012794,0.3710792084641718,0.32642097312103047,0.5214029759814401,0.4856718388725878,0.4028545025508778,0.4217055327346483,0.48204596789684256,0.503547202651166,0.40402964127060104,0.2987063964749854,0.505313834762361,0.30711147468518196,0.5173563009732367,0.3448145148143888,0.46370617991662877,0.4051366117761622,0.5441074831095662,0.49296595037662816,0.36035965904763395,0.6208201194559645,0.47550195939862305,0.4503992483230314,0.4312060272002445,0.467500548423374,0.40423546750620165,0.48314598264515923,0.4216641010544035,0.46042308265994497,0.5133122449576099,0.47865338265491464,0.38976592515030434,0.5073173467125416,0.4332947602458982,0.5406399212235287,0.5326018810721608,0.5094788351358748,0.4913799603225651,0.5296374646826353,0.5110834304331558,0.44724199529694975,0.5080752581448686,0.5045323853794148,0.5284735701716685,0.44909076633622474,0.43440096073058404,0.5247955670986013,0.465660374103746,0.5369351223369558,0.5268266018398521,0.3138968020069273,0.5645956738926083,0.5914812172664997,0.3618146519002101,0.414718450802541,0.4030125611407525,0.5536362948745536,0.49883987636731963,0.4300493282409221,0.5558964116276837,0.42473500778372625,0.548483042351577,0.3544124974362706,0.5256745045099475,0.42263714249421863,0.4074020797222001,0.4873385910957548,0.40134262800148934,0.4960914886626611,0.5664159069802717,0.3213039974608592,0.6183353836116413,0.5256102644551996,0.4708176152446176,0.3063512945911549,0.3850034042227122,0.44708630147347506,0.47635284838196884,0.47668569732495597,0.2930078017466106,0.45916574515397035,0.43815200130075366,0.5347552954633639,0.5095727597269739,0.4202621544851495,0.4207605705468451,0.34544174736096434,0.5506026787306095,0.3035541707697397,0.4747722522326663,0.3876832802693419,0.42887507304737116,0.44674278252898464,0.5609350421456923,0.5547707615002978,0.6001018322717191,0.44101292583490814,0.435799138370297,0.5159353695619123,0.38034981368788834,0.35484874645470044,0.4534230822631722,0.5630214228217617,0.5461972175641578,0.4799467927900175,0.45754213733485055,0.47367266684314496,0.4834782235041035,0.37500129661918086,0.5204690656628599,0.40882201814241265,0.4050698768743036,0.37326682001074807,0.3212575838004043,0.5425329576855125,0.5189770800633038,0.5663368567584572,0.5070996794692937,0.5189672896674397,0.4725871688623965,0.37225887033507915,0.44078445466661026,0.47375128296907054,0.5098379087543329,0.4483189772492734,0.3963181963433743,0.442728776694015,0.4312248971710885,0.5189901815796569,0.6390919069118426,0.421673927742074,0.49631653951056237,0.616872686496389,0.5491131224461321,0.38263923904640434,0.29754800441975404,0.4591158384265086,0.374795716332829,0.5486665232674861,0.4885532438857433,0.47361733142206547,0.5592368370590324,0.4083430673227658,0.4428470871181811,0.41398699228295216,0.429095203106913,0.5640038221731167,0.4232736169498571,0.44325498349378567,0.5132068086740592,0.36592080986722225,0.5283204398578656,0.5324360599103664,0.42017795272983677,0.6519056416105832,0.33846367900880575,0.46629961728323677,0.4434168079738904,0.3610040518759032,0.389055567419178,0.4116980046275932,0.4395768569151838,0.4908928318531482,0.5525931730297821,0.3994593265580739,0.637168246896505,0.48229400052362437,0.5259142063302846,0.4460816355974101,0.3799184885796112,0.5637174256844997,0.4426920534800798,0.3704523206310493,0.4292771348035852,0.4528323239065852,0.5038906230923997,0.4666154179039965,0.4609612515068084,0.35238245664869505,0.42845739556380213,0.42247867098701003,0.48428443964767665,0.4045774953462925,0.4950449331644663,0.49902471583114283,0.5340956436480809,0.37453083323145764,0.5484640944502299,0.4562717794186173,0.3637350214743264,0.45757006746334933,0.3889633987497155,0.43273787744066583,0.3289600824893996,0.4396511334603686,0.4389703230792647,0.47126017287717936,0.3780467531591485,0.5261254089555077,0.4730256081476012,0.6260667954031321,0.4289830812006664,0.5945018250768378,0.4611551065771383,0.38999942025943624,0.30426489289862935,0.4075863755256054,0.4154429961581903,0.43518063313480354,0.5085753309537304,0.49547573405676637,0.3519726832627685,0.47599289875245815,0.5465764575971054,0.471048877949731,0.44009479067183177,0.48816816775118166,0.5437850570518653,0.33601139092806365,0.45896871992705557,0.4145030450425724,0.4359968150048589,0.33860386384611446,0.5139280248658135,0.5530098757175934,0.49662770328348127,0.4031988522053602,0.4069576578582863,0.35576996163154645,0.5509587567158788,0.3724948798030604,0.5827802903006775,0.3724248443100867,0.45470582949222044,0.5048369481400193,0.5073942391616945,0.358716474831152,0.5631731521505009,0.4725522193314908,0.5316974095852419,0.5255288453308267,0.5023525862309154,0.5168949345685142,0.44889213519099896,0.44346026187013365,0.5547529040703378,0.3290649475951417,0.4362426830439765,0.3536510450852199,0.44728201069505447,0.5061568454455587,0.5597795747341974,0.5512758215719044,0.4181405392136289,0.4112956993129072,0.3949940724850877,0.38859920326735675,0.4431253507268966,0.514281155027078,0.5019945936001716,0.5101093551134211,0.5143839845324626,0.3051136537851326,0.550106630278,0.43955892649146405,0.3839237248666295,0.469676838364454,0.44424345219102856,0.5009353514560965,0.523557470873593,0.40014428689613246,0.4462673017192039,0.3719372609386359,0.5800677917071039,0.5023759187870729,0.5151617350924654,0.5991739285266944,0.5832248592995605,0.3718038778971277,0.6115480576954886,0.45141640381478904,0.30964621574022516,0.41610438268089395,0.4867932104228889,0.591963064306444,0.4604107770789257,0.5430835175320923,0.5170832383204889,0.5868828589695158,0.5116171674293563,0.4873099199030898,0.5200140159869264,0.537154802291364,0.6506775351298161,0.4884457639471664,0.4383002482904186,0.5962022657976928,0.3883322752880483,0.28278365471764544,0.5378348425693786,0.45228015185418907,0.5523478703062562,0.3159052408181692,0.343163294348254,0.3954527482120046,0.37400946431053633,0.44193102251999694,0.5523952824059947,0.5220774860150432,0.40451177691987183,0.4264018390073866,0.4851830356223837,0.40300703790277365,0.5432804983233785,0.43332068631208276,0.5545277896793979,0.38699190086939406,0.5321113035218109,0.3655759365523635,0.6156570269529208,0.5297984348378829,0.5031085640074119,0.41186914395222357,0.4421304320185348,0.5380307828094856,0.4064889545730718,0.5073822386498895,0.4362892129580211,0.5866537120006217,0.4816117749365844,0.2690166562512768,0.4278230813244875,0.31401541006211064,0.4468704870718492,0.4721343291717238,0.45136026634580223,0.47038757649236734,0.48363490473550774,0.4332563173808593,0.5521670115274331,0.5056158328679901,0.37684422931973827,0.4007625757390038,0.4184766469586152,0.4604660392475679,0.4949493321422157,0.5422756581329133,0.47901572043154406,0.5131501575699902,0.3689498427437096,0.4774888372587328,0.5038628975437095,0.4980125836596141,0.5773729128393578,0.497676051216279,0.4730165766555049,0.48478906977553915,0.5697257871751614,0.54331394710671,0.35613192372507113,0.6260448314213086,0.4307272335615824,0.49016117329824505,0.4025887114878008,0.5280268932984669,0.5008155766594298,0.3775399199401376,0.4965528090448239,0.4008984005179691,0.5639736178089239,0.3838696890703693,0.6475235773058511,0.4011589552660601,0.46212305429314926,0.440144191903458,0.5268499831589472,0.5494159456458265,0.361098682338665,0.42041535267051533,0.39135218520189113,0.4588220770214888,0.29442556123902347,0.3685732450777284,0.4723738239135036,0.34228673469959436,0.5343074136548192,0.4705734092548182,0.5018879110066747,0.4084020139132653,0.4518707442960885,0.43668330899973573,0.5311419636856681,0.4925697741355548,0.48940014390893016,0.4677016635553296,0.3162620881489257,0.5168792112470703,0.5605423164754868,0.5362086562833831,0.4667726490776958,0.3917621763016099,0.449156084876788,0.5658407005699447,0.4362968980625688,0.7113057531298709,0.602654618073456,0.5404043086729465,0.5273380064258011,0.4856927851372874,0.40054581072439777,0.5820407942393068,0.3714523366390062,0.46317580705953804,0.41039985922365085,0.3818863327747044,0.41871178765075595,0.43439066611044735,0.4296211274234403,0.5070354437446423,0.5468897730844251,0.3458636039708603,0.47214365913592793,0.46462656387235013,0.342036752217297,0.4707533545638673,0.5259323531162021,0.5605309729142515,0.3939448280707664,0.38994564580008984,0.43665112817301405,0.2835527145097739,0.47540399042516984,0.4099938983981189,0.4763799293209663,0.5307628738166742,0.3801952607762815,0.5254076815320878,0.5249184105213981,0.39000671037949786,0.39174944355425345,0.47649364844023406,0.3931052484532503,0.45409845391969056,0.40746095899855983,0.5168138177373945,0.4282228830553294,0.4758220125757445,0.4226952075176472,0.4149362906863734,0.5272389026448553,0.48551577783331945,0.532464233990471,0.35783770163121914,0.6603883349946317,0.4949314508172092,0.43237853816561317,0.4887354309996599,0.4820026941231483,0.49619447787235993,0.40103802391129967,0.45985583419783144,0.4504248068929435,0.47223288682804393,0.43277101561413733,0.555301743991265,0.3557424681036297,0.4402520605651619,0.33489326256045054,0.3827047517168783,0.3548698877233582,0.4835585086612276,0.5003038272109055,0.40457767138323175,0.46108330425514077,0.4661678855354687,0.3720545414746887,0.40909361056021704,0.4520298794412551,0.503819391169838,0.471922741594549,0.3426900289794191,0.5588947527418647,0.4298416105206733,0.47617709293291416,0.5281762833702205,0.34779814568075507,0.4551221247850804,0.3648848270101233,0.5904882587354167,0.523128388974826,0.4905301845291973,0.47525335065359753,0.44056366576854633,0.5768068931917006,0.5071272765390916,0.47149982031333504,0.290840252098615,0.4546803391428589,0.48268632768579584,0.326023019577041,0.4951740117162833,0.4236872880288818,0.5986887903757712,0.3374854454094071,0.3653778041257307,0.3138833741497281,0.5863646595220268,0.3807018906118824,0.4656072034818577,0.4714198621119034,0.4124524190132153,0.5189880980049411,0.5821613203504563,0.405196863089126,0.48318862131018736,0.402841758727926,0.4559345399818333,0.5073498649323669,0.44199132987255135,0.4375906853334046,0.3903604318525432,0.539139021055259,0.30065202013018566,0.44534540856119637,0.4542534720715526,0.46973885000139093,0.4050568402224595,0.5055688285969001,0.6353881297674848,0.442057691239745,0.5333521077380596,0.4363874175228265,0.5405945038267717,0.4778195810450914,0.4573676656882008,0.3494687984103287,0.42905705901336083,0.4596092526590501,0.43292457462044115,0.4020702849424779,0.5458269950712253,0.4090125388282014,0.42305700819217706,0.5840201585625483,0.39675224579825447,0.4965155659348126,0.47899828769093006,0.5871338306145552,0.388859964978059,0.402793118337839,0.40897033210032746,0.547414696519903,0.4960753153203864,0.41932785565129865,0.6105378480086525,0.4408132985703781,0.5848606384592259,0.4339818908192832,0.5130153808929586,0.3909631356574675,0.3672430580584437,0.4354350660564337,0.5052945414250052,0.5432320208722307,0.5558492781601978,0.29088723073447714,0.5303375229602586,0.37331794605682184,0.3141953463653253,0.5035897856318626,0.476041838153682,0.3775004393098967,0.47584330187006363,0.4635462800802798,0.49368569089693387,0.43723036604430127,0.4063181829435569,0.4992376021337237,0.5376107698138783,0.6183834405487109,0.45824643316669816,0.501922635260767,0.45127522868963454,0.41633584994241746,0.5519780572196586,0.4472843441097504,0.45909366731757995,0.5841437552685609,0.48448065771368254,0.4487334389201545,0.4589821535270986,0.42102828704951517,0.35971187488254425,0.3768106027782417,0.4945051466776427,0.5989377353054857,0.5050973781929111,0.36281690833249486,0.6100475661056312,0.43734836267067057,0.38236741005058733,0.5513983111433709,0.4735199374287853,0.48555643875335774,0.4250027883460694,0.4902263655072451,0.44335585872503247,0.42733828543690544,0.5117908569057138,0.48090366045834343,0.49774102993839753,0.5088892683548066,0.4504596147407433,0.3506187172596225,0.5487186780967523,0.47031373034320895,0.540737080659072,0.3435724943005696,0.35229466784587327,0.39708727423707024,0.4432842443684921,0.4360551174540418,0.41483309802154306,0.4963313260295183,0.4540337179389823,0.4117581493432538,0.4680124531076815,0.37253788023876216,0.3554238427432774,0.501582329688076,0.37621094705688235,0.4426733321983256,0.3243797229737128,0.4029900002175174,0.4677310432189801,0.4230313176520545,0.39535612488020105,0.42797984060650107,0.45672099376457964,0.5000419809943079,0.3370324805610895,0.5651665187542866,0.40927661135509047,0.58353456604584,0.49399363979047173,0.45851646011440955,0.5503011703809731,0.567071716991579,0.643947402839908,0.5965200556449888,0.40514374161771743,0.44522294515569816,0.38984561376641913,0.5334667307047052,0.480455842839527,0.4853408468850045,0.5204199458760009,0.6207906784963665,0.43906903520306767,0.49744944944358543,0.4678623534906018,0.45047346950639305,0.3971923432309205,0.6499244681228165,0.3397057708430001,0.4637036704115294,0.4541166242839826,0.5453629250442844,0.5241435533009797,0.4236587950899479,0.5156940584491444,0.4826511004028067,0.5599272058572073,0.4146073200527663,0.5540748411600951,0.5387776983229804,0.39742422960076784,0.5766097247069281,0.5729449147365965,0.37108717976615563,0.516899766235228,0.5540044460324108,0.46815043351464625,0.5997842061575135,0.4903392035331977,0.501072431320899,0.5858317989987745,0.5176586192985062,0.44170328335647213,0.5251376024518627,0.4321228400311759,0.40810697122983486,0.43371886570383056,0.40676724109589746,0.3159391956915211,0.4917869730138688,0.4899584255535315,0.550942334334725,0.38231379958270223,0.40181355537177604,0.5562130800901532,0.43495376559051263,0.5300041476444176,0.32084767981989715,0.5260360645943303,0.5270532490090176,0.5496855173139183,0.4543248370410928,0.5350697016407718,0.4213797967002065,0.5671903124874852,0.4218201865667052,0.49792301274585204,0.4878870097547054,0.3924668922101065,0.44992366159054126,0.5263606479427693,0.39056345095279815,0.44212352108954,0.46230882979341803,0.4375863888741438,0.5171403620560879,0.47752146176403965,0.5399962545109784,0.41779590413432677,0.43568895951904046,0.4443724179958393,0.5224346423980101,0.508500936236636,0.4734812172772921,0.38193341224750227,0.5513200196824048,0.48383192357143984,0.4674551355942959,0.41426649759930806,0.40513360038109075,0.3936082164806752,0.4192842795045778,0.45098081892442515,0.3952071320071554,0.5490990200418387,0.2691819100727263,0.4323391439788828,0.442933828887865,0.4482570201205274,0.5131329497738653,0.5874904289016817,0.5195830411414389,0.41555196052469173,0.4592632102219903,0.30166649337430146,0.4547366178920553,0.42525852558944044,0.549365857546688,0.5330282637096533,0.40793918056779,0.40116464043421446,0.5508716984462506,0.4110489592227158,0.3745612912042309,0.43465546715513975,0.43427472709770293,0.5138918943430016,0.35029445100023376,0.5500600673607587,0.34851642887144246,0.5122318730499444,0.35865592790212314,0.6542140485929703,0.5510615618408155,0.3931492546662384,0.4968867521169942,0.4268999657882435,0.5004201404734819,0.38802410114660085,0.4459518261391775,0.38780467901492843,0.5676698756537918,0.5004193538641054,0.6063209934442841,0.48271685748582294,0.37414361999033313,0.36654039893924556,0.36106396038913136,0.5472623191432483,0.536256407738549,0.549209403533252,0.3869841158218511,0.3764822002578841,0.4283339840592702,0.5324973699814017,0.48275321472895966,0.6015922436810351,0.5110437255046099,0.41395453156674356,0.46895950180258195,0.6258948877285968,0.4282815081346294,0.5856105307278423,0.5127937878777769,0.3386895151213678,0.46352873877838185,0.4732779103640593,0.47476494947053927,0.5272748360101519,0.42810361907306027,0.5323649160398727,0.42037791139937825,0.4378780857891672,0.4887196143080281,0.47627546410521526,0.48364910726776367,0.44930414505474964,0.41117230128369736,0.5291836743653279,0.44736452147125594,0.42747410606789255,0.35207777697330744,0.45399508241242503,0.43680268837248915,0.49724275007175534,0.4088469002744124,0.4889172193040561,0.5289144641696474,0.514579812219395,0.42697547293711396,0.4178396240186563,0.5022032062112203,0.4904703003145999,0.39040684618482224,0.47823370715898533,0.40050949427046956,0.5548684808396193,0.46603566636209715,0.4351137625101245,0.5209300670601935,0.39124913967400105,0.521461715300435,0.6114874393440481,0.5126833562964073,0.45683883428453,0.4870765754078413,0.5002449139714968,0.3537499626111049,0.5066445878994241,0.418426166248582,0.4669373072777634,0.5216714938703545,0.35739815545596604,0.5398723898848462,0.46370282889644293,0.3906706012048735,0.48604499442542143,0.6469095630175584,0.32179293997433633,0.4860257267487892,0.5176083410285149,0.502988214323487,0.45005320317582087,0.5322053193313393,0.3320300731194458,0.4243686956416112,0.35897247464274257,0.42020529678952895,0.4410344975570786,0.5611320400412477,0.5635011108714397,0.6151846334888581,0.5491144496016596,0.5770476947142917,0.3705163360160718,0.47707324986722355,0.5721059591051492,0.46747548792376503,0.6121056018884904,0.42988404513686773,0.40450887230154914,0.45788755631217654,0.5821718609522465,0.40924372866254566,0.4632312212573294,0.5312516775417955,0.44731694581349235,0.5714095379030898,0.5467696530609865,0.4206029996397259,0.46820180601216776,0.41525713380931906,0.4016665678797194,0.43942464496098266,0.5408572807476194,0.3425515010999907,0.5083987881042306,0.4483794349972143,0.3798338192648627,0.6180659440781018,0.4590584616892399,0.3458630520484653,0.6527970065187977,0.48403329790848026,0.39289356762324323,0.3645730595187903,0.49263563504499946,0.6114504272795255,0.44140502189598185,0.25711189136500495,0.5165942329775407,0.47712869099068533,0.4792161999364672,0.5990648969770069,0.340031559956834,0.4439007190298403,0.321291107758055,0.354758747711516,0.5356699531115711,0.5023476449222954,0.5164415708727588,0.39926692025022564,0.38665658839233435,0.4359384674168513,0.45425348744078686,0.31150439767302895,0.377966619578166,0.5283867456485535,0.5728659413521894,0.5276430075208192,0.3937014419615199,0.52991057862265,0.49960563209468145,0.36458867064953243,0.47632358633954397,0.536685988456898,0.4550954408490985,0.384749390493875,0.478620770173907,0.58400698249437,0.4158489205754142,0.5365137715645202,0.3036966045981545,0.4422432193525821,0.5427315414339422,0.44487797715644395,0.5215820121185855,0.4393693457139567,0.391546678790426,0.4845103687218226,0.39425821857238696,0.3872687865658577,0.33823407162848546,0.4349223627121135,0.46105383834460184,0.4492731829095543,0.38614208140748135,0.4234350628593014,0.4764246812392189,0.45387775980253753,0.369296767402794,0.5510798306611241,0.6056832091374078,0.482776928990861,0.40139555372833996,0.3818639506459155,0.4091087389695004,0.501163121460773,0.40088933458025233,0.5852572509731115,0.48725007918485586,0.48636110378006936,0.4706019945700242,0.38267202287586993,0.37396078082237494,0.49318065438467235,0.5545113753405992,0.5681302697565931,0.435722605618381,0.4829560064194835,0.3808651504633175,0.4941652921301487,0.4597141888003872,0.48430474905722465,0.39986633678920935,0.45057040870290693,0.402726182851135,0.5056498135942612,0.4513055740398597,0.4509767131396151,0.4169393845408745,0.5276033724583504,0.46163617138621077,0.36125545441283974,0.5304223435038292,0.4417492364417181,0.4725307292753918,0.47247142847053525,0.49796960296948434,0.41545942744330366,0.4394561202529279,0.5922589738124056,0.3829839426687372,0.4649192280194188,0.5122084635464347,0.4723976614311407,0.47344495683690474,0.4463666651466429,0.4313203862361863,0.4561710607156235,0.3866955230975521,0.5707537058731293,0.5961696104487538,0.5237453205883253,0.509699195458239,0.4136597845043122,0.48693845863888247,0.4090652996909756,0.43228607514156075,0.4912695537843979,0.41642384520711095,0.542973906473689,0.3634832018893301,0.4753263883286109,0.4628791869129842,0.6067840678894043,0.40725970665872285,0.5506206206919458,0.4811448241773325,0.4276724410319158,0.4661021308891415,0.5124402867491628,0.44511078589039826,0.5497976901137505,0.31106995263215675,0.49517269973113526,0.5995890774928582,0.48979718615411194,0.3813530070626822,0.5091800791460088,0.5052278797763483,0.587667170807377,0.45654435724744424,0.42972196094500215,0.447165584221852,0.5411630533820972,0.4834643655358343,0.34224423458532516,0.33008669326673257,0.38214423209913234,0.2923611098897281,0.46354180332052586,0.494282635542899,0.5376503814891322,0.49737778968037205,0.6127113625960374,0.4749372179751576,0.3757113181697372,0.34010574709585595,0.4559894865623378,0.47382888158728864,0.41286620810614155,0.5141861382396572,0.5463424794419893,0.6197240613277766,0.3563402373917835,0.4439535740244674,0.3808455908017008,0.44012213933355215,0.6074835936623357,0.522814136089521,0.4822578721955059,0.5641727196261794,0.535196279144236,0.45581632109094916,0.5485881940926021,0.3720997836011955,0.38948780486577866,0.4038012984583269,0.5180562345780225,0.6576380936728465,0.5464990072628904,0.5622134347076401,0.3225466682491046,0.3787472277989461,0.4789208660118617,0.5965177032238222,0.45855856475742884,0.6207693508932968,0.47263532584923484,0.5343219867232133,0.4207137396922073,0.536687155625634,0.5297002630210667,0.5300261585872591,0.40261118660231743,0.40735541965146566,0.4626394438582005,0.43760549552095984,0.5354556053217965,0.5294950809047084,0.46860515761953636,0.6169316682865476,0.4414857933081384,0.5601029633693942,0.3606779414157694,0.38326133270345825,0.5054606451743408,0.3980597303096528,0.38257009817006216,0.49623508098016406,0.38683077276089345,0.5750602619511473,0.4706563809067246,0.5395364200129007,0.5189927607998523,0.48009183724798404,0.37979605839655184,0.3637250935763936,0.6116771104551246,0.5353822355260559,0.3968046932759439,0.48845831489766534,0.5116195585690291,0.4408768271601098,0.5067563677595226,0.501816724312016,0.4051743446214643,0.2433222503259421,0.4023533766012225,0.43717846673399985,0.4545052411393873,0.5335739241811497,0.4705289269508491,0.5747988968729564,0.4034630761708376,0.3453992108586443,0.4191882901356452,0.47030945141348235,0.42202977255541035,0.35663161573439156,0.5124725537378654,0.48144287172570044,0.47051717173958424,0.4276803407578698,0.543148028540974,0.531269238142334,0.39471007866393804,0.5926868347420748,0.47032593653960963,0.49577574453137974,0.45594616531945237,0.5185718334211321,0.3984164583640347,0.4190181567960215,0.5974162123841203,0.38430564854167343,0.4214479384432403,0.49397004472879563,0.4629923674394901,0.47381399550513,0.4147288783691825,0.4356022556116836,0.38800761299370784,0.3656704756412725,0.4289148087192433,0.3393504954590551,0.6647044641032712,0.44564991849772817,0.6216402015348483,0.6227042296462637,0.5650718939882229,0.3654168920470601,0.6141210049943547,0.38102544931000853,0.41066236294851366,0.4308142527621817,0.6158210055369335,0.576675893048932,0.36080580719416017,0.3897347090057713,0.5359223220364145,0.5226734097871174,0.41443246656337035,0.4604130237641462,0.34922808230973634,0.493651306700162,0.49431670055677335,0.6162010452172769,0.40655083401046094,0.34901434941845116,0.4509805715000358,0.5139307099588398,0.4929622242191847,0.4531575151087516,0.4870049937206765,0.40281989866406714,0.4407207418696859,0.555376369915289,0.42124220712797295,0.525300938405344,0.43357038199470316,0.5020757447307629,0.5668417711233618,0.3720543389167821,0.4489371481428722,0.47403090549117816,0.3554636308620253,0.4244987831828226,0.48813553695165973,0.3751506116771057,0.4572487320102657,0.48450779800858135,0.41257735968308346,0.44890047890535034,0.36867070546639324,0.4884449807393589,0.6099392351415015,0.49067091323553624,0.424582683233947,0.45536401253280206,0.40547127846382686,0.4551152665593494,0.4173106911557016,0.48208216129484005,0.5672326193571068,0.4485950801593355,0.3294410917721334,0.5014329962639577,0.5736967455852953,0.3658165789093843,0.4567576800562946,0.47352735997362433,0.4464267450463413,0.32669334335618855,0.5208430608486679,0.663771082975128,0.3739045536142679,0.45864487653318914,0.5519133130314283,0.35684780550188705,0.5459041504097328,0.4660090230643094,0.47367825110545286,0.3623452577995738,0.4099029669393493,0.45911745273665056,0.4866789123929999,0.5379272420039918,0.45176482191462525,0.529601476024342,0.38068895046799667,0.3884128137029917,0.4810746168319508,0.4512268151556417,0.456030646941906,0.4192865683854118,0.5481169132107833,0.6150608877003106,0.45581194202250547,0.4023335049729052,0.3380761369035807,0.48659835651662997,0.37160201991762404,0.5956085087141838,0.3141537520852274,0.4529722420553756,0.46024531257903945,0.4504523209036833,0.34576788065448133,0.48000113236235725,0.3944516735447729,0.5086883687638417,0.3641077427062287,0.4286907972494175,0.5227174055062026,0.36439300859272933,0.38212569991978196,0.2372271447695641,0.47131436538931043,0.5062768443633792,0.4691703637295661,0.4288253406266496,0.424885857904005,0.5417734126662129,0.5035464703261893,0.2793893403064528,0.6206134245791656,0.4278519898196856,0.5449442881253047,0.4947229214370913,0.4617754327512338,0.570653568311058,0.44029321865861926,0.5244484470798626,0.5013423753518927,0.5080763237174425,0.44644095761532643,0.42179982940861954,0.48641613809084366,0.3990636722950037,0.3686076894654431,0.5212818623452138,0.6085212559424505,0.4884239772315459,0.3957842834497225,0.5094562745113931,0.44800877817158985,0.48320561851614474,0.32564611364897245,0.5318497104698392,0.4335576921737588,0.44918653914591183,0.492988322538654,0.5540514729395043,0.45609532604859787,0.4200155669926268,0.5187865870475389,0.5736444681994867,0.5309842997930914,0.4594937766033549,0.5696758352112601,0.4299971090460089,0.47508423718828213,0.4105636502005492,0.43755745693038073,0.3988628566431399,0.5045331018488493,0.42965704336726096,0.3097762535139825,0.4652981003103605,0.5449999026589243,0.5003590771225258,0.5945097684136904,0.4397074287952561,0.4601793875850939,0.6412299954704973,0.38737638620937676,0.46154468739900306,0.4880197289321341,0.5268351023747974,0.4391225745166851,0.5550011264643132,0.5024570841591965,0.4414183553042102,0.4643672855578671,0.356745755797578,0.527805255246255,0.5609674510782522,0.3036595732700701,0.36788602155961486,0.5956657681193944,0.46243025948657773,0.4574698191301274,0.5081191733656717,0.4897695419888075,0.5865818681443116,0.474082941619386,0.31139840288763176,0.5038312827628542,0.4312572919750647,0.3448300308269011,0.3506648030791898,0.5260563559454688,0.5560259927814997,0.47186939478387213,0.5029830423644367,0.47727599262746234,0.34825246234069235,0.46258987190373385,0.47431889343457245,0.5452157496786815,0.41301792406103083,0.3397411821627621,0.42258828034048146,0.48304521008902807,0.4678555204139148,0.546842776616066,0.4502072476082987,0.4616193341039379,0.5114696260569541,0.39324001825233873,0.4284152489977715,0.5400222983821111,0.42482048184817034,0.3095392760765288,0.46124329148241794,0.6001026023311923,0.5065519675660203,0.5594091526281002,0.3984271441491757,0.448047772895567,0.4520693967451405,0.6057350462814242,0.40419267668796016,0.46383776182261305,0.6186286620323713,0.5304749629715171,0.4939469614869455,0.48177111583975724,0.5060486026013237,0.46664386153192144,0.3834031569840426,0.41147285944198353,0.5031833139353709,0.440508358395585,0.3834505229656029,0.6109551916878707,0.5550494197865081,0.47618891893297377,0.4678021917188448,0.30420125721203006,0.5274422752407657,0.46491422144156624,0.5176815496786464,0.4300493798356574,0.4742310009764185,0.546748986050346,0.38813151760173226,0.5581508146068669,0.4554548656316829,0.37227054131655535,0.5297520592429399,0.40058430874623774,0.4571298986829807,0.3939501807831985,0.43350777685048614,0.41752096998105004,0.4980248036729941,0.5061486867009539,0.5098537754080564,0.5883310611742822,0.515359835794758,0.5197333188409222,0.5035395590310945,0.45999178218705983,0.47351260278795265,0.47560822098168265,0.4074492206630606,0.380850543661775,0.31309091228541486,0.5269780973096458,0.6145635453534638,0.4379922773775802,0.5197557408648515,0.5069007317187747,0.5825263439240201,0.5580768209896874,0.5805594326011116,0.5272917906220537,0.37947709235494853,0.6440510515432422,0.4125704970959378,0.4065048665111857,0.5331608525047971,0.46186572188311864,0.33703647121512353,0.41727593935777785,0.49004979729476733,0.54565019005687,0.42916982497366135,0.4405844318219111,0.488454224494367,0.5578427667178198,0.5260686476285803,0.4798220267413855,0.4978664344801529,0.40931631267412666,0.4396090616788339,0.5232471461471576,0.46078529968923215,0.5279347944782549,0.36710283943942557,0.4100550054177364,0.23217833566673726,0.42078122090177567,0.41970968048861224,0.35405270159229935,0.5399098217708729,0.4243352106814702,0.42118053750609763,0.40334579977197543,0.35550469571884413,0.6129488762897968,0.43367091447210115,0.31948197147109925,0.625730698892775,0.4472676539375759,0.4751166047556278,0.49426524760332874,0.49785739715803157,0.491167437770391,0.5034687840244397,0.5499469609315789,0.447741075017998,0.5219324802262769,0.4706127001583401,0.4193882697577723,0.3886542682192461,0.4019553119822214,0.4938531402853007,0.3617600507393805,0.4444856189856902,0.46728288053822076,0.31908835082472675,0.4386656281738023,0.42865296264084557,0.4282517021122169,0.3989225588102516,0.29149434175891925,0.5218166255849994,0.38001231433848975,0.4793030769849182,0.38515118283367744,0.5137939036628759,0.4313525205039732,0.44487369769894486,0.5388593287423296,0.579052809312738,0.41587801784272144,0.41207860502493954,0.4927608842273624,0.45513217550406676,0.40099008250913076,0.46226754752941795,0.6128398426840311,0.4584798525152252,0.5573001371425108,0.5610181697936208,0.4956809422756565,0.41089485199573417,0.46286659372221217,0.5200234066665858,0.4371966786798123,0.5838551935639662,0.49659053235590367,0.5217316082726241,0.37124572340151357,0.35275309884815803,0.47776027274403104,0.48786465256052053,0.40153629929290574,0.5511976169673773,0.3095817771662917,0.5442631088308565,0.5081294654284251,0.49323092995001094,0.4676656241088562,0.5131270009623506,0.3704082229465917,0.45838715038904415,0.39521650795913116,0.3887587852750667,0.46767586644223597,0.46480278464380154,0.502244269604516,0.4961885592496391,0.36351126808423867,0.3933381220278336,0.48405107264513114,0.33399399817283104,0.40752787282968267,0.6304638507845246,0.5076178607361101,0.39223237163687336,0.44231326739977855,0.4092822598412758,0.6623837686154997,0.5550073919943196,0.32139157511621014,0.480575870585509,0.45178150829553787,0.5195059772174762,0.4023181632346844,0.37162599966749477,0.4315505377986162,0.5747058599805196,0.462667748031704,0.3807880513785479,0.4248160783471748,0.48226687535988555,0.4676628858495646,0.4710693619428477,0.4627763396530243,0.5347682169834204,0.48803769295260974,0.40668332353837927,0.4314174625033032,0.502615654679617,0.38371977109292404,0.3891200174559002,0.47476384316957737,0.36717390604238315,0.45149404346185235,0.563330451666599,0.5056322234208274,0.4950740120049345,0.4432403317948673,0.41387708616720426,0.3738143950691491,0.5644588757288942,0.48212426012907644,0.4125914129972745,0.4318259247675548,0.4399848119422316,0.3270036256831669,0.43357097173788967,0.39188143252585184,0.45896256581384315,0.34575473624807906,0.4196224870439754,0.4892150000948945,0.325972357584471,0.45391341316114076,0.4367302842728498,0.4330390450619495,0.6100210959824962,0.3409822354043363,0.5460797586575787,0.4527050952999127,0.4584933769594461,0.5010031958622052,0.6200045638488386,0.38679209909978,0.40158953514359536,0.49836813938638413,0.3410535441456402,0.46721498511033976,0.46317251180127966,0.6070791704166686,0.37957923063851223,0.4505511344581662,0.4537457741248951,0.5196754666218222,0.33054256596605924,0.4403810416158892,0.38800615302102465,0.43748625233158767,0.49420507840978545,0.5107106767583028,0.5472811319090206,0.34956615288297194,0.5952667025538579,0.3639989544084533,0.42565424821156433,0.33965656341400047,0.4380815113766386,0.5842376900295974,0.38682387836996457,0.6036045514986115,0.4607418789100789,0.5306717717866386,0.5464368330466437,0.5052708551164063,0.6129082694902851,0.39605719587866517,0.33460535710520456,0.46363762136677145,0.556374393030972,0.5237423857118945,0.513157048525535,0.4702398002115134,0.4919684394438125,0.37130142679282446,0.34416400727788216,0.4881845372909826,0.5541433792650873,0.4767099960974195,0.47457285594089627,0.7541044234129493,0.36590642185586786,0.6375946628925648,0.5103613447458087,0.5160611116711651,0.4978971418204855,0.49338879472129654,0.3411523358118515,0.3326965747189159,0.48240506670204925,0.39450722674024485,0.4711334185846987,0.38591789626630446,0.5339356723210845,0.4149305006777307,0.40756860073391954,0.38537335296158454,0.5050058779006477,0.4232018111789996,0.48672794224915905,0.3971193810485614,0.47775295919163224,0.41343164954028216,0.36671876966322886,0.3374290547527805,0.3990107002659446,0.44568235089095026,0.4904432056963097,0.5308969307017078,0.5435997956046953,0.3734828796258275,0.6154247938658494,0.6201730937233858,0.5926847574746664,0.39936859811415293,0.4089730788543483,0.2754955533038503,0.578844890605473,0.3755475889569909,0.5474889411638567,0.4115280389371264,0.5042896197008045,0.41157497548770255,0.47675702793674646,0.48440481488643894,0.3359258245756483,0.5474245740488732,0.4111597394343542,0.47270643386156386,0.5943558577996441,0.38021069711500594,0.4045671741510303,0.25145114378379796,0.633398494545878,0.4765277659882788,0.40718881682854174,0.37071393275951764,0.4300846020070043,0.4497667341825258,0.5600823029295485,0.4607225560752316,0.39242619672455936,0.4136837009648968,0.37742549194308,0.4425898595819524,0.5014081761826297,0.4579606389533294,0.3790556455479223,0.5870111921516953,0.428792171671716,0.4626285251201547,0.23564385060045276,0.4444188696981165,0.3940359636739267,0.41806178921924864,0.5322557272350598,0.44731545599613154,0.46501717798316805,0.5624021064832341,0.41932130943832807,0.37847794626436576,0.4204500947354939,0.45908298495116356,0.4176384785617202,0.5370067673467745,0.4069364710954213,0.3993804780264562,0.4614303405995879,0.508029080983346,0.5324682308501414,0.4655527824148952,0.6123578537026393,0.4566819116611535,0.47805852162839063,0.5145316314517374,0.38607380941987846,0.5548563134921161,0.472166638003286,0.45681431664625033,0.5590497533742629,0.6224571592129222,0.3797717059503899,0.49849782973618356,0.3879186710361196,0.5187910980651826,0.37862424477434264,0.5173641289573552,0.39615523541414727,0.48003294141193603,0.5353751969552085,0.44685065324753276,0.5465553015197071,0.5615752959979861,0.47670776757433064,0.38096421257261603,0.4600584357610393,0.5023631395449883,0.5135354523518675,0.38849543955698257,0.382089151847785,0.39960893018639165,0.38933203334159505,0.4845650649295153,0.5625462584592351,0.4954776880144177,0.3497206469004683,0.4058179409957944,0.6219070098206854,0.456908563072092,0.37800522608981507,0.5539107518593717,0.3794590121106711,0.5352142675532434,0.4163266681298503,0.5652225012067651,0.5666960333577548,0.5465392359229309,0.4693820216836838,0.4990768834175201,0.44074379199980107,0.4320993474444281,0.5359739754486967,0.4190829158456519,0.5157928286073166,0.3876854935422681,0.39728502964712287,0.4662744452444987,0.5777229917083029,0.2845282010995763,0.49255674774274183,0.34169311142707065,0.5813810425105355,0.46603644703854447,0.4003533150012902,0.49461734830087345,0.5401673723047868,0.40193414344635237,0.4683220114394323,0.2865639541069916,0.47241694320682837,0.35748340611523277,0.4219601836065108,0.5124712570773022,0.4107748556263402,0.4839744915801981,0.5511489631539044,0.47435687066198484,0.43592412814378917,0.43299090850236643,0.47105233481289566,0.346191280602861,0.45124121841139087,0.4023967039774411,0.47798570647162963,0.460889769316989,0.5403283461727733,0.41853160949308027,0.38387609550797896,0.3985839766915884,0.3125568240438736,0.2816463416237071,0.4261632002966632,0.5126617720331405,0.38692635389653235,0.44276916972133995,0.414431006681533,0.463276229347912,0.37928189274785984,0.6493067633124345,0.5601076707105864,0.43074772509395354,0.4136907450421769,0.5357564106384218,0.45413861442596337,0.5246008645660502,0.48903691716308695,0.540998394870354,0.5178563064010635,0.5733727883486572,0.3178111788844432,0.45151602464167606,0.49324297671114015,0.49023241704380177,0.35176589781730355,0.49119320262363037,0.37100294759259084,0.4364128619892034,0.44434889058364463,0.39645993127145684,0.4464566178445266,0.5473990385079924,0.5163217140727422,0.43746043574571375,0.4198011022695371,0.4148544559980034,0.5318120786986978,0.6463654488926821,0.48987367036531204,0.4972303307960331,0.4604956629898629,0.509181771248997,0.6357997704169228,0.5447655084169153,0.5809890998118246,0.4980800987137656,0.42446568668197504,0.5041624340229043,0.5468026183493826,0.523169404702165,0.5828263437425824,0.4916324825927008,0.578800927320207,0.34897428683317766,0.5081995031297301,0.4978012005089202,0.5004098604760568,0.41867574662594637,0.48767323840315646,0.5203209979525185,0.4455627139773685,0.49885907435827753,0.37776641262457156,0.469808028611131,0.34891732754319355,0.46113394799042673,0.4872806052996868,0.5288587379810117,0.40787457041833625,0.5609766287176358,0.43938354122136003,0.39629634829290633,0.6086432074169824,0.5649880892232103,0.4943076876174043,0.5265791764963776,0.4524381212995505,0.5768519519402063,0.3348875213896733,0.3480980500644783,0.6207067067800348,0.3636806187100542,0.3117366322287346,0.4843544747388217,0.4835775471033182,0.4599602445926436,0.4832233122611058,0.4399367974369722,0.4572951875618298,0.4598754459743749,0.35632626363221803,0.48430578769381194,0.4916341975193807,0.4256325496513313,0.46467766480949213,0.442861265971894,0.43076906172645313,0.6223128235449435,0.38297592046187406,0.6119950103026672,0.555546116320271,0.4983897690163515,0.3661341925617136,0.47212458157856924,0.4822372089730831,0.5029596547752666,0.40024773050667256,0.40496844454733827,0.4657289389969827,0.32315784134491404,0.40455340866321604,0.5568740422391608,0.4637817936018186,0.4684288844648964,0.5357279711009348,0.44758812386648983,0.6078443528962584,0.4733219166592814,0.4682022796547206,0.3646670544447473,0.4883812446788857,0.3250744268588454,0.4619757249026524,0.5950550614220059,0.5459072898768554,0.4466859020381368,0.4820682991236241,0.5989404492521223,0.480028998427277,0.4870874556530923,0.5323324723690311,0.47920267947278866,0.47349730264601325,0.4978798914130448,0.5560069530863232,0.4189303440865116,0.4561074176901287,0.4945337768281301,0.4417898196788199,0.5255346156838016,0.508256695137046,0.40025373814985804,0.4408467283713952,0.4783363147962401,0.5062503132780574,0.49941997426564744,0.511496879538054,0.5273061346137499,0.4576265266552576,0.40344710348443497,0.5586162290422874,0.5019078667595779,0.4959595162341628,0.38334831926790375,0.42472101765707376,0.36961732350672527,0.5003204064223953,0.6063653170211711,0.5884426250755364,0.44967559629751763,0.42971802365585077,0.3708400940222507,0.49440555089479393,0.5013103029990388,0.558501378527401,0.5691723328345978,0.42448231697537653,0.40633422037939515,0.4600808264233842,0.5163443610420839,0.4825784067921346,0.48082746032878865,0.39414874218353707,0.46563324059443745,0.5037920267839215,0.520005533834562,0.5494593259555351,0.3315183918464086,0.566595641808345,0.4951115558399405,0.479680867099547,0.4627422663733626,0.5311816066746671,0.42107745630865195,0.4015916566064261,0.5230426390961559,0.38816666269627986,0.49097395801625077,0.5104897495269954,0.5488597224351689,0.3548004044005162,0.5915181810744307,0.4824655010980548,0.5540100740158844,0.5336205613211765,0.5221754784175062,0.4461150374160874,0.57396533076714,0.7183557122956952,0.4634195923947077,0.4742745291799212,0.4843125521641707,0.49016478908418226,0.6063584631315824,0.5254203620814196,0.533026900394022,0.4566256658526149,0.3402036630870005,0.40852249613580144,0.4522204858207866,0.5150316293355088,0.5440273390385666,0.4559433559670964,0.4281770776267201,0.49017947956499647,0.4398012344450765,0.4991919772630687,0.48540122733436225,0.3995618805334286,0.5049335786322852,0.40727295166044497,0.4465509859516029,0.40546647561536,0.5588572786536959,0.37310795258353524,0.6184935063253991,0.40919328951772066,0.2999333638078336,0.5929391952723466,0.31176785111328886,0.47338729488666736,0.330124429565651,0.4703567230038639,0.5239722287560342,0.47592430395499835,0.48148724841258755,0.5456178230538211,0.40028736990939107,0.4198757243202165,0.39846122324785693,0.4875018999928976,0.34551513459125677,0.5606632699021605,0.4202044445097245,0.5318614495397905,0.4841817804296182,0.4492858099119581,0.559148013734398,0.38166680826978966,0.4800025597877521,0.3684952383450234,0.5250285782977199,0.5530717434894543,0.6148253033187279,0.48732384720839395,0.47235167026879327,0.372286959228368,0.31605028181875794,0.3874984564362053,0.5766182715194048,0.6401858186557305,0.618282795100471,0.5513846308791518,0.45126590754243306,0.3919626394247728,0.45636685621189643,0.48259288107443216,0.46060260453420593,0.27666182506659215,0.5289650093286647,0.40976213678182866,0.525396515525832,0.4862345859569229,0.4108784435963155,0.4347116867495089,0.5529975788176525,0.4663396443094047,0.4283545803703616,0.4843912411446344,0.32370362924505947,0.4388759081942622,0.30939135910088306,0.6354994753680066,0.48752944540368537,0.36432430538799354,0.5516622081441219,0.5712821818914197,0.44483768945037144,0.5218368462141897,0.5716407111457951,0.4067015039496513,0.45947638916631006,0.4305667621534388,0.4416540316732215,0.5588983156084418,0.4894445170766495,0.46311396556344414,0.43403272406008475,0.49977854366206137,0.43725861710014685,0.4260793605492446,0.3781129960416385,0.6102967484817463,0.469650807742842,0.5282270666669411,0.3918830386113208],"value_per_10_000_usd":[106.79307819885128,85.74820319419801,85.66058471952053,84.2294885232704,39.35147335655722,54.410629425039204,73.96295754793684,151.46793008857315,69.26751821628761,193.27037605286057,267.58172579229984,138.6617825043065,340.32318916261397,49.7299376005975,102.64225606443856,108.76339733037992,128.91963383232212,77.95671747153247,410.05752157503497,130.5452169624956,79.64858466896382,100.84499778145769,85.8553029690482,153.90560628191255,68.11506571529594,71.74414191755955,182.78271884530707,76.8166152536333,43.23431181221699,107.6919827045138,81.7994197605354,128.90682373252397,113.20997289665749,51.36344136585444,173.7798283893514,145.77974645315794,265.3153232994231,136.31945784239562,113.68945817240623,158.2897599904358,170.0781116188595,1101.21924838693,92.62883517685007,80.84845314787486,112.25795967596726,36.169450278399836,209.62706468341614,213.90002655003667,118.44547748308754,88.36729611727026,107.09871592197393,54.61853333150471,66.88708261549621,176.1875091899829,558.0052692230374,61.00341505420293,61.069320003131686,75.08359208730911,210.9682934648464,178.57285508468172,55.484661086392514,142.58847551698435,226.07391610157413,117.7463268314731,98.061037227445,64.86655835449436,46.96874202672643,75.6970673924443,187.26647219996102,87.15887141717661,245.93962541750528,50.34547909954844,52.797670088321894,55.71823847408185,271.9908795149244,116.89499786559661,125.43921035158478,390.2919423386451,95.51731065360819,166.13555043657178,61.48280908649987,152.01855387544393,81.76379414201446,43.33518064223195,70.06202702425072,49.10411173448868,200.7143722139817,354.2262428017738,283.3270411875043,58.270277332661415,42.291509744933514,128.99230800289646,220.25723913358192,313.19519676805777,108.6343930619335,33.48265802779484,74.23100677142895,96.75176018113753,153.87491982873732,317.2859140494995,70.51350851640497,76.07278538784392,42.199171505045406,36.23591219476914,136.17655317802794,36.74706834345582,126.31421568101067,99.45086418715269,1101.0776665434212,58.91951172661853,106.66544095858174,73.93039895395891,487.1650977613047,216.45829473679007,93.0463827097032,75.08822185560841,50.99231362192657,116.33469418381785,212.3816376947541,70.00958213462141,171.6935237275088,91.60520393044149,106.63060949453737,138.38741176769204,90.37834305980026,159.82836704521276,180.02809364690717,156.85144154798382,89.50576493634898,146.184489146537,47.57104411135333,87.48622195029621,100.12181294252977,111.81703958251319,89.24282496744667,104.44953681389369,213.77614152041235,61.3885937085452,264.72160019726397,148.1622234764794,111.54550662298413,90.9903321821369,56.84609113686631,59.08020783760255,80.49010756105906,97.56806550573549,98.59926756330525,79.05037289076526,133.60477727317942,80.15347349135061,54.17932483629982,211.11775832036673,73.88513066119506,119.07083345986416,51.89152145002071,142.97547731483004,475.1234894405963,105.11791706342547,88.60826981204059,72.6318739524554,152.13615225860173,418.1651960012063,55.66970181684328,75.14366800323174,251.6678016114594,321.1764442010706,45.34820299318761,198.22150813907572,100.60449837145592,149.20143064460768,100.99650733895606,89.54478876266363,37.23483238088052,44.03082266818173,52.81602839189196,68.75424801694831,30.300892136559337,46.2923227536661,70.76985800940862,53.21681887524534,96.59666228802745,125.87719937600512,331.0829526753941,86.53136070357738,91.64408496572487,89.140560734867,125.30089737393307,82.52220608232146,62.442721753074295,144.02184261913092,71.40701609420377,111.74495494522985,80.87684192260133,107.23802625638002,65.6736287463439,96.50245213122538,113.8205398233977,59.348950005017144,443.8874550640246,40.0608601571548,39.407439452987866,386.6501960780664,79.29098074966849,91.69506298032383,65.4309139950053,125.37767045407693,67.91115404865415,72.30890409467814,86.39867173974925,66.69688181788904,308.8298349310634,111.69567860734398,60.81913518398446,202.51988712971217,86.75649165178089,76.18239757589153,198.93436305922594,58.11029314975105,50.89134622252939,76.15754427943237,141.6631980379707,515.7758689075043,48.69789631969405,137.57640856466958,74.1142531027236,115.33534728789945,113.3476290828613,124.26117424486887,305.5960632777632,96.96890868335687,113.55092852012574,136.70154446655474,193.75636500144273,301.696671219278,190.79636016706505,37.02144044539875,223.96013272071278,76.3101539852533,59.98767095559964,88.57914517958378,278.53538286352443,260.6053053245915,68.8794403703093,163.150550361193,148.58181912567343,299.01326859776077,62.50983260853991,147.15349948945203,62.04343868350753,100.19730883497436,74.90866974509564,80.94889032203655,33.0266084154273,147.3692007629801,45.27727050380374,158.53028953000236,76.15804427691693,68.13444838090247,117.27657956331075,505.515953783289,91.61234526045999,166.82011612231716,88.42303469206905,254.55646958474065,86.3436746522619,328.8848218871854,94.42421826095443,70.13217283566529,215.75352539129923,70.20644407912759,125.32816469537904,105.66205638021685,76.52279499312445,70.55940215606601,160.6370012799039,55.10270849507584,90.22340582841626,375.6393463827679,53.973223362733656,370.2233372776754,61.04136645065069,88.69081452250772,53.66633188202936,32.218901417112484,71.65160752156619,103.72874949444235,83.60563779410721,52.98980613570149,109.32506868990878,43.56861433301995,220.96105772803077,109.05520982144465,61.62344492489964,77.63144144050264,164.2250317735803,81.98774089762338,52.64256594352504,335.2673880083202,80.4092169062298,57.59543743488407,161.12307548685487,70.82071524955752,145.49880653812218,55.59606690229577,49.42145398015354,71.84877268052503,138.0004590541615,55.88917842094975,460.05587049528685,54.949906490597385,95.02021271523108,124.0318764726336,62.74164283371008,54.68064274564493,114.27859935213695,68.55702044172573,45.23817442675549,112.42430443414356,161.22432550555587,120.1457591129157,57.8433067108189,304.5796983687649,252.34198630919445,60.50053699166426,235.80328002273237,93.38312226730844,74.4597198847139,58.19245416831305,83.65104430219591,79.28227477079946,83.48305962293652,134.95679945907943,51.430300142336854,703.1275890585599,44.55956508839391,133.98173944134763,58.76475157255375,88.17809029314655,103.92771687247638,161.12595510490024,43.905464957774704,170.39484804416398,109.0510879950013,121.9373875302817,78.16548832527337,234.46015606124263,111.94921982014759,39.18156823448719,52.18262544691151,135.8948920634758,69.81765798136205,167.43897223721592,58.926897189000535,125.46363305943038,106.99949923793842,484.5286345490484,434.8699499510082,103.09531679558475,69.38456584909213,145.2727467013327,53.9464349662424,120.79624070218865,54.30934484104004,91.17118929664376,131.60810297893087,103.7248429349873,117.17059003615617,47.05365959352066,258.2252711189175,59.71224744086912,58.74180127728338,108.28451479935426,55.93158808130986,119.0969437446568,107.86874219824715,146.75279065700508,70.76815398429832,82.73906649831932,64.33382802372718,117.22858568343064,210.34933955614295,145.74391291136644,162.01903186502932,258.552225600773,252.66908325421346,272.30598850868324,118.3393316725103,149.47908294835992,88.39899128597757,72.48462759522214,91.3186201318602,101.58322848880344,98.5385375182431,378.03322474363887,307.0493188849174,50.62697220979991,31.49625968994565,52.329085763361824,86.61546081815288,51.999323652383346,121.06118940588583,65.25970397772303,145.3894743447431,53.26527016857938,82.55738635209828,98.72229222603794,155.85943890990973,193.96258341918366,72.31525888092138,125.53911140398004,96.65255892006378,67.32809177843801,127.40020739966565,65.03740436351323,184.17901467355944,89.48555425453344,40.24369205828382,49.92684937098203,111.07112898179422,69.97762726696871,167.10822134132545,139.990617088504,191.01954714499647,338.1295255987045,167.23050499383828,170.23359714882423,54.71730126713871,315.315346316227,156.57169803932894,151.27470135941644,110.2162325577295,132.34458087985936,51.632313046513346,64.61106389102159,102.75368634831943,57.22708789881532,83.27197941796769,143.54315128656398,128.08005824204915,97.94515924776728,90.10680102045393,37.985820862727415,128.84198777498418,96.35819160812017,81.92573355953449,80.59318875220325,85.82381916515898,263.5240505604489,197.77108413238608,144.98984071497506,47.34443613197678,49.77062925488309,381.41991176424307,78.40017908168093,96.10114531074383,40.763084551927285,126.61487309428647,59.974297639141895,154.72643679518305,49.57937518513842,92.27481594213022,150.51252686944963,65.58043427788726,130.15782291541964,52.50627255262901,96.33124251762169,144.4867237053311,244.14784808985175,286.1587175243695,75.591459107945,169.17404392858768,57.41581790662463,148.32793087091719,49.05714112260246,58.418575454639665,187.04028546415935,100.88046038423309,166.4939443987661,85.58235341966106,137.478509360078,80.60886659956624,159.33626608643496,53.730932015492264,67.1360077777389,40.97770225486242,94.45935604566863,62.15002555332764,77.28668138294782,473.52006057795376,56.55792631183876,40.35337690175665,93.85690959849269,78.31374484413881,151.12423345227685,240.68102731013514,71.81260988723042,72.47852298169263,76.61604539094589,60.51840757920413,58.35600193025163,64.00078939690897,70.8340349872471,84.353317129988,64.56317515362169,94.59028669319164,80.81892367117204,84.35863572209387,137.12770281497066,234.77383353664501,193.2286271838541,1071.27959659191,50.7011566538813,54.70600253337027,120.25366265762236,102.23482491277132,75.89099498862288,129.77607344355837,107.65136243442029,105.17374870118476,60.89527990416947,78.06454412312307,173.18086018671235,122.151254746968,115.34738795024055,396.5276300129063,138.02949131260482,514.2424101569152,126.98537601290366,221.51042274458248,595.1917446292373,79.61075451776895,306.4477637061126,39.017871345599694,89.14988643165539,199.04159243028357,58.856023216289856,151.35839430018785,95.01548556786688,101.75182930130204,46.95232866544581,71.69692574285705,161.37198831349465,169.89236034635303,46.2184321799765,137.47749318259994,145.54462852231796,88.19770777007226,79.94487888587828,147.1068426362422,33.43053179359415,78.70396561339481,110.79568085995008,457.4263232693791,125.71787754499628,143.60241119499958,229.82383138831463,131.60432521171987,173.37419131445287,47.85279770103108,182.03840180873928,57.12868828276845,161.70506771245888,78.10518916423375,79.9542799999398,59.78881768939324,271.3522373460582,82.75126695146352,106.73855227976841,83.90471420689147,78.79939563446766,54.51710959847107,95.40657977663331,531.0999305675699,57.34003085840926,89.22192637507383,82.6427669133073,473.6692064764751,111.69637668236845,171.12079950875034,82.11356510535698,89.88557568395547,144.85939479426742,86.83063857760018,53.53690150205647,200.69101594749702,58.15398855655183,183.6942709095616,89.71824086126969,164.14406536382305,31.435236849687133,86.84484556698904,68.0393730085883,222.47738360069883,106.03130207469593,232.66640775816202,97.2346989620128,63.54112892320846,137.68175035457196,41.72038314958966,39.70411096612068,49.61156406711555,83.6305127201247,60.44983687620604,106.8576122519684,132.79450000333196,385.6963801921093,437.8773816688315,97.4269802336033,125.24838657102916,73.94706814149758,76.72213314987836,83.56112490233258,113.83016415124169,79.22930679333302,309.3390960852423,349.4490367286509,76.62494031693319,62.97651562502983,104.4370837524485,273.01683779834144,140.05840519848692,76.13063467686473,81.2745493463804,71.11006848034542,52.66727167916617,60.03784053651809,168.35995679527863,59.32178647683785,38.054058422642825,138.28941389394134,125.55959083930489,160.7968253176637,120.83380673536762,58.99020221303345,119.76377056559619,58.321869122994066,72.63138028802115,97.6960141257686,173.40283806371588,50.822712564519506,50.73755635193825,88.41222819499194,98.68347931598638,47.016066346348474,48.97703115261251,111.66418409925606,51.042161864738084,38.01737025002861,151.48699994371717,58.936956939841316,88.4275189146415,117.14959151617386,289.63434667503793,79.77991666380132,298.6613848207864,83.57275874123047,81.18229000779652,107.69103773075075,70.19303226595432,54.23407241099769,63.25548063124782,87.23910075548442,177.28774275114966,70.84477189654329,29.481619310558365,540.7944963390595,94.60517652019736,76.6490099864475,125.8291681271223,496.39035601065694,72.21367642628576,112.22851715518728,51.09555455405844,116.66914583533008,154.62631604100426,139.4153172304014,35.262689396376665,60.28640591532624,76.49441751058123,81.19200422182399,40.171716518748525,62.071839680241986,73.69710178655616,481.79815316896554,52.15386715485986,231.58730496247304,219.89463721909647,209.26930554917868,73.73448250646571,92.5294316545895,205.0813965410315,127.25157645190549,206.9382469755929,64.01265556907995,130.44904282161494,84.04661480410111,58.79795783517051,66.22833653340989,68.42153998481527,121.38408555744135,207.31122119056047,145.9923408171274,99.08853322919026,209.59019784551174,58.3370458208959,77.6591603411195,122.60959385511094,528.4268788061792,225.73994887971222,118.05743747152914,100.62728154341532,72.76443728759774,83.18226952812444,88.08628193659882,129.77220481859464,48.08206384743627,90.86672630145898,171.96430589222044,95.24456825406314,114.80678709776966,118.23834301796668,57.018191582245784,112.6673673108435,58.91654435699503,95.82619391825064,365.5045675374538,68.31627143948349,185.8603951362256,79.42287488548536,56.08677572458191,80.1293308859625,31.603592227459163,66.51068331378461,174.43299265585222,174.53408134242505,71.7039183593936,137.31086703495535,59.54335001443858,181.68469950854444,52.161546047750385,67.99064680803089,62.60012986509193,135.94697175158853,108.03314633534106,70.75885426305842,69.94222916080426,64.48942508831645,89.6535780586052,204.91267977269598,338.7828824805093,151.4318721565394,154.39463600196754,125.33373111522361,71.10004513886489,126.52587308615846,36.95351520856701,217.54491864269514,62.90028348735305,63.747340270019535,69.45935478126934,76.2366636535198,115.8095633593866,85.66715392070618,44.67858883821948,214.9950258951934,55.796467601612086,349.88733791419634,110.0298210731678,163.08358345438532,421.58462283540086,75.29497185759377,72.54480254074032,91.25122430852797,229.02233860536114,40.24212055829164,167.79825927005524,130.95538139805882,93.9086210578368,117.92072350844563,73.83553136760459,96.98967697968237,55.642617163242775,76.91611469048789,75.2999116090136,560.8735984091484,219.18579958167027,173.8926842579324,81.09592278212286,70.97822590996202,91.13477421696503,198.5721098913989,76.53102250846733,134.35127373418558,73.67549766985674,54.60121750234125,73.86774265377213,170.759126586345,133.10858183391701,71.99351987500904,133.36206416989165,121.98994912631699,81.85793258697292,88.57156921113103,41.92245760417619,85.98587994963694,112.72118534930681,58.81480465263293,85.16516116371234,35.6825214925205,231.6941796246451,110.39104220450355,104.65643295513736,81.04359469109136,50.1667056447213,65.0442478041345,49.649902551151285,65.11818548972298,67.32257664820764,76.40845655296191,281.8611580432591,91.58990855916562,76.47572495611851,122.87985223876603,50.84637181440819,87.205925486797,86.70063694560218,64.16092580821812,42.43535607996725,101.1485532144562,106.51372106674677,118.80000129887507,68.78715962316625,133.45685415023965,64.75442382513793,57.34729393183511,21.51978067807847,73.49316299696547,47.76447925131475,78.43873318372383,178.17484905079453,61.88933139891788,81.72372488436791,205.48081962195423,182.03000759103102,82.21025997295735,119.74795269509785,142.02897397427532,74.3342289473839,96.85685565884229,109.46749008546149,156.3730888792805,103.63180692426927,32.70572900331399,65.44041568945607,114.35016194867642,45.48802479629246,39.549352436400845,51.563625758794586,151.6593846681539,75.38748039017993,42.11278261735668,241.2072732919542,51.91107189355016,204.81969427617616,69.10639967110976,69.67077839222613,139.06606579743732,154.6750327980777,62.40615754973152,39.63568387287725,119.74781855698973,155.93478448133885,132.2273401394882,99.13123668252913,65.40769520272129,191.3556905370104,215.09027074126175,80.48407869931022,102.11472161843524,311.91067848904356,194.0236722811498,90.51817938712621,131.9798580807556,119.21077778725018,80.29773304382356,96.24890000052677,203.60880841263452,66.164696698464,145.22708306834716,78.80386793678697,32.43793667381694,139.36620599600954,146.70886716054196,145.55034485124224,184.23288684762736,102.15521328929404,205.58729074508707,111.28675240838523,70.6248663365766,224.19804950290072,114.3603326994029,164.4806290293174,195.67320998316853,57.9240995377318,90.13071340013683,52.14042559900263,467.1843789175538,78.8871627235004,201.24422915348705,133.39370294165607,141.02770930110248,239.4085771119465,62.044652533627385,132.4851578559731,97.32262101123143,178.93391636025405,93.31063637056748,71.8262012068964,98.44413111757018,68.99732764280635,43.8370460882494,234.94967356289814,136.0048762566768,299.2675045090251,71.34802191944792,50.30638463223991,81.6840811374466,54.63547028665362,119.55269310136555,110.58142494211009,1193.7402782766674,139.90928078346494,82.29982808956733,119.4107120500326,44.46691035577432,100.6789716101436,36.65659992112591,73.62532101527773,42.117610986237096,129.67397546346282,64.94888503030147,195.15114950263637,83.49850365923594,213.04629657346044,61.19000351367125,177.3917838974879,49.29224616711585,54.17427137365969,93.97917819050282,78.36134806945887,48.42231939130852,264.1845738238597,112.04578486227058,162.64990070001625,237.22248228656224,45.08946483274083,99.5607797504698,132.2242505850778,155.47146980968225,123.92716144958126,75.65720117990845,129.19402074600316,297.67076397914116,85.69516229604186,464.682331814079,119.81633838404352,103.53463333811912,101.86511716745741,79.01490992248581,42.49308448652946,63.08407944113394,60.960111444872844,99.30387167246067,78.27770363536499,225.5949230185148,73.5445251225,122.42191583031457,25.4734918219957,376.6975422703331,105.11686911040427,71.63997610170966,407.2496378380688,418.24595059765085,80.88146641087137,206.6728315816665,37.99722054502227,122.36605333776264,113.927716515471,192.86011242541423,96.58692781259607,91.82289183613479,142.42926906967915,95.92481137710737,79.39539747975402,83.26491375189482,134.6746265086625,167.01850931567952,42.354370703818745,244.94382915959577,282.1698694807704,119.5466444906052,108.64608318376732,152.5254580129196,63.14357007982227,143.25885703250796,124.25339095559008,82.7852029231285,94.7495222387477,292.28862348073324,58.261484638740214,115.7644646097492,54.505549173245036,140.59448240721008,96.0848787036375,423.69673667613426,157.7788366694922,59.50804005076619,131.94027508142076,59.162781622809185,64.78423338703793,89.47294442013668,74.90398506223288,123.3858696163572,56.48443313490389,55.00884416465774,58.42242946406612,81.9408779922349,241.932550107088,63.126109524885116,70.25066051165741,113.31896550204249,108.65588180941627,54.231590157457624,143.9927534583913,108.79214883236226,375.8402341620091,33.9164847141018,91.49080852740859,259.5428026055789,41.38534595364934,63.91231142971435,53.04705998171806,120.33491909227521,314.99473166045044,138.1544055396931,85.5460062838198,178.49146974645532,109.99519807344242,85.66808725487451,81.04818223018276,340.306928491885,222.3975643078254,161.89461096562874,90.17303468008684,66.92691965613706,33.356695597195156,254.49918131116036,75.89561979038344,89.29658794371802,63.87047741211208,124.82099639222312,50.01316809438141,73.79944904973527,135.6839547269395,71.00945775802943,47.11589825033316,130.84723882558694,95.21607778302227,76.2362649249769,129.8804182405868,175.1078867787831,245.14678040577442,164.13436529359464,125.23287035921234,127.31271923809558,74.94273163710018,131.21642627799406,43.5319121184242,68.12407077369666,157.56425953694497,452.96236690928373,253.5899683466964,138.3642537806077,205.5470917855048,71.43143652001018,101.11753783034192,38.39326124847241,93.77373292738406,85.18401601983906,83.49826026775804,263.07344408702625,64.18478640998548,186.69861198703356,83.07952273319867,369.24164890804866,116.41857268795061,82.8815845216887,104.0878770719644,37.351280032843704,118.50000363126672,335.844082842609,179.7516502513812,324.9722641074848,47.44309038288719,192.77462306718448,83.03810267680129,129.47790936965305,53.06782868723459,72.72575370852552,89.43818229892943,71.33323373776776,153.35813910424972,39.08014880390004,65.99448100316133,59.88508595759435,55.082026525341675,117.80321591263983,40.94837248678278,101.52641892679429,105.24541198534743,36.021873124838756,51.308345879402374,35.07247928810324,278.9359088179546,153.43356209713914,107.54230533829109,107.2093033657471,85.22744473665527,361.31025418859167,108.00064327948549,133.33961441172622,44.468424268639005,219.2345342717776,544.2940944537297,118.06082255939633,76.88623459789464,127.49547680600679,70.33023497581614,146.84649343231905,67.86642838879094,118.25177424290331,219.2027621589193,165.45773064089624,64.97142825337698,235.668950898656,65.81298909245167,77.10324575406383,73.13208771649565,36.16220573092103,91.18726401056793,127.613243833237,108.98721614525351,75.23901277334576,27.46393949969597,123.3784751424616,53.43844827486887,93.159188756654,89.51172208637978,159.29618744358388,60.30089026595286,100.80480564912362,154.6819182803399,65.76895708899877,98.3753558690843,69.49831898514579,82.39369230885275,202.27954492982335,66.99678326635778,32.85172152402348,101.47822213598629,52.80732080464973,107.08768430934897,169.8081853902512,158.54313341186725,185.47963206252464,37.98492711544455,81.90686750587193,55.9030213554293,244.66093303450404,224.61668101709523,70.62802078433401,141.54763851757494,65.44396767962137,66.11656897082435,190.8148643105168,36.74573331324818,67.64872802181227,105.46467336421874,45.74836226046888,81.40506661576796,117.29942959607057,89.6621842464507,142.38957341568323,99.49787317014336,74.03915137145813,71.40786066779549,224.8786276876202,32.28971360507687,86.32619455692266,52.67264506895025,62.45056681767215,154.50587964497657,96.044883014657,89.85080999318926,85.65988109823591,109.65295108949553,160.91494084722422,170.63821961887874,123.51529876683776,192.61225287141133,436.57202278339986,150.13406530459537,165.25752107767747,36.927986823960914,228.08016281053256,286.6977544103522,37.211250955632416,352.2622782520217,214.19890373740319,74.13530462466741,91.21941205496171,185.92852383975116,161.11994245882957,90.20226075970396,58.537070425059426,108.96249210563954,104.44967150345312,37.243591983730816,76.80139132820901,87.70665861806029,71.49361687011614,65.12794966174528,33.76098507487609,66.8344278845261,50.23253302121601,100.78593540872997,155.82886167852848,141.67553247151287,136.90241300366816,74.24589247247259,94.23366431676135,62.213435617137904,269.4029623682346,222.94155281833144,40.38485410433015,72.56316207806046,60.635804544198955,126.74281529296371,114.98677062303082,97.8388795620225,187.61405791311648,170.55433917887086,334.4410467281435,141.10520202279827,134.19932539489568,90.34226256483409,128.98540643830412,257.4474549724061,60.031372827216025,49.890153655074045,110.72388849557338,76.35431581937986,118.66415161606251,89.55561626297057,70.78040311813596,65.48644952362059,39.46764982087197,84.57114300211207,87.84050251840655,212.50188152583314,57.62487805060084,84.95815073614256,58.67912395635346,102.0600837212469,54.29244306698192,88.65915254488571,117.4071672873384,120.45621055859016,148.5846886995127,233.63874014510927,87.01140582015235,37.25073782162884,136.0062947916463,78.5498910294302,66.64060258165667,176.46886588041605,88.37770271462665,146.15863033489828,101.45098537709228,115.42703098710366,204.46280302110813,64.70673714948377,177.93693437590682,137.74248691307534,104.83670437395607,81.10881407264515,146.9862884622105,76.89155784777121,55.315773796817425,199.70557637884576,47.35814494361125,76.81793285280548,138.00361881466233,122.47684926529243,102.712471855188,190.72301387409766,94.11541688662393,111.7942430021001,41.55142887533543,216.2628407903455,66.49300633658653,38.67680867782997,105.9877414439271,64.10535671168773,99.99984030691982,52.73053203261579,82.37782148129611,57.39655741299814,105.72730767800047,160.55420717517273,48.29973133790025,150.62683221699135,55.64468371174313,127.20425725279128,537.2155704568839,74.96033214446247,154.03023995399067,94.46290964919842,108.2056893150779,87.88558000467985,73.39733207873714,149.64117571567058,139.6126759067559,130.07353678691211,163.28210785981392,79.95916818741087,289.17855648917384,49.798867502411824,86.29133621689111,184.51852015839094,205.38364111649673,107.02640363437901,61.23160016451147,251.28363449317143,86.80467095486337,135.40583749380883,31.02170293843296,80.79472906457775,79.45609827777704,110.7282263598297,80.28493427554179,122.5897050228148,68.5420344328848,59.44849729972197,115.19187390850053,52.57323141205468,82.9654400109954,125.60325491486229,75.08935197621716,39.77368909263343,52.847034731568925,84.71443109658718,77.59556107698114,54.5033653746285,74.62645440423168,108.92847427472337,54.70014157796345,307.549567482784,80.63315079503572,42.32825096904048,51.9654034930367,141.6183316692675,35.646483548195974,62.51565927947344,159.77735309747283,81.7663849260395,67.16511352256903,38.67276702421146,113.6176517458089,70.73114963558469,85.08736251737676,516.8677451370335,295.04819313971393,85.9233234574605,95.58375748032941,27.706427544129546,71.01570041216603,479.15420204509365,60.53989493672483,43.00415430389495,80.13029615068358,46.87668480099063,176.1607623717008,241.63463542435915,59.01582760195284,163.4058284911763,174.1706739467442,495.40635735911644,100.16380218739737,141.9792825340261,51.32002812094461,62.70272551378381,285.50361015941337,64.47726673007334,132.09012950757156,76.80487418992564,140.71966823090656,80.14057776696882,112.18805166480932,64.49529466357522,60.83534475778158,73.10574318000955,65.79077349139583,273.4524329173149,87.11245052447605,137.56170960698907,66.36217400779243,140.323296574597,175.68619678964856,59.979467167005595,95.2716052535859,88.39903291519377,146.38322976027942,115.5366240249752,101.83364738761921,136.3154429459895,87.55995781974966,154.97164825189236,232.4365792207619,130.8101049229426,65.70925790082582,86.86035725799051,375.12793496762396,167.8947178717941,65.44989638305822,80.4832241162939,92.82964776456632,284.76291380485407,49.45843900322399,176.42862260645896,340.59511758111046,214.89147325885304,61.81473508752787,66.98734486394383,146.9161906514398,220.11463271019673,293.60202458687263,66.11130608501166,87.312244748463,79.25351708304078,54.584599148980026,208.79676413334806,219.4838903469213,181.170585131576,79.5488671056563,83.96960910505277,190.28399081785534,173.25952503143012,74.34012806027782,132.96760849861755,85.7093421545503,199.94221933419269,186.14299487910503,93.57562425423384,126.38994558759005,278.9916227232164,98.0088173191912,50.72310582492135,42.52062818042339,165.135713809465,55.89506780233652,39.004503364469365,73.37890186855984,43.07002460682116,148.03979117782106,56.607319531437206,155.5400316833559,53.913540647131526,436.5906608978468,77.22210141912463,51.23317903442029,76.46079184014644,229.92363183433181,143.52311767363747,124.86564909771448,175.29446678532705,138.14739201853234,103.51732956046148,76.05535652480492,139.6332903323245,74.35414414582702,307.4426219420416,262.0733991653972,202.38323142585213,67.89748898364967,148.56136426091356,79.0250590749057,93.35472208963286,82.09739296096923,66.71754760253846,98.4765437043584,94.39919306084121,60.37347004141455,89.26096806218905,97.30606584014771,66.95982951871686,279.7056784820993,62.94474103755813,69.75827063381779,67.10425948168968,222.3933379519946,105.54487311542178,167.29040964359726,125.10791067209193,38.676390421227595,114.7933077065886,100.901057536508,109.48346037842323,41.265273975990766,275.1184682921284,254.2146255724853,117.6281412665118,224.53791047344833,61.86235377165062,89.97098665404967,57.616076251333055,41.77093664301584,66.6271030074752,121.76217546523681,49.379555075840194,59.94128258360206,123.31441702711517,62.942614772280464,68.06312371613498,264.2176444372468,246.24110691711962,136.40863391967062,75.34281851464074,157.0320515976526,117.87816297510547,191.14176434459048,81.87776987590632,139.31390625863108,66.22203447764156,42.27479034014553,118.32756354205311,66.99206204032528,274.26225795239304,49.65008213084792,68.59519148375767,224.86015056916318,276.9018490736741,116.19694452616164,54.713357113694286,96.07447005158865,87.1281402221564,121.59079312142879,225.17498813782976,147.27027805480677,82.09918593115272,233.63661979207868,305.1695620338279,104.87822666325637,417.4528766182466,29.0002257017203,54.65074458898008,121.7690575702192,117.59556772586015,133.20112861511183,94.62401549918238,81.36304942779496,80.85848727458215,322.8024969653694,518.8413317269211,106.82935986031426,116.68332430202618,173.69398050540946,90.60811218466058,79.6714108995128,103.18711233356186,83.2569842069576,205.97628183184554,59.611105553632505,115.20936832676217,141.5587111450806,129.9008357361786,61.59365216084823,75.96857509022115,154.3143693772529,62.873790641683186,204.44961836309517,30.940750258219833,259.40240294342755,69.42298629120418,54.49966899881977,97.18644289830802,112.28294311459646,107.23380516766197,152.82260753442162,238.87164413737895,50.126999406767226,54.54928454122874,122.97197155325468,88.24597477094865,81.91072239949116,174.86056802201503,121.40928928754909,221.7284676749249,87.99025870409297,115.08427803456769,88.75893779562611,100.67397113599513,70.97318062405856,115.97349201156945,76.4648698532087,67.57432596872644,45.36783518129752,74.53291505596917,144.59909362951302,252.21956055387244,78.22288624009565,100.13738307879723,42.38106704023235,275.41522997692437,89.52890344155554,124.34860606437091,58.328500779096274,265.1628938117204,65.48782222844126,77.25579672031502,68.6709972838351,52.31805715803676,102.7637575818482,134.06830335819086,57.72034486769463,104.3292946998344,481.99199376460376,59.19049729697945,103.08682317105284,169.31766886497962,50.73085593165788,81.2025806021415,52.56160083279312,143.1135336673594,52.16075342887858,57.711313272193365,325.28526157565227,153.83641833316653,83.16203147887153,173.17594416950595,47.693415852561714,59.58518041031668,139.6793479062129,61.03295270915027,96.60909395621164,39.04023356200652,353.4732384322215,107.12509093285006,223.2477363201578,66.82742700712161,158.791561716905,121.21733569282001,162.4120985412775,192.31942417502265,252.4743171529872,167.95814945324213,56.155306632387436,30.36775790548982,125.4328231706845,37.05082970951182,358.473055759146,97.82424567815923,42.0852445844695,123.3276994422844,59.53852565683432,67.96353421655567,240.94927608574562,165.7648840893429,207.0991136343875,59.598148434156855,246.32888901015733,39.423080973058674,132.3263091404498,233.18109528774852,91.8170525238998,79.61015588816488,79.78473944530857,61.31422339881795,108.91385389379592,121.65777593875359,77.1738274160065,163.5294927688793,88.21242937190361,62.82380973169395,98.4452698063511,82.12584499908806,109.07285015655556,126.15017021294449,70.22968861770488,152.55283262632804,67.79125161581453,132.97878716203576,107.22479673670384,321.08148325469983,51.11955432874602,94.684859579574,86.84430959246626,260.6112907360503,68.1929366349082,104.89092361860159,74.37232693287405,58.13986237643852,75.8679876082833,130.0041049082928,77.16865131533612,124.33839613796148,94.0664564478683,94.0203213409321,135.45591137707368,254.15901096589766,78.75883452538788,92.04572119296999,574.9478164927093,46.64161946299043,120.4982759725078,54.036247777617575,71.53853039464522,98.55671131176,182.45516756274964,81.63167998899038,64.07911822137959,42.34741350008878,210.30955286917384,66.5692263079866,274.0842449271345,75.01074206760269,79.6859741452395,48.070837902509446,164.88352907969463,105.20387139939646,63.13876229912524,110.91109334083401,130.1897211595149,93.97481075183364,141.27872652887544,256.7309678905764,239.86483171057395,140.78310522474968,147.29977690362443,88.6287127359912,90.0328085209629,459.9965510151799,127.37097849568804,92.4893322240278,60.80928838626844,30.961534659598886,89.36373502801993,175.89888072467272,62.96722804539261,155.41149529969584,140.60143005618175,142.36644882116948,48.468732247135755,90.64136284856832,75.83402668480257,207.55464245296034,66.76034369560634,48.46958789541236,61.37288871012846,125.37321566637291,199.8518346864774,163.68176494809586,458.1369958699235,142.22175446356962,89.96323778963853,427.43584213263733,51.278683087224884,143.48729828780384,77.25959697712203,61.01833569381533,61.53032113180016,69.70472081016914,72.57783850539026,88.5000990399435,42.622643226609846,98.84344008036484,56.1331315115092,125.64582066547992,80.09491223100684,62.08924014504986,138.62850026121365,94.40618209979625,55.199058207733515,92.84040843966946,55.5574096364501,257.24893229782407,57.15249770957624,96.71420158341024,140.26825622269686,135.48683300214944,97.66922225910774,73.78427224211815,257.96520689433,59.21825957036027,111.09064037523459,66.07692637141994,327.257720544805,86.83760477514741,70.67598198505289,92.21859683315797,153.29196590064979,48.83380167971331,68.00278000902627,64.42577593591965,54.358613314489965,56.703320407941575,115.73311360076741,63.199904842733616,99.94696805470694,72.58275792787283,259.3781688168937,279.3754206717515,82.00290985649293,90.86729398756289,155.08580868131224,102.95326712634858,55.00409749602351,319.91025627090147,66.6895197718824,283.88754115581276,75.31708705017469,122.7257998753141,44.20057884281987,64.51663901936081,85.50561699113995,89.8638136669861,80.80779215068931,107.7282542233097,76.23514796913942,121.36550179831984,408.6949056113114,46.84637856654357,39.84159724368875,99.98718221054314,106.86009006255715,257.04130539724576,105.92010452039213,239.92317536325413,59.02528969251848,188.58765855550885,134.4814162555859,84.57625684627494,86.53696919633724,102.71930969044502,231.76394951889316,116.91724621194194,56.66990483472033,246.95835443974167,300.1129655650216,918.8712479937901,120.68744187796783,165.58416213075756,73.67946070066256,244.16888216932946,133.48236258087832,192.67160447849602,48.13549978378923,61.47816284557471,26.42523726181988,119.17962420325813,107.85409656539106,84.85865409425016,85.11811725431782,74.86808995212886,99.76583482970617,54.36365363419895,212.9546589289463,104.23126896814429,44.75172518113524,740.381033362769,148.74858216988756,200.32145191379647,207.6262230779721,67.48384018869626,126.19595589757334,102.2827204609912,185.66726743946305,74.83850853080027,204.82576919326763,60.42633989506322,129.39830755316046,182.81479404230078,65.29005310931426,86.44937498028835,58.90836629303148,33.78776805763081,40.590189132371904,193.27432153738894,70.75943047553909,148.6285403590639,108.96358752416225,209.96845897588605,90.4272830783373,188.4679069126374,47.96610066808173,111.18797630116632,234.54485028811266,86.5778361154802,113.46120893496354,363.32419411513973,112.01240026265174,58.927255644631096,95.41935752636853,156.08011883624363,65.42642294545752,74.85421643866015,352.7929315800992,179.27683005556028,206.12666338992062,148.11063102213143,302.92135251746595,66.22513505924918,181.88374199994576,289.721590205115,47.89302646683083,119.84564468101347,283.9175900699815,151.24891933517026,129.5257486123689,51.51455279257144,177.75264856014573,440.5865603572254,159.62800880513436,192.50679223964386,415.3755480556276,71.5524220254209,134.0546612760377,132.9385359192656,153.75948378060403,161.92082697344898,148.05914534721296,196.67321579969646,108.92568992569838,265.5737561457526,102.25658253760375,87.8844948275376,123.06393256799805,232.3632239943146,172.04171510859118,85.84367320327834,132.54155693398198,43.915008377215706,61.265154137178264,46.01571138618884,96.86442703848147,82.29282217075665,108.00353197167266,80.85743720242165,261.2566694564304,150.05342368074827,60.4566225526353,77.87039926194949,64.92274571519502,115.92248970876581,72.81844788823737,375.2959683634968,83.2183638067485,221.75055310802088,46.40749154279456,127.82750710778987,126.14190140011335,120.08256032499307,215.64598509677802,68.69507172909891,53.61315604585167,47.78829671823472,61.95610097327959,394.9899885909157,155.93939039762756,48.80172692818298,102.02188228122695,77.01971408130248,59.18650836985291,227.23263329608193,309.3117637050977,88.39458016521449,55.604979841762535,160.47450957344253,153.04382498499254,34.18142817635111,180.82179460925673,92.71960118823468,124.9235327596922,96.08069244327554,256.04418885130957,65.26554262804547,106.6656850692844,91.22863032817799,78.00883226440185,113.84509418926994,42.48383070309722,287.3519799267392,100.48438581073538,118.56339616631548,113.12379693425363,69.65140138287546,183.15772301652632,297.34366648120107,107.20466337288421,365.96548693172195,73.79655229747007,60.85569811741163,128.46597989066464,93.59056537223705,212.73519290201818,134.03588978623324,133.53831694787877,59.50427092048015,116.62151600537749,83.76500911647858,72.30278830529815,153.6922556541595,107.05928727808441,154.2974651060477,165.3047661076861,71.37695391324908,55.051438803149466,68.3168728262088,93.77639602271087,76.44931372813207,127.88090022357127,37.037785360354846,107.66174048037337,92.39151616063899,137.00978391218072,69.34962770111287,46.13568372498028,34.24155470517976,88.93050415535345,117.87605686527525,69.10304731089688,121.7143169762408,45.36714819566491,94.18614193551184,88.46043068665578,65.4207076800394,145.37610574877027,56.15551043428547,303.52993931824966,385.20089852460757,83.43053951496968,164.30439052030596,223.29325323889742,64.66299012312169,52.52649957844969,210.1153248029084,139.13583886427784,75.52523005068798,90.00176090822706,67.15291870794802,120.52637073324983,63.337488025459066,185.7672348049264,180.92271950339023,194.59033548017658,119.17773163345842,80.85062219318667,92.29846817162708,215.9654251427249,114.15565385941862,85.2263964513121,210.34850936434552,67.03535810550953,66.64071141738152,148.44466226282236,68.40047936048508,94.3254140883147,280.8574411395219,96.71151639124635,120.93825747243163,47.83233786991824,123.86901380920237,89.64844112109918,39.28928372186219,119.5013909544041,123.77689526501479,86.65817872380832,291.44141021032357,96.8494828127222,118.89260147556872,165.09707339610517,42.991189799901235,123.17760077541813,127.29762201684255,216.77943821425077,79.97989157229578,123.6965651369683,59.41813022176943,54.50066831866229,92.65424058876657,296.41141588024976,45.01437307248443,143.7558892545815,71.29142689271477,102.31328341608709,53.99608896326829,84.47499206074205,56.117366986714984,156.51128444775043,64.76141811501927,85.12399591865034,155.58294817093346,95.91374084399202,72.40569491655187,285.67978185739713,50.48275046495509,158.06715131008912,73.39551248134708,55.45769653311971,65.1335641650539,86.47507074845834,42.53749623282053,74.73808188605764,59.9828429573656,18.62925240996678,101.27337381275657,126.61749644420708,83.88840377867712,152.59919815135711,67.11934024975594,104.99688976719408,50.25446290703738,53.88461884182708,83.5183281881855,65.07130740611623,78.84679516778878,132.73741555774922,119.91406704233505,208.8553608716451,88.31413456032398,98.25226142735478,80.68573170824142,122.99553647249647,56.724255104454016,64.44367037425718,177.71506085800755,86.1317677987426,160.95514917915625,687.7552691355008,138.05020973931573,217.98579076718175,111.33246840029405,67.23886069393515,405.7106054550482,187.98942309055212,47.01202690299559,85.36886377512259,148.85987979767654,166.68168107610106,170.1230888692643,220.78534014684593,133.75214742290265,93.15369318013218,72.51166116472444,395.591576007535,66.39709720462234,45.5193133093115,88.95269618637069,71.34776983099064,126.8441832819901,64.38470269846385,34.331675485097115,60.34719087068096,80.95851622418127,165.82624983130088,37.666493828386024,100.78323230341624,559.5853141965429,113.84875129987263,187.1372150354663,75.28470930150718,202.4171148474894,96.79219353408733,40.727071714915596,66.5254190791608,83.35289413454852,67.0298013984759,70.67257252613398,513.3269831792572,111.6677531627813,66.14150399635773,57.872126825204134,40.19412673484984,231.40471821258163,140.95405824801975,157.9493747250867,43.377920023412635,90.77976394959457,107.09134846597692,54.499180689777496,62.759963344055485,121.71100614949752,102.40185854120578,99.525634716733,53.007414492993746,58.09261377432935,55.25407185027871,76.65480420001042,41.392781028987855,93.73310134082236,112.09511175000864,86.38118747710499,194.5495171230879,75.22517724886028,53.194303573912926,70.69956102287394,87.79473937121595,75.84689043225482,86.76588092884383,97.7235169427913,69.90469392134165,77.4594446784732,43.39714219702811,101.28838774574336,73.9181357904025,106.224286484944,109.69937295187479,58.81879555458583,74.42838210368917,70.776045035164,90.54979387609055,115.47771975776867,105.38206769507474,245.2761521702349,105.22443293084737,69.88467632099915,62.523419922770614,136.92840391117812,57.76385980572928,77.94237110584628,161.5752003545394,158.81926813194676,73.52253024062557,112.16536069692488,280.9513410509673,445.6975711078379,240.7076930279607,205.48482198262656,68.085573795985,46.03602010226414,129.42270627532457,83.52741666835372,37.55223925456664,149.17841049215366,829.1639154027151,78.92005180221418,81.46671327109607,72.8808447143852,108.87713812234362,85.17138180333878,234.09725739989693,304.64347343414096,57.36334728321769,84.61749346933532,46.87626475973169,292.61696243207547,457.5820860847528,102.83339161545175,71.9475283382531,143.81285819310747,101.35170073937716,48.00735139709122,122.97898013686665,138.2440696910747,137.92398411898776,112.13723322665712,285.0280215482405,54.05231280785627,167.31920820397045,98.55812802845008,64.80455938690481,212.4949793334531,33.8252462317336,52.420171795614635,55.88591990918861,70.1568450786085,76.5818877122591,220.11330462345347,55.38434988482133,67.48454368286025,698.2394727027122,341.928542644458,117.36826324378669,74.77329535504545,90.99883317507565,56.56496158347796,37.934735168145494,73.89153730051785,78.8251616657002,74.91813022448353,123.30568621431351,39.78986451627299,46.17195575678806,99.57432623321704,88.14610478854127,97.03519633414476,154.85054809999735,93.99729197424551,172.23815530669788,136.69418490241335,296.03970883128653,221.49169717517017,103.4453814918014,84.85760749921357,157.25531543840864,78.0894883694616,158.95898248561036,347.5911806109225,183.69491228954547,207.5248261317378,49.422129651025706,112.60937195379618,129.61130179027586,51.307877931553804,461.88370317330447,155.47531451644957,153.33609574485288,236.90010032265275,34.69183767019073,156.04502884314743,161.55114060016538,114.98511737649821,246.8575691516979,167.83317226323922,102.40241359505009,50.2848679384902,105.26369785928019,48.959288022486,113.00370737816522,238.5770865382563,213.56310604342335,78.86006235783337,48.75495124363626,153.53630645970185,169.1347014299834,85.43250495478901,315.6374452507241,99.47391524706887,76.91493161096061,71.18748684578489,49.45112501736877,171.02015701394714,303.9221147257123,120.60377008826072,99.12446456246165,107.86477208296185,220.29681907559018,49.678939792213896,219.26138353649014,49.53711831382026,99.8965189221142,88.89555937693113,77.5990860351813,180.91858087306187,112.35057316640997,86.8968919562921,80.52507695323933,152.73754667372194,130.44365877241304,78.91112218459659,78.57212165344461,62.31911131873237,49.42402270002794,72.75101543006448,99.5180388475649,71.37749807636209,98.93131730493508,53.282112981760115,162.4618246686871,104.94082401722908,76.26476256310643,274.07828749984463,70.18718803949724,73.25240832194882,57.21711099859044,54.47659398228853,133.46411585353968,83.43227481194438,127.2906856029945,79.01944482929923,91.11655109313712,73.14566430060248,227.94123278838566,46.61978554833276,80.93502016434167,156.5090010059616,80.9960605846285,65.95868931806166,174.19658080530965,75.27981528097084,66.70838208808459,175.4160985856228,86.31740233819113,105.80380851244702,50.789747247640264,109.96482386747647,57.074392149778,57.672636883364675,428.71266037378905,71.86852069887064,86.6568165713214,81.89331454193791,127.89907762653036,78.66514561137144,149.06837301232136,210.73433325193926,106.29178597935088,89.50414625308656,174.1451092327173,148.5942230756693,195.12812359585126,125.36339362991319,82.85954742309153,161.83553502685166,71.29402785472311,81.41152434663832,75.69168608989641,228.92797999153126,142.1376549496277,332.9913269001939,244.5322347827597,161.56852623310147,104.31761346577314,122.61153046320524,185.02147422430951,156.31261944781642,50.53347785694756,105.56862578493812,84.84355513809683,123.32916438339487,99.83243463713345,98.46293882024392,63.85534051847573,71.20012798534012,142.68222633108536,227.12945632975277,135.49285620017818,124.45705824461956,208.83552680337684,246.40489932031483,90.58039922641564,355.4328193820278,312.2939650107222,124.02249948480016,268.8097630748149,49.37461505194171,50.33393684132849,69.9309176248404,64.94065272488054,110.02484790647175,60.86602851006474,107.91333591621388,95.03345532846018,72.5299969282604,162.75928351063334,81.80276579737907,78.00121175720405,142.46697958431076,53.943155918537926,89.1864809623055,71.68057454457251,110.90901453641665,81.07883730296108,52.018568016703924,84.99297013306297,142.31574564816532,136.5918890021439,112.59077643812907,71.37194691449781,99.53361806017696,54.97795007328114,61.09182911002069,94.43877780164311,56.789002749065226,106.38503619636313,74.85642195735163,120.43856958451283,86.04512244118933,156.1306367223344,60.020859711404285,97.26303410191534,83.55451479959885,189.50667168664543,134.05966269402907,82.94299360669388,117.1294521180481,78.82291331366271,109.44272851999584,106.1046471997723,201.71356744619462,123.8661599468745,61.344751950832226,105.26962362597774,92.77356551565424,86.51740295672343,126.24771061814393,80.41045183176715,66.17744337552381,180.05877524572023,86.70628251287212,66.76937963579137,329.565914925662,106.272930926134,82.09115229883997,142.59306540940054,110.44373081251905,96.95950402362769,328.18585414240545,92.36804911218466,186.65319957073464,65.01930529378805,96.71935318630626,156.79600761505515,79.46974304467666,71.38518077685802,137.26730485890482,164.16778376404093,57.31723548498895,96.65841585706393,66.1439257647404,87.73421944652122,134.7305927730539,164.39839331057195,58.39063155300628,346.0561735422255,197.3003779673905,75.45764805726503,103.51643710220658,84.38178203420405,60.63125346210322,54.70945052571367,107.63691550520619,96.32866217877053,85.18435211093846,84.05170226332268,234.93773516534114,101.88026847557535,65.17657168002476,130.57528926969297,84.32975413460055,72.38812776861243,20.964432822888885,105.39270708775527,140.82677284411184,94.67169773369292,364.688215486406,127.52575930424004,47.673061313784714,342.05814766943234,99.26628315645857,33.285631652609844,95.17656251359233,62.14032044609957,104.22543490893126,114.33348840848673,79.24020812663414,52.728644033918,89.1740882204228,173.1116366764533,178.79610964559313,737.9399114763553,191.96364784896434,174.2072086503333,50.6655717232892,64.1388508364763,163.52928622261763,99.27576340433822,145.22844964730174,240.85421184625903,63.156426101195805,84.13892666386576,253.85569532031684,115.25218116530893,202.2364457821276,126.95836750394456,120.30179943866617,37.25885561974139,129.1468381442698,250.929904768861,66.80267195904925,115.67472928611001,104.39756708712531,273.33430764211715,127.08695190688502,55.49307372227219,45.40407718079131,64.8041786531728,38.450240493761356,160.70404083562087,146.3323924426697,324.06224837889295,275.73420461686203,65.29294196768952,249.4880305731355,78.70765527070347,96.58190771118743,342.0951224772647,127.44533136965836,92.10063842673844,548.2728460724773,60.69946306754527,79.4184025088523,83.60941574740862,152.6665960405368,225.57462111176082,117.69004293053811,81.94118581320546,167.74813311865574,162.84014285187143,249.60951966409914,52.17400500863235,68.34833461656658,99.12050201096862,48.76800805278337,143.6886030158793,103.0326257400051,69.14979412353361,64.81633941672624,124.15453917497956,134.73301802460918,127.42838829214085,173.4624106250067,64.08435271711508,64.83665066454682,147.8698318992708,140.65687921650135,67.52078529803782,47.26430303221881,57.513154853424716,76.54220814581429,54.683616347679575,174.3092965095229,114.601547690478,87.53248984864784,83.97389156380021,159.16439437592467,78.28624050035137,525.6742158998791,79.95850329069353,115.1163550367784,70.19560305304643,69.59211847297735,84.33527580064317,110.99835031904661,84.85504817344214,155.2554604974868,182.11950387447789,89.66422922375081,178.7719838904828,69.00942614096017,71.10007999362344,200.47319119590406,57.341528223865126,460.3183225151479,167.7284803598811,153.47579281821572,163.59028688887514,133.24291139974164,56.789325229807226,500.43419092809467,128.09004479819257,99.20125565511422,355.4250098482684,64.99411268916096,89.03382333411204,38.783175324155124,222.05100025394162,125.34686657725322,71.20174223335798,158.60518113249532,104.53457579281353,151.73461302032558,182.98966465823563,86.95216185127958,60.96948840139809,70.1705094293335,268.2651777542075,240.0066481622489,76.01465912731753,104.78420469063083,184.09891409774787,72.61092389419228,82.27537747714445,140.99451772917342,42.719129953739774,185.22611978481237,158.94339151410037,273.9039477909009,123.63826921526233,171.35828616769174,60.97249193143031,111.88987719359672,148.64961229425128,350.11091174893636,109.90820351643403,126.21484192096018,100.84428286030438,59.025151191537226,99.3941713432557,105.03065352738602,124.21191494831943,146.0899105309361,202.20827540214268,133.56392437998457,251.94550900334244,228.1393573326209,86.27905604027055,238.3934817293768,36.83159154333565,320.0068425715741,112.65127839669697,71.64054668518199,64.67237689226324,64.61124961682721,65.90002921888363,343.93529375115867,105.82411483794294,134.9239641017185,149.24738299526365,199.88778400471833,95.81207615648148,80.43198793062083,81.59679795856798,129.1607723123634,85.20160176442756,57.2294350823639,84.31535322534246,297.3496088598323,128.3517348401622,125.56914813436227,179.1957456718124,141.4542751277042,93.5315329184993,67.71544118667289,187.9402074714359,240.62552025473926,89.50599377920695,92.79694924486719,139.40947558006593,65.65171349151166,442.8942954166072,281.38771980059425,383.9694522415075,233.77360020214903,264.1627833184481,111.85266871109445,122.42081410922403,69.37502973239337,85.19157377560956,66.63744975878991,159.09176381218654,79.67398459498584,114.74968447155942,147.50385606144965,71.9165428002761,125.75985001758916,210.16784267768492,137.25814842993114,580.4578038579599,103.38542795461325,322.22864845044137,145.79392424662169,70.9119974411712,64.57244108922468,166.231109423976,39.11413298464464,58.69538919443692,172.80681479969414,85.14156396349847,89.29253508591576,87.61884484370665,92.4250700270537,67.9356984536401,112.1740889769873,151.29421050151964,117.43512918606298,117.72440985952025,79.4838853405016,117.25075403293482,401.9411037646551,137.1019024060946,141.54300412374656,79.42656836788102,92.57079933520136,78.62644952676905,143.24238436649048,63.66097667798567,129.97854252676785,103.07952773887305,69.45925239558542,72.68772199350776,46.72853800850899,124.97784986391022,65.00258568377966,51.35894725991731,98.75016927393358,115.71732011631747,122.65065870303886,39.66839083767865,137.0302474843513,93.22800556890382,338.7657157556719,201.38813856968667,50.01765864586551,61.031297810869866,240.08418187539502,102.45857524028953,83.26515851954461,364.2823107079278,115.23298849998028,168.44497705241918,263.53393510454555,63.07982246768786,103.68752113907992,304.20387918822973,61.224668397827834,163.64090874829708,134.95295550894267,40.24301598333577,72.9907833927502,85.33750154018264,68.8406895772636,191.66795479707824,228.621203728455,43.56802681257493,93.60633708172361,188.8217948602347,62.58782156432805,68.03325349218048,38.317767849653386,90.7184536658084,250.7428365916869,54.88766562968096,54.44837527406641,67.83994289816827,55.56218408246167,67.01014352985437,68.0324647704605,45.74432008265679,78.69869793895575,135.3837207931213,200.67408320703652,102.55785094936144,79.27389291880857,49.90859415046657,88.60678877885005,72.8547807624253,96.07932326961739,138.8189187232558,65.74078542147483,83.00522714182605,57.111534129294704,62.55109010084722,129.20375811900678,65.56816751507219,159.25948432563564,82.01775371883325,125.90849907905971,176.50268206841113,234.66406411965954,120.95045054806032,85.30994193018806,297.92258257781936,72.6918652548682,383.3902971582995,307.37857005399894,191.6628443369352,87.45688155842203,90.13391683408634,116.74902567099525,102.19422676417712,120.53544551283711,278.0559088634669,93.67860972948594,89.40610119522117,130.12329574331932,114.75472696149714,153.55614040800998,147.2198156095806,59.10362220855474,204.81211191296785,75.70522425347745,118.17173827589637,75.76859931207248,92.79657416663196,149.03555763654202,291.0026082659074,138.8722239396128,190.24769019962946,284.57702661663745,55.14614949749645,44.320856632543716,56.4569506618485,88.8737311625529,79.61151911985293,68.53944919174364,48.15555441681035,83.62181901064034,117.39342754994422,189.90331134669563,107.78445166821574,62.73749414254549,58.042142810840375,342.72685707515683,53.355558211691374,127.80005876769926,53.315378232936595,53.16434830494801,47.45184444577843,116.35619471388178,119.79259025515846,37.91312710150252,60.655655550255204,82.86477523256,86.85819393610261,73.59246599929114,103.95926785668176,101.50771323295285,77.23027871596422,91.28153327811305,241.32098893153307,99.56864869345833,96.68152820374229,47.60072646078429,470.21117106995433,76.89587729213868,289.97846033428584,64.93851969063026,225.81774987987518,81.4435019751278,72.31261745654653,106.5976028901633,208.6520022128056,89.90885890202745,33.204260388028295,331.11816483456545,476.92706896508747,185.93984068606818,123.31233735805519,210.9653396354873,94.91696582178419,72.06223356179437,46.75472228169712,126.10706926360481,124.29309372023006,87.3987207969325,85.21033944519489,68.2712175068028,112.04251489571914,63.16416638973414,222.33382768787772,428.6798465939923,30.309422413448655,200.48247019230874,68.23710438803494,60.40566975948929,89.94396166170999,122.42723013494263,343.05373355305755,154.26494827457486,260.09468402787326,270.49900404860375,117.87566481077201,27.747281577711664,248.41025193109118,234.458887802438,131.13020223330642,386.48576492601507,107.39966836218525,139.97132106485466,78.09565107662372,45.04870447061118,63.953993097061954,152.89349394679905,374.81267480012826,66.10603499462482,103.66954236401995,195.21861695477554,167.43449507919982,211.8804810318689,64.07215924061553,72.33912742847649,59.07608766903344,101.93439054271961,45.09858872074013,77.02180860408758,187.13187793450956,129.58666893029738,330.4762953970828,78.28138374107682],"multiples_of_cash":[1.7208280193216712,6.550776818521748,2.3348155304863396,16.284464175134843,9.103524043405343,7.242569200642957,44.56859015303827,6.648618035929169,1.2341427357333938,3.6137014512810812,4.772056029506054,1.8472680068728693,7.1963983949702195,11.05000960229505,13.741385748725605,13.583635574084065,8.072418703756904,19.763075710599697,6.612358551556165,3.8152711880293517,1.880060652908166,6.376772704661606,2.9457718437732607,6.263313823697927,6.766140809128844,12.170253839960429,21.19104128516104,6.622813954421472,9.161669269306127,11.319896850849904,2.693628850153149,8.436582310814352,20.508275964097077,1.7381814869765777,4.620615305834402,3.4395893840497314,3.9782192202369533,10.701818950078785,11.677523379217433,13.757243718624304,3.8762898477344394,12.085684974770102,3.406333543965987,5.94087843826415,3.1097426113658777,3.4314975639081804,6.047568821065318,14.371335627498583,19.971624108379977,4.494162770127947,5.854158686735048,3.67730772864561,6.456353219538804,23.299551122149623,6.363732677814345,8.101901579293935,4.643534541415564,11.81448062010576,8.279995301929322,4.142628564361961,9.352441125056082,3.4992529157947603,6.056665996614574,3.1634506863447345,8.283315019605388,2.969872805898193,4.018377032065286,1.7494440439388486,3.5273211074206747,10.41865076983764,12.595708966059838,3.1222120709039465,2.4340131311382014,3.438441017868904,3.92517109368458,27.905311750279594,2.224411334155853,3.9400121184985863,13.629537638052268,4.0910000341515085,4.429849986271704,2.2335920538128984,3.921499080095004,5.2634655082684745,4.00047062082937,13.139835332434863,11.334656820971297,13.466744636458019,4.570307463210332,14.28767894829789,14.672952335847242,3.911818045354477,41.17136479541472,29.088073187106172,4.794662295976932,10.81252098997779,30.134328098785762,4.116731641138493,7.776852761287386,3.948716581416959,4.143264946317649,8.11933268921584,14.14105490231972,6.657759624258847,4.246480149274109,7.501156080051624,5.215870283756543,5.773686279011638,7.848453730650435,3.2848974423806516,15.011155045207865,5.149841307249284,7.318523437298384,4.520240907598436,4.691003563767519,8.612946836734393,3.323923256842042,15.468462085882306,2.7845013015790783,5.789649842053523,4.317960109826516,13.26771466452121,7.8755792795391555,20.751141148457272,47.598979533810855,12.210329945618849,6.2562516151856284,6.120486194611581,2.2503235452155197,28.10761406019169,6.802860052857098,3.313574595258492,4.308384237724124,8.013920401524729,36.154495412698935,2.85218787661289,13.964849597202921,7.171159924171177,3.956720471761259,3.4484970496649807,33.578036871620284,13.013754728427935,6.420221066945591,19.159630025360485,20.751584107171567,14.272508063034133,8.668761043933328,5.081020076651183,5.432452383634729,2.067745677262955,12.106861261191423,4.267852274108604,14.782388078451419,3.424597873090689,11.531133778960323,5.300004057416758,8.9729925925489,5.110074501314828,1.8747542756285323,17.999372285125443,5.525956265423174,8.20483283977479,10.198205550278614,4.356397588859358,4.669826335520582,5.36224950093627,2.210333081242097,8.31734980083601,3.6400461758001894,1.6367372722437983,10.12050256310033,19.569861704653295,12.073153682629576,9.892290994482662,4.295871713179034,3.1847099523360387,2.1184793303430767,4.275983973630419,2.6219400665152865,2.0710767619497767,4.4382090720894,4.808923013720971,10.360051753483145,3.4617893971305844,6.2080698766503435,10.570504700373151,9.544953460831303,3.398604121611393,2.4291117659615082,11.71096372597258,14.633756837360673,4.667550788797449,21.360175619551782,20.44165920106219,3.2008648696871833,6.563922817406205,13.59468802368908,4.920387369480872,9.433176836852416,3.63634044545378,9.58659960274567,20.75395813383342,6.819944262635317,3.8675067233246865,16.673260841750693,4.896644433479893,3.1324837187779884,5.327806304540183,3.3000974498884537,5.289723847163945,6.695130023261458,7.569124374090414,14.681249313219448,8.065738245168049,2.9181710179258524,16.788113371368244,3.237765094252843,4.118855019137827,18.73403865598881,6.373285332927716,4.2674793465695,6.287718500470064,9.550407460850902,7.016191428800102,7.188160956239771,9.809038773926831,3.7375464599893533,1.3533625794298159,15.189310771034577,3.329193729448279,5.84048939483377,13.676434402317096,10.341095331610104,4.49469915348149,12.161615967354368,1.3528022614212216,5.437281976890244,5.94700448174181,5.510456334005146,3.235778309316876,7.790134549172233,31.60524124859902,5.801872913699027,10.959696463687184,12.194777507805007,6.740911840738539,1.9749433406925063,4.04071715492934,7.587714899809633,14.043116031163853,9.12628028286972,9.418835940186193,9.192602701479393,3.9275089773592944,1.808189923280226,7.485195297698041,2.825058953272534,6.892443466341901,9.33106358798919,1.4092273020716686,3.61344422437609,3.65148185252376,10.528244696317051,5.957847593352118,2.144662338984907,3.0312871115395157,9.43252578381404,4.082575830295204,2.35131874022742,0.86347703461419,17.489688806857068,3.0063695708778897,3.7994794563755723,6.054655332619786,6.761963868853399,4.065347530201431,9.832542720557324,3.4409081084571844,57.13028304614705,3.4682634451440046,7.773471199622095,5.6536850304859145,2.4981074258227447,3.171958002688428,2.321588567686963,3.229600896668036,12.564348390450775,2.1288297200056006,5.0088951869086475,2.6256298844753636,24.670674063497714,7.290149424042488,2.676034425004455,5.88641765535349,7.141955993208986,4.387213358815807,1.927962192130656,5.989102681341595,2.5686041199908956,13.763117362541712,13.603994387872403,12.141205040923541,4.97347424929551,3.9987555964672015,5.202250651345661,4.826610639608567,3.5266812456772536,2.5332274435949484,3.556542216717424,16.78263035740585,6.920372222284176,2.914513809345059,6.903982717616125,2.8195079832769188,13.511332204631481,2.499680317565341,15.08200300490293,11.979573891867382,2.3922081448158754,2.654993623900604,6.45024679162685,4.7659109789423635,3.8873904877681706,4.252524725386368,4.534061612106412,5.671933898813506,7.15713069578821,3.465472641410954,3.610021395837467,4.500045565690857,2.346608067228698,9.745254374774733,18.292752556100467,20.02830516949479,1.93270964290774,9.746803902550813,7.98318201836947,8.959507095572167,16.992653128239457,5.566220183292245,8.69953724146728,3.220896230812362,5.9130136311964225,1.4411602568102486,5.198863772083954,3.8073537041236314,20.175132786042653,5.100203780842763,3.8513556754446445,3.1014026765944918,8.768845975844158,8.593432765767488,6.890150304748214,8.753280199676906,6.244183595809643,6.534397640769792,2.4925093519785793,7.081571890501165,15.877809915895728,3.9952831177573365,23.586105100312505,4.438211672462566,4.248581748467694,4.053529551087983,7.5203424656560465,6.834164924975405,14.344018661522611,2.9927782987063987,12.08190191105407,7.202954415130707,4.969814829181485,7.981551570489479,5.734285476366786,7.533874733755789,4.593591242538181,5.071151641934282,4.831936933266604,6.010129153837859,4.180108793777754,21.783215166022824,2.6730567875696414,4.094885245272366,6.803044763072157,5.562186339265911,15.815978750510773,6.127818113185642,7.777975620579589,7.556756457047237,12.985374302665187,16.890710472851442,1.6316895234332787,6.10557181607672,4.222493541505498,5.90557824043314,2.981129567580813,8.146772462154908,8.826859654598513,8.764795228603607,4.0053143677709455,4.360104586844263,3.584393881347154,7.105000832336107,5.682747080338639,6.277358227980051,20.654683194551094,6.15988390780405,6.196953857288131,5.794652688360841,4.189261590386568,3.933830820488901,21.350022601078212,4.524493048325119,3.820398210860982,18.04513212053607,26.386766296531544,3.7524050943501606,4.4615552719447376,3.025081595255825,7.44258921200807,1.9614508379852313,6.98793269968237,4.4068654780902765,5.80839163733916,9.032857288582575,13.624311133137482,3.8914679130836376,2.279605527087125,4.833458698084981,3.963440011293633,8.926986675355442,11.23126988490655,3.0391449377964714,6.199644545489998,2.3319230635783956,6.6812054324427,5.288254163225513,5.83987954990054,2.871035713911117,8.23402934335572,3.128143418846845,4.403459700596305,8.947070164747151,14.197807876964381,6.175990410034916,7.626033999726109,10.949054810834658,6.119897184744125,4.659769942972335,8.409518761006273,6.739840145936047,12.757574707256104,6.363255564109515,20.83623863577903,3.5495495324442135,3.6603433981787266,11.27205905603049,6.912331511363541,8.442304453584715,4.131004718768297,9.184540361877133,3.2013394756676323,12.067336231983381,1.7649278285070755,9.088247766827232,2.524554000740288,3.609335033764777,4.562882205354501,18.34606502471549,21.33834369000162,7.266993515779508,3.5011074919966036,11.759872246448813,16.889761744994214,3.744402731005325,6.4429353772409215,17.48388202490443,8.081413374924573,8.987246088912995,14.823477582012913,2.743619655075222,5.953699328869393,3.9286068528337252,8.233843737383458,9.944680307422583,4.632168526688708,33.655621218563475,2.3855108106186447,3.5935937398902422,29.521600043118987,5.609563489482354,3.1160512123625352,13.761345420301216,6.530167993435608,5.315000269324711,15.094429549818198,5.410932987738907,4.783225918019853,4.449604968304365,3.335154530379092,6.361207002915326,3.0142187583037465,1.5161141562638214,6.655801130196705,18.311371345899293,3.59149704706431,3.3541864267171424,10.596268131828428,4.542805763861659,1.498117065259888,6.513691153581021,13.625821548998767,3.1503004633904244,15.467213820243543,7.96992604574471,12.53009710189418,10.588873393374842,11.591531458874375,5.7925839705498054,7.644933496074988,20.5677556941968,9.198405115944663,13.821918047186495,5.935117048093708,6.188522445873471,12.02455294662684,22.27085598342061,4.1091080361307135,5.831295519371654,21.435700024858306,6.019141879137279,6.887498027867295,3.488162441653867,15.32237778101513,1.8914965604824556,11.131097769847276,5.096245841966905,6.57605020374714,12.318588656936765,3.3776821003773043,18.088288229994923,4.807089798800284,4.602615651283435,2.108450666483142,10.62933710665016,8.238444909565573,5.4968990167863545,5.6786853475297665,2.041547170284524,17.71089509490752,4.2351449043772815,4.471604358996555,1.350373057537755,3.34492108201081,5.355236053831271,13.726316513572613,3.4671391454543246,2.0288985523338647,4.078981711613641,7.962587322464475,26.202297364205634,4.713582388955163,7.09740060219702,3.005601515541481,2.628012781346085,4.2662442282814705,9.321036254066788,4.275370257611994,4.384295159590739,4.635401141005037,2.283915386928064,1.8293770009985335,21.30169336853031,5.594564644053698,6.259454120375021,7.672712867739924,5.405522152335804,7.395266625667742,8.490580624641485,9.716126540656512,4.5260316651270225,7.014093798586751,3.230207850152875,10.03284148996794,8.945076707681505,3.9004432364607915,6.905176847749147,8.938220837956901,2.816145732893092,17.992755432304325,4.611943052764204,8.680848296509726,2.783263641594578,7.128586336981544,19.709277791601906,9.113583841877926,6.018657505300647,13.673108529793035,9.834175089261862,7.183857175870315,7.032522059039513,4.363045491618673,3.113110710044888,8.507182658743176,6.467020853423577,10.0181490625957,4.86638563959236,5.416158595862962,1.7369737531190668,33.35989779111295,5.786059017667061,26.274568964600636,5.5515052402461675,3.464299339639011,3.680321782538025,11.695185578044324,4.960304690448621,6.299353931684575,11.346805423151585,5.63234590666156,3.864738775483288,13.828428599904278,15.771084681383366,6.8933872114713655,5.557198671533516,4.935308300055669,9.156404593390793,10.65795127413096,19.902018058296047,7.587077741455042,3.5053171888222154,6.61470709913378,2.8977305165608187,13.627613587408025,13.62137011956677,2.4811957683497443,2.8611582243558877,1.3698676381893398,4.366569134084639,3.0574999498986952,9.754333878237052,4.337631724335756,8.149831553469479,22.4053287924464,1.325445454148614,1.7726385462265057,12.89178195120575,2.862621040118717,5.885439886403197,5.87015672456019,5.246319351484763,6.450245442328707,15.1692942616237,20.83141571279906,1.8129582683058032,2.7774101833646805,7.343240302229437,5.817887708444774,4.1486805877332875,2.938745123111795,5.394156341266469,13.6599812161229,5.952489524922164,83.20976879284909,2.854362129185913,5.181146222402176,15.466230704413723,3.8897631871988976,17.257451463801743,21.990856324977678,14.502452014622866,7.125421972273234,4.533184078226871,9.292414621370725,6.0485641138782205,3.131288566062446,11.775534842115247,7.974098578634338,5.189135929783733,13.19100489658782,11.12657605891989,4.843267548299913,3.7467035594575377,9.159538132722746,4.0103657072789956,6.863123382208162,16.19275127787749,3.5264392411186942,9.447678004312852,13.781939487484381,6.141008233065417,14.086393434597554,5.74063555838727,47.296401158603,4.146391987871129,7.57827783938166,5.932504585694736,5.480216581153316,11.08190809343866,8.230106810698983,7.078861047227841,6.76203675945484,4.59312732510207,5.992176682008957,2.939769770781393,9.110431988964297,6.266288174348959,3.0841481867934633,20.42828380768419,2.4278499653215304,3.122941545651899,9.90377035766882,5.406654177670451,16.940939247916326,4.379851307946753,5.653090743967177,3.7568787286202916,5.794024884857671,6.381050426174908,5.049598693275709,5.454505108745274,2.785060643708037,2.9991256881124246,3.208184843551082,6.187879966875292,12.692094072477401,2.82511522239778,9.050339541793923,3.931044456788758,5.0764797136641775,14.415996302832639,4.56382719337642,6.907703547067691,6.80067848597499,16.890509916161545,4.40874647383065,2.5774321015430015,4.685315788530598,4.501431906650516,4.125384955786956,10.325464778983838,13.240523969940515,1.365679946902859,5.168149439622371,26.3192727431706,20.526416449076397,13.435239840003074,8.387051276899468,1.7966582660374568,11.475759041437662,11.223176977421288,9.601263179457899,2.341315544681458,12.014872070925204,7.443641747987683,4.391095590274374,7.052244770868263,26.076842414275912,10.127816875939448,7.309782961638497,8.616085617543568,10.790326733825781,9.028021631173264,6.459792411082315,2.4017340219126484,5.459921221278758,13.223411560010973,10.001818684545626,9.46902413175849,3.6799171244021847,8.818195987962302,15.959967375509468,4.248101609855048,17.97727854661112,7.318919023111523,14.075546796088643,2.6384514611197565,3.852899117326618,2.4624253568121235,3.670356829332348,3.301794144742369,1.8500441726271095,3.4845613752675506,3.3598409896492956,2.504119825241152,3.119383995859213,5.079298030208944,6.862526611765249,3.358778841080153,3.771178145947898,5.707748258041764,2.55463880892416,14.134971839198268,5.619780072970446,2.009565980635326,10.744585814052215,3.0274810574321687,11.555952358691016,13.589509579977284,4.559254341407756,13.882728554670953,6.492924041506591,2.4456977035256644,7.771438517659027,2.739349377002308,5.237845030522495,12.276288022308957,5.020106795717704,9.92863088075168,5.2069260302342375,5.175164257793091,3.850203786200211,3.429080926626774,14.552723785474225,16.55351919502618,9.5185813073716,8.705367317313492,12.854853115757415,2.891577903056383,2.060453620538286,6.037559554649772,16.130111774859152,2.6111996118385346,6.620736057653528,9.700500195916163,27.06615428331611,2.4252737329436678,7.53718936852842,3.4281874172415483,9.467824713226015,30.355057893005476,14.24023412362168,5.767072382817625,9.015498295589092,11.770427248960821,5.183280355800559,3.663409922429711,3.712148803188741,10.809845765362583,7.423150077439567,24.44992802747103,9.22221748214707,4.552451120134856,20.164236018007703,14.329278803665686,7.024842756946361,1.770733950578773,8.17998103284359,6.579968737932122,2.831849639612048,23.05933112461231,4.658937774988903,2.0727841088642363,4.774258747400142,3.4852591369799444,3.0425562399473267,17.581402253264393,6.063188101164899,11.450706892711548,5.583513107632634,4.339243068430708,4.01011682555514,7.701200134497018,13.398231948054367,7.262912736027594,1.5371884980205779,5.045414125045311,3.1785212474715063,6.22574780325133,16.173850084860376,3.3177889526464504,5.905897109719381,8.778079264993261,13.687552740293068,6.281440037061148,8.186688300878865,10.571769342781593,5.531971119973712,2.409098849228807,13.422332053110585,2.0952637980360103,4.9379232228322785,3.2962301345943983,4.016617285793777,4.603750037168272,3.2657465421554854,15.802148124363734,3.9556985083290583,8.765953716910095,3.6230101837533177,2.996831339682306,1.9466287090181569,12.3556428181486,10.203485617102872,65.97857838270059,4.140922485326062,41.03625168522298,6.0412662269308885,3.134901747652759,22.915463834510547,15.228273145974999,2.354368232282926,21.80708879564765,6.373067518815632,5.4824273432705555,3.220033869943306,2.7369247613668812,8.17773876754463,10.632357617033342,2.2258920620730027,15.017411714145068,3.1749285012250352,15.22890627273209,6.270558648058792,5.492469384007517,1.6689163907394278,27.268458894400702,4.911747213161976,8.011232738112662,4.754636398068315,7.8178940333058184,2.1846482151338686,8.593265587894875,18.8475031463351,20.844467039085313,1.8654046397023312,5.094019460456629,10.161113659351221,2.6238742974923897,7.21783267287841,1.4848589613198422,1.8027809458247215,3.4633656617724182,7.973639859666754,4.835546649666382,12.049124925498063,3.5086502369463024,42.26163329915969,2.285776504881776,5.46587342579822,3.410802265138687,1.4044315450143945,8.516626277930154,2.6269403480540885,19.621394794566676,12.370242196298188,13.387831507097667,1.9997039805399948,5.0406723118184384,7.672162752162207,6.200135861283837,6.730406892504781,9.960033151183174,7.911086140981703,3.5607043082307324,13.309367576483535,6.59701212778258,6.249268219868135,4.714795099943691,7.0187175464673235,13.95576625314568,17.59925190457584,8.492790233255604,5.622488563139657,8.637507042705797,3.4748706301505585,7.9946664408088735,8.733463675880845,2.769685964229094,9.049155002338054,3.989853614768803,5.199226834071004,7.2860774486921285,5.275950393278795,2.8605613871931705,6.485275681966186,8.505158708745054,5.584096915164832,10.47834082537999,10.896150914896007,6.973117613018776,4.895413990379293,3.8214994573310777,2.9506937159854116,22.94285820377363,4.190000382982691,7.700619915513795,8.684145807026544,2.534090294486193,6.8820687933023645,5.704813045655489,7.107049959405099,16.15558069755045,2.620845552410506,8.686129033537197,9.433174210084657,3.394867895115787,4.397821387613577,6.4445249763351224,2.6155851615805106,47.919970645355484,10.403637497954543,8.812249414578298,6.921588377875555,7.354347649699884,7.0629682649708805,4.937675520708883,5.227902732442807,3.0009053261361487,6.185751436541178,7.308411297615171,5.53906687372131,10.670140523295823,16.288588694922257,7.840668028818553,6.231742287735944,7.404611764076714,6.915091193075322,2.012545097730668,22.51241405690911,3.1851405296173088,5.597422270455528,7.492701968255764,9.976848035665762,6.511464537488133,6.019176237434122,20.04254805430999,4.708514183799549,5.333899790787941,2.53996133184304,6.524969922572071,2.126129019106641,8.245991283171369,3.1852055792920924,6.993854983463354,2.61228977090229,11.509498658540148,4.551481211950406,8.633368512273487,17.783242443157295,3.808554890954705,7.025465984031255,8.445031958287961,9.876074257213876,4.014486714941274,9.859327385475126,19.11356329673637,3.275529479807787,14.380698746385317,4.284502360176966,6.126924766521059,46.04347945292143,15.974607695210526,4.935113023971847,11.967587054383204,2.5516311336605915,4.936053504161919,11.071310863083436,5.155733694768673,4.785609900668344,4.5817736596910805,3.2483279054411986,8.094892829536949,5.914537227941772,4.356533829330734,15.822026605848322,3.9208839802619564,2.181173885241356,7.722192176095121,8.448135332563655,4.318739011038392,16.000767493168798,11.455849925124204,10.43293006455735,8.017111520560048,2.729293111138693,12.087055137773167,5.027823706299245,3.047546198130818,6.991155407760188,12.628445854816402,17.871219348036448,3.0203585470722216,3.3813741667455104,4.8099347012085385,8.347596931089818,41.966887222957304,4.650279983762135,2.403105910011347,2.6592381109545307,15.095035023191462,12.335770094534162,25.724940910632554,6.362494625477208,4.856013873240037,8.722955869692589,7.555077611658152,2.5976159777317824,6.755317679796076,2.6209888383158946,2.8705187312350353,7.510933847699216,8.614406940744955,57.06107029638244,2.7199151827563903,10.050658736953961,14.392703773247327,4.260027973041273,2.967295691543268,30.68515025688097,19.03498675631069,7.875109786016024,4.746208234945016,1.6876187001699667,4.979171644687305,3.2900438879666356,3.8948886579554713,20.078285998026626,11.92762497529382,3.336565446150411,2.647939837174764,6.296932274324508,17.064347859932617,12.274361359151674,4.201289933744038,3.9933288860939666,10.53312439683768,5.80850661918612,2.7718622197073843,30.404049528246663,4.077929930486018,3.4059568881198157,2.9514436588340462,10.477230437872244,2.917582023096101,11.15090330897714,29.000034911591317,7.775827781737985,4.6556434240277955,2.703896285456949,6.886029996180906,10.672645470204019,12.848067177027234,8.862006026367817,49.47200493162082,2.1127153711366984,17.948552530966555,3.496991968220748,5.976882513705871,5.287442127125482,3.6761193497384155,5.022569014124905,11.082144981844191,6.797198681912999,4.833634565522274,10.237891905898183,2.228102049405883,5.191101058544738,3.6910896088810965,4.588797979841004,8.348864817138539,4.069426865001851,4.830987870877972,5.129370558770338,18.82327835176754,4.949011088491214,5.55224790229955,2.8520299519779715,6.134304879251747,3.882015086195066,5.713464685311724,2.7761466637605907,5.376602340097636,3.831993871592557,12.513888051841878,4.693097373665191,6.633781397340737,9.261796379023137,7.696837916290629,5.079961536682399,25.960937655714925,2.285683532925387,2.6057941934744857,3.00465848190149,7.27096782173009,7.463037638579354,15.797321104472365,10.915546175428426,5.772780537958064,3.953744658347446,8.613930543256306,3.0054866485690646,3.912771475696839,8.730676048185668,10.307738037679732,24.379860590493188,10.844664773993228,10.091857150347103,11.536045346227883,7.05348471862315,2.261057275276335,8.583873760687398,2.993330826252886,10.798105125564868,6.6186978245415675,5.461886909826472,3.6593010315412005,4.17642110338642,13.896358180559234,5.436751989896276,5.86098598853692,6.069639785089038,3.9989183582987113,5.028582414861482,9.400484662097439,5.60647113812659,29.66823435716843,1.3170673162514785,5.054479123286792,3.8742335069689102,7.416426048885465,12.286406637689861,9.22215170921805,17.541085988268158,13.789121108540067,3.4307625427791475,6.902516953462255,16.981680652829752,3.8871729083063262,13.246286513878967,7.069106412366525,3.0865536756229788,1.8203785498415657,2.8748633874890186,4.1076576996675,1.8583294489411097,5.8886879072785066,8.839866998238865,6.599388929440353,2.907775471954633,3.4865220362774285,5.923237510682305,7.493931070712016,16.135574923640927,3.4121206686948153,53.466057368772134,2.38643346280231,31.119622562238384,17.62865627800694,3.225950581746481,13.58118563140462,12.01196653309377,5.087449184151603,3.689393275059092,13.934997622551077,6.959890372975302,6.655315659277141,3.656907395156531,5.495185874221872,5.737263710107167,7.743988652584304,7.324113208340118,12.792711170728197,10.527588297462955,14.422564399918791,14.853677730395859,1.6891366361323406,3.5207585461698456,3.5138219815826073,3.641400868740247,2.0396295253334293,5.777477438477757,11.953967589034,11.846402539114738,4.578775870566545,3.1139481883539344,4.621730807508861,10.277253841736085,3.63165891611004,3.011272518427396,2.9803279951209203,1.7190295137805305,15.164532266218627,3.931195789664592,29.29648592988468,2.386573823181966,2.2823330262044563,3.2715246159131834,8.204793396130427,6.795949199273555,6.339321250263358,3.9210982261440424,3.5431487153339347,16.973750878564775,9.715789100388765,3.631911706938386,3.743918078995648,6.767204799138084,3.8592385267782294,27.14609566492472,8.528153024407159,5.7807889261545755,3.110067803854294,2.0209862356018293,10.05046965990645,11.362499161992993,4.895934564764652,2.7936927454878426,2.665487077272898,3.937983693808326,6.542883001494612,12.13415296326859,3.4723302596143473,3.795081141748558,1.4032482143370708,25.77816044220776,5.7782506272305,11.740934189510067,3.3024448954595758,3.6095489347085232,4.42336152483056,3.5161136509484567,5.551275269056796,4.023239598795747,12.148728763086728,4.051621215366434,8.096351712449758,2.4786348838712526,2.66336807736962,3.8524211501234262,8.631823893781702,7.277968879692319,6.742787157457425,4.426722462645693,6.7841335752985215,7.01935761918992,5.878617459239502,7.935037213543344,2.5013603964907025,9.860293472928426,11.259722557625883,6.878124340553709,6.486594160658799,2.93699335773059,10.417623350974798,2.841949991772146,5.070138712232121,9.004633168798513,20.8401649940848,4.530501369260059,3.3103418451697375,9.292257621310522,1.8860930650535792,6.896472524325229,13.611997853469772,2.226040087657995,5.842341974738255,4.103768435895803,1.873375672501839,7.024224404843343,18.326336223119892,4.783708759984571,4.901167369288298,36.87670392993467,2.6024564913600363,13.283074090353576,3.867983549987468,4.884868751595715,9.069070094050533,6.545458645133461,2.912823840438745,9.310515214286728,9.424023784987792,1.432748206465379,5.3216176835648925,9.262275512595343,1.9551735308953688,8.71536061812601,2.621800914443629,5.313106089514356,6.187906552740492,7.197141536297899,3.657266874578358,6.583953373088717,13.395925637322646,4.883463587076064,5.770573654572163,16.689909944958416,2.2552325118340146,3.767507964667401,3.223879383616741,4.742610866361999,7.207387097030815,8.461727000010562,9.53372666357657,5.479955646658624,4.205833990804813,5.120931588404511,8.862977442110095,6.944633925337934,5.903593793536706,9.816667720455404,23.432895662599705,3.3071179838105547,2.60783264059704,5.733990663365347,4.04949959540084,7.047621188601546,3.8071694873917012,3.3490445133576365,5.2089491623500725,3.284913566670612,6.233712406724199,4.290327174066163,10.594723298893221,7.081500395375232,8.154522672794165,5.289086204847422,1.6070204301381743,8.235003975725078,13.534143811401107,5.2138156998218355,3.0113574988455456,11.407361984298952,7.449201856234571,3.082501613958427,3.62035942416273,10.279936455560586,3.9914742787344437,8.017829726218155,17.050717923868056,23.65000972639761,7.22160368361671,3.3622914069376653,2.502653901028861,16.871458368498967,8.13768305271665,2.6253518583401543,9.647339071190139,9.514631534607734,4.267606755375003,19.703415038654324,4.141157512466141,4.260713788722964,5.893880128393658,2.3534422801263903,5.4233984680199185,2.3528178419620636,4.931791465989825,9.328635863204386,4.340738663951196,2.3056644898717056,5.346959818262814,13.538937256399095,7.008571263802977,5.272870808643623,10.027013699849771,12.913904634885691,5.380456359035648,2.9963838380643666,4.3240554426983735,3.931008164047781,11.748973380362646,8.981941130069144,2.897577165704335,2.5883790604837458,8.427752981360193,10.001312698419564,3.628123798766052,6.564909963520583,2.1473936963685882,5.660584817153239,7.643940110412129,3.727580748321349,2.8283214326173347,2.6745223950530006,10.641971789519571,6.463286245099912,3.321728834178348,4.499646629456011,4.706343770192809,4.920018639904843,12.90965204175015,8.291265972929304,5.735637824714808,17.90485372281113,12.627882099643625,18.86871314024478,4.731409611246067,5.664920694986796,5.664833440244195,7.704263942440314,4.287142006230945,3.0843804156265104,19.681446608068864,4.581355142698528,8.346086966674802,6.432321008953687,20.60401294097028,23.52853240289351,3.7482729337713194,2.7296029503085015,5.530387070628386,6.529611146429417,12.538284585422426,2.9902945853795724,5.557035749976736,5.358371081013785,18.6444110831521,4.49040275442193,14.732167498478562,12.186373154560098,2.251444070725305,37.011429709504036,61.20008085236994,1.4253587011556161,2.057196970500313,2.850454376766514,4.3571441897184275,9.989214718083709,4.067398629536265,6.099413274891046,3.351359522571011,4.241583331443205,37.847662743645756,4.859339741911623,6.846165850414749,2.5370445873911684,17.810786140375157,14.993220231267054,3.477057269127648,2.8293783323475354,7.029971036010164,7.815567621623672,18.18184904275242,1.839119577713542,12.547849820804911,38.747852621991136,38.19244531814888,19.55012276048864,6.775490291622904,10.963988450911422,6.581846634311378,3.7707810765897873,3.8965601136376287,3.459736145133238,25.725037039231726,15.397128348134439,11.404142370942264,8.257951790573072,7.166478296986838,22.27674351337727,6.651256980778284,8.124975697634358,7.574719868035117,6.14533616430217,9.256342108505443,14.783588648937705,4.411436614899969,3.1928538163515348,12.505640705575642,7.060555615871048,8.653369939274869,3.4647173114340477,31.6987503254882,17.53652817599656,9.47224687916366,8.866638764610604,17.728398305922543,3.020877154010982,2.251563795322247,3.4413534577114127,3.052617133039647,3.30488434409704,7.189271312539225,4.742374477004724,3.9434273655391707,1.7833079650671106,7.189905887264355,2.611015444087108,4.759778889172604,5.483619000319434,6.7636809413938535,9.178559401976907,2.2176910698077736,2.789947007534893,2.883296845336064,11.91852369264301,3.9571318843723846,6.254138124788185,3.624273498183719,6.177689731118165,4.889374359857419,7.009980482060469,2.7632113976576,9.73601191373032,7.4814836138035155,12.686878942227926,2.078069903553917,6.790872457750742,2.6540004556185006,3.2392067770911614,3.9616851497798886,3.849464117977712,4.691924589387414,3.3412396826686463,5.62162288108849,3.071671729163306,3.0191436202274793,17.678100180272214,2.9613254311800987,6.223105862457925,3.470196606883383,12.311055767772475,1.9683450391081099,7.84767087176004,10.257410653981943,4.231154146207162,2.813009566246057,22.764152078157057,20.654637899258756,2.2812879760193128,2.655993001734055,6.6283364481386196,4.8990981742019155,7.816938683994263,8.592982572983447,12.315680214369035,16.574502672630437,8.346160055832577,14.749152011811566,2.5357558796355897,2.819869748667767,7.678423643803293,2.22849759582012,6.681715429278123,6.509231366569085,4.315825955540924,2.1727020705165336,2.706463588352424,1.4364674750554405,8.528908944986314,2.149864983488637,4.00929122469785,12.994768209033168,5.522113491518798,3.428588370328012,8.008229383878065,29.669371045278,6.5180604119760135,9.242270696090564,3.5687470052326136,8.801412727064283,5.777946118844142,9.186784155496333,18.171163599577657,7.018622102543915,6.614020085245464,13.809382920724305,2.3633230539513796,26.93309343097123,6.35771005497851,7.533553802248963,7.36170089206287,15.986952577094414,7.29574359179767,1.754521774725614,6.043289850367256,4.827102887946644,73.71156287870107,5.488021603785904,5.085166343255545,6.10382534951879,3.719738629942019,4.98128690803543,4.7731479570545545,2.3505784057175063,16.85163900433395,24.590630002406616,3.3133799317428245,10.146676063687394,9.055520022628492,2.9012979235571184,4.087729837448775,6.693055631143189,4.680756342304356,3.4819751693257417,13.314245882411806,10.853998984434856,4.503822591208275,2.0693243887174257,10.41921288500017,4.6455505119899865,2.442706228047171,7.338291502058465,6.064781940275906,4.7354276937758515,4.1497008746970705,15.52977385063733,3.772588897868623,7.870512912174093,6.8702533821945515,2.5329361641170007,2.6293143569575963,3.810731369843427,1.5872209594041329,1.7069402687478423,4.022944945608732,7.003561218624676,4.642434020793746,7.8497646837883766,1.9647546019935018,5.042659321094485,3.9286220359020154,3.727495537194412,4.880626461835086,18.573187102283963,17.71186646780171,46.65115359024419,9.626775165813592,6.714219326239739,3.4407574976576045,6.14225773151951,25.51349786720575,5.079622554343057,5.082527131379156,2.6832105710685483,8.070858173208153,10.974735321086145,3.2955822618551758,1.7265913535894308,8.908865470957425,4.960287316284506,10.973890273157412,3.024870951165039,7.083875469570073,6.720679754533067,3.7321823124806164,1.9840235698328714,11.799430612963029,6.055063933253016,13.949845631863742,2.794048190993578,11.59380321519933,4.319851177911626,2.717967696984344,20.900028819678962,25.863366734631814,10.96144326926674,18.42495029048964,2.6268033014318317,2.2043582967499566,7.027584713562537,8.810072306403164,4.57641153025627,3.79316338697413,3.9745778571139754,3.1911037404538987,3.439148242134098,4.149908062654517,3.1825651365638086,14.263852972814135,10.34679530166029,3.8578011617704537,7.750482405368099,15.006785116573745,3.3010042533285406,4.166547663191917,10.89493405794489,5.850703221546666,2.830130654209173,7.666414808541433,2.9901221925997943,10.077228698409034,18.8771284864779,3.5427894439850363,10.711706521165508,7.359338235819445,21.232616687800483,3.840538042647498,3.2487901708405316,2.5338699416091752,3.2280309015550817,11.218069019879609,3.0049275442355943,4.0447932247553435,11.49201312028477,8.942722867057725,14.629449814223058,6.747094584848008,3.8688208037086995,12.286274546196415,6.557676436522321,4.845509288019192,2.245472942361165,2.3399960757500264,3.9773802420104403,1.8429964813045807,4.067105805380053,3.815614796114844,10.581452779814216,4.532659591426905,11.007497364249357,2.052041731972338,12.459731881201286,8.912667288753338,11.605943051183731,12.841741308093019,8.1065245145261,6.542025840750194,10.562165355685051,7.9070888599290035,3.0230155735891184,2.722117058003616,33.3656099801325,14.872810527676432,9.53184616735036,22.018157653859223,2.2065176161079507,4.777827785009366,4.605555753345233,9.20070991957402,10.761748485210035,4.977408901004351,11.350806914885428,8.190851257247015,17.529352994179906,4.691825449036684,3.4836611875100174,4.937475013913948,7.163030077246806,9.228100462276744,5.039013855429322,6.129047663707367,9.553805763811225,17.041162579961078,4.990291627258455,7.6965631840074655,21.108882427718974,5.224993872509664,3.915967476308359,4.881138535805359,4.061290466482117,3.173991517265173,7.844498872681221,4.572081546879777,7.731501671674866,21.424577267416712,28.599162982154112,10.68231877407261,4.719702836588793,18.920252210932134,5.416534064163389,2.6128771925261933,10.799321148171748,4.425349380926437,6.681701971075907,4.871880052126221,4.017703700813473,7.433093184064679,6.870842368038426,7.28787267352071,7.58190891526851,4.2675097052225,4.363470527057188,4.626397506002307,1.5339307317243212,3.479421627210825,6.4201282252318785,6.1097460027995085,7.660278462748164,8.17859749035289,21.64147354571458,4.176755363394765,5.912191642860714,22.63390069979108,9.575639082864067,3.3611803776845566,4.608772346576697,5.3936095279368805,10.156325671197592,2.700854506837866,6.0280984537337385,4.795419938535258,10.904786037673759,5.254336370409548,11.539824650742982,3.7727121676893103,19.15153918051246,7.051276569693673,6.069711188022475,6.641498127393039,4.096152050103772,25.97202145348399,3.0185077515543997,2.395656388527703,9.232190243520067,1.844333093637773,8.226016937729387,3.618597485938272,21.75700699193225,4.49632545463487,4.4466351792512215,13.707762138339733,10.449551240347708,5.966623923608395,5.159320251783264,17.877837420270666,13.081981657426795,3.8483669186725153,10.280841352208778,3.150059704685206,1.5677619466072388,10.280943581405582,19.541703425483117,3.200851932046695,3.8603764618571295,11.524344711635148,6.084970634920934,4.961821266182358,12.311766223522099,3.712217181125725,3.5947712530181266,5.8634270881303765,4.974590511204405,3.546167686215836,2.6153543939058,11.609897959919882,12.732165483351714,15.108823771928115,4.847838882810199,11.193140271296107,10.321377829831956,8.010521557710492,3.1879662241688522,6.940454900833163,26.943431271699854,5.86557062938089,6.796642076435602,4.893010496860086,4.304075826434146,5.933580938003534,8.58625395216545,3.528213215698759,9.880719125158105,6.24075027648349,15.113850134824663,10.759335618475156,4.610129837858132,10.764777364656757,2.4753505088894716,22.46077936962415,2.264201975783714,2.6243178450105913,9.597838352290388,11.027341439269573,16.311320824196628,11.300536855303452,3.944051490987538,2.9941036036340014,13.330432119819342,10.746982458682865,9.749588676680943,22.274678943843487,10.159355280729756,18.542321540832184,53.79442641167972,9.472811893632253,9.768583586068171,34.71226283326761,8.159117756301338,3.5519368261463957,4.121537381506436,29.013540229015575,3.585378987561782,4.812771040183948,8.18512232335318,9.09513662354119,1.4102605957642116,4.847568170006942,5.5143632067927,8.00582183683428,3.413687141071791,4.64087494732202,4.406700286367839,6.12766329724236,3.450632268069016,5.517449717691005,9.719247075583112,4.176444672654882,2.2199279193430366,11.49499514994244,9.035924515406009,7.419565785213039,9.913974638540068,14.110867168327337,6.921918853740727,3.434751635112599,2.699669662238732,3.1382120096604584,5.548921605666947,2.974263879295219,3.970275106723008,5.034038498639529,6.796001304870915,3.2069843258779827,18.29111500361894,20.52394021089285,2.060079856829362,9.86268086247598,4.456151561317023,1.6907192940157256,13.386505606756023,18.69960347697642,6.98147510577258,7.423241336553274,12.104921059264148,10.452702746507088,5.299797620029075,5.595718398184786,16.451025898365792,1.932682621719678,7.180019678859971,5.609748380989889,2.795746757193137,42.223348674687706,3.814606993794157,15.782950949927738,12.707996767224166,9.427757787543733,9.792816274660062,4.268818043572737,5.834765205624226,8.134118080231186,3.8545074972021447,5.583345120047485,3.656036246188985,6.1021006583774815,7.72975235760864,9.730682369621341,8.169755115747929,7.669506323717599,4.238985508261063,8.62301672454396,5.104203406465154,8.934911293131979,3.6073063590964285,4.7960382064589195,3.4814788356326454,7.069209209477417,6.958701244132642,4.561529930991467,7.518604919892533,15.500332000333286,6.618963374771235,3.84703382535016,21.812078332877604,2.4900409011176574,7.805522479809705,17.921068616600675,2.894680951294004,33.76725143986815,11.346685114404604,4.466191495295297,16.904599915945575,11.911273173381904,14.408238512235679,5.90652546438148,2.724575798278285,14.342944170222712,7.328391083092175,3.726895733000437,6.376033498206896,2.923406332870727,8.397608275727539,44.49850356378152,2.3604580728897715,9.100092160024948,6.229992927819099,5.597234052754356,4.044957574035864,1.8414915332745583,4.171948576306314,41.02638230381353,1.1894380744753983,1.7576578618996703,5.554573698559789,3.278415490385668,7.914318264892739,16.73612211699724,10.72106214344226,3.8087655571817765,2.696180576052529,9.69803457431982,2.334062833559794,7.194016786839275,17.20555387201822,14.888195122453837,7.557584843934008,12.294840195745168,15.895471610935257,39.37091925893073,6.241724308969683,4.747751440968222,2.2641741483951696,4.177089435212296,4.7968878088032945,3.868734674500678,11.539668271863388,6.863562209024106,7.140723173134519,8.572010881022107,4.761070514698773,3.4526336294295814,16.329698748804358,3.5741967451002816,10.239186303845708,13.301100951505985,6.86813535505356,16.13464132683225,3.326330455033852,8.353934231560912,6.454077953374875,4.661008886539279,17.217768072774312,6.716785002206668,2.7610947431756743,7.7165146818252115,6.802850586199804,2.2792288447334355,5.424438553809245,10.538129421765069,2.302647687692377,7.425361497588242,5.962833638061087,3.9846246294258707,17.150977772021132,3.9644966203031773,17.499060411909564,3.865968651471032,8.14663433108369,2.3879422791285343,11.089133487954554,3.5435676400273906,2.9558477644449996,25.23190006072905,2.0909595663293885,2.2494513637033897,4.097311707980467,4.326380514323539,13.713782502584088,7.5489328006054395,3.0724597176915784,26.465556189654876,4.24315162673029,13.105142449237889,3.3120018801341216,3.2452456018552036,3.2759441265980245,4.494586860246542,7.356037533235513,12.224955678450957,2.9130805844488608,12.913163509457938,8.932476205229838,18.28731331704277,2.871895989704857,4.006353289903349,9.940297924303321,1.5618417958837183,47.72756602420183,21.080389612848588,4.023122587743577,3.748096543795364,14.916559207926873,6.244912153489586,5.030993700157847,2.985098281319549,15.974333927379204,13.114835256287542,7.11941701467656,36.31926367612002,2.3746834209870986,24.422212351465323,1.1804252002632367,7.268599059319959,4.2210892261408555,3.4668457740096748,8.853354979067422,2.4987411258958643,31.21520895198735,7.059195179402137,4.585138239947475,10.044032082983435,2.222879986336657,12.564916457076077,5.658753709249152,4.197772235462772,8.640255344936525,5.458078192615783,7.7378068560476,3.1609349497547043,4.5607580329635,3.012506512833542,3.8787098074799924,1.2489530582372612,11.127763186114523,9.809614207058708,5.5465777356811685,12.98117876027594,2.95926115790974,6.280461518509771,3.0209152021837196,7.3141280038283325,4.048184832763149,3.6151658000548053,2.744320341775656,5.287567322159782,17.709883516082314,13.745406281699402,2.5009306801329676,10.766234336128614,5.75937276317658,9.582388347214925,4.785546514389678,7.397406694997036,6.661842201035441,6.32387146906308,5.38120118499933,7.799924284975903,13.551655767517785,2.0285585993336746,1.5430191233371662,3.3911252643304497,2.396455239973608,5.145806270193013,14.209322712310216,2.9360341721302947,9.709121153562524,10.767264350229555,18.045390295067797,6.946472025242127,10.477581611418017,4.434968844153586,11.54519148632438,4.254670819507286,16.453593475911212,10.096062122792834,5.939962702948467,3.5138076051540676,8.695647953499693,2.791458396208162,9.042933072636663,5.893831992986967,11.220713028382939,7.574268202854759,6.4276852427187565,7.469549186129553,4.406320011516822,2.7451827440083565,4.023430282130248,6.556024694148118,3.704630329709853,7.443438543619757,3.805720552993235,5.240473743281416,16.710461719294045,4.180340152269079,5.97068129291336,6.016429950668449,4.418596900161259,9.680043309341821,5.3278447607186115,2.9043111917225635,7.9862345885011905,11.883817129753483,11.288372829273401,6.976802380161187,3.894678098532458,16.4442967469117,8.663469155200973,2.9745238028272376,5.2746141315305985,7.617900755782193,6.291073228867715,3.655078775335654,8.50808495818389,2.9630798181144042,39.17979334227416,9.843439942815918,5.937899205619468,4.050512781279142,14.547062491270516,6.393243476710503,15.721426990054013,10.297485418325413,10.937109494308995,7.313457171839666,13.40468626664946,2.9271795935533516,26.489338083287322,10.525480298120344,3.625111382626872,2.9720439651679134,1.5419029407911304,4.580239586556854,18.592537161327638,23.796676871366937,7.182285988681914,15.110850372419938,7.48254683030131,39.151837805175184,23.197614789453066,9.206402186897908,9.514988479609567,5.8551536065016405,8.078441554933088,13.76625500976572,7.621388714987387,16.410168438660424,3.8535533920813214,4.064044702924221,5.921130350683676,2.222566494829448,3.1199871288922396,1.8182556759114368,1.7019169596970232,7.286738852318117,6.893102391470795,1.500176105198327,6.061891039657604,2.519011037384898,4.142934830318663,3.7410657413747024,9.492390663835781,4.632463127621287,2.802407429785625,34.18643549250204,3.8052210915638756,5.974265040427964,3.7169710991475893,4.109733891209736,17.32604784804312,6.304187407762806,20.45857065339274,8.393629349408632,4.231181887158708,10.309892424159575,5.200584308259391,2.8308972235405663,3.2280310041616453,2.00436931021682,8.240585492445765,1.51888865266571,10.444137061186211,11.533162547484862,2.73603604816843,4.9852119665722014,2.8073485983268704,5.562046894141408,3.5940535654814414,6.481224971123667,3.8922505687798448,3.074206672878704,21.25353573721993,4.922698246559275,2.41117849284206,7.311326705847002,13.312611056222467,3.5827589944416416,7.882256474401521,4.420256198270075,9.895613534911632,3.1693966510380434,7.9388645673322955,14.108881305663651,18.988073697963394,12.515899473972201,9.602560352702152,6.401887714767733,3.56563302145096,13.494863904211414,37.50912147533566,2.8853849293024187,14.168483410548305,3.4019801249739796,5.340442536949833,4.862938251932728,39.820035948567515,4.688546913452754,19.585708164549224,6.56422495246282,9.25992046658209,7.112067295806559,4.389526068466446,4.5610293177471055,6.002045853431057,2.734472420689623,5.062969356220477,6.013358190762246,9.34584502301117,5.63452770811218,5.3314060691705745,7.978574398282937,2.2442155407870863,1.7548044814944457,14.745833199728153,5.132832103068533,3.363504884411584,3.376069761380529,9.226819696213521,3.858575011286994,4.565073457665681,3.706798357673098,27.36616410015289,9.102572936702103,3.293007948525485,13.027020334151537,6.03046212810111,16.24038492397383,2.989674840988375,3.380589777661272,10.96307223925513,3.0310879359276415,16.935570113564147,3.2076008002947534,7.065933717441538,6.308344817139845,5.613109417189996,3.1968808558735873,9.268555114124753,2.905830745325958,3.3472199621379315,12.39640521389047,10.467996960350307,2.1155479640700077,4.276271232921706,10.439329922408584,6.288557387066001,3.989954615782618,11.592337718024982,9.441328163408896,5.912223828924199,7.131576234129323,7.030925988002157,1.9353289635587745,7.6214528991170525,5.7325619343853,7.5354589813367525,5.335254705500066,6.760632975522924,14.502983784190233,2.486830087879143,6.853416711041722,5.97583076924675,6.465080586959395,3.5025066781897425,3.0841086037739687,11.742002395998062,4.003414796739368,3.7459224818538712,1.4738761283322142,28.503696039871603,6.645602337246258,2.5361549842730895,11.2423196005714,5.371665798900447,4.27514982273506,11.74267177972069,25.437920498167514,12.089744174580673,8.327977289129189,6.351174545545002,9.45099478286252,5.482167542535854,8.554760199786784,8.34277875364316,8.527179138062769,3.22124392915972,11.156593419674326,4.932974568860138,4.447389905972006,14.087149213799943,8.996766644164644,4.1178625294798366,7.346830096357086,5.3085056612854915,6.5003265686911025,7.292973154471599,2.759769345335323,8.16223589842909,3.07380792030455,4.289355299327597,21.184148683189985,72.02096080664388,11.06564889959308,3.676392372825784,7.136755305389249,13.771791489325771,4.415310576178987,31.237809847476917,23.75368441380268,4.489534229201891,4.8425098227644705,4.075322796209769,15.20009292609487,3.588173227158722,9.077768387446186,7.5160626538855215,5.078692533895374,6.5198652398888814,3.9115275704538512,3.3864972526093164,18.64348311831877,4.455978772817702,10.461919934676422,6.136302658520127,4.615356894735641,7.1271666150250965,18.813727247521005,6.599592769199472,27.233151988456246,7.963926929557346,8.785941397458487,2.434711620904594,6.782369371723519,5.679313226961032,5.189240223545173,3.9901887516158956,11.313141204354126,5.925276591257904,6.079653267195946,3.550637887014417,6.553382668768283,1.5262121920820166,4.1077626632657065,26.380270399007674,5.429545441482755,10.489412527230257,1.4880842276959294,4.872053481124814,3.769466640526862,4.559061286603942,3.643072904679211,5.635196272777511,19.857173119950893,1.4913090419217767,7.44188797762807,2.9807262874623226,30.693092374154496,4.208106374701795,9.35613383876811,2.46628981662931,12.072613858005802,3.579863185239199,6.309327095132561,20.92590289074245,31.553062933703774,7.501303152268092,10.88166763415738,6.315775653633267,2.066924261737633,49.83011031415703,10.166331418578809,4.289429337565665,6.009166371951772,2.030987851043631,6.523617721623758,2.2600708880146856,7.233409364131652,20.859019158660246,3.9816011765081014,2.656692540367649,7.094646047770546,14.390519236674944,10.523354954010552,6.259844475500826,7.085148236591648,7.439710043591535,4.234795350967703,2.0375710420647137,1.3303872785878132,11.792918178212178,10.133492542375622,32.28649315211135,2.3871019922776515,10.03556040538323,2.311190026457472,10.574366554379424,6.102178055508895,9.931970598036132,15.592685077017816,5.29434860773396,1.5949124838209523,4.042046695985639,5.823518212105602,3.0710499105055624,5.848605916253788,7.023151608120146,19.572065220664566,19.034272532445044,20.69632462583928,7.627231081846847,2.4661362384319547,12.44073473765298,5.903660115287067,3.2676470596699865,32.20888813133443,9.616630506780918,4.622451332617849,45.602788528627734,2.2119573462254625,13.110588751867342,14.786778202017393,1.7255650361703945,14.815313867397636,14.747745656121843,3.35402174393654,20.879396806416796,1.8984760529816056,5.2171527899262715,3.324714308195403,4.765615395318245,5.120199732311531,6.616897940480987,12.95662716762116,5.366230241317917,3.7200386877530387,11.252725390614398,3.3429278221303385,13.643547017561284,12.707885297315274,21.293778643380662,3.229091883046152,7.672931338871142,2.62325252213403,2.4470046424118577,1.8607659680036244,35.78642202392322,4.942562794600861,7.8672123404710135,2.9891641565876053,3.882431044106872,47.0973277832686,9.87305068084153,6.326110199093929,8.378556621729178,3.5785583043615175,9.08225086882586,6.848765785152666,8.464156213031618,18.049192303757742,14.74613742113306,4.695154876774885,2.889571898736408,4.419836709142028,2.393561238745881,8.966940281702353,4.788786377348598,4.5655610190272355,4.400406678817707,3.929079248072118,1.7376196647582283,5.104535823973191,3.5911425871021123,3.65791745139879,8.213038364423323,28.85065328183318,4.111090800435828,5.672370038395209,4.299544344489473,10.453920895830336,4.567061673686667,3.0405776516421583,2.544535204024407,6.554771329099173,2.132744419918749,2.1632356532542936,21.906764638247942,3.478899640967474,5.340979717109953,20.248004806633872,5.128849019270352,3.7474735505362684,5.840594023840336,6.633424642871093,2.729369377629076,5.519331952224347,3.674794013589199,10.959848378531246,9.997621590610771,10.008578832006366,1.9365370148262506,10.18573196987742,3.186419175090778,5.695901484258344,2.2968174626529745,2.3341957840217233,6.219722265729946,9.644533376369521,4.829574214388403,5.633298317218767,4.790917544794193,2.1601050703713267,7.082308399005507,7.277876008280952,10.23484020121033,6.881398214576276,7.169957102199487,3.2042047361205808,9.782923642134271,18.616782999856344,3.9957249036564013,5.070117058797621,11.86721621523212,5.260403637465992,13.595608332188537,4.8489344485242505,6.101830828344915,12.600815096493386,8.91707563753605,4.647694419389115,8.309776479689067,2.9025671536086763,12.75840494076983,3.898595884007195,5.186036163039403,11.437565588441181,3.8235833064093265,11.007043224315547,1.8681803945242152,9.306069043010543,21.763842923076915,5.226084896644582,6.526734643695674,3.4875857821790643,9.218026277861792,3.0010478548793564,21.28129982544337,7.911762777848466,8.58431522207504,2.2680494059186294,3.7962123888416204,4.847798574365666,18.44495821351718,3.0770067889175046,19.28799964183854,2.953315696111546,9.086652939069864,7.826896029026406,6.874045150799163,4.479908252693036,6.648876198900694,10.448671912222414,3.3238692079518786,5.659551193325062,3.0110160214182753,15.562163725196458,2.6410365831266964,3.27889261828923,4.681422800589089,5.174317205641422,16.073203991532946,12.600187337100074,3.3247260706027566,3.127847459446275,5.891047221307996,15.535785282939983,8.202461002760872,8.117717291207008,2.4862288093384732,1.953695191443346,7.700449525974611,4.442998954473397,4.754947497079987,8.726613595307109,4.824715406216303,2.4445030272170754,26.009942833601674,8.756920226901075,6.44628928682552,3.5400315006896834,3.9447036475671777,2.8728357157617195,3.518863574739276,18.16511309724599,1.619732591808156,16.864217044958068,2.8720304340112692,7.2627802847819645,9.276634682174087,1.738275992864939,30.943675342597324,5.380820837597332,5.7562639240569435,6.6004506659476245,13.75107547433267,5.151215816694196,11.967339816148781,8.740041080163536,6.494900928506769,15.651847768300062,4.474340381514344,3.4696326243253344,9.544732690831328,9.440123785950618,6.555278181111715,4.3036745220996915,3.6915301127509523,7.122375554823692,5.145495965566995,6.362931268109494,15.063978275322636,3.890140116119536,9.902248048026427,3.35249370918624,10.549297638883454,7.991632481503538,33.406931421296264,14.090183365246231,4.23616826913499,8.352849714802524,18.483370380327397,7.8258558701841325,14.385559057679185,4.341048744219854,11.115993081638376,6.542992578674483,11.981235249568982,7.282096516823318,7.325995587869458,6.521536173829056,2.4854598445071887,2.5376037914500027,4.708329960561004,6.648009033487589,5.195780829793765,6.8117046923724835,4.152420411457154,6.186641386549988,5.1419533014061285,4.995523065181684,8.214929368710651,12.277508871617393,4.774449776510989,18.871169793825004,8.114334276684634,2.2208936386801295,6.229348098349192,5.062829906223411,3.113395898464121,9.65358972868937,23.107735517365118,8.105209667278219,7.474326918889416,3.0831863932476375,5.16252400367646,2.126319782619772,4.328587728919288,3.2313727486818182,35.257801102903166,13.103601747734935,4.950843894074672,1.7670027893212512,2.1924578587791097,3.8203287028146913,2.975062466778433,2.4041369406099746,4.847852651985986,32.193366300984664,6.471083854202211,5.047928115111968,3.8602252845524974,9.037013009150478,10.373568604688543,4.6402388053071695,6.453712451509209,10.589395993193317,4.757013492793695,7.009779738961554,21.325087294716763,3.959966515345602,26.45920735618672,6.513935418494065,2.9080222525484354,8.08357771130332,4.534420966865165,5.835284996611362,11.737697471225815,11.807239958584685,8.104466153567971,22.05503470752218,18.94622503021458,8.012821856339412,9.531664807339821,7.5841257453926,4.194634985114675,7.588675883695461,7.741432466959016,5.620903770316071,25.927792510613706,3.081662248704264,2.4197926477644245,6.544888951922629,4.376156068827318,13.9579631767161,6.146289429093617,2.9692194749108403,7.181204548561374,2.124680062955178,7.781193002953821,8.487180860860656,3.045912057895405,2.7119093166807513,4.289810359879703,55.463471450268514,10.161937363334145,3.7475603725481976,6.631070311285289,3.467157107411348,3.02742011237163,6.904356130369745,2.0676453246248623,6.273122773797077,4.108146159518647,8.079664704014741,2.3871155509590953,3.600641155552438,4.1515794983965,6.32892423059268,3.3338033278309536,8.667798480448276,3.452717355754334,10.54151307333321,3.0705910094171847,3.21433458478911,2.27604190586183,5.71045120518852,9.766131849987566,8.98764409125346,9.587769853762097,1.9446667858943694,13.385205283684895,4.684830645397824,3.3517202148812943,8.299869594863253,3.982274199647101,7.188891746701208,35.36622039276715,4.616529768226914,16.639856719657224,17.03840394392741,3.1917470090497266,8.135415696748534,14.606323797645999,5.854877577956491,4.766975049588939,7.612394626524254,5.288150989737216,7.463593238681359,7.047278696312641,7.153494471170367,3.9418076012998204,7.116920769779381,8.231161664431157,2.4050018888107085,11.337651303810512,2.6117378169109102,7.288106404699731,16.570669075706554,6.250558003514906,4.598318634076255,13.914293421777705,3.2535165470017082,3.6035370911947506,6.016784370543578,6.517668747926987,2.2452428343708704,6.787138137984094,7.334150449583093,20.708900601951996,8.81808624502444,3.745873612937214,19.628163297759034,3.212152238631691,2.1913182107553366,6.418442208349293,3.8332648550994746,9.879337569155082,3.3172119618390994,3.654792568786321,8.386231200460623,2.084543069582056,6.889582239280153,3.1558551694627415,11.222186111113267,6.001369601433172,9.750824981988798,7.065240403319484,7.600457205917179,8.605080035276059]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}