{"self":"http://probly.dev/api/sim/98bxxbertfxHca24h6iZVs/","id":"98bxxbertfxHca24h6iZVs","created_at":"2026-05-12T07:09:03.177852Z","status":{"status":"SUCCESS","status_datetime":"2026-05-25T09:37:20.137984Z","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.47029969321256415,0.38315060956954217,0.4179412526526819,0.5868621587088331,0.37762182671856115,0.4868770535828165,0.4978481529065842,0.48404881458101695,0.41431928841848864,0.44514170635074995,0.585085939668227,0.4297885108485373,0.3292818513280196,0.453875991236127,0.4969706263679481,0.4193179118407387,0.40189941757252834,0.485831409357606,0.5417276800471672,0.45776067840919743,0.520668647424091,0.6264952139082909,0.5080653090957827,0.47473539879519805,0.42679932283141875,0.3522638427669575,0.43370223002226826,0.48663423910630416,0.49586511259970834,0.4326363616886175,0.31549455179055785,0.47522214826071624,0.5231171003215681,0.5500565572833728,0.3759615736471801,0.5177093471124631,0.520600092454721,0.4018227269511517,0.6083719610501647,0.4429901509201794,0.5067608529457854,0.571335208083553,0.46825984201435,0.5182865336241148,0.46865421582773287,0.4080049408485641,0.5186388215884945,0.4574960963224048,0.4674446780519702,0.530403883973686,0.3718892912062496,0.5430503139583387,0.4884224809178413,0.5456265167371277,0.4433849591635318,0.46493163366601925,0.5281790363819165,0.41979806411712245,0.5375437519396041,0.5436241453366573,0.518208411781494,0.49765297810595627,0.3749560110841291,0.5756854964932162,0.4710769899305787,0.5722499279832715,0.49509975974796844,0.590333677267066,0.511294010085562,0.3278746831358301,0.5203256729919533,0.564579590179774,0.6109997976035221,0.5622396225894749,0.4239312630825633,0.4154701345381459,0.4203955115882994,0.5937823615380157,0.48536215895552726,0.4675919466491237,0.4271606019130583,0.4884578092928791,0.5093602862726726,0.5004044151719091,0.47270487690081564,0.445697373068636,0.3306156205429783,0.42502365737844394,0.5923658340628049,0.502963223960681,0.37264502440792835,0.46398215394908354,0.48657872162142457,0.3641127734742775,0.4408737394400494,0.3943877789164111,0.4793209581649543,0.43693633189276027,0.49114725224323624,0.4004959675791313,0.41378201462288744,0.5509843489574265,0.5537325913864224,0.4057369513595999,0.44435621386044555,0.5313408703194031,0.4218556937467303,0.44108020196231085,0.40415585254379954,0.41393140420831803,0.40760044269757745,0.5323793849103733,0.5644669483544837,0.346124192804073,0.4208269003399893,0.608935820899364,0.40975087504099283,0.5286997313371389,0.3912653427599898,0.5026599882274717,0.5014587754415049,0.4595578402316428,0.45338052037439963,0.4458211269126581,0.43188495252232023,0.38640929762640625,0.5740084566954402,0.5008202843970917,0.4422024402297158,0.42975793559118786,0.43370668696287357,0.32738738512678894,0.40605872274341515,0.4244197812043898,0.5835617302999959,0.4272812867987678,0.5617218456536439,0.5082058816269392,0.3848448364118989,0.5548383168659897,0.3681774890518195,0.4316649835031548,0.48506015882763054,0.34817879933576334,0.37552014096110214,0.565370576721822,0.38963373666917334,0.51951843732182,0.5368382138070386,0.3068531377866244,0.5786322087739324,0.4686980054589429,0.4614967202277944,0.3829028517842164,0.5125495047414556,0.2584012879778776,0.3779944509929167,0.43383124815826635,0.5207342728572917,0.36157273160249986,0.44406431376617,0.6551134701460324,0.4073945554914352,0.4057690943782613,0.5349906318888896,0.3938041816599854,0.5835394701569387,0.4470375037069258,0.5561645116670823,0.37991715409808546,0.39755146336326147,0.42258569527018935,0.3736004687461209,0.43722718507453256,0.47832582262351353,0.5295443938058375,0.4817087854863977,0.530018901317783,0.633365386355523,0.45946601348842586,0.5043882612875488,0.4736227466928026,0.4580378236744048,0.5359716862534123,0.48032039438390944,0.5175343033754688,0.3868503167495756,0.4053569695250575,0.3553573788874523,0.5068728895915253,0.5424590177778796,0.3974873277906634,0.5227544339741991,0.3653632722420288,0.423182498577148,0.3859864167510665,0.5080332394368716,0.42752966433988937,0.5147570380563092,0.5466053606858227,0.3497053722647294,0.3543103372259784,0.4639188767200566,0.48018376303201443,0.46243430615884074,0.45023655046159766,0.5577112076250705,0.5689156938963129,0.5206819292666013,0.4340372039905466,0.5178907509094788,0.45405269792364505,0.2371514288645401,0.5072815020804629,0.28576698039332404,0.5447568092843476,0.5201392320689174,0.5283743363227095,0.42020813572944427,0.5252043972584631,0.42628374495279986,0.28741776636468336,0.5165314961731579,0.5105384200437943,0.2977017572905277,0.4049043912181448,0.4546520956805818,0.42131882418712585,0.4093367379850294,0.48219949520092226,0.3869770406031786,0.5747133730396212,0.447718897363973,0.5455407993980762,0.37392817934515665,0.4520830172533192,0.49888013963284455,0.391609374856147,0.37780729467306495,0.3541768390915036,0.3963723458374506,0.5822834266888504,0.6429446512631589,0.5204116634042413,0.4340158129832334,0.5483609104665509,0.5095037528133189,0.4046277558110243,0.5609950956969594,0.5263895026863965,0.39667233897387577,0.5530437682437626,0.5106213542246572,0.5182012085300333,0.4184287489621873,0.43467472297786897,0.5104407470528466,0.6275777439713884,0.292703467747041,0.3770696912385214,0.3169448311142315,0.4076638021938357,0.5430827431903945,0.3535467524640212,0.496780601033869,0.42427282637476804,0.37600782256062665,0.3959139943599711,0.5001794108771925,0.45580326142467625,0.5048323386788518,0.3479883821117709,0.451362681315843,0.3769016589847871,0.3983778050286509,0.4228347965676421,0.49538700595118795,0.5373681436919103,0.5277687165376743,0.3352271542404399,0.5504176452245663,0.5424698256143295,0.5193270732684618,0.5512343403071528,0.6057469589180082,0.3219812490350089,0.4626901645214206,0.38834647828812524,0.6213387916970343,0.50161546094144,0.37943448219334,0.32960325699818266,0.4620008951453127,0.5440490368988856,0.5378395437587729,0.6030813594603517,0.5008970125274151,0.527668902937242,0.45025387274427,0.6324442433310502,0.28456939674809695,0.5604809615976911,0.5341934625347642,0.38836239929644967,0.44785829164986146,0.4113079943617294,0.4147207780213259,0.481656579470275,0.511539373931746,0.35598170659258566,0.3526006473010333,0.3843806799751781,0.5396885095111883,0.5376855469192563,0.48564334108010154,0.4120499170126982,0.5193827547295375,0.4854830721236313,0.4375440937682155,0.5380764253726096,0.384711222733661,0.4367475244769847,0.5017258778633124,0.6453234805743201,0.41319217045778145,0.3526633827809892,0.5024763107703636,0.43193555804645484,0.41328680018061426,0.5775945735605524,0.390156835388685,0.5770989932549959,0.5170761398814958,0.619604746900351,0.5026644463540328,0.45486693857099825,0.29803700389224835,0.4786479563566921,0.4159937959071296,0.4983290952614238,0.3850717045795705,0.47858459381957774,0.39580445978313605,0.5144550791563568,0.4264812061305811,0.40151245517124684,0.5058477466928502,0.4550519362684599,0.4477146326916333,0.6117836685273886,0.43679054640250325,0.5065464182253647,0.6026798460943424,0.3233471340936053,0.4986922311134311,0.41130428737595875,0.3818974404449737,0.5502840514594506,0.41301581802440906,0.44420321623725934,0.4090919253611273,0.39263682301423614,0.5934222691185288,0.43916471352024017,0.5063156399497359,0.5322879547265231,0.41441008285398545,0.3292948470753556,0.5172231986573126,0.45975423336660404,0.4758359829485354,0.4232784344461721,0.4718288423756633,0.46688105815590863,0.4594486387089449,0.42799653207593974,0.41041156821388486,0.4667827542358504,0.3549679852049164,0.375794317593005,0.35299570059355656,0.4589466763530009,0.34906542141934715,0.61396639335775,0.38570291157637726,0.4061359509138954,0.5184381296664212,0.44527492430915366,0.4821068469426328,0.61189743105887,0.4636830733663275,0.4931780680779476,0.384480924576904,0.45604405282261967,0.5287101056206989,0.44486168831843403,0.5243489344230069,0.4669963966279682,0.47828933613081076,0.4601549642872857,0.544293144531616,0.5245204852953351,0.6187368081119445,0.5512001848307766,0.526134141784244,0.46962295100239776,0.5663599946856894,0.3735299372147314,0.49343732600799495,0.46546419424746033,0.4574553409660146,0.4735935044155142,0.3885932986776953,0.5550446804701583,0.4149614732807246,0.5245520977274253,0.4921560290897615,0.46607834668991716,0.44856811474074526,0.3796934210972154,0.47534028385453836,0.5829779096041547,0.498403127125491,0.40978073423942224,0.5003609018999705,0.3805594174323231,0.5233600605422859,0.5622530822519534,0.516854318455872,0.46114772853520547,0.36820663786004004,0.5333290108258478,0.3842424117358684,0.5505859046961684,0.3674464386573227,0.4910414274479606,0.3836936880221132,0.5679136857687148,0.4297491921636278,0.3357600497853098,0.3964686209710445,0.39857366186328397,0.4990178900984718,0.33873788030504376,0.5670513527189391,0.4721866333270202,0.542001647503838,0.39744856383865995,0.46013833907739776,0.4371477596121396,0.438012361224709,0.388325532192956,0.5578507835445969,0.4819446224367056,0.4520652654864679,0.5862705918096037,0.45943105416961727,0.40543134403669495,0.410956230276758,0.397586366111581,0.5339323824852866,0.5336471564910065,0.3874782628151808,0.46427211376021077,0.403755568084877,0.6009964253946067,0.3606417637821063,0.5347376798650942,0.4837748623938497,0.4888430266478586,0.39890425512342703,0.500685916244934,0.37479997006682586,0.5569038210462107,0.3380755939069483,0.43664464855660357,0.33072060267755926,0.7198380595380656,0.4707609599916214,0.5365384948109297,0.4050630954891221,0.4157635657616552,0.348328837361714,0.48434614350833816,0.4852273506494077,0.4753501853998544,0.532774119993674,0.48741164437287166,0.6529074622680936,0.5219829871812892,0.48869072624659166,0.4923202331927828,0.5516759089660053,0.5404603745333757,0.4010653170034757,0.5098862501079473,0.41854488813086077,0.5241982695884212,0.6154098826872848,0.47684686032314993,0.5303693461055125,0.33385662424520673,0.44170940800369285,0.39317109670919403,0.5244384109019369,0.41371570193397594,0.4000392668546196,0.4671975876824779,0.5043592667463513,0.4149279180818316,0.5029941530906068,0.5005112171865831,0.40360636108460984,0.4008990237300704,0.41023617763850234,0.3871278436095527,0.5602178307459157,0.376167165032124,0.479566430265173,0.4018764026401814,0.4399498743345395,0.4636779325333496,0.46577180112108185,0.35049931475707385,0.44861555370752576,0.4796680825046462,0.3355123936056768,0.42298951675607305,0.4282596645126993,0.38098363446974953,0.5902788937982366,0.38360287866669873,0.5364941022944129,0.41499405689284,0.3351398909001683,0.4470341212809724,0.48676547094171346,0.5791711914551054,0.5916681277597714,0.46367403958014514,0.5000657403357067,0.4095066601152913,0.4782797509076788,0.5746950437574823,0.5925719898652769,0.43166704332692835,0.41321983677000174,0.34261474789602137,0.4294262296632648,0.3783329871589514,0.4522805396056709,0.3795531947768892,0.4635469225944793,0.6202675574127832,0.5857050578393654,0.4587072873076157,0.5716402494461795,0.4998388310393157,0.3464521990719449,0.3460262060321745,0.4749168495222878,0.4902860672032384,0.4061693626032112,0.5322217551391941,0.5146110406624107,0.6151230492341382,0.4406423716102858,0.5564641040186505,0.4486002928801449,0.2901589539119108,0.42006096987106833,0.5075479379641332,0.4452740236610498,0.5868895072560523,0.4859527925902349,0.45027441119203093,0.5026975410325636,0.45049990638850307,0.4541037511632872,0.34241288664119024,0.38583127126075745,0.5223280204534136,0.4282202960810101,0.43988422527926774,0.38782814607431204,0.43826265396741243,0.4778778335538725,0.39334048653702713,0.5645251042594246,0.4715576167554107,0.5111387892172243,0.45510718705953745,0.5455226499396282,0.5446082222262889,0.47007609721303967,0.41700046647721467,0.529197239372668,0.33446567539869054,0.457721859222506,0.3943159646728306,0.32372283115739686,0.4993160797107157,0.4449478609254961,0.5206057589977021,0.4316793601187965,0.474724535151342,0.5511290547093805,0.3621952956129283,0.33858239225747394,0.6551180254301359,0.47995777942900514,0.36373719294172047,0.3859287852999304,0.5226866646622156,0.32236762178771494,0.5432567337843442,0.5593087019173598,0.42663181957656704,0.43932997437888843,0.3979973742301781,0.5509535371470317,0.4272802966606995,0.3844184337892399,0.4907791099932619,0.4245384932699909,0.4678711242880676,0.45301575154192125,0.5010086536962772,0.42077808471261197,0.6542577975188341,0.32631221400047933,0.4059508824331874,0.40661463273771065,0.44450509255528425,0.5330565327573091,0.42525322280189115,0.4263760670298842,0.32264293864107746,0.47938527052296676,0.3890604828903364,0.592934315596592,0.4991928499373227,0.5026469359207199,0.4952700603627002,0.3977063990899661,0.5541246126103248,0.6233567138925691,0.40044856299396664,0.38060538821003276,0.4340272214853471,0.43893080821117775,0.5072949151664812,0.3311267979430071,0.3913511440321364,0.509165973834375,0.5181814716220717,0.4735583149042288,0.5407433331073747,0.5334991930432684,0.4006446468637419,0.5370734223068298,0.5228845419007988,0.5561237284136713,0.533693469009203,0.4446329792846594,0.4022075087408319,0.4463101409682017,0.4563791501092438,0.47628567299564367,0.5310722593221017,0.25537627786705974,0.5722192977067162,0.5388473391732923,0.532348084701067,0.5155009922075425,0.5150797081534759,0.33852847041237477,0.5769791639318729,0.4901002671507642,0.3569290110079522,0.3882167025572219,0.45131339826285916,0.48711899203677433,0.3586577349260035,0.5223567404494543,0.42853053187131607,0.5186343413053693,0.37176456662679813,0.4279047850250076,0.4821869317908081,0.4213441015954716,0.425487550725174,0.5134445029704753,0.4513441728384193,0.34576133562810113,0.34657440563528186,0.46591164980188116,0.4044568171500718,0.4519830294373356,0.46686304712657245,0.5162213981353612,0.38070696082389954,0.4954964782526581,0.6552528269679524,0.5064005942583081,0.4666715697367048,0.4628292298508224,0.41658156416299597,0.5948901626399866,0.3184369212705927,0.49351134938292046,0.3890094657950546,0.5645956159147559,0.44259053614831395,0.40766734756404027,0.42647910432671743,0.517308851094962,0.4779555373280273,0.3832716008053861,0.46345355632624774,0.42399879671052676,0.4133508658165503,0.5820002815066415,0.3749466142112524,0.5461738464176797,0.48901476911460423,0.4569384439266212,0.386937697889379,0.304214447834781,0.5815953598971174,0.4668905688445812,0.45748492196032886,0.4649956893160645,0.33956102484628686,0.4118596465490069,0.486510447554726,0.44748393386992674,0.5767334659386988,0.3852126182642068,0.41650875810713855,0.5050776681985439,0.5910317790237993,0.48283794643071787,0.5219596752762342,0.47156534124862204,0.4776170661043553,0.6039845794514271,0.3267597497260989,0.4273421008310176,0.3610364582896929,0.4642772878484626,0.43210920511849465,0.4966477966159751,0.5012967664013193,0.4229694144703645,0.5604627478699445,0.534542985890153,0.5127546269913497,0.49042142204106653,0.5314093578245385,0.42970370578390804,0.6382859285171681,0.40048110951119864,0.4595011376654137,0.4618166929196484,0.5656111624348094,0.441138772057057,0.4918027156845562,0.41595880365529764,0.4920158082961422,0.5417472305418116,0.4448312928384276,0.5573917367850656,0.6501562323163048,0.6401867760044717,0.3782385147271352,0.6105626737019866,0.2943806489896328,0.42253417597534315,0.3485538569776668,0.3913420047424417,0.4023181339707946,0.5482990285911207,0.4877904066074292,0.4566328452632749,0.4120637766511359,0.4196399558113686,0.456823423696612,0.4515349721512222,0.5443725644068586,0.529556879419844,0.5315684610156818,0.5451544401507583,0.4807526348589566,0.4255672624305691,0.639887460549595,0.5643539310441598,0.46142910294391654,0.5833457868571612,0.25608982222128396,0.57186335525235,0.4531398451568499,0.4730403033891642,0.41138379342398496,0.4209373509317812,0.39736274378890307,0.5355966724182418,0.5037297336055025,0.575451077023921,0.5835278255819109,0.5895903479815164,0.43632758002193867,0.5417588404500431,0.40111643753110665,0.44313126764493793,0.5501222655035312,0.5097248215726283,0.463422676554434,0.3884347240278429,0.34364299592153624,0.5393988188592761,0.4496319784149332,0.6338761193022222,0.509318758821082,0.5164842858378446,0.4548601666443394,0.43249088215913506,0.4211590579599603,0.4840424705065089,0.4188645074683195,0.40931572335659405,0.44386727932671016,0.4593717211490087,0.5716750811521262,0.5637152782484947,0.49806519122594034,0.38296644191984786,0.4931604437549538,0.49036603966466236,0.5104821855975901,0.4028280500659213,0.3627080443128739,0.5145655280886351,0.47841664191305294,0.49991237966632496,0.43496749053890643,0.5223415340607561,0.36404044444144307,0.3616201717095065,0.4608932837319076,0.5286717905951318,0.41715912183158343,0.4089029773125974,0.42329580856926585,0.5012043248835393,0.5325902450787635,0.5705849445056762,0.5070398002355025,0.34483623255667706,0.5229663160298859,0.355470491998957,0.4873231355103031,0.3334250862520891,0.615520222601229,0.5081601445985893,0.5354966389882702,0.43491884367180983,0.4845176465992158,0.4791407564209495,0.5193523284776715,0.4562857344933785,0.414468189875648,0.40904587644869894,0.4645007621947112,0.38252606385832305,0.5351726699490463,0.5142350556438356,0.5354951458405208,0.32703017129258916,0.6423272557677102,0.3289996960451623,0.38303800248010883,0.4774191387875116,0.4608443279442126,0.3848897343209472,0.4198313834573251,0.5309122184256916,0.5401526145637942,0.49982273313886616,0.4784311476364342,0.7281308487903,0.5057036537019358,0.5203569473469124,0.4617588299315259,0.35518912415691806,0.4970077579722976,0.41868298851878666,0.472037805600998,0.3728270312538779,0.2879604764955232,0.5801050842989783,0.374076007916064,0.5930064221652912,0.3780225381467996,0.49089888280343125,0.4918855447219388,0.3645151478298459,0.509730475602311,0.47509887433012915,0.4692810017179819,0.3225921236444313,0.4291277881786688,0.3364035987747292,0.3742103710115763,0.4405494017633959,0.44437450439291126,0.3586407009358009,0.5426020588474393,0.5572958234700371,0.5237737385199734,0.47476786596268555,0.4011390629908429,0.49668522980399626,0.3363252439575974,0.4773855826506257,0.41538015206489265,0.5595529942738914,0.5678284261345435,0.5373680644103849,0.565243086289447,0.40779650341067364,0.47284606266228824,0.4355792243384312,0.5329871025180887,0.5290383973369798,0.49820765160700253,0.45608274991940523,0.49388082617828777,0.38166033791558673,0.4345075872081164,0.4777111797004418,0.5922312154414334,0.44600515956044323,0.4722518577496522,0.4679510921272312,0.45735806800764434,0.553012819318953,0.5747939292828014,0.5058100529919533,0.41841682553820375,0.4879232184156107,0.5860093824336109,0.2549058058331801,0.4994681798039843,0.36167028458751793,0.3487550006253651,0.5430649317172912,0.3291320960370208,0.5689772716583936,0.5423575381528263,0.46679132882078467,0.6489898888692763,0.3678153083934679,0.47038854852078765,0.44619547571937795,0.38911208065442227,0.5379875498750344,0.4676840622072246,0.5098293281680545,0.35502532624877814,0.34278049556024076,0.4015082755937807,0.5649891812569179,0.5485119847182066,0.4916314459155322,0.43778959907889137,0.5513743566186078,0.4592569660680232,0.49976284839716495,0.33943895277810376,0.38641909094826915,0.5300978745962734,0.43982191983248403,0.5110650345756739,0.31156970814419394,0.45139608218364424,0.4745668247254436,0.3947804302684253,0.2620836295807825,0.33793893427335414,0.549751500381765,0.4846794484981744,0.3475805760928083,0.5080306634825824,0.3128538580803685,0.3596916496599096,0.4314103293834072,0.45401122665861465,0.6015814213371322,0.5314007953025011,0.3324305379928459,0.43412952511854613,0.5125987463679781,0.45680659362617343,0.4943505560887801,0.5315392870596857,0.45106880101776586,0.47607911740377334,0.5648064181724172,0.5238885867736197,0.47693838471154204,0.49286775675531097,0.5352155348893701,0.4137806989972344,0.39357448224633906,0.5037620851365673,0.3831436430139159,0.3648217329352536,0.3932013741706284,0.5343257957090535,0.6206098692264669,0.44487531285406234,0.4470437603132067,0.5721760687690427,0.23269354275808282,0.4392921268998859,0.37217060015945774,0.4527318325054811,0.5978774850662605,0.523151599475921,0.6156779734694452,0.38580534695520313,0.4514442640154263,0.5221309225742609,0.37908703233881064,0.39761051208935816,0.46883411359661253,0.4856655811907853,0.4352091668874539,0.3835633584096616,0.5186890413467892,0.4987198084931091,0.4117322765332248,0.3702922256175208,0.45046645603051066,0.4410269521731308,0.5176292678585469,0.5152023035379437,0.5271425441866656,0.39656719255750544,0.5121722213322101,0.35816052168465934,0.546785774899386,0.4518506267059475,0.43414246967685205,0.3470674520665525,0.42170308384134875,0.3736382854877422,0.47282871570323304,0.5054203716033872,0.46414089004764175,0.5474153150269707,0.4324415110386176,0.5135557706545445,0.4153372341440072,0.36710153400752227,0.42926760107607054,0.4391801058883927,0.4057681119921567,0.48085141610841237,0.4436283853016062,0.44057608165470474,0.4004490239997225,0.4270526647762014,0.547122283366956,0.45616107250320304,0.36369816901328317,0.4596756094739797,0.43568449442884627,0.3547309693248507,0.4887092123734273,0.4565398159787537,0.4468264686574466,0.5567881591354069,0.46695456891718645,0.3625828201600532,0.45345887845849064,0.3910838262635629,0.4461621548460812,0.5086956512699253,0.40535922396112395,0.5304117772419751,0.4196365509801027,0.371866071926363,0.589123814988255,0.3961535733500312,0.5162596564874438,0.5286108191313997,0.4734702058884127,0.49591778922938795,0.31244888760110345,0.4979944509616654,0.6454898187849629,0.4426824856980114,0.3895075853797331,0.2856302439232068,0.38420904997159244,0.5890484833879539,0.4399403067698768,0.4213786683900769,0.43058433739266033,0.38232933343187214,0.4935316936681372,0.4821133187680076,0.487855579848466,0.43611612408486755,0.5534568747824037,0.3566507735613159,0.4504305071751007,0.4803709424792566,0.4564012590896176,0.34421904395567743,0.42812991717094984,0.4271956632074443,0.4328046118013547,0.4624713478170168,0.6106389024209083,0.4103602560803251,0.43755721850296925,0.42159618478380295,0.5348201941499823,0.5916531341619357,0.46490796949669927,0.5448471902493245,0.47198425360744406,0.46303034558691974,0.49318041705292737,0.40672121862412974,0.5368856417870675,0.4476965309683986,0.4492649647446317,0.6033045686465772,0.43981752133042695,0.3962141746525685,0.41150530114490586,0.44692356254860716,0.5209926642535501,0.4514296488695026,0.49721257761050225,0.36994637139097764,0.48490811274765133,0.45290764326446076,0.4481649521545225,0.4573813346131365,0.42692027304566044,0.40179773602074903,0.46567083164693596,0.42768940773488323,0.4410408491799696,0.4848899979338314,0.6351074148824377,0.5296488139964447,0.4998304226880857,0.5200424071831506,0.5363333931881314,0.36979620720801903,0.44037349630598605,0.3553932993627764,0.5853865907423516,0.5310907096880977,0.440435769809135,0.4284056940777985,0.3841705361081545,0.499395153776171,0.3449078341644049,0.5438402538384903,0.3854068652180118,0.34834344125409306,0.41772735646541154,0.5341959908509566,0.5747788550315746,0.4797879800051989,0.44129330917478093,0.5360372693209945,0.3774618996932472,0.3303532711853349,0.4029277072373396,0.5537249425673147,0.4343321953728036,0.4568054682210378,0.4175184194048567,0.4033690020442017,0.5149631468262452,0.5280198784782231,0.4776196071233672,0.5349572148752433,0.3624749038865516,0.5176433362513498,0.5596103352803716,0.5063133361794476,0.46403072014557967,0.3449617379950491,0.5001973163593547,0.38423940431121045,0.3436211918751228,0.46132214451658,0.5915468819425922,0.4530517557226027,0.46175520315301033,0.4408171745265546,0.48193504700145146,0.5033730889231659,0.46947485699200847,0.5560752126605096,0.4570909310737055,0.40335026842990035,0.35047462904442195,0.3974794246244285,0.509137786319133,0.5690324670924134,0.316443580439935,0.5098154778871071,0.45624151697338333,0.5771301055468488,0.5577539696674015,0.5855487496905007,0.5460525189331588,0.5388085813864868,0.504727324738294,0.39826193038125457,0.47694922691955116,0.4921210141928618,0.534042918585556,0.43752946942732046,0.4580659648071769,0.44161578314924577,0.3803795274867328,0.5210928004216546,0.5485435263592455,0.5013262825559801,0.4837409547558746,0.4726477246835468,0.387985099547391,0.44113494647545154,0.46593167130841473,0.3665738196193446,0.5037864793517777,0.5702117447399847,0.4862180272906314,0.3612636407445131,0.2588947040630499,0.4691959988942234,0.44611574629996165,0.48150902893409187,0.46920137436825676,0.50642319200288,0.49584219495463444,0.428106480636433,0.35112869082865206,0.45099038712278555,0.4759021886895157,0.4565664212109984,0.3880417942816313,0.4965840209146831,0.6308848711245008,0.5469814399070014,0.25831705457118176,0.4889955946900077,0.5104304216337692,0.36581939432945115,0.5041265417180703,0.48236681123289366,0.36475087126568434,0.5074405413231715,0.4183914640228359,0.5167788790525427,0.3391819636225145,0.5446382577843573,0.5322736524756776,0.4989843663225387,0.36046752373804203,0.43881491971180064,0.5263951682278065,0.4196160467548316,0.4155082025274661,0.5207038805098869,0.6176484499676433,0.42813541476120465,0.3324213519404513,0.5083057660337935,0.4086649105090601,0.46995333917852244,0.3518749184291712,0.40681776798723757,0.6098806025334611,0.49182436481234915,0.4258661224194352,0.5391564462314685,0.3562919322269187,0.3928877821103821,0.51637322288511,0.5299696559465913,0.37814768952964534,0.34856010528296466,0.4712884043234603,0.5067762203898691,0.4586789209670335,0.3432407453382137,0.44848083877378997,0.40570138710385867,0.3894308477463812,0.516675408761959,0.3672121024466722,0.5450057699769868,0.39105232899021986,0.48748910853454197,0.4212653179992161,0.43789101247729645,0.429525872658102,0.5225208690876121,0.4437984170842584,0.42779151108756036,0.530105275999571,0.5316699936955257,0.4354947473174138,0.4370104947732642,0.34943085402307145,0.3640420918563626,0.5276789199056012,0.4836586755199704,0.5832481174923558,0.5356511485494804,0.28963276285904765,0.4356200037437185,0.2410319318450701,0.565709338888253,0.47885520024038025,0.4626337739606395,0.4422642801893929,0.4024187892806101,0.5907819116355274,0.4320929709638916,0.42810055186849494,0.46761250893372686,0.5398414930224584,0.324815238293923,0.6020353640493561,0.4352224277732495,0.22579575310372343,0.6273948086906972,0.34065821413938,0.3225910264491336,0.5637127131964533,0.6314057888420381,0.5589898004020722,0.5606761479847538,0.5551652521852073,0.4303470583415886,0.4552492350166258,0.5154372982681388,0.5007634556911646,0.40866493679548116,0.4627032429826496,0.5213735465200808,0.3961882097664704,0.5085235199527885,0.44830882452295934,0.572499625496012,0.4236240243819939,0.39787826370757917,0.47456122527007194,0.48585778221142567,0.4547753482115194,0.48410832833212164,0.4901631230607801,0.5958068442142251,0.32501526348749266,0.49400075891173534,0.40456822835774153,0.4385327339356427,0.40548408605212516,0.4318415408888759,0.5566986495059054,0.6592395936622832,0.30954323984921556,0.5349020237092375,0.5839214389182611,0.447545661362763,0.32011486174830794,0.5595780373249367,0.3855366867641778,0.5304127665739672,0.4219679076556634,0.40058595013177734,0.547641970464359,0.5016614585800524,0.5201220948304816,0.4674094585723888,0.48181445870452116,0.4789784857614348,0.46126249966588634,0.4639434090875246,0.4548337128866403,0.4375069638395244,0.5109878831849339,0.4606245897269242,0.3071620831296138,0.6828713452474042,0.45135439297550894,0.4865526068708003,0.5128149983589632,0.5188535057840672,0.4433541526477517,0.4752362631129556,0.4855245167043395,0.4474651499598673,0.4550381124515176,0.44757641232730205,0.4759588092580681,0.3801199325186966,0.43924472763500605,0.5784905920418424,0.49677431335143135,0.4509184015314514,0.6234285155367933,0.350151398578551,0.3462236938836184,0.5075621935481986,0.447655940721869,0.31540195712075264,0.5449370743444073,0.47662332688833586,0.5628472219471642,0.5495698991590355,0.4121934425105417,0.42471711757115804,0.4926477566713592,0.31431371609711467,0.433364936343065,0.4971484963969195,0.4969680925570233,0.48023597939082374,0.4595611959165776,0.5334278813202612,0.5564648769256048,0.46269300485562836,0.4292561643798221,0.44001552519261555,0.3869020775893194,0.3486760375148234,0.4448660851184593,0.36161333379751787,0.528404854035605,0.474293855165261,0.4222415437391118,0.42822754647477834,0.40338683725608565,0.3503986370819108,0.3502921523531726,0.5301459037157548,0.4694957824495547,0.5374406803468484,0.3814066934864291,0.5024123333146776,0.38819195805093554,0.457466867312346,0.4457489062418949,0.4396175964876844,0.5575232301285709,0.45515116376024845,0.3785697742149613,0.5186894079352858,0.45790894657762,0.47288789782168944,0.6116303008227018,0.5890344357049652,0.37887937048092446,0.45913573068024033,0.5590128067150009,0.4719078377533293,0.37806386934625263,0.5113259663748952,0.5273737519702837,0.3521723637773597,0.6507098845767091,0.4710560655988352,0.46974652588218074,0.4768190356146997,0.4759192444718718,0.47392767339036856,0.5235978070029599,0.4002941878325588,0.4365894358106221,0.49561384548755905,0.5141948036977588,0.5001803290523431,0.6240453912822197,0.6277979981776166,0.56432592923519,0.44885431649880186,0.3685344739800942,0.5046820341119027,0.4381579875297335,0.41912118644816543,0.46700675860207663,0.48066353680268586,0.43163751498639996,0.41531416009168587,0.5251470029602344,0.4187562628533533,0.4546097772341881,0.5868952690885495,0.5033722213311319,0.5287978526940184,0.48382008914426455,0.5397694038534435,0.5713708895498811,0.4828726777526657,0.44921176581829547,0.4558027082559777,0.4665701258052569,0.4971015632198584,0.4114506408892598,0.6064241203683833,0.558821605454955,0.46348590188326233,0.4883712362723317,0.28616037557455193,0.36385476951014567,0.45178929902566334,0.4851446975218979,0.5256667623775069,0.47639964619913305,0.48340120104807405,0.592754668319533,0.39812633588202007,0.4651729363959868,0.361334719048319,0.6245991874162348,0.4468938544179761,0.44845518773174,0.3889983052309497,0.5437136059382375,0.4690114541056655,0.435452657395228,0.2835739624739743,0.4360711473192838,0.4829820472890602,0.374418708051116,0.3590409231657064,0.5381615472567801,0.47421190387850937,0.48231505158547644,0.5206612611736986,0.42185186409782593,0.4119727296156453,0.3374805993961914,0.38788484906819753,0.464785065224709,0.48983034141474663,0.3728222277662088,0.5029080944128187,0.5020070937763698,0.547195426659103,0.5759670937440514,0.4501945073410081,0.4322727437376554,0.48539942135237896,0.33229598704898383,0.44403094398129495,0.5933013412047607,0.4342926980247158,0.5012660664151632,0.5391149198589154,0.3939201920313321,0.37174966237855606,0.45452148479788407,0.41440692936787416,0.5409331423107958,0.35753040094213673,0.4038764109616392,0.39636875022403295,0.5422961976475634,0.4466300121605452,0.48261249293632535,0.4426589981523214,0.535578176133985,0.4463148186893964,0.4982254732236641,0.468433771358623,0.4164261034792849,0.3799375273300965,0.5094296715494071,0.28385158148374745,0.29297624140840894,0.46802602025677287,0.41865461054536834,0.3693547560198104,0.40710174030414126,0.44187519198382513,0.422419524403897,0.5103029417142649,0.46257299349040476,0.5115260494531876,0.5241303465256697,0.3472823518077399,0.4479883270772909,0.5559400717240132,0.4000702199123536,0.3792887604167408,0.41089842455450787,0.499394637782703,0.46355698865679174,0.3435643368653858,0.42964665766758253,0.4502051208664745,0.5179391878177787,0.479106469690197,0.5496491027379072,0.5757714127163804,0.3587810418124629,0.472408554959024,0.40579834588059666,0.34417463090252215,0.5410163290584811,0.4314898262221387,0.43637632488939443,0.5061639686826204,0.4004933059548255,0.38992155221198954,0.5279801878671911,0.37554818034262505,0.4942436706003714,0.49731174668888434,0.5024019420340529,0.3611389697043382,0.3913732073032499,0.5196360942551237,0.5772453654098266,0.4589557161111981,0.5259392449245736,0.4364615243282951,0.4093700312725832,0.3529159953124311,0.5788480919429216,0.551657879242741,0.4359762256371818,0.43101550916359516,0.3523374639314764,0.37284586145131576,0.4108056047238248,0.42637193433433795,0.48572308455575824,0.5495262360300626,0.4509897376964782,0.37773870498659406,0.3517050014762395,0.38143849504812405,0.5125690060837426,0.29336850817389304,0.5035979542017072,0.5610037680232918,0.48175561701900926,0.3802316089790383,0.537016541601465,0.3335055225174818,0.5072862209329513,0.4032831603198929,0.4303572208099895,0.4373148914036751,0.29411892954145086,0.46061751063199724,0.44960753917677243,0.4213934982143313,0.5806857337569273,0.4998147723510647,0.42332987150120516,0.3568069993568096,0.3892065900662505,0.4625924394443538,0.4907373197471591,0.44103633686531685,0.4302777505856189,0.4417360652469591,0.4020920950078166,0.5122511946534091,0.49336576811268146,0.4550896216978672,0.5115887398410093,0.4534461896743046,0.5110670565806726,0.5153047762398764,0.5148201112785221,0.4791854481075992,0.385735017388505,0.46678604976590266,0.4645366600246286,0.4114740531827135,0.44991118159208765,0.37766028155573406,0.4708880030685087,0.370326242013001,0.440227824535184,0.45844099270718397,0.37948850173475396,0.3224842222661385,0.45125479669639507,0.4632873594392539,0.4983309908433167,0.40611869926672034,0.3809139414698827,0.5791199781745191,0.3735590692180271,0.31736370118672036,0.5246926594075355,0.24441617455290077,0.3780670494079976,0.4149606291728094,0.4333412289912612,0.4142550808584809,0.4827341374188665,0.487918810440058,0.3264347094995964,0.5100172421837372,0.4979991217019368,0.4769975564589188,0.44877884815320435,0.3879158602225632,0.498612486643706,0.6180075213226199,0.6098573734542769,0.5058348418142485,0.46270111505599926,0.44149670389503554,0.3556427108720221,0.3653768175235045,0.4859598743833778,0.3818147414850578,0.5022750787940142,0.5692827596822156,0.4534223948775746,0.524602540625273,0.383876509648781,0.4739081443918657,0.3410869787806991,0.48671220469711324,0.6357469675280707,0.5009531593502335,0.37562719330123623,0.6384524235239936,0.43209457408810215,0.4877031866662023,0.3864373751101083,0.44108183222578334,0.5194795501801212,0.37700838286511973,0.4848301491206714,0.3798974815044991,0.4369235585821498,0.3072749854652749,0.5414594018673391,0.4739898565878639,0.4488442087212711,0.2770157047016866,0.37429782571938,0.3722226819676687,0.3958920442146127,0.3910622183790608,0.48637971789321444,0.47098806549759253,0.6244222324813128,0.518828353321695,0.4995579831591241,0.3717825865647081,0.4418049973433677,0.3549262922073323,0.5142363632766939,0.5202950375682467,0.44377410094063247,0.3865564121333158,0.43985152260565913,0.5958366799351004,0.44312066971407416,0.5192370493174747,0.4248228308707532,0.428977280838387,0.5384240356303339,0.35107230937874234,0.48655450115173193,0.4081897011726966,0.40876886208537183,0.3712568917961674,0.5385610854897062,0.4706957107773371,0.3363074815061321,0.5212307906706122,0.3657282243865571,0.5664559460803613,0.4590315087529342,0.42395985521287244,0.4637239576917843,0.4232601699433372,0.5111708534829875,0.446734767633704,0.42080753496520895,0.5601177118298489,0.46973939825446076,0.4866761064540479,0.5129775040563953,0.30622491633629007,0.3701701955277298,0.4093206737212536,0.5123612548833153,0.4097135059461226,0.4913716985977316,0.4973843073961515,0.41768208041084853,0.4052219765236591,0.3355842731029642,0.5725502850711964,0.4918168994652328,0.27419780941727895,0.5709043131203908,0.5055984777891821,0.47268596275981645,0.4209321953176491,0.5139308805308238,0.5498722673015425,0.3923328750855209,0.4454025814468167,0.49352651008196763,0.45605311645571706,0.5790712118580913,0.486447913306506,0.40316220380851353,0.4798971870272302,0.5520332425813883,0.4561488201236636,0.46568530001882136,0.43108332652668624,0.5476726932474919,0.6650932408901667,0.38957998302074476,0.5835124606988158,0.5181164894735001,0.3983808813523262,0.3512592005107634,0.4482142161581294,0.4839616758138855,0.5601068277017169,0.5840818772106696,0.3538519003204914,0.29210432784560314,0.44760926691290104,0.3685938028871446,0.4602616659296042,0.5599400758690638,0.4723498828793148,0.49086411622927373,0.40918766225335307,0.5097324619570792,0.42757309842620284,0.2757041591854062,0.2828965137616478,0.4594399400605065,0.37945388798977897,0.49432203177517103,0.41833346951014455,0.5135710343306842,0.32652261246641884,0.4254820169289816,0.5031975911414716,0.3370433491495371,0.4722010795520204,0.5368347619647666,0.5709760260192578,0.4884196205895058,0.40398014040534674,0.46865437409496036,0.5473138437469275,0.5343060178908619,0.5155436292895987,0.5849503941534226,0.4438479920740152,0.47738108400806595,0.373554495457351,0.4903465973440957,0.4027061423271008,0.4495199136147627,0.4419930140754726,0.43275035327757655,0.37539345122944207,0.5120968649570924,0.4674123520470992,0.4447498806734611,0.48106643187748477,0.5669207819114708,0.4702858443710499,0.3796407016420785,0.5083564237948609,0.43917299272586924,0.3717755684571419,0.5485677811777431,0.5615018791863061,0.4575945863995872,0.4348263610611853,0.4460335514066043,0.42725907783233147,0.5831414471721931,0.4076159022151556,0.6973907880104322,0.348745180548388,0.47287498374657705,0.43426538754759925,0.5353647857568917,0.33776021936144623,0.4487874288558161,0.4273056099480314,0.43078367441096893,0.47499007944994553,0.4440704209279838,0.40393138665915623,0.5991943605705216,0.4351080485464368,0.563741631488435,0.3944699448596848,0.4352050164867257,0.48063840685743897,0.4309560865934063,0.5306403787437981,0.5488450507999032,0.5008367593471528,0.6223466401102159,0.49934256520508113,0.4381999526426576,0.46520069196461605,0.5818151473508717,0.5133745762319413,0.3001604743665302,0.4015484123640466,0.49261165927770245,0.3228423136136185,0.4194272493954488,0.2975419820360385,0.45102641502541096,0.32804740430828017,0.49903417322410193,0.4802592838506335,0.4611411101601142,0.4849541792292327,0.32024582361271015,0.5163413929413578,0.4803685501696505,0.40264911662041997,0.38113001436824645,0.4309387032680791,0.4200591640318524,0.515882908648404,0.47083030907486995,0.3991500938763991,0.4971464467874148,0.38242851862284444,0.5413607237022082,0.444533897488641,0.5405802307815021,0.4671089627498136,0.5491758348248599,0.5517120824936502,0.594514793064875,0.4410883168311571,0.4807847580876102,0.5819292415784129,0.39209291644458316,0.47688058219400153,0.3656272631625541,0.4143492470034102,0.5252139493531324,0.42053352400606286,0.427693654449866,0.32472009029811955,0.5337788486174027,0.44001947728892615,0.46874713586658034,0.3312607996362259,0.4260355242421097,0.47228753825693415,0.4719627663805928,0.3687255263845684,0.554025190835491,0.3634892703309137,0.4948461992539244,0.5013971222580109,0.5170012432439708,0.4947899892042237,0.5300710452501857,0.5225886918448048,0.5231764192869356,0.49548697856251495,0.5458310421019672,0.5253050090685175,0.5465022252524327,0.5107477434335548,0.5003526149450198,0.38779210337918685,0.49525027716192677,0.42413974883956085,0.520144881985048,0.3542528128545263,0.45200500903462953,0.5008472016005874,0.3559025328909088,0.4046711471311077,0.5276407472051738,0.3225033277296448,0.4335967459114341,0.4259730965390655,0.6130576661939469,0.4269672128207353,0.5135775579951872,0.3904350323988654,0.39749040237483074,0.5702741664427278,0.4101166040400658,0.4644837792861728,0.28282988932528336,0.5175379027275304,0.5161495207890927,0.4803759511165699,0.3763141376919138,0.3460008183056961,0.37436345224719564,0.4495965554781382,0.46106583371100124,0.5191591243455665,0.5659831363478446,0.496178450939042,0.45908025409716835,0.6583915959292074,0.3971738341914409,0.3504689090146411,0.4552164246241051,0.5630090269726016,0.3570242494182314,0.4092008828189111,0.3516549419529405,0.5006319229695608,0.43003094420904653,0.3708078935465852,0.47780470183046647,0.5247222175696983,0.373389166629283,0.39337319982408725,0.4387836398976636,0.3263225091143787,0.3451826093021342,0.4888296588120301,0.5752535696664938,0.5618259934789291,0.4527684801821637,0.46058161699343825,0.4183218844351271,0.360613638255261,0.5083130732694193,0.5283292569335868,0.522465828947002,0.32060755910150346,0.46246423426597744,0.49005891290350506,0.4437510463202834,0.3554291148320405,0.41365844306003124,0.40061423531724333,0.49604759300632106,0.30500191707866886,0.4669145997425482,0.5282305262811056,0.4043171791545356,0.5348071561839013,0.5701983599290926,0.4353010547803081,0.5334531897935645,0.6135674897802639,0.6626386262880386,0.5419574230036588,0.44280038893007084,0.34132727787105926,0.39479632290480005,0.5399190806782227,0.3505546319285185,0.36392259564588053,0.46984806793284556,0.5789495624880044,0.563005216588758,0.47849444953310577,0.6988493605584228,0.6105911403695213,0.4038337382681737,0.43085550449336835,0.4879868091504132,0.5101188999292284,0.361246203602567,0.5260208700935175,0.5229606611265853,0.26274406374210546,0.5350139833428195,0.3933393198359668,0.5490773150895403,0.46088185113536273,0.421963392584483,0.4055879444039237,0.5073107919395127,0.36614252989737645,0.49317779182536986,0.5646128321224164,0.4383554735266873,0.2649343098024602,0.4210149588234894,0.35528896700672197,0.4687551154124739,0.4467060228719047,0.33154240103815413,0.41282674191855667,0.4872651066693337,0.45276908409054406,0.4933546469266443,0.5351287680601994,0.4487218476976603,0.4733788815662083,0.456200894201476,0.4276636348758214,0.5279330259569025,0.4281896188664227,0.4788035183468666,0.3731947425043762,0.4192422946513333,0.43353245729136963,0.4735774933874408,0.45326132322872537,0.4567957953463975,0.4085249996461165,0.4662393985565292,0.4741645451963192,0.5512397193637356,0.4449103498879423,0.5205180068485513,0.44233899404635346,0.4811808986829461,0.47353995083519423,0.6194658815898346,0.48088839318298904,0.3247194904427711,0.49197972746569635,0.5819268439604753,0.369979481469811,0.6386835346034139,0.4063097736469475,0.4127807770014056,0.48477363670035367,0.5098012851739898,0.5267972675016784,0.6035383460688929,0.5443507846312761,0.5109279097476036,0.5469937196053384,0.6797873810562085,0.32692865530864,0.4339554164412586,0.4656589321877084,0.4480224327697778,0.3433467660371015,0.36252179886868036,0.30888287548764165,0.4189087584016405,0.48587885679877435,0.5101689821053863,0.573432261592089,0.5101229022833277,0.5728736562498318,0.42983058770472926,0.26015620612949475,0.5501029659848607,0.32539155565989963,0.4747623019791392,0.5029064024011694,0.4249689772883902,0.425351755418977,0.502138960841372,0.40386384355436783,0.526829945429434,0.4499208472184907,0.6354335990860366,0.3752087210841371,0.4165030690745973,0.3458387095150658,0.5693291186980595,0.41079760944643573,0.34050723108965736,0.5141620059761548,0.5361761820336435,0.340101753266831,0.47974086149644124,0.4745733998646078,0.5836731427744355,0.45436959698927754,0.4029598768656913,0.4167309635377143,0.4805377532657939,0.5101667420746967,0.5479633828669197,0.5080357151753818,0.6237056583921239,0.40570251232036,0.6158842043530584,0.502082579944817,0.5257158356277857,0.4917414437031585,0.43676645845989104,0.5129715774543381,0.349013691133603,0.45358387516962784,0.574405457137733,0.37460130548938575,0.4859566379147327,0.35803506042615835,0.3497571337946108,0.48345397130995366,0.4940426767086058,0.40306199087636313,0.46348098278389543,0.4694794988928936,0.3482445430736667,0.5074585666538115,0.3534970249148139,0.5981801734893105,0.5675442660208236,0.36241454102648074,0.35944033923151214,0.39171547514157884,0.39506454329651136,0.3970868719866553,0.44526469088484216,0.42954911650262134,0.43766543777115513,0.4084682922173908,0.4776697927330606,0.46252430668641925,0.551225832263333,0.3723579580642887,0.4861587959318346,0.32443219739038737,0.4434666115756524,0.41243872001346554,0.44597720465535634,0.6185292217378728,0.40409934466213876,0.5646420129081263,0.62669290540537,0.3927038668321624,0.3413810211806843,0.4114405426559238,0.4078347082361513,0.4808167106904912,0.4577138783647811,0.3478667947231568,0.42993609767783203,0.5447193028745834,0.457723637725796,0.5637915866855184,0.46502539585488095,0.33058614608072523,0.6469318820720589,0.39256764740002437,0.34135037738054935,0.4836743329009704,0.5350050383102603,0.43428134715026656,0.4083793998970159,0.5007895360474789,0.4699356392577038,0.6396227656674492,0.4214907378508465,0.5007265388976829,0.449706553713379,0.4989366977505984,0.47084281626950963,0.4569308318701988,0.4198430302763316,0.5179042727360488,0.45746961244861156,0.3710084252046263,0.48436706425066,0.5463449801591536,0.3594737984426583,0.34966295422574983,0.42186197650994195,0.49256023135961347,0.5681092579583655,0.4288561764967839,0.4820059847057209,0.5514541209835355,0.4049789872086687,0.45885659461258094,0.6088711161988821,0.3456092833515606,0.4044901705329343,0.35841167087680637,0.4288166858186119,0.4582061467348157,0.3965616904873224,0.3943719592723774,0.40431215115541685,0.25896503549203576,0.5147228938503058,0.38852190867074093,0.2846077240454033,0.5858278398457047,0.541553062420514,0.6008425058556908,0.35742452486214904,0.40318382032349687,0.3232689476447116,0.38865259473300645,0.47479104076991635,0.45221783763908807,0.4250299164675796,0.551319315516203,0.4137630673401286,0.38639145438965516,0.4298104078100233,0.30929388138857894,0.5405955670545705,0.4058015471121172,0.5819734997556746,0.46798263356618885,0.4422975559065058,0.4536169884285953,0.40801789422566226,0.4463119448360414,0.4443830803950227,0.46923966779656845,0.4054186033476834,0.481739653116738,0.47587809260117736,0.5527711890557849,0.29084894833856484,0.3312988350605538,0.3879423732083072,0.5929067285137387,0.5169698846584324,0.4660363618052203,0.3471145157757596,0.44702164898021696,0.40134285656503654,0.5556062287755751,0.5417403987894269,0.4735631207898886,0.5229332286183528,0.48511822315387126,0.4985214075358717,0.46559519097906843,0.5107359249419379,0.4419276084580412,0.3858022995269787,0.33911303462839953,0.45335406335754286,0.4605596809655591,0.5590816946587996,0.5283614870874582,0.32679810154544014,0.43759774906306353,0.4894364677162723,0.39232935119634743,0.558044225653266,0.48380989181781875,0.4692435668767159,0.38377058385679114,0.37419446801966055,0.4804739898107648,0.34465241786903267,0.5881479214505413,0.41475868055045295,0.4966468695542013,0.5686933752591334,0.330579745576773,0.4653704099946144,0.3964373604493241,0.4374373436007114,0.45127641344413405,0.5290059626539265,0.5418595605433055,0.4181252494954712,0.3763997103616112,0.46484407126856153,0.45469993836699424,0.4833620980917643,0.4829575577515664,0.4841181083894914,0.5312113361099547,0.37532453090012896,0.5271762505901695,0.565330133217104,0.40685444346086597,0.3714998904033564,0.4413473610368922,0.5703454341153594,0.42855326864790194,0.5406623711025286,0.43468794654783627,0.4584849049827271,0.3574054468599002,0.3540465541350677,0.4485013043523157,0.5426068090721402,0.48060159048468587,0.3229574277318101,0.4198617425435606,0.6656224612790086,0.39766351540191947,0.5631864923223289,0.48726419892235684,0.415438515211808,0.4265778536455536,0.4429671528835277,0.5913894829752571,0.5798174310472765,0.43469875597274293,0.5042123279135683,0.5134695967172463,0.518053562084854,0.44192511887426517,0.5955722720689514,0.6300411939351428,0.4947399693186446,0.5442690957534643,0.510552442515485,0.5036894962449318,0.44872164983297924,0.42098319680243895,0.4530640128809367,0.4741831859646987,0.5199283887000826,0.4664343507153875,0.46394229915053214,0.45929979119778863,0.32998735661341155,0.5615052156262771,0.4359299911190348,0.4841663938945082,0.5162464270938161,0.4116160976540422,0.49154212639009204,0.5827771612457942,0.406271234947153,0.6041811640278877,0.5165528380218423,0.5303612638200045,0.58447660380606,0.43176104928674164,0.4585893632494965,0.5253422854413219,0.5227072419404193,0.4976621465035014,0.4934992128174945,0.43124393883286005,0.4315563223881912,0.557717422554046,0.4599135934591775,0.580017265511821,0.3255276750593986,0.5095959844835839,0.5663215725666366,0.4530594016549331,0.5652618647351396,0.43625037816805246,0.39714511097713145,0.35369211987808263,0.3489666758816666,0.4083350683632639,0.4120050443324742,0.4200749445202936,0.6079690598677149,0.3682556468904174,0.39670353646559015,0.45626152498894396,0.4720485760525534,0.5693241571807592,0.5336700275703519,0.4105893262644163,0.3382288400232066,0.4417097087026501,0.417684119514965,0.641030358560825,0.507193249059365,0.3460956454681023,0.42395821779287046,0.550529456511386,0.33294317044257316,0.5894721189254707,0.46922414769323584,0.4346286097397951,0.5666051007574079,0.46427274613162606,0.47806338772889084,0.5753119406299515,0.4779322002653081,0.4145712533110768,0.4297252248827465,0.5976730858686143,0.4482887446572956,0.4463520634499856,0.5202652831921194,0.4567088618160269,0.28514577651344647,0.4456542285950874,0.3818290300805293,0.5277801502566452,0.38508710820699826,0.4947688499988831,0.47232794309991366,0.4869744318770186,0.5524716772956425,0.37308194693079105,0.5426818062760826,0.4405475925486341,0.3444718016942059,0.5378099926669705,0.4577092341219786,0.4595579044955201,0.3252201709856835,0.482001089046831,0.48272068127941714,0.46709443159195646,0.4281737345224231,0.5347875205203546,0.5719622354739161,0.496945495697885,0.48584830197827505,0.47598243371060633,0.43461500276799797,0.5163037235357296,0.4628151162914932,0.5125206163289737,0.4652084950103365,0.3663685720225995,0.48458800221048853,0.5264747728036602,0.361754367949396,0.5085185775112421,0.42644041160115836,0.4482867476623046,0.4346760869199771,0.48011939264743947,0.48142074645923916,0.5238976994246786,0.561951208601802,0.34881670124391406,0.4950203481982902,0.386972302990941,0.40736609477166813,0.46339168232638134,0.5280633111830508,0.5884794343430801,0.5599997374661387,0.5111823165013453,0.4519605225569849,0.4874424881287457,0.5462515311826897,0.5329316837966072,0.4464564711586671,0.3823013928125109,0.5068197513655996,0.41581628083802297,0.5642841260291939,0.4658031041562877,0.48121931544603785,0.5505271374820343,0.5126537598495272,0.5250296604180045,0.5524443737475506,0.5441996858452265,0.5909679864822448,0.44386842110706726,0.5407508801354093,0.4231981081705931,0.4670220536801147,0.4489909622497847,0.477765231404918,0.5279944230266697,0.4776143685861254,0.4012570927358843,0.38875637573417066,0.389507385204104,0.5720574675030742,0.33116915228823157,0.4466057705166621,0.5369202179294096,0.32266264805426087,0.5555117323080502,0.4306721197767462,0.6164282558535914,0.4219302374592771,0.34813261692709296,0.4109873178049791,0.5235670968036896,0.38375226696871434,0.4036197513784039,0.34243645636893894,0.5591232404274299,0.5221371900823185,0.3933490103917519,0.38418598114813607,0.5373814465252962,0.5018416712715028,0.43100782785914604,0.3787691631721472,0.4306925505390091,0.2667933178259836,0.5067606453231356,0.556837534913519,0.3834926351431677,0.38046246927910754,0.4968491508870129,0.43087493271408683,0.5205443982399139,0.5180936929374935,0.45550110779751596,0.3813425405654959,0.43529282326379626,0.5098980745977416,0.39248859777769707,0.4407330017070297,0.5186388905357118,0.46244036526222115,0.36766951785553015,0.44783883340615976,0.49386992691772197,0.3743548067121195,0.42459667962828257,0.5124835126721571,0.3934098975124108,0.4432371817719118,0.5356092733125529,0.48205809921413134,0.4675267926566998,0.5888496286261482,0.5027207594852641,0.408541314268538,0.42033139005665454,0.3813611387886443,0.46288351646733333,0.45883061081127735,0.4098230335877427,0.5056497029030409,0.39890066894150006,0.4294983615484694,0.3670414234331506,0.5119673830476749,0.37030350142224683,0.442040974152506,0.46389608374791247,0.4692237360136982,0.5871204067555199,0.46946736806810463,0.4547841519376086,0.5458844982248976,0.40166272130989356,0.5231401158641334,0.38933976236347384,0.39517861672957555,0.3048724862703546,0.5235723465389944,0.4661268018212539,0.5463941503612462,0.41081553911632007,0.46835915743252615,0.3988050965840223,0.4243050340433717,0.3688468438296729,0.391585388125646,0.4774530101101638,0.4077480735083102,0.46137197524873924,0.40757625957074545,0.5284417721197946,0.5112717676520333,0.5728631918466661,0.6321564158303266,0.38576856525090153,0.5232325736569833,0.5272304731517423,0.33347960197194204,0.5676869287110543,0.4740320614741458,0.38034691293560774,0.39399942099140745,0.44117160041475917,0.5341449211876088,0.4589797664407977,0.506860523417064,0.4842900864700459,0.47182796015073447,0.5226143297703074,0.40756536505367275,0.3630044966731142,0.32607666401716523,0.5095048940396538,0.49243884604103255,0.3698861429794827,0.617533957159695,0.5095503211540066,0.44647907542565185,0.3952655161475879,0.4614968104602785,0.38607836097218384,0.2966018465696286,0.49713051203053127,0.37527261952984564,0.3240347063387668,0.6195267989248295,0.4848434840944701,0.5171439134785939,0.37703918438261785,0.544176730645457,0.4462659536779297,0.417659078278015,0.6677546104112971,0.466865744113362,0.39137555865257667,0.4767113861902988,0.5171556194900335,0.4971659698492518,0.3338709748995551,0.4096322971116488,0.44646410669697895,0.5919442770583261,0.46527805240121123,0.4064268416918067,0.47923475624474476,0.5281643284376699,0.5312571879780783,0.3964329639000904,0.5316242492595381,0.5297394857369435,0.5334074979161029,0.37257268588256137,0.39310348589430905,0.4596536558751615,0.45726345434208804,0.37465615952922626,0.38518776303785496,0.5014960444864057,0.47318201284239747,0.5442353115915397,0.5226665452518071,0.5057989940946284,0.3496861447656009,0.37288998262320444,0.33400554373606894,0.5904748082191215,0.38745387891265876,0.6038705743380779,0.37471593120309005,0.3718223236528121,0.45842756008241153,0.486190644530832,0.534081455300951,0.5230801510098616,0.46341057883017645,0.5538801032889329,0.40582276238395926,0.41917544522784744,0.5919183966488994,0.5942339202674423,0.41617442634699714,0.3948037274150478,0.28930016245965023,0.410876943401248,0.3765720889735749,0.40013673597107613,0.5675189600512428,0.3035553023393149,0.5022165871463539,0.48930742132235927,0.5177575786716049,0.4515230014414559,0.42042693176572093,0.45664552219664806,0.6130471690259252,0.37836391757477106,0.4544644165833565,0.6374675449905067,0.326919713173936,0.3552485785115937,0.3147550678693167,0.43811978849723704,0.35714455156186603,0.5087207152004758,0.34120365441903316,0.4163589387905989,0.534152645358082,0.4279401003172461,0.3752178521696224,0.28808812803444006,0.4667191626540557,0.3469122070473823,0.49778328101757446,0.48658733237134805,0.35934044492909656,0.4645889575357437,0.43686519814915314,0.454224810801043,0.41927008864935245,0.5046529767784881,0.4051142609407269,0.3859926486724717,0.4817104306706574,0.5535585959175056,0.3704166475586818,0.40968768665845967,0.5329651953718726,0.40087880271496557,0.45310066055812664,0.474020487747316,0.4098997021932309,0.36632474321233377,0.4657673048641522,0.437549633043928,0.49943586329263945,0.44099312598407153,0.5469298095963291,0.4834320342485702,0.4532574632038643,0.4845312839789204,0.5263638903107983,0.5805364822119916,0.5099579457869484,0.3686206597607279,0.576672294916498,0.5484528749633296,0.4736487314845743,0.39595524024284734,0.4400482748181524,0.3946975119066616,0.6216261950686339,0.38901050011499777,0.39822458165773883,0.4221480982431224,0.377603205423196,0.5127537787993479,0.5412558567629555,0.41325416826699485,0.5023387825890495,0.547912887761128,0.6085870687991682,0.4329156246782114,0.4196480163093718,0.49181349942889374,0.49073993807785116,0.5668488939284707,0.3750264804286,0.5751914504889131,0.49294503959298946,0.5015538813462435,0.4348547013558119,0.4805902727906374,0.5134072390543772,0.5167429657353932,0.3900804484372306,0.5198851762676321,0.5299072509738959,0.5590476583260857,0.284263758316368,0.547482995554743,0.5239131928836355,0.5159691046078184,0.43922596481467463,0.41745947192653543,0.458939709305927,0.5117057869436977,0.5400276161834542,0.5108003356733606,0.4585785107320865,0.3392709165462885,0.509889961916384,0.5125532050626573,0.5457404988098242,0.49207833684190155,0.4096471514217667,0.38291265166769206,0.5658853115919988,0.32098810129466043,0.49683364847480477,0.31466633691006773,0.5843093892108371,0.29776821692586714,0.4522803509598455,0.43281844692278026,0.48689038872639306,0.4867497257623178,0.48259023858217837,0.39459650121043965,0.5447109017756554,0.6443230756310683,0.552125596628464,0.4815935386116006,0.491836694179687,0.48051871390272266,0.4355361614046355,0.41793888501391085,0.44749324158658305,0.4303470144820051,0.4952282409120643,0.3761874605936082,0.31504162460146823,0.5127223237244024,0.5051301300934037,0.5783110426282445,0.3764378264625042,0.492199905318994,0.44889226147750233,0.5296038963974415,0.4752548768109318,0.6123016473338516,0.5459896288567706,0.457766081588826,0.4868102023691756,0.4850675492804591,0.5186892741615515,0.5137609555472186,0.4806992389447393,0.44593047171886385,0.5545859000092587,0.5070558306847845,0.5093900261363621,0.48276614889066594,0.39516210735059565,0.4740119763215727,0.3737073536368223,0.46065445524563164,0.3631590797878146,0.5467464662107363,0.530439102791858,0.5050533673410197,0.4394280834507725,0.4078433012239759,0.4012481886148198,0.47401942884838316,0.49649318949446564,0.3684049083760479,0.5604282990258839,0.4522361668606236,0.3928075357419964,0.5427338762804002,0.49879693689091287,0.5887495665191217,0.5082080552178304,0.46676109194043347,0.46150860778380237,0.5353731688162444,0.4167581321588785,0.43518425097501995,0.429864920437792,0.5609938418752303,0.516935400559513,0.4231042075955535,0.3780692628209281,0.3951222682153607,0.4544641603457114,0.4950005804902099,0.42177693496284313,0.4844691326893663,0.4840051057991277,0.37487418758870994,0.26224674077336163,0.4303448908779043,0.4127279896670141,0.32886307740421733,0.39001521261899774,0.6398328218291435,0.3204979022664291,0.37302473321643614,0.45304753992860447,0.469952659022116,0.445249210379852,0.5452733327177146,0.5685225262633393,0.5328158036661772,0.5200520839126829,0.5935945561502752,0.5175578759933952,0.5963106777201482,0.41919439530994274,0.44703421496791207,0.6483371944092113,0.6264191271354583,0.5251239785274949,0.4970607443264991,0.4199807659051305,0.4955195321520513,0.5492156022116164],"value_per_10_000_usd":[60.71826218932557,53.08104868430551,221.05537359222106,90.18008650696753,81.20124493436843,54.673499587472236,119.1276387112386,66.50202157871749,217.80457125603647,97.80799372370856,113.0307611030646,124.54005369216267,69.68506831364694,71.07159774102924,82.1387839864461,58.9800400119224,178.97460561407743,106.23132897010743,81.98317835376425,79.92729000945958,162.922831919266,93.83804298715646,61.71036026121621,150.83530543021237,65.17894708114613,55.25357657455699,79.45397995886835,87.56605638658674,133.44515434496202,183.6607056752724,48.49373363556607,117.30622275007407,99.194323523246,150.34990468196168,219.05487144382982,75.89582638252487,107.65524616359508,127.31186030713835,106.11231650662559,134.50174093971097,47.09325237606614,73.4332347834563,238.8917921743029,81.89844743675853,94.7151299246574,102.86462097209774,75.04793793396155,53.12480150201396,162.72502301533402,118.71975563364691,75.7190058329056,282.4063635560922,75.41280469205797,87.87228337719186,88.45421928404299,129.60426358601097,74.4316066275368,51.02338187002336,128.27374231512718,130.8510896232336,150.99425355158436,48.966267690061706,130.69867490807562,157.8046946378551,154.42725529876822,91.04178599727145,55.66325293858465,213.1064006113229,92.34596981803503,74.62031677981066,79.11917648777823,83.32586079953592,242.39746927224192,195.9549138650962,72.01163551202806,165.66603374743846,132.1692859974267,73.221323231425,67.3887743082342,69.71087385086612,141.43117097987687,45.87475268680065,119.75221228304461,57.159836834013795,385.2487762548106,58.94521524431964,74.85547206883236,53.91079057064485,178.14453453341085,427.2529725250199,32.89221644989164,105.98261307446175,287.7554612432956,58.2452489860925,141.32879979742017,125.22837099682263,68.57241800866757,53.29313073907911,85.42358096552825,86.20709964641384,51.8225047987383,99.05010428005049,76.00874755057862,43.29497791018626,89.15213638459736,78.2304760643674,204.449801406094,31.01191168086175,60.16669005545274,67.94892887764014,137.1105065389393,175.03355724766374,62.8511781219833,78.82200103643882,78.86616446960107,90.14380778496532,83.38653570568768,243.68728586722222,120.19949522017104,115.54157945857591,63.21317589347511,101.75773755258376,75.36325530236537,136.514487506401,78.0884912408036,302.0802705505339,136.98919630287784,390.50322929039856,104.45071515995035,144.23022473608498,39.049784716919916,56.80394511821251,127.15690752221055,54.975304892838565,164.38435092027552,120.5520071711219,62.99290049933473,77.86184408378149,118.25650574363162,93.7084259711799,203.82341685153497,153.57742855759085,154.0787059036792,44.30551859479774,654.3153547799362,192.7766320789151,81.7455917021665,191.67247851648753,102.36901906095866,50.34006354140936,370.75909208818746,320.1441731525092,184.49574261238632,246.33041983961212,93.92619956854287,58.65935796435951,39.7439010012853,71.64506724048178,131.27808920956886,82.16068464597873,58.92161174569459,241.60258455133757,127.69122504973251,86.47160042615263,92.79858260976678,79.66719689139218,77.55613823109819,71.68852366013199,197.25984296327115,115.22479766433888,122.09660191222166,92.4729819387886,92.13239841020597,53.316963219791944,166.1883389956692,174.0081072163807,125.01549258289572,71.60539290365092,91.68454994630052,111.23028408074,86.32611373510595,104.45321801941924,63.38208863614388,193.308180812474,177.90237698671118,58.6347097654179,149.97967134345222,62.50872759433885,243.3362590258534,402.1245367259845,76.01081089361062,106.12433686174477,217.19671448045426,45.54364252044984,48.0869603671317,95.55447268431458,75.66972992983155,131.9251934430782,65.60626609627293,98.3632662239457,87.82579997674532,78.0296030218309,79.14637908004896,74.6641123912102,98.05674067113831,140.34700814824248,130.29598203827808,121.65577141373105,150.717253480962,40.48037035253934,108.36964247562591,65.27334531179795,43.67481537963708,93.76836745742257,98.38863537023185,62.30308500769476,108.1777203514654,125.41863643720662,121.78739948613473,148.1197309336317,120.06654650813438,120.8627327366708,302.26602113557226,85.17424792122657,43.6150935489259,207.52224324945746,50.83055660732109,66.54601409631215,53.88969578409483,214.8037958862632,117.15795125744448,260.1713001794333,77.9167721663913,847.6591622331753,46.14498553609594,127.55369855105133,84.43477229202128,144.01422920346153,51.834946952056754,50.913512431468426,66.72340195375918,76.95214155896242,490.8112587007559,91.36492349128429,83.30785949206691,111.73693834524678,125.7578924999033,29.56504479564703,160.35457491719268,569.024824527332,93.87639587136513,59.33224823999735,129.11742199991548,71.63724853973518,57.95115783332959,98.74565970871166,173.96822402313566,469.3971553423114,71.31209318740787,82.6337691093136,54.82321313491119,62.7133787968784,83.84120303707871,46.76118072118756,137.53581905082353,371.7338196212651,72.15580296302107,82.03548195221516,455.56691384290565,70.4540463000939,92.00064038863442,165.19800236691793,60.145511698056524,50.02466546991601,171.21442001258663,244.30231806938602,71.11966239784483,251.4586332967395,143.61622139371585,43.54433874716683,88.69224487782799,137.14353963123784,146.44845511082121,132.75997088909833,169.0302678507275,133.9478716879494,75.29818470483775,64.72634722915016,72.0484194271127,1113.1893990266187,214.63173974276808,42.0229616840115,76.67005187731023,136.83511688320434,124.08642264798331,69.4705761396654,88.35609336078637,78.9844229297351,85.78506590152563,64.69675223966384,35.73619379858064,79.69237811510033,101.07054811243677,213.2146918971672,47.079567081810204,77.15152665301066,112.96576290347797,86.69991004781569,83.66033154315399,112.56762298341039,39.31989088741704,48.976832825654355,66.93041338377213,86.79438165639655,88.65456401532293,83.85237671037619,103.24854845337175,56.467713173260975,201.16840408266188,67.37841658741321,36.317187597810715,176.03309502960056,221.67946258311673,566.1657522759239,67.52180685824125,89.18834280014325,161.57661424552433,172.92989999546197,63.666624942176156,131.27286488294828,48.35259337292722,167.40517322736773,160.53380038898118,236.2716310558983,56.82063033214419,78.64788243056384,65.47258474979304,109.57898904389158,55.09001037567967,116.33857452606969,150.87363779298727,118.3378354465158,86.64072257637781,137.7504042680787,104.2981788953997,60.52559566094647,90.06153548662697,60.945790804978266,57.03471813076484,77.61061676157533,48.114550654334906,158.1332481674197,100.448891702052,145.41790167321827,209.09285263781763,58.99671737527418,79.4613341508249,81.42673642558306,113.60885808211519,96.5409164513418,123.765626736895,50.99144618352566,118.85080197756328,272.8187175442684,76.1938191483272,55.880803675998486,92.72354444977185,420.9317662259166,214.3066763015146,40.14013900421818,66.84049873860174,72.60120438417681,93.50420386815821,47.51659367071535,32.92769683128882,115.28287255722833,225.0150393063144,51.86911200355307,46.68151660614836,96.51716783032371,134.28938226292874,274.8911559394404,308.94596815720894,330.9838419576714,48.805363611487806,61.63289912232127,297.5889428631133,144.99288437267347,81.2050616394633,79.17282683915997,49.72374077952362,103.77262929052453,139.1853810128925,111.50145036189824,108.76928905947334,49.67155227780043,281.88015512859084,82.29314779007207,341.80375239821825,317.480442369825,96.75234001000145,76.63828619168183,290.13215302761694,122.06568873894417,222.10786055380498,99.2051227994551,73.61080364965692,46.235480731103294,101.96131753398629,53.510984620171236,126.40459200021617,103.71304830239733,91.45267563516916,280.82831054171976,63.53519126369717,54.9994813994262,48.500386497063595,69.799469142078,103.15255787734345,139.92410557162754,577.0812974025744,114.92717850232766,392.3337747779343,88.7465383727774,98.58121379513138,67.70097026100446,112.42656668797306,436.4257253018698,49.06544949098891,70.91857190856187,67.83312213577747,131.3201284406704,87.74533512505364,62.898526595071466,150.90041586324367,92.96521130166894,56.77719200287183,68.20853310115005,233.57375001612897,84.09042808772516,87.63658532427785,113.89002209217831,145.64534399800743,83.31189531922695,651.8565054162237,61.18613526565246,312.7216262053726,74.36977473710643,194.31075516099435,57.4210402401102,219.4222121442858,60.97908277236943,153.8150126275813,253.69545165629387,53.55251341577731,211.64272506716475,80.24875276305107,239.09634031592572,99.15796529719732,110.69260301815024,72.84924577926449,142.00276726050004,62.68215867057258,59.501378205882396,119.69424380024294,69.6790466008212,83.82209784885677,165.5053929212768,143.33227677342134,57.522817709072825,120.02013115805784,47.853104096819564,96.133458269367,84.98893758148752,47.030194625811895,96.76828051457585,72.86123009224228,104.14488882565203,74.26548205820698,346.80982843061236,41.38202048182698,34.95550055592456,57.868135232092726,97.34978589823575,124.75217714459187,140.2707077077068,256.1483800350048,47.015504800966205,94.9215834317348,163.80099442726046,60.474166584674926,144.54744832154293,349.70433578401986,157.4905100889767,53.91983843834073,256.5347785362806,38.00892523944295,124.88860407892251,115.76071248080264,50.05093613163535,142.53944356594548,76.95284722029632,67.3875290732685,54.91841525030483,107.85850501311198,85.63546770205322,74.83804384297957,52.2294656325145,93.21084269102079,208.00965962253687,47.25375423788648,122.3998829879915,73.18374598569373,90.50304076618887,116.5213464289427,64.90354739519782,181.6858172808556,101.09371966155993,63.98182287445597,68.33330325135057,85.15179318299755,56.51223523298342,100.91471266929578,147.76883873442893,164.8213185427158,69.57452580424567,108.26402605163172,130.27358374017913,69.38131423163472,55.431401349799756,67.23610150745762,82.52415160976751,175.8277405681834,63.45501143931202,116.42737678857434,124.80225646714706,105.86782197401162,171.74406150162673,94.62949754907628,89.79036413690007,201.07038920710093,95.55320425873917,48.36449632721046,113.54601584990553,138.64694192183873,77.568174642145,144.77319411681887,55.856289021822874,87.03020806003981,84.80831274615639,62.18280564211858,137.15689156672596,160.90603412986164,389.0489804843355,198.35465099907398,107.83150906005213,45.77156269420576,37.33902600027065,77.52562755554086,237.23359274274767,261.792773124693,73.02730468867932,104.5978116935661,126.56338065752169,71.8813522096332,133.02458173478752,95.29028913530775,112.74134899628868,272.71925696918305,108.373865812276,54.711649627511434,81.49759578071716,114.36950590125348,101.41950200610479,230.73867065703774,74.93630079053725,67.35382760064476,125.26079716258306,83.87213369850343,77.93000910391399,69.92335164800413,122.89619199151782,73.79113308740021,175.4579010254926,106.79354967332176,69.00248406988153,189.34195676500437,58.03380020771935,91.25837197814184,415.342532523068,168.8810866763281,77.553362763699,59.82215300990147,186.3940784803866,102.01350605620436,97.21951642945578,46.043780366798394,63.49387615399418,318.29953291708586,66.67278902652671,139.95329360438708,47.226553737839495,98.5808143524501,81.68046556892716,96.36027099398618,92.79158977443542,59.70136551618909,44.49979743565157,69.29382330423566,179.9158841255926,62.50256503384148,65.2801342618607,110.50158943044607,62.8030529275027,32.16599409584553,229.5747971462116,67.05701400131754,185.23604144608,61.4065607472893,35.808242693252545,176.62601033732227,47.63318385859123,113.26070620655338,96.2024548371371,150.92764734774815,213.78433621990445,161.61877211410606,67.39235222163407,110.2998974171428,124.07163127020895,71.53220717687688,99.60982413846055,56.77763767382732,94.21956337326365,103.1233859633023,174.67108978914527,78.08101067258157,31.727606966991612,51.23276601981607,75.52278197917859,212.4222926030554,142.2274467756092,53.363284055362456,136.10434804552338,53.022749969714546,91.15352047701532,52.40608587875076,41.995752706172404,95.8385333075445,80.43259177555323,69.90644096635837,86.67841368444816,59.48541624188154,128.45502742883676,53.5325462506828,413.7516812112582,134.54087762865421,94.20719525259771,125.51181717028189,56.20095601500183,146.09215021574406,208.43869718766726,90.39800147182568,56.708614071489244,232.40052517067713,77.28881312850923,203.78925060596086,69.67130321590668,159.40330228264193,59.37223996320913,81.23755799926373,95.3829301144796,72.44175098154616,85.05779557684662,61.84456705874955,148.8824263421702,71.51815349638123,66.3716326802459,68.79707328439162,141.43844582919274,29.919686587530204,65.76729418996378,84.84696394033192,76.2236672598325,397.3724643900476,92.62081241463594,54.472400222592185,57.51398670521389,55.321977714040074,243.84590156808142,64.07307648621172,88.31364956991816,82.97916847508534,187.15122566762312,34.300540661353686,70.01058800526519,121.97696160762624,60.10380740401326,63.26395086356153,106.6861346326578,92.42575109551262,113.69178801705046,125.02398176738431,174.61789364506942,72.92818999757529,60.185082541332974,94.12010979089945,213.66442264292272,89.0365979707224,210.20196776742833,271.7521050754973,43.26082614508146,113.43249608739879,76.04162616273443,81.32765755734476,164.8111825371932,147.62842491229162,216.97448738044915,49.397356283853554,30.03634787121741,53.94955174564764,57.5000369019975,157.15862433208912,205.16073993657156,72.27153104767868,136.88085602791162,64.57268710416061,140.4782109305841,38.08803642444892,99.63027962882578,68.06033283423426,176.0618472226721,84.60551278091602,65.28315860728677,113.31720040494383,66.36038706742451,93.86838212904195,236.74927127578312,89.9891281145639,52.48771642844991,79.54190331741998,424.0424152294214,72.47682936636373,83.10610045270688,86.4363346650235,49.302507858193536,78.0122498553029,89.89924165949503,72.52685888948912,445.32893478408744,108.6092726029236,96.57379712899363,87.68125953247906,56.77361011577845,38.10511062036043,96.5405179396885,72.95496423781776,60.954716345571384,66.05778363030221,97.12718730676262,112.86945178514378,185.58682881649082,72.40059341622197,125.19749198499366,248.54941795263645,88.25188207714272,102.67736532440567,67.48882567267944,28.016053316263996,601.4853885294388,72.449770744955,113.13564868848975,209.76278915317928,70.08608875726442,321.52803917631485,69.46668073559404,141.77980298786798,61.25257908456747,99.2827262340621,55.11323945191997,64.94857672906434,57.781924531730205,232.07336261644477,261.55028937910754,70.12459809342688,45.344971117035165,96.72568135915049,110.33471900187031,62.243122602363115,63.662982223730964,69.8996734819953,165.37690953355497,96.30396513751882,49.47588096049591,93.11562987963376,113.35038832743754,358.11818189621846,123.79440761997465,68.46278064665238,51.40192241924224,145.6573005184211,233.03370249765723,155.40477029112145,70.25802140788059,94.26854038514931,65.5930617572272,223.69555069243634,461.3675180383133,72.885839294296,478.5442804333004,77.31489526953412,173.93313173875586,111.71220549636786,71.89329377067523,93.79678991206241,337.85652624894556,255.24031726567466,169.48962434174084,97.0939899749925,48.40552581909037,83.00463782324714,95.41375582752343,505.305252683985,71.44248876577926,549.7283643968693,55.05476197072821,84.18093745047024,108.89391032563479,88.77048140013176,46.305012439683374,36.76240637986217,53.263463363353644,185.51913679547627,96.52423211905248,91.24988840516995,91.35331468744842,115.61892372459226,59.24895570193856,125.46157138267777,70.16363676546578,278.35781377896507,145.14933022489038,105.32451783166631,185.06249925894627,154.98232615262015,88.1767946759435,73.79523058977847,48.626686644059966,61.423380806658294,146.2927160159573,162.52249179839333,90.3021640017265,123.51683040534337,70.58584863439602,70.59354550376862,79.61168588310709,201.6466053968172,138.1631731930577,50.76503538357871,90.47077910710095,41.066859677372804,644.395305740255,45.316308723284926,158.96390982971667,137.13618802360773,112.13317984833598,76.39079273936215,91.26871037848439,180.13292397590072,79.801216692994,129.00875580873952,77.56075041704528,49.31007209020261,77.15698912810745,93.11648038434737,57.54974783610735,187.43687130145167,93.9027201306658,29.32599226910317,107.37601484680141,41.77576209555446,95.69962840162539,124.64657611042398,79.70157342614601,118.6479728768478,118.4852813348162,49.83155782453226,342.43808297652834,57.7215728853385,62.970107272027576,70.64908620847855,110.87657781541174,85.7102787091502,157.900529684026,34.63373437488841,76.36784383835283,128.18854865446772,113.40100896735152,80.56482911403047,54.13991732411446,219.52099498340453,73.03374116955628,222.13931483212048,106.07019425039779,111.37266332582767,100.55177382605487,121.03388091463907,69.43615505374696,134.93013982212298,145.7847229246144,346.2840048216247,45.21151303933787,68.72648906907348,301.2452833559379,62.35216246306521,60.59063542733268,198.68908082050052,532.7481741106014,93.4282098576692,158.20327005311754,80.47356171514866,119.66001185566799,143.29817891800278,48.50448353343996,81.51604430754512,172.27522118490617,375.7633962118397,309.55402664819087,136.19600494529993,149.26570638042926,62.46251566297031,54.807015009021214,92.7759372363732,107.06874482074895,73.30213602410326,70.57854820275716,89.08584385093883,141.0125828362046,187.20642697222326,86.78684705967663,141.7311169831935,87.02315972480152,82.54664447719858,325.9474173641535,72.25966511511169,60.944873329507494,460.40676167697916,114.58830070187696,92.0527641868579,72.24592548003773,88.29932673091056,104.1002922575211,96.97229352255142,134.17736097095008,115.57179005275421,92.67976654568923,98.26584818750084,149.79161682637852,113.3645098678517,97.43774752123966,373.4403160051019,266.9768257271538,63.47355595367259,82.70354467570282,99.05445917617602,101.03497812353218,62.06314823492011,173.28981541731736,105.85979389319301,535.8087253623206,57.265103333692316,112.7368477575165,264.9683161106085,175.1066022869445,263.92244493893486,335.4618099498433,111.26884340038109,67.73397765357723,118.4041751069222,63.06409772771657,66.39071307100858,62.598466641644016,120.17873867368544,111.35529041828666,49.30803188275473,52.17330292720108,201.3949135473564,62.79876107146304,58.89676757507955,65.4076016171438,148.50523691794535,290.59634698951004,109.34164669270311,354.9615114190382,175.0223968459639,51.013179907611566,89.84480408921571,71.81007807914065,76.02740758651751,86.00468379415838,119.17179493706972,100.34479659708325,68.29025497689965,88.50073297939142,37.531607796666975,93.55810220234999,78.90319413664916,86.8361743799536,89.07062581653933,60.58445073494913,139.4333677068923,61.630758713562756,91.74120661533684,86.05314264008669,150.46967953551103,109.16290640207555,76.4748236416389,50.5261793828287,91.87398307120964,60.161625227770976,551.4561440010426,148.3925756863631,52.544274924552575,88.85095877056972,58.2880112452065,318.5957522685434,73.08533694342785,54.88667008990714,118.99910571963095,121.96263378035127,133.19659049389762,86.23917568780516,76.6648183220553,80.73095281288236,103.20176720790445,135.71677389032578,142.66377733977052,77.7258861109964,127.07696872063751,117.54163364611064,153.21876937133905,373.8973281532012,198.2064228397666,90.50802040559769,69.92655669073211,63.59376965077443,203.7816776279629,118.00734138211666,131.90454299172862,32.07128709967755,117.19811061866136,172.82274551809405,91.68827486272565,86.24285899865347,106.30477594168116,73.26116968954086,46.49033938615441,147.38258808087497,126.41375958291877,73.49541933426869,91.54916724324973,183.87410254071554,67.74189047891757,70.2666368582664,64.87099320914857,65.05037085312087,68.17447494511741,69.0478070135782,49.39232109721962,87.11942410763771,75.11490514284785,158.4641530136425,43.67929989141183,52.254727212710335,106.23291998287253,58.441777260216924,109.66580677260987,422.14544192725367,47.446625363304534,43.8028089946927,70.7491869049903,78.31280530363134,60.61828358452438,173.14397663947204,68.94596480129867,47.687008286555674,280.509378189892,67.6638793064581,89.97428198683346,138.3190218558293,43.96663639029934,120.48995764203846,79.27739325453663,82.55562470550089,247.62821944605358,64.15819084236067,104.84857072580685,186.77074446689636,180.6211858557392,94.49657570371025,41.45216606521188,115.89058349734528,148.97751367010164,72.81123564021917,62.42576351530667,48.184767406010145,67.22462840625306,160.06499042462315,163.69707446308126,80.98954818132205,74.84042623823692,72.14766090926867,121.06256650639546,107.02520659416744,85.3128599119617,139.51652338540487,110.83717046987887,56.30990178450928,106.44329549787716,48.48854811953379,218.42823327809552,38.130426935972245,85.2325083523975,68.1955383431611,158.18248218200415,68.53182557545627,158.43479243597244,48.18836412999111,138.32473326477898,40.28149825905029,61.88499196891657,211.57776104765833,58.674692346220276,70.42602370613362,84.00046384949792,177.20701719261172,100.10589443046419,90.93222365557006,87.85830927318185,140.97053387274704,56.306794927460835,154.9095091628847,184.5827891791227,53.07804488089649,197.07087622291445,63.383611099254196,91.92751796095054,47.41238387747133,292.7669686867637,166.77822673073717,154.91911463442784,164.54448661036494,65.61839875812292,361.8003096206132,61.38607977768079,52.65093629500726,85.03951782560618,68.62791801136144,68.52418004969893,52.13488765372421,191.55929959083025,139.2896448306301,249.98645914062703,97.04879263888554,41.33481504789004,86.39768355050963,85.74905228048699,43.239534251200524,322.9183559874169,57.336144975564316,95.12718684680466,75.77432243843656,69.73690121477436,127.88071186991638,55.0236405544,98.20812458490398,50.09970735789731,118.2676642332338,55.54687792998893,138.13148644380547,75.33860369922998,61.29834107771367,82.52896600899292,199.2475747640864,89.75890390974955,57.087533181006584,133.22299358790198,152.0106363493895,219.4174469767452,202.23008417952818,65.51902196710535,326.2444016086128,76.14747105417652,191.4515480730471,278.85431921897884,64.51449390129997,222.0085641908933,134.6536031839421,91.19162934912784,83.05835876163634,49.389252513044255,42.06701102195924,91.84435262045827,47.46990192319383,101.25130131158554,89.32608164919606,479.6044924944704,76.56250122773731,86.74270054104583,205.18924256667756,90.76413924041753,150.36795689623753,207.1053720925968,242.83938841820483,50.08804283085099,147.73487182799482,86.39906386491701,86.33724439567155,145.71232393388726,148.18736061855552,28.498806854968752,103.95182571230492,63.64787515221305,113.40305990259473,86.3824580444511,45.17715190835739,82.4354331995121,146.38308730771647,78.61417845412552,77.10633594289901,109.49000417941907,98.1016252917003,41.028153933727516,238.2263205434103,32.25138440898089,183.7686462319915,318.0104388058489,287.6924247419041,171.24885576609415,201.84283012917464,69.96130331714954,63.860577987626,69.552103219006,40.56702496870026,361.318523188258,66.74782057699855,105.46743630272005,82.80358723176917,109.52309891571745,169.23315814314893,37.88073919245931,277.60692569403517,56.11383048686909,96.76167316042066,214.50870241305407,221.61479564473427,276.96426232214645,80.78245659034387,52.50063944598177,84.40647786124765,269.9577071986168,50.95226928971705,59.834107809964614,101.57369926435676,190.17459099786694,141.804318403717,32.99397218953658,82.07801211453538,82.12670257031992,49.36005129025048,77.2347236685736,68.49035075607902,118.7175140637945,70.78327919952393,257.2874422487642,148.40650756904046,92.55995221983449,136.1403969952653,80.4097684518386,334.1525098290967,84.7074679703436,62.56493344145176,368.7241481619413,76.11110849671849,56.80660929527874,135.76568826494142,193.2562354533124,46.75155411821041,35.90695305873905,148.96582875451278,95.86154762608335,62.170503554644675,107.03542240516666,84.53266869286857,266.9698308273066,201.6726362994005,259.67370833019623,127.25640828459925,43.80616072158785,176.0131873152943,61.55648993029873,93.22294315945884,77.8529099564666,139.5835499822812,58.239692587352536,136.6601851675791,77.39610146026172,35.5576218843227,255.61549432204106,245.03955360402958,67.7416674482879,132.10307378409155,106.61923885104183,133.96442688034765,58.89758340811653,147.74232303131672,38.605960202493144,190.98381216680218,72.74143609902006,178.01485662077076,134.83099293149402,45.22940905777854,145.55409940488886,141.54223850510647,139.90071558907943,112.12959863906066,97.33840862715853,159.20767611201762,60.68676822567579,90.9141772253454,222.42263632477923,234.2410654719904,42.92306135726335,101.83297848085589,122.59043816987257,102.72712086215863,71.8413502522678,86.39974943920596,132.0434471191754,52.74533175833424,90.08157415002043,105.3050081137722,86.22368483248663,50.21445672813012,73.0774160326617,70.39006360271216,93.23547245367425,48.28833749248673,50.48023728490519,137.25808270342466,108.21091879958509,55.11475351311257,163.9182414064841,125.44990917659332,109.08160685586955,95.1637173257565,281.33586334788185,96.33683458142369,163.4198245466735,77.38494037997134,249.7533124063005,82.93353647235905,93.7037582440748,112.12263792830876,86.98227583744898,101.58192097426229,94.09804004624216,149.29965081796573,134.54521189412853,49.402821435394685,78.06181084581291,286.4332676292817,175.3246780544485,58.56986488114201,82.24057278786059,199.76002745742156,50.08409722798343,65.49038121466903,83.31752348000376,124.925997870234,167.006145025357,300.2277017144504,401.1341561521378,108.55637052031254,250.12396176296943,323.87173312594996,161.81565231927163,82.01324469818968,46.54359471764692,156.45898245761651,108.54001204330876,135.82449920553526,56.23395744450853,234.79515654113624,85.44027836652091,180.32322089777068,236.8271962068299,68.09549310822612,64.68073109820737,457.77238137108486,80.58417585552131,81.02152867148936,86.6332320031799,148.7022602003287,112.43376038119104,96.09292659610702,50.33641647884918,220.1456361548644,95.27595132579124,77.40609145213722,385.3052118145371,109.5158740430269,210.80730070768706,84.49788146341784,77.54299406467464,99.56009666899821,69.51721260087379,88.57946597364464,369.4983740794322,72.46039159761634,41.85133322493373,109.96974105568535,82.16867275022773,57.67586199880658,155.7401063352429,67.3656937944644,64.49248101842909,103.69797331235006,121.8027749494887,47.17882495786491,152.56064542238514,82.80419693462665,206.9383208885326,161.78962584084772,215.02189199639307,139.36116170983752,63.26647164796657,20.834068329734873,137.1066050289017,120.5889642641012,63.51114037144883,78.03933167098674,82.64727118897966,52.02083233269379,86.12456882426069,57.00775773840303,43.1898100402182,44.2240168455106,35.022415780276305,61.45033498279723,92.19448956298064,79.00481839247757,83.55702702388582,183.31084196789786,144.01531326127935,62.96035631257172,60.7318306833702,72.40199996298547,201.79367768309442,71.44959047293986,254.53481065382854,143.0374262235596,92.6686828576346,224.98793087221247,57.840005123252965,52.728731188813214,117.82354925121051,315.74222298515355,189.2015896882465,355.39507479435736,97.9454291737873,65.46005154514906,71.69249436986958,119.87674726870601,155.45027198076002,171.3036227205488,49.654019729550846,82.54221695902224,241.12527488742228,417.0538780520851,99.77390995712071,68.3435023271475,90.50364524309533,226.0538867490261,107.68623777468336,43.35011312933533,180.9984429270295,65.06326842343407,69.96478340384982,41.64058709008562,210.44503204814018,88.55735450569645,66.73199142159233,204.99971686891962,57.31810743701929,107.59019440547561,155.08334519888697,96.36927972609345,53.03388400169742,61.60248022742653,79.25382182580013,153.03651996377113,248.75198303387788,46.42914870737571,194.83473138446294,47.07540052129122,166.21346857839092,58.593748878571205,49.016606932725075,44.451370669312674,181.066371241421,49.11083788589025,119.15638292107049,395.2170254841933,251.20170961464066,92.92062194820231,163.1729237366332,174.2153316489564,83.09339432290004,101.22541263679688,108.28478722386856,73.07390615181696,64.03461003516765,184.20006941435213,147.21050529346562,108.65329992254779,84.14717451398438,35.137962594254205,47.93959487484436,92.55247281908122,78.48695533101666,63.68326456397797,111.36079726191863,44.99582890066041,214.48368994053436,69.14210500640506,86.6965126190194,106.89194031184581,280.26542750800985,86.4881657585157,206.86109045965313,172.6138889201075,130.68725084095846,78.9129747507732,72.72832832421098,38.30409859867334,52.20602963354257,171.154255377805,33.79433815791733,59.068752729576715,73.23578587849579,64.21432405012142,113.40958342851286,135.94774766073732,180.85736755621292,125.51018800012376,142.13125609611248,72.27039758256069,74.24208322749352,109.77633508132986,206.92017165891303,116.95392910943163,47.86136315043697,231.23710479495236,82.79453316657015,75.62436359501201,100.04272627575055,77.46675255896358,60.000658850379345,347.1978335419254,134.898294599684,83.03045266290216,127.41718044956968,150.96497792645016,89.85982870996924,101.68462582937637,156.9724811412321,53.36985619947941,197.9426585756727,21.285433552434707,44.00457433602759,99.46907206483226,78.19836267053955,146.2284896275379,75.98859900012307,80.54711007928412,124.09455057899306,43.25629311881584,246.8948260291962,161.1328792452074,226.65718225679694,39.86878506387875,278.2839477578673,33.22269922808357,36.23201460957871,154.44267422737977,75.87909538987633,62.217922491889475,238.2794716933338,29.156536978452092,209.638441991739,65.40616358428943,105.07963284665776,195.53052383134096,69.70535386326327,78.9266987915324,59.87149569290104,145.13689804365637,123.44539765686264,76.72128961468742,402.1810040999721,126.65812414945549,70.76895309632664,57.30957859540002,282.4226159899322,159.92579779509313,74.89093288059605,84.91154713778432,148.0310027611735,94.44836034809867,48.927182335514516,72.15741642628115,44.430686740667134,188.43914420191285,79.15921506193747,103.88892092670658,108.0881019587873,152.61795364511948,42.53639130564859,84.9263142023028,57.82560524018226,94.21751404807713,148.08503366086416,133.04555041007333,227.78260779893807,165.4404560634979,83.23090714693336,94.55046552554161,106.39352572193046,90.46679440881073,274.3889996879872,320.3229344589613,104.52541791256795,78.32846825444442,200.1562381864285,212.77715702584732,119.71786599359413,193.68362966732963,128.42077582813886,111.89495429519194,56.11653216850382,84.9022305126957,108.58588680127671,183.35243028986682,268.8165843918726,56.11331092065684,53.63897933793577,51.88443658520671,115.81108171064349,26.204558198435183,89.18467305193272,121.6407508355266,78.14306671279218,404.86716832875953,207.60194165049958,47.378368329613,142.98306645454852,122.66735320046507,35.49811788384385,142.45519415361395,38.21394544636449,71.30129705068325,68.77079857423819,207.16419477623978,54.079404760772825,96.11321920228755,76.34887602390133,143.99578192052468,59.67461784981579,53.69410235532883,47.00265008814459,69.41332676039852,45.716952414816106,81.7393924240629,84.7054102297227,117.56440207478873,42.867428928643555,161.12673947694046,75.68448748674177,300.2212310913933,101.39342189780696,49.42704974088599,148.0187685215453,85.11161339443358,114.84048302511475,82.09812546490791,100.29337764262594,56.28015147162886,117.2400308903263,53.97173126391254,50.33747236099078,46.872618433059316,332.6030845605528,168.75333818071405,61.8094316979391,74.17155663365162,124.9856709784773,115.41590285283783,314.12216442845937,82.01454439389306,89.33520711033478,216.5439765211523,131.70520014147107,40.49129078798986,87.07006912662708,39.017035138628394,105.3261758847262,294.3311117862938,157.34536565876888,148.79954347163883,71.66753336662563,48.14205716634022,78.52378763727484,112.61472146937622,213.6409715391607,84.79773118738184,149.86300127807692,87.06527946276834,148.90399581843806,80.35087684768612,393.5161413751901,92.81938190091266,39.361523155050335,155.85031600593604,188.07102162151898,36.21821107451904,150.93017962467712,57.17802262170251,187.0909768151025,191.60811450103927,165.73082899283247,165.4072882004421,122.05045529212336,139.1706008719265,55.24766416766955,51.67171553009971,163.68413241257713,84.97442654809365,94.33852151309195,59.81513100511702,82.6256107522699,104.51926651366801,174.16549223110252,46.02811022979079,351.0508367190083,81.32597203209194,86.3067571233429,51.10200084878784,52.620706062560544,39.11084441020087,50.43489765470355,65.92568725232653,46.31108674059402,78.68573752100485,72.36000910014683,56.349383470146954,71.69560300450911,57.28108142697069,83.26907607965121,69.08973017223887,93.25614013710545,92.8724863718783,57.45291921965553,81.41385622021983,66.89932446984318,77.67454155235993,174.9205871678126,92.62131155274425,167.3097280528288,163.74177104204375,47.76052095481821,230.78309264188243,157.34421061479551,109.06201135275478,412.75084032936775,110.90731792732504,75.78886150108394,182.09288141489478,163.17626789909787,56.95409858524587,104.08578886849601,78.49112885672277,59.370211514739964,79.86578764049086,138.71359322887704,199.4316780470415,43.514275008705994,87.2724550524113,146.9690648805904,91.93756253725779,236.8846638910606,369.491078937068,154.72745601655203,238.5488865808537,109.07150685776,73.38993302006028,99.18578944579154,54.427857889913184,74.8329792711967,39.11334195016476,40.696875812542984,45.56102163682549,175.86255124700293,95.7187242806763,100.14559275516358,199.5098416992214,55.31527021853827,137.53815692245456,57.20182770303379,191.11503959265406,65.83742587278827,69.61278102473638,114.18784103085878,207.1542083086948,64.66662395847676,95.15211120136735,142.60780804174533,165.55828161617316,44.9055747371379,69.79429651999163,353.62270371496857,350.96408568848744,133.82048805649137,211.82961303634383,126.17595535823273,80.09205175418353,86.39848310104247,159.81868817663275,167.3219417246244,92.04406278750459,248.4097742008351,99.15969366664363,72.73405840273233,89.19475862141141,203.8383229230173,61.0575080131288,85.03522663847824,234.188111625015,218.63036559404122,101.4929812996355,77.45475194734676,40.90852145786007,54.53624232552066,92.5815086308477,45.55340536134908,71.07339311968761,245.44902911233288,137.21009225782558,145.3437354522782,40.720019953669066,162.9190288387103,84.91475214645786,28.786327288861884,29.774225123305857,149.01071718397773,79.31994104012185,52.39909249447348,234.03255453232444,80.72038693674953,45.93228193271847,100.18041947428254,76.06975458864623,72.48308261173553,65.68115240708562,332.18268411331167,237.11984185080217,94.5865350767523,123.40357581902987,94.41388628438784,195.92197123199446,60.56997887053065,171.1676095534719,286.35094734280324,93.36351075180525,49.97838552052356,110.67828401078987,147.79819129888193,26.81961010820798,48.24507297823595,194.86034351744374,64.27269306985684,63.57593057052222,169.35985953754005,211.80636072958868,94.52160730404736,57.73642808848836,120.66532290435927,212.79838082937215,82.81501620724464,75.50172835673678,70.47660791401138,55.67976669488396,351.4155526082222,66.79767071625051,58.375908159425144,164.22587026002108,181.07524874189284,193.4392206418017,71.9362954260779,106.31380269796385,288.6471676441928,40.020874174609084,74.88233645565808,211.08849980630885,69.61762547007945,41.588667911194996,285.4361699802788,74.60477672848818,87.96689071079484,75.21303706149638,201.2603413701557,386.5024608131439,71.54174962168821,472.46261035391956,136.84972837927762,105.9984504608461,71.29483028563973,146.1797178364092,193.2564099620788,97.47840462588884,136.23877556437196,117.97312894629671,206.08779982194227,68.45895569019895,105.94670768073155,111.0352024152672,110.4390944037179,179.2116430982763,61.878159422567556,84.76830548624486,295.91293453183573,36.79267744785298,170.67514583518076,96.04855443791254,82.10118253838853,108.8327197649691,127.64450951921805,131.23651107572636,72.47956902004753,66.74505716446079,119.7299360698472,102.37995215250679,116.72640515069477,62.78845970269705,148.64739641711537,73.74188387775861,103.85374505038533,168.28255326720853,79.06287946701624,125.89961518126354,92.98183849868106,61.90015718615767,146.84920126501092,26.13275771909571,43.46781301716457,129.22734477308907,375.6235802692109,127.78037758387907,149.43384457246628,63.39754978719239,78.88626181193887,96.32880321540193,54.998265082024076,104.17211630408842,54.31132395798402,107.74936362758116,168.18913073496145,66.01150620613625,128.7745653692765,42.77804804168771,70.35975625153411,83.57195019750583,104.83917495694487,106.9372568219616,45.33949112707156,94.59084420807584,167.72995664614317,67.14774289222704,79.71775016224369,84.13247634943754,152.04535600799483,171.75216491438056,114.10329372665785,116.10939312758592,91.44885133301742,254.15473496709154,79.52334933670474,62.651008060081935,104.3508502695153,126.79094768563938,73.98790098390909,167.3715839351644,68.23310229706806,52.26116472228143,173.8917224219029,31.4547721550621,246.40525703251976,51.379454180749136,121.6348050263711,97.05102501503696,63.08712601803645,57.88717618989373,67.08478827728443,97.22083735532959,112.83343271233669,86.95619486166672,96.17550098862256,100.84964882867894,171.25769133109787,50.323965869270666,137.62795997661374,464.28852961661886,246.74856151642845,121.03232121706931,86.34021518777483,77.84449467451289,79.08146267090352,100.54363506036609,61.687360366037126,68.74175510126368,36.62794359755717,113.5992728349126,181.71705746944707,76.11730895772074,173.79917008703785,85.9442901253804,90.26049670027538,157.9207771079912,104.38057524547187,61.427262379161,110.20198320726924,72.31275002695463,84.67043891314435,93.82621790009868,89.88098048172354,64.14526526744929,118.50102333635985,58.04136190907245,215.79865277142025,56.30163934472466,226.80926737162076,89.85088658953867,160.71442037040626,67.72358998189156,60.271744816590335,318.66316856925295,84.76998929934098,91.10886343558214,75.62819091099111,63.95818629362559,125.31399094325248,194.54493829434023,93.21472960524932,107.23643729047319,105.4244229585958,49.74452459826736,182.12132449773213,86.50036862334544,41.57747583121717,128.2477911739552,50.79644871682328,173.4928866072254,418.80449103095486,166.4978964244374,174.23005942244313,157.49617083488246,86.53935812627238,86.4669971058457,144.8471696059895,30.79496128411859,212.3546539484076,236.34835309120115,128.15094578985256,187.8111492666746,504.0123207482789,64.91038316258427,133.17127091701968,106.10066836856086,128.8173273680817,111.33606903619535,38.52721031146312,225.09571623516902,79.2846132848931,93.63377742648316,117.06910184120277,243.81123588931504,108.08091154140658,60.5677568166827,105.83721847492272,202.10192800979118,164.29816842483876,90.79748372396445,120.30719630801954,105.89901249553685,227.99671858942034,93.42128634435272,79.34086873982366,131.61175050363116,146.5753528064315,77.16946053287374,63.46758813630777,101.12080832207715,151.47414253838699,236.8920276617803,125.74792161858555,136.64100448713998,62.475804266352725,84.27820531726414,83.04166811539355,131.73527815859052,43.6241883175746,33.359026407352154,116.40264689162635,109.98541366114881,294.7878186913565,114.21264027107013,64.08432187243045,189.9932314704873,55.40077040091056,157.40190446562576,131.35448965281495,61.46960507533494,102.75114333832279,215.66421614356514,104.55338229813904,159.66592099890042,72.06137083479028,74.42216519480533,65.43844743524267,88.0118463255196,86.67766760008652,97.53229631779413,87.01993461136996,65.33308930624105,156.81985760325918,63.03043136334397,132.74363073575861,56.08382837583108,320.39448830717055,127.8143672013858,40.45108264123419,103.63796816070355,145.54134762480933,187.74161243403933,147.60993226792846,106.31642502714504,81.00525836513923,101.46219373577289,85.63250080492277,152.58504816363845,205.1925175520294,95.96232836335048,87.4408867703126,150.1524754511662,202.52291872282623,41.52951307342665,121.24629674180783,186.57684473986896,70.95579634184007,129.0004674130839,94.06230632044314,67.58147577292604,411.99705095980477,150.9790638590306,75.15653342152815,165.93676357173754,109.06702952302149,72.09982914064913,44.38910400464035,26.25584852600552,144.061974433205,42.97941405206819,88.38749181903411,75.09369145285497,220.6705521117597,135.14517669068238,109.07757036359561,76.84400279841962,63.62585619850515,77.40663616839777,119.34610458401998,74.05179752065477,42.497879569610504,159.96674583579951,127.90376098175915,54.155972522860125,48.78757132278349,61.74390747427694,143.84509668815176,35.11503564592347,142.58252159923464,51.25094187825655,71.85387742567839,241.07319369119392,82.80034248729359,216.02925231441418,253.23748051909652,58.495546346658635,229.21358442826062,48.16793436773395,71.4086783135155,55.632864148315406,73.2924618997987,97.9798023270597,83.99213042033294,69.79917653927315,134.28569726710893,180.80335969386735,36.263592916679464,101.41332153466927,174.37400945637054,141.3432971531703,77.38492827854408,152.41877643450135,54.30166188464666,97.53598380610983,76.19154204767042,73.47051160855908,327.65409499030847,251.62080720462794,56.767082678480556,109.36336841694833,115.9389085176473,87.07244689356244,58.83026385248679,98.62715725772783,61.5271526698489,230.4706936457442,91.34652451503787,65.5085156328379,72.79194666667179,74.88775182125308,47.91944653085135,116.62620054795235,187.96871330569104,124.34759443516147,84.54695653704107,94.83837639887129,384.2874815155914,26.916605021089367,46.41716983383729,102.96088770828689,72.03953478998051,131.44664662577907,191.53310155418765,257.69368825805435,64.14745676846843,119.51157412395398,165.55059709323808,149.37347910424717,46.356175770345786,383.8162217859429,237.38335400244523,201.98442346301675,148.23545488594226,153.2745658421035,48.84162243406052,273.8674278966124,54.96162285291678,47.648641882405556,106.67901047490831,124.26019859837369,117.28131389357269,57.45899806470288,146.33828938089115,60.16164338490419,135.55489400753126,69.1972341854658,62.64798952356278,428.226688050809,88.85177396695931,122.82937938554522,122.56327655905667,107.73107042304852,40.495023382088135,161.2116125699554,195.58985458852365,83.10362896658057,65.14678874792324,42.5144202333491,265.8321446120004,129.3747934154387,70.82372421689585,89.84242393268241,114.83731522090254,377.9732598448643,134.48970807175783,79.73275632147175,131.45491676618295,62.99921060328858,46.23815444757145,54.49362536954132,73.92932969379319,86.71062122909521,93.58960032725595,99.91146276577832,110.96942696364255,79.01831294407295,74.99411714930325,95.77980332635182,84.79196470854748,26.006056387196736,144.50557074833006,112.59250915153034,349.0426997486617,94.37627898411435,92.1296966178729,196.08688295094674,137.19117297931624,99.90358534261846,131.6956132328743,36.07514262862844,72.56406986912707,76.24318288421614,48.671252099781974,150.49170784998674,108.8966116911624,47.763558893366,121.97849800989955,51.70077302724556,176.2325892318849,65.09841034014562,68.44124914528975,61.960183424765866,73.0306660236719,130.76199548736082,44.47590979126373,77.69433455114097,52.904176249203665,63.469407475136876,205.72221440759384,62.56899295009156,50.35674928776351,185.47513774304895,82.34565420976057,68.79251291805315,83.23055114656603,261.343220902058,91.57384670009054,72.59306882525928,46.59991675781282,124.82252956395743,40.36058065728058,90.07435962986949,186.01227724881608,82.63997462301282,291.9063592236351,467.61238908655787,168.97123379398568,93.74863749462581,83.04436480350549,243.84111828013934,261.90899543095975,81.5621197136441,71.68463134485326,58.811595227909606,93.93828409644254,213.22055590206605,44.26669004142223,96.95224545114861,63.35510846866933,106.91339875010655,159.87688886932307,67.27817763371894,108.16694933017023,43.901329015697236,95.9439432680419,77.25598359102747,27.723106041499786,52.03334938878347,75.44866525593812,162.0151395566206,93.1814489310606,62.8515307555617,213.38223043969253,120.25855485677582,113.52785994202972,123.91833014382581,113.67583035087458,83.31045846223942,89.39757995700761,64.97570404825318,240.1465352850352,61.57680049828548,556.1391652206532,65.28590114249987,99.32684900461338,80.15347070522601,41.99850524695443,131.09599133538615,113.72424778560688,52.048579438163415,265.37672431951967,226.62621555080779,471.44711219961687,110.60669685356183,144.56088609904592,377.4533082035461,65.33904638549065,72.21687742778839,68.58452701300797,120.1008693101411,59.085187345737644,107.29478891664424,44.06685875217058,209.54458310019507,98.79758089284107,60.219608347332624,126.30956760597904,214.3759534272509,288.0222166363076,44.281232827487706,164.04704056178872,248.09690390355976,59.38131348219907,163.09913238537374,68.56773150590229,85.7064177233012,108.09707967786932,153.8856427076002,316.1010886423119,102.39466565894688,350.5978992354711,104.45650059655196,182.429781726187,65.69059273333238,80.18368385283674,65.09914471077033,123.67086377023341,200.8900096198653,82.24386358069502,121.31293790569151,106.579764184866,74.47169836206204,32.65819567403341,75.20219024715671,96.20084613589744,70.72588081883872,182.62978649131617,67.25922732022003,185.35646649004076,94.646776682578,99.22102879576202,143.23216227776115,282.865184440626,97.18734189080892,103.01809027795345,49.56288757136813,51.64189541644533,86.9390087384802,57.498315418386554,130.66159713240253,53.95719047330142,85.76116969760521,103.1690451727847,65.21571637881524,131.63931731261997,124.48858406831455,34.63472300606945,137.06662354342333,74.6254038302608,157.60047719695353,331.45838292064684,44.34385494376775,65.60100132584549,83.55615863551938,46.2349751953063,636.8307060551854,282.20882566090995,66.62038423546831,162.5588576940074,73.22250215939935,108.21159710419325,118.42338495742334,277.90075124568364,101.49166664248438,182.54155562499457,44.06254312135892,54.00226378660728,91.6736091722248,89.79662874799882,87.38752610087192,179.35348906763488,103.54413882201419,69.17668672348174,87.67943126367803,156.570151430504,109.22329836444737,98.1694753383004,405.6681130292444,262.5290198115785,77.60736912329838,154.0913834866246,64.29616213974926,58.980525228319934,50.471571746668104,45.52271128905852,167.8376073486058,128.55004257520125,55.755693027968455,134.98837305343045,364.2219667479797,38.267578514617895,95.6800918580479,109.33776830561561,331.2003017294157,56.503900793195285,106.08862694142363,53.67356266228242,175.01416825528813,164.1073662411384,90.36178043332464,157.92438752939188,85.59822956269764,247.71451425842974,82.32953180262355,149.09962423578068,55.213176202358774,60.359493265063236,66.08371685768815,443.1246081904961,156.21505448808972,55.084401879635934,89.46760365150105,93.89021070606358,471.50407171640774,152.84294294927528,66.1277611459905,56.92896200097462,108.29447706937891,112.24807995986956,226.92986237917677,63.93312477073198,289.7112809732418,68.13286115284764,137.3388456359127,68.08978758637217,86.40582471566707,57.04877705023271,112.25712673488049,249.7517014214872,34.40747230159428,65.43227568410714,114.08037077741547,117.73972102357988,130.85912175312083,67.00941506403608,39.66757701907023,177.87275752107334,138.4681736111422,80.37431574004547,123.27917041793272,86.98211888462063,79.8763645596097,122.07310135095281,58.70721557250951,103.92216200297617,157.02367444896564,153.1608465097568,60.08691018629459,123.10432568796912,64.42522000437698,83.55051477740852,79.46993440334371,173.23992700755858,191.49407230167216,184.14139485071726,70.25768325324576,174.35847852037745,218.3357671883497,234.64502695987625,55.24256095524777,152.243991121683,57.00764643632067,89.90347377566476,79.7654966819222,135.40516002345356,253.12061978324715,45.37047192538376,101.83002972833117,55.488626931838034,109.58914747036246,93.02691094849789,47.77071101693777,173.98525722538716,128.42356369737064,141.6538417066316,136.1702452515303,300.8677267530746,220.58951477450356,88.25739790882047,52.132215572644846,75.60062285706745,105.41881877262324,91.58641641021872,113.4228627528806,127.51159905943118,112.50090140492807,113.93135708489318,78.59716810287462,62.60252021779914,110.97803768255322,127.77202924726572,112.23346161644328,53.44114607359848,105.06039091170739,45.08514555408563,186.71988272535907,71.24521575513738,63.41953738967099,96.99425290439311,114.30125118871828,84.44492777250584,68.25585326235644,99.0694524315431,345.0850042017607,62.50170571439869,164.84899606635537,63.466518566026366,71.22920092117873,56.46677816694799,279.792717798734,68.17146384391053,86.89600257440104,81.86699470176484,89.50822565505656,134.10102855496822,272.42732877002646,212.68590523157079,106.27488018826288,52.02964706213532,112.24831354794777,47.5241687757766,59.38710114875384,113.7445744965847,84.84729584899648,147.91009897096507,52.80374577612532,98.72575860299409,70.36690326601375,186.9319040550244,185.01330112072222,104.05707395446855,95.75522751451523,101.83219464124087,48.087416949762726,171.1170811699515,82.26685595640129,160.44172722036998,362.4425682959612,157.36170439642078,140.29695010118942,169.40861577028463,67.61020852020475,75.8658495019818,141.1865045032518,48.13331358758178,78.17085412135202,91.84670880108644,242.9913188792604,68.73520371512429,240.64543710212746,276.41691221300647,189.57054171086176,62.260779923451715,74.73434234410038,76.93871659430867,47.92620298505977,56.760680493491265,48.4604804123466,56.16759097280703,64.04374720768601,150.52876668699886,58.46266660143302,66.37189441342971,228.73285146709654,165.23874117038284,51.35177891172188,238.3998655585141,77.21870469377548,57.138109306317475,73.73325056444367,43.13337874311715,98.21598425407666,61.24965630715753,80.57856412156536,300.6355076697823,74.71516740106266,162.76724890621196,59.316586605488894,493.34145931149556,225.24450632138712,111.16811736092825,54.070967885089246,39.488936752684324,330.2359803873899,289.78304642815056,49.539534912155396,154.17182965725013,204.74984804634232,58.71701217667597,94.1600754553433,119.37712066619984,109.0644795973855,122.0426278977186,93.9536507607843,79.661920632751,571.6559128465703,335.51602924817814,252.31532260435426,136.87957582826573,127.01450045774331,80.47423797353034,320.8322822411827,57.000123202947094,470.40678322970814,96.83062697503587,70.6861266795347,124.37014176933474,192.80091844178008,88.24606574862118,44.520557386671015,108.45534104947609,113.63143232760484,154.1878132337585,50.39568667972387,68.38480837570195,112.54188242996055,54.88510332526466,161.6494576613715,78.52822556630866,148.42232880509098,75.28278207166473,185.2362954706969,64.07045750349677,75.26330278983853,69.89233150096436,192.89352065323754,28.290378328486035,219.2524007384942,171.00163133585838,123.31492340505437,63.039513194832736,53.30549833626366,93.55754365879288,60.82130781741282,76.12460259263887,346.119847251582,144.1038785642636,67.97781428746109,84.95058901846627,117.74344316275835,40.369368038211924,286.1057868042708,59.44703593138878,147.60356349308498,34.65658273036729,305.05839856168444,61.322321950413716,124.5392405547564,98.48310108232587,122.79709979362937,174.67100192851126,64.99273044551417,47.92806966992219,44.74875370360054,68.98687986100161,96.39364242452419,55.90030594134224,74.27018298580614,83.18767858825217,123.33257396663565,418.695577867767,106.00666027912993,68.90371888402711,46.689826436674444,103.96276092751299,95.06510464425982,96.22613890930509,135.11040787413796,101.82096011231333,75.63816840731998,116.89233619480581,52.47978564173333,87.45654238496276,98.49044825641792,347.6154648390638,357.4420015908334,247.17462376635723,191.98288586900142,120.53278937604641,59.711599239579655,71.51894082798658,52.89443283870201,40.391034286068155,109.64172564947752,304.27212031719426,87.51922511361457,101.09650369505395,66.55942998046558,63.52524218795068,87.29227883087574,105.56856753393102,41.59795341925162,26.100475300747515,69.43333832888315,178.12413784698185,80.40086174330735,65.57913609656745,86.72179165982467,88.1678071218348,48.770623189147976,208.57297298457436,127.44317077647042,72.90399629656608,127.4117183009651,110.0299510492451,48.19393311123477,64.14793490611737,166.09094448280078,64.0472762661238,70.54950468822419,143.46546096299693,74.11122637290408,705.0649400587678,54.58633842837031,59.10643892272949,295.3317529155194,162.8050512216406,116.2461233704387,57.87013121209191,59.846648735624775,58.58143267561472,344.30378730227625,293.3031310192803,59.2514180927728,28.92144739417969,60.05847567440743,137.62133940666473,369.1128783075357,41.755924584823234,113.66672832538777,71.36755768185881,70.26443814710696,74.10199647482845,412.2465390053256,93.0276795217613,75.08357210946798,255.6290290213645,59.73002113454714,119.89165979241211,48.53438567780079,63.097403908458965,165.63546647679908,66.9061896099246,74.95007876999234,296.1834312725591,216.62950760178654,220.07471586334748,65.30715847603648,90.52250738971331,49.606906207066956,346.03164804364843,88.94537709535287,128.6181011686707,65.0292258508772,69.77374313226328,67.15644237997687,344.1278897626632,129.56375000059,61.48142217787689,111.05928450728541,46.57962822825573,72.3479069904851,168.5544811540185,169.21623970146533,60.02940383216667,67.46336663591332,60.39070488053446,74.7780417203311,656.6545419052652,52.424370007433055,42.93504802098297,99.41596984961149,40.85297120391421,91.0360882149587,118.87588674682864,35.98689452422352,73.1142719851551,363.83440773068503,154.8120846073736,103.69938250458632,126.75890497926405,97.231823757881,172.68203478901205,97.66840590114641,80.1374024744655,77.89332212439244,98.71176168034725,118.77937249685469,331.9495810668965,109.85898851112046,62.54817185039825,99.60273256990541,68.57998316621146,75.26905541451475,100.84427402960262,183.7431202470708,93.37547313436347,153.97166857032164,87.26152265400368,126.30064427311862,216.38211003102143,143.7990343021714,66.73288742359044,158.70223448919995,222.6200950379416,78.53472540995423,110.48587681249819,100.20920986128596,177.62233835646614,190.22572579052508,70.78702124177633,54.10074288536993,239.3367563987555,91.53349242174374,117.05213437683233,141.41336707701012,255.23584320830736,124.21929751879077,170.64139470764002,121.61910756148893,303.2091955359369,237.47946924998314,224.7759303221268,43.97998558298923,160.66767723334988,87.58996865471718,36.28210033019922,68.94543801085622,88.0887371060631,94.17396031091882,83.09332900737165,146.41861467163758,140.82967296446841,58.91699065670207,89.03883280952704,146.44327040364516,116.2423063290561,161.77625413217706,106.62783211134784,83.84135868876666,166.55716271790868,227.86424581994032,378.9339103736333,306.40456933654286,32.88915858401148,90.56204974413738,72.77305556757261,98.90658457404832,158.56974029176166,80.89703281737168,79.63249791011175,194.1266895114589,58.213528607119635,47.96513649558612,197.24915068115092,45.0845757518378,100.89279957364296,53.222691587503675,86.39351989654246,59.779506813453445,54.04612068160016,185.19039721992178,78.33103709810953,229.6339557586398,1427.786153671558,155.10935464351198,100.71888619793634,81.86761777655238,76.31058224642426,121.10886341050681,54.606954386642855,125.39543730174528,82.18358928174855,144.48863219908037,251.81949767329752,73.06296307446617,107.63935157848445,103.39051670236965],"multiples_of_cash":[4.177110199732615,14.383245288180634,2.20398157810938,6.9792464726038235,11.921159513673267,10.54546653862544,4.25498218320317,3.970377090196861,3.7281211652464963,2.7850218356510323,19.750908327270515,2.2615610883878525,2.037159894606216,2.9589340860877624,15.184500914103824,3.8519634094621082,3.64892378285375,6.462683050163951,13.71811578960972,2.519868150166935,4.091892372429413,6.0912691375684656,4.746589966862982,29.134177777399838,21.066781409775775,2.700792769533087,13.629618959598488,4.594294919089645,3.6797408982459365,4.065950919516529,10.57429936300916,6.980791293828408,5.629808058564948,8.382985914457574,6.09347319323215,6.31024251910596,5.985577308672108,4.609604970172736,11.945653586347534,5.863980809394926,2.992744755061809,20.41040095648454,5.9449522949883775,7.2068888233562305,2.5157129857939324,4.612961112884172,3.481058060424457,4.970951634734224,4.106195367709427,22.614220473883055,6.252999009785093,13.260939972224692,3.1925490496346343,6.0350711472800835,3.750530997347692,3.873690475791687,8.13921322636628,12.514050911107493,9.166338657979411,4.581180232151445,4.231887323050016,12.235948434153793,6.342689767456065,24.572275449278873,2.025795336178036,25.98020258316424,14.119913770463818,12.497029015711519,7.3558482147155235,7.893986435986351,2.8930616846090684,5.328981966793626,3.554442363728702,6.519237016705368,1.9722648020521742,4.430614379011601,7.5016837929954505,5.340264254162363,6.57033433093086,4.581802448049859,17.347260451580194,40.873451556335425,12.410566076542604,12.76576177139035,10.288644369846878,8.872724644633559,7.998314934082744,5.962729867041822,8.45644965510003,20.927925491239638,9.851435346528845,3.7833288371965144,31.45987289652322,3.7441920466917837,5.203368540450918,4.900684793166998,3.4152606921351105,4.240796893970099,3.5828295092091413,9.250582226076448,4.868817744656136,8.885304143132956,11.764684349812438,5.320844901001527,7.744982566756945,9.286453906462839,2.9701516947609603,10.361553149406376,3.877154898546427,5.981710025950645,5.6953207541115605,4.587022789035368,8.077183359249709,2.3747869266641852,4.85065868563601,8.372750620144322,5.781459782726889,7.8249523309273,4.435126906781186,8.028011056755446,1.4257499229148962,2.5877637133269253,2.3953607628894584,2.233702963921095,11.009624855296517,6.639563457664248,6.669175733041856,13.543033918797931,2.987124187503194,2.8660187692202417,4.5935460848615,1.420795272791164,13.23743077486116,4.758454361443051,7.848084607688583,10.398770971838006,18.299686768594974,16.91656741296169,18.919246372959254,15.568497587055807,3.545191284935472,2.5604974918604055,3.2856299069017623,2.129758433887926,13.29011090908318,3.6996811531534415,5.587681179150953,5.259954267046857,7.046278753930463,1.5927512060060387,6.222249778987117,4.665018090252096,17.684064943473853,16.457115059204302,4.847539669754711,15.692458455781196,5.987811468798299,12.177872667815484,4.354409063305973,4.404572488844748,12.089723055022434,43.222639710534516,9.453708598145974,1.8437278927652958,6.821217179407835,2.194632653806486,2.919151833078886,6.474569225570953,5.8463600420517015,2.043766171920374,6.03319012303341,3.735447609854116,6.361798667422588,12.783603968319033,3.925006203872372,9.667475117376085,10.074726792184444,21.719043274150334,10.929725403772593,8.762387810322485,63.67935141274293,4.4430904709158,18.76392741853469,2.4611961515900047,11.530932826337425,5.857420326977987,55.5550717354998,9.75707922545508,5.122232929017034,8.287895044536594,6.373667421680484,6.6815752348181885,4.201636124698417,2.359031774016724,3.303441058073164,2.8359874216333427,4.399539894883789,3.85261200738896,3.3745909966010443,7.825565840186325,4.90568807787811,1.63856008138831,4.098089737004202,3.084462829185137,12.941495251657503,4.783398031649467,4.082387139523345,9.539076742794123,2.8444508623277773,11.024990575644129,11.37942362654687,9.857145633303018,3.5662461685252023,4.9314775049948905,1.9266930509633657,4.6349187140596,7.501165469102524,4.467962794931426,7.19918098976226,5.918677217675464,3.8083352476670114,2.8294246062640895,9.671501817922463,8.879076601941511,3.1700605630573966,6.139061109023469,5.197158137882199,10.440845265352243,4.304466979119146,6.787074991098212,7.698562118915308,16.21488981618557,5.452304044272212,7.876854692792852,3.9739798499067924,5.136782676782773,2.709501618678336,3.857275155131123,5.293611541353701,8.111140106264545,2.1498670488596767,11.583360993467616,3.0258578564601537,3.099824375160556,11.11257200901856,9.31514988009709,6.881351828547203,2.602414956631758,16.535146527299165,4.082038507607001,5.054411309017073,3.606324614292242,5.589574118570709,20.349549731770477,7.174476667085211,7.86038871329791,8.342503339121542,3.51609208101927,5.405755202141267,1.7055787881604572,2.7966594449556035,8.051740182648514,8.922789368377483,2.360681482941862,5.456285460443827,7.427381823878706,5.7714713704123835,6.966232463855713,7.161041376914734,9.23955742685689,23.818287994681334,5.053968522123812,3.42869592811274,6.806172655582276,4.160535114622451,4.390915587585453,8.560879773917673,3.3523907200656726,10.389613788040815,4.52268678140259,9.939456923745091,13.946403706551708,7.703972957816444,11.017058580882246,5.043290769608057,3.4499212550673524,3.442011790850107,2.2605533001616527,3.170618939304416,9.376226046815326,6.040651624794564,11.549354997749024,5.380332846344637,10.365524488375021,6.211148533926797,6.146817105132015,12.605549437645793,6.334346944192373,3.242730816329161,14.50208587445382,7.636362879458139,29.143416294526077,7.494063767521391,3.2176287512428834,6.42744811130766,4.024442908595488,19.313246447108387,1.5443102746747277,5.6662572271730625,3.785615624657485,5.265585179605676,3.4754942459453844,7.08307742535881,19.69421446693109,7.556413381350828,14.881819949190335,8.572439176604508,4.354782989442619,3.6772651716584903,10.193516864872356,11.070017603957123,10.68682088465067,20.78250542834865,19.904096540678992,3.1501847376930043,1.77458816549945,10.493282773948163,16.601413484948356,3.3711451278985143,10.946812209674375,5.821380068507454,3.944973067013861,9.418264827180495,8.982659831982675,21.14491280473116,43.37965406922453,2.7556788216784907,27.055969893771703,9.534698679780334,5.876491092968515,7.340116933236604,22.62579952450284,15.239836674613953,6.117992896319192,2.401394404189831,6.087425807294621,7.783648750305787,3.6882538280469097,13.894001288349592,12.893860177674451,24.37927980836356,12.921545223273771,14.831838231379788,1.9469905461572514,11.507577570785713,10.525473909910325,7.9478654725903235,4.125033069968442,11.54962004036863,7.134345927032527,6.631501404442875,5.2266086258316875,5.387634121326683,2.9260766602294,4.753407059957076,5.626466947775228,5.959080900396172,5.688832019856183,3.3453320871313967,5.6002898333013444,3.949923977260379,5.477110283324206,2.6913816440332274,12.804149471686555,29.76413363999929,4.5308840031707405,1.6473607305202218,12.92228359663153,2.231077882758334,4.793578660045637,3.5969634569512317,8.633584747211875,4.338437703709706,5.079785557521533,4.098443536194808,9.391991022513086,2.9722141713800116,2.6852039318239522,7.531263433772814,4.465719808468093,1.6988412186600736,11.766380731198549,2.324578318138168,8.430807310816848,17.557181265629602,3.386297209920098,7.99338606406442,5.964853833578224,1.9405464236487164,2.7429198892009783,2.3624376067075006,2.7201828946011664,4.197421448011226,14.40405372975793,24.915756241972623,4.711349116727585,43.40055960707188,24.253464355784377,2.2172042095728375,2.169324077047663,7.570764720996521,5.838640339772105,9.230723419399721,24.014840795349873,15.899767686292522,9.848182540877682,2.961670885006627,5.936876690498976,4.593173485812127,20.318014731968912,6.146380622644289,7.213444804601529,6.895561978608182,15.57066094781418,13.112362811712954,4.757069867812643,17.79698975602996,4.30763615366208,8.381621676004093,10.038660610428536,3.257273652386075,21.47963887021096,12.579514133652253,3.8763818574468942,3.487673498664943,6.060003963924318,7.028529322416475,2.535225245575181,21.170608488286142,3.8474600629064932,14.049064636330158,2.6157168419334185,19.99279143655092,4.3405831952068565,5.148094603795168,3.7547293566399267,2.7252723329261124,9.186196233740972,2.9821746321155627,11.453675270990797,6.7268130141846125,4.882566200738222,14.180621687761079,9.54615613727683,2.686718439727553,11.729558429239688,7.232784164049762,3.829438731846937,5.343694407278024,4.621089381559965,28.648102842333973,4.160866462732923,3.682131224828261,6.653928167977431,13.251074406712195,6.477360389054832,5.792317178157253,8.076492657494136,6.96664617243898,6.487602400311579,3.8936366266631595,5.284090392858071,1.5767662613427091,10.51766897285273,1.6075919043458657,24.037024788318273,2.7158229791855204,3.7317305148383504,3.1411773299353096,30.862172554605216,10.810248929590301,2.4103686706570215,3.516686139900034,3.448471971477716,10.77219211701443,6.575973444906133,15.580242914730436,5.405838772096406,6.233397188462428,18.16170987448806,10.62367481544204,3.852237830308505,4.569530557641451,9.153865005670596,2.5187982550250267,4.926071780825118,5.906506203096767,20.324243930511653,13.468759911155974,4.383026124890199,7.760047141598932,11.125420986011472,27.90594607072115,4.9065915807833225,16.23928843240295,17.456038696084388,5.2140186219543745,6.814439837685876,4.9466979373010265,12.648866156385385,3.228710440617049,11.892316549559885,2.7497733670842193,9.117502829512146,10.050178168930763,2.463550275779729,4.645393848633151,6.552583486685937,1.8819939354973885,4.98031575071994,7.206435053574997,9.40714318158268,1.9197898684788965,1.3419088595201467,8.792937855569539,16.54644359412402,4.544289438860284,20.593095457760466,10.045378344737637,2.518145200091005,6.271584661968263,2.6637624968858713,20.330884511973174,2.9539264223560595,2.149294060611926,6.600399185034186,4.910263885330491,33.07800479634023,24.60290600370522,2.878193458602509,3.9366746487025495,4.683229983249909,4.487916000985111,2.2050165195448597,10.147736573706155,5.725145894859799,6.677540006823229,7.553333448105723,19.17604887519025,4.0521581101998,6.33612013537894,1.93429439536937,17.27087486314796,25.934358200322176,3.666337509448492,13.240632738832092,5.731343912479976,7.79787392553923,8.75562964883418,4.822710433306026,5.0352714601221304,14.41080897310527,5.054529539809047,3.5436434132741472,10.54594407263791,20.6871593747051,2.505059450976298,11.93508839891074,5.109575981760176,8.979100052860359,3.3921648975252645,2.32053890872866,5.0928388329247,7.033646370871356,6.900538646434535,4.345478411583971,4.205047119643462,1.9235232364615271,5.643970854263811,2.4592048415767493,12.753240099834057,8.671592265589238,9.445141736471795,2.0449511644435585,3.896256440959399,6.903925977943494,9.744387647268182,6.097247099005324,4.916738299856183,15.877773106568494,11.593305332613014,4.363916617815976,6.424988063908015,3.6046467303870235,8.426427702908542,2.9884644556421787,5.755907229640995,8.722024044021621,8.744471327529718,8.748371580608623,5.757286782914246,9.62784866263206,9.957258817112713,10.753729784624616,18.207287733637152,7.748414066085504,22.00041133575458,2.396565444373271,3.8162753740545896,9.988939511035712,6.70208608751216,3.4755936457667214,2.905359371735763,6.224682321281869,5.248763990005717,7.050306977118477,13.833235236474627,9.620197541212343,4.411749774427502,10.77422044291084,5.384138121342143,2.7830168925521956,12.374267780971955,4.353800868428255,4.949097978037035,8.420716534194478,3.349002363604968,6.042442088417165,19.578611870704883,4.3032571949329395,1.9492874461183307,4.521663825457477,6.123192090298848,6.388932481607188,2.5661321232755396,6.613562240401932,5.201610826622174,4.476553706195998,4.2122986977788806,1.733124353949958,4.642654318310615,13.576230967719994,16.646241833146544,6.233259137286982,13.0925028037505,12.250113667064653,24.080226812453745,26.395297712701314,7.7771386640459985,5.3906838452568335,6.372768336132611,10.364749929441446,6.101007051647115,3.255443342023262,33.07621129739742,2.009038652709633,5.547755955455632,6.695107445386208,11.67797086507851,3.5292548544440057,4.094889713529988,9.146788715748675,4.299479598348546,4.248634879791198,12.99988984957709,3.3873792188179657,6.127181879906077,4.794863628323981,3.5021455365752847,12.858190271566128,1.0945439333497935,2.0600694801134467,5.638615856618987,8.883087649706324,11.766596432596325,6.259138177586962,4.360535049157492,13.53403349509337,22.52161749885248,4.852692558729498,8.700031274672579,2.027217382576674,8.731619166404535,1.5213402872999977,24.511579213603838,5.9887710961018765,24.990083452421327,7.266274655437105,4.810407268365541,2.717860864691302,8.94753206455536,21.689021443892635,4.122857950830093,5.538493388481086,1.5745248239772947,1.741287578753299,2.9794116766363588,2.172509518512951,3.341671934491047,2.355126661209768,2.1720845710851715,6.700533495014048,4.865977968066419,8.775009703104299,14.138706989315358,22.126868516006596,6.144323467541505,8.512381184767676,7.595931574592648,2.070135913948559,5.468769116192509,15.716510849403297,7.8529729807066895,3.430693190792005,16.326208690737673,5.529781429292962,28.69884095563651,7.674125856196763,6.520305303084962,4.586918434643436,3.5168171526166616,3.2040998420315145,12.620079377590416,3.557721441679675,7.377462022397247,7.772164675063651,4.240081911736433,2.598076488717782,2.9149311521867762,4.38734419798871,8.417148707329098,2.4158877521023183,13.575480614480792,15.71092085305989,12.651154562538364,3.066639090410296,3.6043138956963774,5.494071680175111,44.16470861000795,6.839402836162721,2.687205643999902,5.128905462357367,5.240039883667077,5.658918995887799,1.8906827353275866,3.2413538482434463,7.861062854783086,2.4222715054193142,3.4249814883901135,6.019407850402982,8.611030830189199,8.355458572722636,15.400138705494907,2.9748109538596212,18.27585322859463,7.779317393262118,4.109737523203045,6.5228672694424805,5.414259760632665,1.8429643664783988,6.302596591073201,6.700902824182603,8.365173823435303,3.6446902152645517,1.6661868296155933,2.8118778996363036,5.975334698432458,3.3449467686681578,5.644230669169096,5.110303116109503,8.728890813747304,4.304497430304531,4.059215521953144,16.717250172948948,24.308491116852426,13.719301556482781,10.0259519059934,2.9804293162146673,9.194427336546577,5.468248635613926,2.0269290749717124,3.9539945116640975,6.3621891690036545,2.036696357946622,2.3516790093340374,2.4965930568361547,2.3270670875839534,8.376213565611007,11.804922995626,6.869305709841345,4.642316438157374,7.220759069437169,4.079135768814222,4.111134644110274,16.563649641608382,5.561730790822935,9.858819018853165,9.818237796873397,7.9845483076913055,2.7200099409247933,15.815768099487949,1.3663833235630398,3.63234772336996,1.5426539314047147,4.505552334232981,3.1675669205451937,6.023280573337002,5.659983792862591,5.714987720610227,15.405411439715099,8.018111539338994,14.097463785235181,3.802351347279892,4.413333292322687,4.397316616760846,4.55832703602828,3.682874934191115,8.85509641956142,7.844639585165325,2.493021811652614,4.275409207579134,2.404489570386958,7.05378618850553,8.680537040410538,9.819964996371654,31.734536393449382,6.089614392526827,3.078633708104046,3.0369802344348,14.357510356023427,2.167341388245741,8.35271570125373,3.2781259970621757,11.682975166617513,17.07891369239243,26.52839932019755,3.3676881467472364,11.683989665956002,11.83444747970178,9.930187190283794,3.0184678200306894,7.63529706840359,7.7708891742261486,9.641218252623927,10.44651711348729,2.899553792147186,28.03759227228583,4.142011357721074,5.034586153445321,36.288890761288414,16.670039465192293,3.213334355536669,7.064084453074654,3.281765353473021,4.915672057411425,4.246908561755877,3.942633116313547,15.192229315483061,7.731581335565059,10.191669845603899,3.6128755741510505,8.273522482266092,24.84728111399109,20.871872137682494,2.5118838855227197,2.047686973250425,2.7794757277338897,5.066686954372794,6.067548351355901,2.088961791793215,8.629306025493651,20.59350218480586,6.211380508517589,2.3632557768299303,4.489725774126987,3.789723080690169,14.55587662128665,4.248884531712712,3.631150872272297,9.897341889377628,2.3531306369271023,3.0970551375276756,6.614336230139915,2.9869338178096085,2.9602438884672857,3.7923598121330238,14.558042380828494,2.5793722271856487,4.587951476148704,3.285134583311523,4.276736018583593,4.478629601454393,10.890125599066662,5.860448111955346,8.498419578287479,6.332701858126603,10.804457828758474,33.26174910661263,13.180037090992307,12.55455799662748,4.5548417033769795,1.5654533418812506,44.82899453275855,10.09850323470283,3.805442607332422,6.233311457138201,1.8493232084980533,5.478184327462392,3.377093893710815,4.892686165880696,4.080570935035583,4.174782718865999,1.6834189735549072,6.496330246053144,13.443351638754919,7.991815082285448,3.660528497152245,10.872096800787343,2.7666917453143935,32.377064664464,7.727379606992656,4.1679045153124745,7.3599175745342755,9.21127330524497,8.583561669424787,6.016024448982233,2.6405229921174085,8.829465366885495,4.686881147670997,5.353481548069586,13.07156079347118,4.905169982492991,8.404068809806756,4.545293011307688,18.966207264679774,11.344675992883193,4.263503561484399,6.720113151383892,9.52326680428463,4.4824748869560835,8.033270339677028,11.608340162192968,4.5737813700331,13.338652805680574,2.8544860382980004,20.637186000406324,7.2856601663666485,18.687158282230545,11.532607325924454,3.4125751504173922,4.4066539884264415,17.137723604117962,7.80746668823918,11.128942352561118,10.68380476346807,5.071959778190618,11.545347125852336,7.08180608788461,10.995992662229408,7.142481054304154,4.374266522224602,16.071533559791344,7.959175133634867,5.298500888126138,10.116711625647076,8.506629583672838,3.139595018568285,11.258570738042305,11.802331848363623,1.8298053065779267,2.26049965094954,6.73235004056573,10.332212113594062,3.65497207078679,8.97732767795197,2.251627152983622,2.6944035654348113,2.331597137303296,10.527832865532403,5.395906930316348,4.075753717916826,6.026745176790726,2.4615947446821425,9.097289663578144,3.1955083622739404,28.362586926465337,5.5361333492811795,5.98404930728313,1.027413932090486,1.6790468630804292,3.7434754318849137,12.634858441799619,9.105227373939515,3.561362281663535,5.33605886479305,10.121816586489958,2.3571348933400533,5.773408407850379,34.77678170657542,9.77501040687456,4.7994099380462005,16.96109487542064,23.851759637764985,5.513767870781696,1.5685774821800431,11.862667037140495,11.982716272765224,4.218998121712443,5.67551565578146,5.389948708275307,3.0247740050602907,7.36095867727899,12.378961375005598,16.35926684964213,3.1593195413297543,8.099634266753334,11.241333162904098,8.297774011274177,20.729154679785943,12.373606843008067,9.010885237012717,7.708748139828068,12.110896328018967,7.373728283562145,4.313025837506771,29.700650013091654,2.9188422239647096,11.785928695584877,12.051646185088325,8.357970021146931,27.662318456739253,3.0094588865250955,2.6996539866887463,24.430309427675283,7.245910102890861,3.7482082937306695,2.52727602885034,7.083696591441669,5.442274095432169,25.708902931307527,18.87742676268141,17.789548110401306,3.577204913523224,3.042500618114525,9.22270552600662,13.53288670617266,4.2419745865314376,3.536251720909789,23.876560018066407,3.7411714838024928,8.41269394702411,2.937598310005603,23.639389746798216,9.355573154668836,7.584568367312492,6.256653781361366,7.515374066110222,7.382693781048848,3.3900609486745097,5.091963444160659,4.391878189081417,9.279995196771837,7.1713537568087595,4.646382570377802,7.693391811446557,20.400034601182274,17.044707771198333,3.193264550866639,7.566801637687429,4.085121807344263,6.590133778282246,5.260975301110418,2.917994214397517,6.370885280590963,11.742470212669758,4.358397440466801,3.4629119554253043,3.5154213194290267,4.247242860025752,3.6868090122093355,4.78764342997401,9.414205043712869,16.868620191585993,20.958334437956317,2.9537017043988647,3.8475674751418873,3.619850184565796,2.692304886969655,7.724732513409353,4.331059682454396,4.060712260645727,11.046983594365974,10.090915647732619,12.764296031099635,7.721840093277163,3.515965762778184,6.886893114685665,2.976472961369269,11.66059284050134,11.642051862706163,2.419400542588696,4.783850050324575,11.034762228339558,2.3010032916691925,2.3229032589035947,2.0741843724359668,5.266649175462535,13.16389138240758,3.3387918664999177,12.578119098414211,3.1566674451312537,10.812049289451096,3.0832887151957644,3.47320190959872,8.965904441160937,4.699872784055608,10.986950520269607,10.250288564465064,28.979094255434873,11.704290413252819,11.795497084519019,8.581949164419624,8.063749881428778,2.5775782968125096,22.748308112399425,11.147647742255552,7.068356907057737,4.468138976686908,5.465048438432665,7.756005564490789,4.7534488194842455,6.018310208948219,4.1188568483496395,22.787929962969844,18.75635999844791,14.024951543428434,9.106795278616707,7.070839324627037,11.745161358390616,15.134445874653178,10.576174737879406,24.398471485889257,5.722746170599569,3.221479275418693,8.560694695365134,5.886422280175017,4.542844620135376,6.1738041824601915,29.322267981463902,4.780625845620221,8.143347180844163,8.140582216297465,12.474309058266364,11.967275132182856,2.073291237347565,1.971880004769482,2.9796513534450124,21.901328052769305,6.5877439950797525,11.842999976710267,6.340971849794516,4.412771280247799,15.657306696640518,4.74250240836908,9.357454788419124,1.7225927911171577,4.524120219027803,13.267770777939784,2.943919934039027,12.502880278478305,4.650320705436196,3.5795821715487586,7.374876070145563,6.887455979596025,2.4226249505742636,2.2859461249744863,7.8588765438468915,6.682142449968986,4.1156252170529255,9.077371843063867,5.993576789119409,3.368243294952276,13.335611184368322,8.210519536231013,6.175469395832269,6.295622779595961,3.016088421529777,3.3755245573951567,10.709622668540943,8.968982544948098,1.6737796761067998,6.939704423274059,8.128507234077553,7.449904155649733,8.305640311298383,5.845925365393008,2.351870631949538,15.605375724726413,5.8497592659419935,12.932001587039649,4.794988650817832,4.0383169554960086,3.7107606467480188,3.3690722672332356,3.4236528613965196,3.6838023867212732,5.596346534946802,3.630192114659021,3.7942936121637882,11.159572143808916,2.9263638028280794,2.4274651937340246,9.845795566333733,10.492247360365194,4.379200201421988,4.840397964388017,3.038536070593152,9.67801879873105,3.9914421698169487,11.218494331228543,2.923425944771139,6.707957956821621,4.926360376577065,4.666568270701248,5.530948519119952,7.470549673370736,49.07683948469525,12.967497509092649,5.54253917256892,2.554020460856964,4.8102899172971325,6.96150224800184,10.210696164280135,4.76562899217836,14.68452638784842,2.686944882349996,6.936650052838591,9.084665566110704,4.678619220664064,10.490849850403036,13.23828100380536,2.0932763817879843,4.944844992584719,14.121861621662775,3.710156075869897,5.247325347638475,5.041163201659583,4.315736850315951,9.633218286563446,5.775582460990312,2.691678734246195,10.801737861561465,12.472938455232923,5.251415874062668,18.69294076543097,12.750308259714787,3.199212724171236,3.250976174592444,5.892702156002088,7.859309814671528,10.40633165339634,5.949765852463158,12.418850159889544,2.3751676381739917,5.751567786106337,4.6418170268518795,2.39545657253634,28.089994152343685,6.196911897452125,16.252105207648327,4.821950527560996,3.009533443384098,1.380423688581071,3.341843930797349,11.414537532261514,16.642292796207983,6.109898236424924,3.2751929385039924,3.983132900890384,11.821680168374428,4.397988693806994,13.009349004305662,9.125843819211944,16.919499747643105,8.032446713295384,3.6590041385621577,15.043817125452046,6.433890205768247,1.3426850942149973,21.548693634861806,4.310937857875383,32.287109583781486,6.209313987471942,4.299815783535566,5.163378376406034,2.946971302136525,2.8305758059497514,5.400165390901647,9.480725812398841,5.820077274350778,7.438851430851407,4.9461882486232405,25.279251483416992,4.438253912365994,8.172661160073998,13.527388035334448,6.838455673254485,3.0989460679701217,12.225193117677422,28.07067095169258,2.3441086452172164,11.57781580471241,3.278464148005617,7.1310746013016955,3.0919424559327493,15.665077164044709,4.960359582706479,2.098657482075337,3.0238927414456978,5.455675909590963,10.891585552701965,9.61026894098891,3.691092228083294,4.812621504089522,4.460913318540838,12.901872732287163,3.1625785078068653,5.1616923202163445,3.731525424325665,8.019685634079694,21.916504777357957,4.566905338509625,12.85927967587077,4.811380800260044,5.612642009340546,9.867773143964087,9.934189388426239,4.45880112939257,7.504805903592554,2.8951823982359115,5.892632829604732,3.1948845129270995,7.641565868719462,15.524627342184369,7.901571438099194,2.091490349299131,9.017841828341151,4.154918841279392,1.573270925828445,18.883761266989318,6.871278251760849,3.865446234815887,4.748617673540409,10.928800004851448,4.740061673253081,3.8610252709283928,18.50530895407526,4.623537041733738,3.6704298055628617,2.4337015207749966,7.632838218834366,3.609306482642429,6.221041028584575,5.799269519661969,2.939894517927247,6.099122984138284,3.625816478579487,3.32290217722764,3.207038453497897,6.039907161314843,2.082072914040536,7.304505642085092,10.79586682045376,7.3039994048333226,7.105608468037345,19.77562396175073,2.4285406540995846,2.2083592370705056,5.663426392920681,9.755936716995295,3.432308543311312,4.057462860761971,5.393939364781136,6.146440651784708,6.783417439066833,11.149130231015935,6.6599849422707464,5.335084887839745,4.004331302481849,2.930513091906652,11.280816607501619,13.98011460573809,7.517741082867745,27.09452156361974,2.6296676116010587,7.333402951561544,8.139438714036382,9.61501380216249,22.242910278327187,9.233567833370358,12.534784744104503,6.96579305775107,8.428938477095025,4.209728146410343,4.154480144678768,2.4082289163242225,3.587922059351957,12.049990464718455,3.065153872963079,6.897150940329839,2.8253009637617694,4.432964499902123,10.027959926259598,11.148490733661001,9.214471157876039,11.463491728567908,4.437623320201751,6.559711766103897,5.782048490752317,6.425527856789663,10.846540895289197,6.297846421029272,3.4427104745397203,17.33515799799272,12.663166961915465,4.446697584595971,2.0962432192930165,3.379909663498061,7.366682864083333,3.126517158446512,6.291797899813494,7.043254814534037,10.694057194222633,2.4879726418921884,8.932910318782652,5.569690479472801,5.218050900608583,5.989667979715394,3.229226829168611,24.547319178987763,11.92211711070849,5.147467792348298,8.16187503614322,9.583606558356525,10.186532665617205,5.021388324845288,10.274174984021178,4.694257322059855,4.08939860851423,7.558215062448049,4.349777886264217,42.87639707997722,2.948369984873609,8.85161466507788,2.0877399402620975,7.941908757659467,5.330330816869493,3.40286268786462,9.106797198562601,18.799740841977098,6.446079969083149,6.589109083806618,3.046873341842575,17.175236620612758,6.679266384008727,2.9268018626600587,1.5565586373837488,3.651228415411943,9.38188200125571,7.739269214878289,6.140266381330399,3.3380687231782535,11.757680988297293,13.668331066243185,8.96810860833524,3.165540388801496,4.15080304803376,11.368909579421004,12.115841225787548,7.491980047373421,2.586452561373271,7.848574284792571,8.562512382609901,8.49635909130111,4.517017460993257,4.223160769665476,28.603166509403678,3.2743626924275153,9.509980278123173,10.101732389646859,7.1978678871083,10.332307474371547,1.542394018897878,2.5412357500580303,8.907915238348057,2.8267826284948767,8.177152772301653,15.824474076697326,11.550590548723163,6.565453736482384,1.8141140491685415,7.020713575194996,4.956640686640225,5.34238050158344,10.692967440242258,3.8469464205685733,9.430679917200234,7.931019575999286,5.64408430164264,4.242374566032282,2.2398785015829468,10.683577659349249,11.974261128145313,2.6100440579041897,7.351842819509536,5.0501792259352785,19.401246673759765,11.568849465465828,3.9214514308535895,20.014198441898284,10.430182429340707,4.07935308831471,4.333431857796628,37.26437334869351,2.8936899579480784,13.848027490865784,12.342142157163455,2.47682014083205,11.815911142215032,5.879813419151667,5.754899701469738,35.52701923538253,5.378871867529098,4.012053722650564,5.62880656836863,5.542905495473219,20.72225275539996,2.896364185415322,7.1895168554145465,13.604476655650874,2.6808076577785886,17.830889964644314,7.386740989716196,3.004649329341779,4.281045661646459,3.0334322290164937,6.373687228882861,3.0592033793598117,7.90577972400303,1.040368363399592,4.129754237552042,11.738091083648959,2.2890878008783053,3.5273478899931896,4.847342881775204,2.912320696377877,10.786480261499184,10.395197263715929,12.058606711756662,3.120037447631137,2.6409645542953566,4.815990849767545,9.07132210813551,23.27847268903611,4.283976365370992,9.56601197701027,4.810790027360304,4.083282727684032,9.339178739337122,1.9558627765015484,5.007734091531343,2.618032511514292,13.795269452215784,2.4847828666489686,15.332483071364525,4.269394325483734,6.28541468177433,11.023072397347294,5.727607120373392,1.8284567603754456,11.482790567548264,12.868243033280898,8.17410039787761,4.201570157935276,11.542842902200677,3.5730395167053346,3.532056172083579,8.876461112016441,8.510033296516582,32.181543060421404,7.7335616058240335,9.951525331800726,5.158560908318687,6.6385687045453246,2.9545945522752746,3.3725230051665998,4.35460378906615,4.146228727366008,4.907145042747123,2.2635387431764338,7.9921217885411435,10.763753825329951,12.093396482572253,7.269235412063734,25.558352424062882,2.5973398428157384,3.2311882891263775,4.361787622190041,2.945277992785705,10.107625294745063,3.9748658495522027,4.317846117673038,2.8571456593494142,3.668560977578772,15.620525819030133,4.257382807270851,5.9309199944795745,6.043000221770671,2.486816967753607,7.386940029152062,11.624025675859937,6.505993766401704,9.852585908767967,4.310233643071256,3.3555244252530754,4.163215662089961,1.83311801314126,4.030557495804507,1.932403981628619,3.413682599043333,8.714957747883522,5.783827945437808,2.921971875310251,5.027397701257795,2.951953440748287,5.810676683275379,16.369880308996297,9.403287601919711,5.932977777785294,5.408757819660735,3.820753975724231,9.04023590678926,12.236045621331634,5.716476975864269,11.142261382142415,11.470142346500857,15.969672954876577,4.50187463665494,1.4618953205380307,3.8049170404629646,11.698537928514796,4.6995391033468445,5.011105938306265,11.029464561289421,2.9454083570158773,9.215316745183879,16.065079028354532,5.58434705614799,12.35761712813528,3.83930767383914,3.1936086650195623,4.91035657197009,17.575781708575565,8.6557464692432,6.107545526738744,2.454340733226854,9.940705883530185,12.350025919798835,4.371722110888791,4.751776257686846,3.5633751202472648,2.75598683311146,20.05442180595431,21.168436320736465,6.375074568198871,17.41435959646048,1.858929601927949,0.9549668469517737,1.584673123473439,3.6014383962441463,2.5883026626375214,4.066606555761492,3.0140160907804945,4.66464063026029,8.919047124575325,17.577596924532394,6.2251664588250195,13.460845347948844,5.9956592671249505,1.7754252060356002,2.542270137226947,5.1438657294666035,7.704407002696032,7.327022454007971,2.4503915849160998,2.665430376532085,25.551062297519266,13.174155395858206,5.465304557457334,2.5964539353861857,6.676926363111459,7.0158226638658805,10.339129712936362,4.76124315540705,11.680160369064785,4.426668950496614,2.0965045514968006,3.477403025914316,10.849674745019797,3.7543555885957667,3.2177180472802718,3.320931093823731,7.657930995503588,1.9495868208194955,16.62809934923287,2.1224379890839398,29.043371341308976,14.08050616693132,3.7345853915277956,2.474580911737637,6.84360299055978,4.0770174554811645,6.84641401043135,9.102021614100066,8.900563701500067,1.670178842743394,10.029441240431105,4.376159023278223,3.439571575325452,10.100457833332934,10.719584629640938,4.988077371309942,8.069905501273876,8.343740826865176,2.6212021057559,7.117518014290349,5.394322833644443,2.893190899671924,11.815649375034505,11.725917928911644,2.177775770220782,18.428891443554747,8.755614244598657,16.76295225951262,2.3529799265527815,3.510547763442853,12.31739172721279,17.574871099240465,6.0997776585870405,4.0203497914877255,11.553811746734828,7.868445919495934,13.103593522807996,3.0134999143083903,20.032422604147694,5.322023132181528,4.703118291096728,4.036425447326435,6.643707649862639,2.5636665086675907,7.015361431470271,2.4372907050347443,49.688503980056154,8.270119027000518,12.376754616935445,10.562497446856149,14.567448400101652,6.375011367044742,9.361046644670557,17.48037062199383,7.178255764951896,1.9434493683354943,7.610862680149955,9.725107734812541,19.49761298429396,33.483998933137805,5.6042025128959745,7.3111248193951,3.403025588318963,2.5393046753292365,2.81225809144411,14.14024426090998,5.03543307244065,4.009924508450679,5.799434793342315,4.068697711696192,4.278791945427083,2.012409077257134,3.396472734050905,2.9958699115279614,2.0180683320226342,7.932219571133061,3.4915356806618343,7.158782091628195,8.793288563986172,14.892983454679163,4.286113750951928,8.924827983222665,4.670961483096631,2.7175824346793016,19.019387449007503,6.1076551390406975,12.292502717268341,5.437028255263212,3.7027057683163718,4.644865726954707,3.9260316228775713,7.229034400187023,7.05129383048484,20.249123747550343,4.234899281129541,10.74191838023052,9.60264352361917,11.067413565868474,5.6957117848773375,2.8163188087989215,16.243014830774268,6.532571324768667,5.447000514702203,4.131226142808623,7.758061672111536,1.3973785510598107,6.539235837671597,12.85923528798681,4.116749441922698,11.879714335005854,7.332929670415394,25.535756025994218,3.760316224346421,2.97178877275712,2.5993471822354763,8.171007494811642,24.527794823031424,5.543512983264855,1.9447419082524084,3.1965378633487544,9.218749169019791,9.01504716497805,5.500480450883379,4.727857790559415,7.3497244528907535,10.501976383444218,7.7879300400168585,5.081412117173719,2.9037209618465747,4.066475751254515,3.314025121832108,17.296879554113364,2.826494991464598,22.71021208428605,16.04232560909884,1.6260659968201927,4.440129508415948,4.768168367361857,2.331829271193428,6.6777510821546295,2.614168725547224,13.405636299507613,9.011459097003849,9.982770234567434,5.250856385554732,6.703674123081664,4.7337136281335335,1.8042981289185018,10.61985551360486,5.841599188837737,12.758783775790699,6.00712334567544,27.325251530217955,12.469348896461842,7.393977795012236,6.022508460438513,1.5826608411141436,2.2634800044833447,5.987401439871538,5.726229627096965,5.781458344210785,6.4597214834280114,3.9161717425886526,9.878783477944811,11.017832208246546,5.869989576384719,6.938507772370901,4.628474627218825,8.290018142247977,3.98434402495114,2.870152646470823,7.474373529374303,13.393719980747406,6.123231571993664,1.4155145527005324,3.1050832102807866,2.826002387272359,1.295300038085941,3.5216256200222302,5.847769299641587,6.495132321989836,9.733519762771591,12.620625462644323,14.387282626766655,3.5481179561880087,4.815169169137339,13.05999173801076,6.959733491403649,3.5493618732924492,11.590820347460296,6.230398975861352,5.196656833766466,9.333728562011578,12.387312612112122,9.359717062594106,1.1957153066081334,7.864337779498777,10.545787231691607,21.631137151055242,5.436809218771965,6.57508085670153,6.536328615285157,4.104082057864118,4.759000040718583,3.051222052152752,24.784282860091615,3.2152024579399754,7.940857877521885,7.448623625015721,6.873824865913502,3.3938734720676758,13.788481329549207,2.951075540036551,10.156065611523767,8.850958057399763,7.58385933131513,20.73797369746684,6.049704842635347,5.601726645772303,14.247622952631586,2.7768840790847147,3.997895497210048,5.173197606827023,19.358101874919424,8.347265484421285,4.362854872124108,4.922511503967225,3.6646858470453645,13.482419844792059,2.1787520523836155,5.171425493257272,3.9704103745527566,10.98302852037788,2.420419107794871,7.9436986123057745,14.312141152658752,8.013052438038855,5.475723605559247,2.127354514620897,5.424067878064759,2.5231132040237476,3.0309470727774595,15.435123950918175,2.4495097723759582,15.994378573845566,10.979433592624089,3.636484147744665,3.631751390995162,3.0888687985640053,5.263752458307069,4.649857470409043,5.252456670561291,22.381754690997816,5.242785232917748,11.695740743465414,4.667397390552512,3.7123290918906826,11.062734355354854,4.959021073054753,2.458057744924627,6.945029801562778,4.075473847986329,14.605060774296653,6.0133410163912195,2.5734533677459543,3.1171792229021493,4.423221576695108,2.163300855534336,14.734736288629506,14.141464978873634,6.8546036331738005,2.9736390969463145,14.824818102210466,4.680631629192854,6.4600966307389385,19.056561495582493,5.911642511532985,3.2348242306866606,4.4174205999169995,3.2242799533281223,3.671101344028263,3.3375292381702937,18.597746853084914,13.345023492434592,4.537635179815934,5.824384821302428,11.92660078490028,13.689412954990937,9.70265316752739,13.951860355554253,6.918510463255768,3.4230991615500526,2.446339600326542,33.66623838207706,5.30119302204455,4.004774856365414,12.341732700421991,2.0237022135118248,3.3140381218183155,19.33044590194608,5.572574378123491,5.479209569873973,37.45122284619963,3.40377587273404,5.8552939670353545,12.591145069193727,5.481100716152822,25.984990009658983,2.3326907043248983,4.241537068433606,25.038377815544113,4.575233988039658,12.09840791625288,1.3775813449545407,4.7850212511380175,3.2796781148643284,5.261747325994008,5.2903866030252695,6.517039585094716,13.972315306786363,11.828843828455657,8.141412485545484,2.0305166044883687,7.934789132746653,2.89230471003586,9.354187062433715,4.714446513446836,3.3316298703856293,6.597183833860862,4.698222266877872,4.373279513258053,2.5485132572742653,4.008194094183747,11.37191459162884,3.8343425692595754,15.265164691320694,23.78857374176464,2.067702498037759,2.8008403427269104,5.452693370682872,3.5730114976593015,15.295928868561134,2.3715165602768997,4.800511859797117,4.863246669439461,4.484866189421467,12.974402974574058,8.838199929268242,23.985611290285934,8.631697498539127,5.646738792647316,14.063121590980039,4.676557074252815,2.1922075880770704,58.89405720289307,3.112079840069586,5.852012818078646,3.0326917983378645,12.14299086112823,31.905441790042566,10.189390782802814,6.486608011347403,12.269832535400893,4.91378440083052,13.636880251055032,4.696795885346678,9.302752663780527,5.286963976642649,3.626263270211988,7.653377973850292,7.59805759176855,6.328182021562226,6.056844252978276,5.704409039891344,3.7022670406544207,3.5636032811873837,12.638181535495105,7.371053630600643,2.1796232265605577,8.663489962994996,3.2618154969362156,4.031218516617576,3.2802860039492607,5.9997628298005505,4.842872277002109,10.406682355121893,11.920189191314163,9.761651498138646,4.5936505373354155,3.6774148677511955,5.888107239609532,5.42258881535042,6.379949290050576,6.250455636279544,1.9552969108940865,2.2362249967279566,16.661416601619422,12.232777087039402,4.486187494176891,0.9288530235892115,2.0260872144161506,8.298155073824367,8.920773058594975,5.322027925594505,4.57438145361194,3.7230712325619266,2.4423421803381604,3.2992493603288606,6.2596525707917126,24.326690573540745,10.955101419468377,10.382685744971447,8.798260257866518,1.8362685499505165,5.942957538684886,2.481122192478072,2.892784074915361,3.6840090503522935,13.149161832963673,5.060096424379043,8.395298793373108,3.370115685779696,6.497275993756198,4.615944176201927,5.621580030686412,9.610788268876034,6.211834511154211,6.015486346436382,4.1238743913563605,5.5648056093181,7.930307055313098,6.000963665340002,5.7115933289992284,2.541946078399176,0.9445573035737109,7.5309348594390535,8.128885912253484,2.1291359743018003,17.905883115223883,8.392104550134242,8.90673934578871,6.743629861869227,14.814463607430826,23.579161514918365,33.588555663969125,6.10207277781721,3.6444178580902435,3.5220787550509742,8.984937199612798,2.8885484844472007,3.508164675555567,6.480478064423858,2.9024013355114042,1.0043159158527257,5.741260729062792,2.5186389416183665,5.003720960305636,3.299514085278683,5.895762571013873,9.91092907619472,9.708601078321767,29.445623003990427,40.15587839046112,1.7341157611903335,5.256665317969589,4.303944625023611,13.540979937584886,20.41950481110562,5.0896031274936835,10.96711051843051,7.7386772682953,7.173047020362418,15.858342547041383,3.4718036685637066,4.309934403746987,6.293860498866449,22.712014824662734,6.667651001449172,5.7856262682174755,10.542098500594475,6.734743204391659,24.951916508721872,5.898193545471728,3.0230156289691155,3.42687423115319,3.5442734527843798,6.842968529341431,16.788111579359175,9.442363450267205,14.628935090713531,11.574656579540287,5.513842843875915,10.856869177536636,10.723073757544034,3.322469010126472,5.1629404192800505,8.351958190762096,11.108534316085054,7.54135551845168,2.3289515858585714,11.88432683980108,10.786470775529805,9.611898515678066,14.309116085095592,10.928416426868711,11.640518952386506,2.4029967813925484,3.6638679136183616,5.814561686357769,6.802441967013816,7.053529159443266,10.02610826046175,6.755677289204387,5.7142041953362455,2.8327241998911648,8.16088773244661,10.931426055941774,14.706763075296553,3.686867784750388,3.0114810890331136,6.4476425138415685,2.316377522016338,4.388918674381387,10.89683952487839,12.955270813887303,11.627295271000316,5.468216701190813,5.235948780575593,2.479795564694041,3.716623799380395,5.183121274841186,4.673523839306265,4.643144889227251,2.8529078107050934,20.63584061282796,3.6175365105258135,2.661347059204385,21.866408388592088,6.712861588691397,3.5451812854286127,10.957626505983866,9.05815449266894,5.813710173646128,6.141273328055161,2.479144809073805,5.830142064119597,6.1525965980939965,2.1977963056973633,8.78435177437807,15.943228149008009,1.772953651367909,3.1454729665774392,11.800131072517427,4.592063573145361,10.720287644358157,15.11920525795214,6.595877245733522,2.8625030557534417,11.409868229525845,2.2070076300516255,3.423543987577036,4.099345823110806,25.21357772916578,3.242525553467914,2.4208717972534997,19.52799497232802,2.404088936917205,14.761442101583462,12.60764223911278,15.776810248621862,3.33798834918391,9.897513897597523,17.90219551137187,3.5073608629573285,8.727964353818855,17.99851032803553,13.792412942419793,7.765163967672435,13.868970620617665,7.589217188278247,3.0486680269114825,2.4718549328201096,24.93031995000699,15.303361886015379,5.381335759854671,6.058483011113692,5.155986863759176,16.55348292400538,3.1175241996355942,9.940344476118968,4.025389420445135,6.2559242657434915,5.207024627416479,9.368177969730127,2.645909304661128,2.6241973586666205,19.108848399184655,5.700957250141775,1.249024549317895,6.555249407359427,10.923210808196039,12.843680022303378,3.3465083330605037,8.463652742571476,3.6640393948465677,2.923065869188371,6.001856665194329,11.941873146804113,4.706450691891174,5.012807510421498,1.9747307741285107,2.294703523269577,5.103255440995519,2.1275999002335038,3.6904032431492744,10.896661594682898,2.660960465421362,4.816642747748902,14.449715132708443,4.118317286835001,5.97281497215308,4.725549167582503,2.008272119269212,5.248846563149775,2.7012108478060433,4.21964744303205,3.962857462051752,5.529679147966458,7.675347416204783,4.627108955534972,11.109696777574126,7.009158567763266,8.935827603619424,3.3618204975753105,1.7490693412841567,4.402857156021704,3.4613333169436666,10.438568657630016,13.224575240905928,15.165429012702587,14.963219857749678,3.905000782537071,8.032700083956392,5.047871783050018,16.608291326574754,20.829544795877393,18.10465811244559,2.502719462163968,16.715678578797377,11.541782059339692,8.634417254400134,12.175827956023374,1.7678431701842583,20.43878338538183,3.0415543673946464,2.018860057974795,24.129004759885927,4.209061253987068,4.482500345763871,7.561284097668019,19.360409962760336,4.031770969169289,8.837983606869166,12.193925923390301,4.579524027728842,13.965222905347753,7.720223252648698,3.007270950469734,2.2143666968684723,8.169582408600892,4.115322042094995,16.656341434128084,11.13090955627353,4.458121953085041,7.636704855714703,4.071144333862726,6.708939066414697,4.711127126560913,3.953005133431588,3.563896119511336,11.53434857008833,4.16904320565132,5.590727161764415,2.8020421300779272,3.250003950047669,6.937168960695851,1.7495140703804812,7.269276248316934,11.992553625398921,10.300376921374411,4.9664691872677045,7.225011578386633,4.802040966053081,1.9467516128696094,4.031973482712002,7.288896597771854,12.415767782862448,3.4751179711805413,2.9387574125523503,9.219088212353817,12.438316744663192,10.382272328591052,5.182197408911105,3.0510498239306347,21.898872656471674,3.23538387445824,14.850388198410819,6.480806406691878,2.937317490442614,6.292740631843865,7.389316395185157,3.6715572640261076,5.59272773230034,11.318541831068151,2.5514950517541624,5.887066181657922,9.366466104694787,2.1922914392704618,17.11932593726499,11.505682908503449,15.577044109450746,3.2382265825429006,5.164004996906998,1.5429909181266281,15.724224313639397,7.51836298385134,7.919296938518773,3.7988573148531444,3.7612540584796643,14.80375982665159,8.78125402770758,13.796112335735101,6.110301527596714,7.144420439351467,13.278024066500002,3.913461837940348,6.699156820122322,7.452675341445277,14.555179139585043,15.170417993486137,6.868890117301468,10.25093413789607,13.79318599076143,5.6640977660881475,11.334665881732027,14.728559436236718,14.821203805927304,4.474931691292663,10.856425581691509,24.443732210115016,17.36103028151839,2.4513277719782427,3.8016958955601905,8.364424758075371,2.9970204173258788,7.759816153751233,3.924886246876362,6.466670669650739,6.711697015423624,2.492832822415135,3.5481110435364065,5.26881221598699,10.337416682853943,2.045198025888489,5.3737294322503635,8.746574771413233,3.943018637405924,11.139992497495815,6.923393440217208,9.229219360053357,3.0069191831734754,4.571713115210445,3.6031721856165166,16.414631660651125,1.6702063072212419,4.792167958125472,4.16408178789254,4.073487485690898,5.83780522054531,11.906561857797954,3.2182189810440582,14.963352035642348,15.744663772520711,6.719370505162824,7.467552561820408,4.8365573463715865,9.408237723622122,6.701141387548786,29.371216928554006,3.1941943415252245,8.244571708378972,6.1787021900735155,4.6997892211333605,6.942716665511899,8.198253026913052,2.8353712231932295,7.417571307102134,2.0954025226065713,4.139979930669928,6.600924069376017,4.99403960448688,6.381401934208863,4.194238346112722,3.6763205036185527,3.335923395517654,15.979858804716283,8.420514030991049,5.170261493852971,6.673099469960618,3.5505372559824506,6.712153311373532,6.629714234033286,6.187458651828635,8.638627704689403,7.9865663844576495,2.2204066727144802,6.338513673083254,3.306690470031686,9.159237806447303,20.154477101955447,6.584803740454387,6.627339029016401,5.248874481209075,2.6572997049984735,15.112079366854372,9.650112063304793,9.772872157787056,13.424686298185168,12.01773593336782,4.51727016796676,2.9520075875024605,3.926243510573163,2.1966470995741596,2.0613708007443505,10.964520401643625,45.80833610938434,2.959468141035949,6.597847538258424,7.311117466607974,12.980230270245588,2.6120069522530613,3.037102767214433,4.315345669625224,10.413536775695393,8.407130878934646,12.809040710858508,6.706327999160752,7.036337897727477,2.855485873803284,3.053227143146001,2.4690908844929482,7.2100434621084775,5.317665115172401,1.6275088345286206,18.359025015233186,3.886046883347091,4.8033283260466675,4.143390136419259,4.871601550247517,49.14202813095086,12.281789836114365,4.387274808857366,2.449997009677844,4.760960735782287,9.469243615292617,5.091393825753909,6.7914085599426155,3.669258062900002,9.872230767861991,2.8806148525598623,26.913110755487686,4.007686095592758,2.3679423486132887,1.4530803246271802,1.8829086221878764,11.800392218172822,7.382286435228456,3.968503230131714,4.979839478369251,8.75257076845894,4.220442064609098,7.14927442850061,3.8560188855717485,8.102442935847877,8.335597783377533,2.9068976664596513,8.940820650121601,3.8932225916043084,3.778228034409299,7.061428109702819,2.009759744763609,7.541939772874069,5.705034765492454,19.41375102445665,2.926341857791181,8.25216010580682,2.3168058574247654,4.386702847984735,2.751188096445631,11.328627353456827,2.811185221014547,4.875302066309697,11.733452433506008,7.859355528659465,8.717785778751105,3.057194705889814,2.2879476169512047,6.519331421391899,30.420170977810162,6.465191136618754,7.255599658544036,4.617349535809588,2.903647810270051,7.234548523926151,2.1096271050732573,9.145821522767354,2.8140550068221772,11.514940951687855,9.332917973799248,5.525832634592162,2.5178813042443773,9.69095079809446,10.42149454277882,43.00297445155869,23.514786964769684,9.531843549351066,15.869704156444273,14.882306473895575,4.074678943676891,6.491505410160842,11.47382928685598,4.656707991292175,1.2219041867847598,10.060706874565742,9.059816322389699,2.705432491687858,2.2492238717173985,2.1005571419862457,15.886242173919646,2.8297689034422024,6.5785876840410555,2.3873346052983027,5.104870227354832,16.636792694828532,5.5384555687980725,13.502206064648298,5.431187539431906,6.830960995334091,3.8857479675662083,4.629255983792501,5.138708123788337,1.87472949101722,5.2753507895103064,13.870849564317975,4.189131301676366,2.8170432694794134,7.641533889797333,6.554919249529853,39.47974153557744,8.97754872087881,9.725154844196286,5.311551202045736,10.67361123206382,2.8235286681387906,3.5734595586599096,3.3696695165431025,7.419627067662729,12.576261800132286,15.58066184531791,7.2154285831042575,13.802335645614676,27.87424216076291,5.3790335803534,3.9059147347363363,6.296138364062589,9.066680426644288,4.33074267173336,3.151993919255898,5.061704907905301,7.377561885539314,6.0819450158693,3.0518787662115034,14.62100354328658,5.059548617918435,4.532160126340753,25.38751273450916,1.4407460206953437,8.874033234593263,2.3059502052256975,5.72048908473855,8.220543810942933,11.119354722696183,6.620822338444547,9.434385721646152,4.227419954997493,2.021083921548884,11.222393937676856,4.082910345613474,6.313260320267739,3.069631632700161,5.228378684648276,4.9216621532086675,10.234309904183863,5.637040701353798,9.31103086732729,6.671303835668808,14.199012384106547,3.6777400033252117,3.0095346484824756,11.874469349996112,7.353861214455004,8.62829680016616,9.422787690256609,6.880714929202601,12.919582377406407,20.027978663865934,2.0801728115243723,4.844164169319155,30.31242958926939,9.670264849829202,11.393291548570533,5.620325650165017,9.826217489225682,6.252878668602954,5.999373721445907,16.2969736279995,5.185533729537108,10.111446829554483,2.1716470607983287,2.556172383450688,4.273981064688744,5.628778388252768,4.256686752151127,3.2413490860666236,13.030183786099192,7.596269538754119,7.488317847775703,5.722167840920259,2.6331385492827524,2.803031516495107,6.424142824245216,1.6973602020057368,18.582850186048063,4.9695483909367635,6.201450489649114,3.5631349865331057,5.544103151175694,10.983562371061872,4.969474021716508,2.800386885754258,5.866696960839395,4.09687740739548,39.83706419347732,1.203018583157235,16.417848099482846,3.0391623776686054,3.3225021612553896,1.7705312502436485,2.190399794612292,3.201184089470211,6.387329469196218,30.494079157887757,9.655613403603445,16.220037733249434,3.100464114849395,8.030042451806317,6.453310524927648,11.509171738093197,8.216319057823343,13.051511846809769,3.0102891260941926,9.324900385043017,8.103541884294327,2.3204933824300653,4.289845726401068,2.6353259595519787,8.56993190610331,1.5536309611761883,2.2308389015842818,2.2998258210417446,15.680985546625054,4.1690977700821295,3.236975089257971,7.206074359599144,8.35355153883863,6.779974603073621,5.030335271036396,3.6925438596932274,3.965109249697014,7.236828333370026,4.569740891741811,8.327976165575302,5.269462181139582,3.519231724047289,21.742083581880657,4.721581221257766,3.915659400128051,2.968678630837587,2.3706654429710268,6.81623996595176,8.98134421356865,6.329572474861803,27.377717274937893,3.180718344531212,9.468199513924063,3.7614314295596776,17.582603825173948,8.854971822997092,5.256700088173866,5.206384319706434,15.49825966815468,7.765383709106364,7.657987576984479,8.110320111580526,4.87219164438909,3.7837230308978524,4.667334850693689,20.400963586950773,5.672852224736725,22.068524112446266,2.730859457190971,12.048773144047075,26.495417015026092,10.046337983639237,2.4738797780623596,3.9917428754410538,51.575688207742,7.280684974928931,7.897101859967263,22.762756537974685,1.5947636833100485,2.6991861417332346,8.414746973896717,12.10999497267901,1.3657285303619693,2.754415872581547,7.212481071488381,18.077775204997817,2.4484937028903953,7.148390831903759,2.9661894867706504,10.226442137034617,9.144803634488474,6.4202525112779965,18.78034233424088,10.919587334691181,4.2549322077766005,9.144365534103317,9.614587774173534,4.745308516783382,6.833781237457561,5.882132552442408,2.9115607760919535,2.899182463602975,16.417674408707395,6.702144390407239,2.8109647542027654,3.6147565873774363,3.1758944352983725,15.811492265761611,6.51090734519157,9.907907714789982,5.712824827688132,6.010631058280634,7.89558434382029,4.187362226318053,1.7004567529012977,5.621926438482156,7.799041610766445,5.680240704139898,19.436026353283946,3.092448041189345,1.962475834512365,19.141429834272987,6.962970953842041,9.173152998252363,2.9815577173922643,14.645745077852473,2.922519680121564,9.67248162384915,12.223000317146003,5.600236306452249,2.2618327306127557,23.819314644555018,6.3569770200479025,7.555457062547432,4.419635989393792,5.120292088918277,4.345336485469507,5.093742770107234,5.672078040882957,2.3361977143048596,5.062177309097855,5.134191141785871,20.24624068364918,4.147546800418079,13.066491082958317,29.48587496917277,3.212346145035397,7.34189847659508,8.258473941742064,5.048768673152624,1.8443643909281522,4.221980786277936,3.1670962964720277,2.3526449970084755,6.521369745919202,16.39403410784765,2.400494325987741,3.960813531555617,2.5084409636794156,3.534213320270606,7.054342765078777,6.374149917805829,1.868902722144849,8.829426170603996,8.708255320530077,13.924612021449304,3.65700344944939,3.169990567428472,2.579780587759566,3.6188954900051353,5.567813215057225,10.079497480052506,9.739539547344428,36.33063865550639,3.7904009424293132,5.443053593047662,3.354915994860134,3.7314006182234305,15.055527283360336,3.9422236398581783,6.537640682445674,9.685935024825614,4.549499561421983,8.708185346677991,3.367026196401565,5.488774707261502,8.668516959818453,16.297971095728865,9.648379482011096,13.299064477019996,5.248096951017453,2.0293578758380355,2.736424395588231,5.3365906560947085,12.421595895395544,5.405005363447695,7.807448420029201,1.5567286236937863,6.845599579735683,1.8960593302197077,9.3575735398022,13.346832389431482,2.137089413268118,11.451531542996507,3.5847766397166496,5.410804150381121,7.528044089989344,6.673900389896984,8.87721803049558,3.418576800966517,3.2591956229602195,2.5477603350765547,2.583342850292149,2.7762761743249937,2.757639431785383,17.200438200513783,3.473606205265562,17.01566749420181,4.892331471968,5.043121221984335,3.6791732066315124,50.527642417993754,15.829573114941118,2.3852562627247225,3.225857227984093,31.049743821571585,5.364906446975684,13.05202687438228,19.015506396993914,3.177966248607557,12.26911724602339,14.969033090798051]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}