{"self":"http://probly.dev/api/sim/QirmGYKTCwsaQPXu2PX77Y/","id":"QirmGYKTCwsaQPXu2PX77Y","created_at":"2026-03-14T20:45:04.206750Z","status":{"status":"SUCCESS","status_datetime":"2026-04-14T22:28:08.797700Z","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.43441679571268593,0.4565218446646648,0.4204980220541103,0.4608188378096655,0.4197679393426075,0.4869761927853331,0.40246680846092564,0.4866394342436881,0.47152401893065105,0.42581713985850345,0.4364585412060269,0.5851520381370239,0.3115858647651898,0.5038632507672461,0.47866156257632125,0.37193310632080445,0.5569769739616098,0.5872117500599879,0.3688505369973068,0.36380582298678826,0.49827697373592994,0.4212518639036026,0.551569804702404,0.5042164012947826,0.45163277598565466,0.41733096200803804,0.4555968928234885,0.455260911183524,0.4178535559153839,0.5588529001206882,0.4661801239265711,0.48775601815338615,0.43377747719103044,0.4687333613068041,0.36991213376474225,0.5142117379266417,0.5022625222465193,0.5107460949026092,0.48826296212403125,0.5964535250186638,0.6482326124538207,0.5475678938666774,0.29469239520780166,0.5152406032115016,0.3397511422369434,0.47861864263037335,0.40867439587300003,0.5185229499977189,0.43009894887892375,0.5714068920725708,0.4776809014443986,0.47576824797858236,0.5523101021319654,0.4718085040963959,0.4687306541640907,0.5761194725697877,0.49230641581658957,0.45056053763428444,0.4532444962538323,0.5117259825957609,0.5657169561158133,0.37091885169024574,0.5329621781683455,0.46384681630485236,0.4162039481843415,0.4698370092192683,0.5288141943560415,0.41593494228689126,0.4304364575785078,0.3504661060100301,0.3022401275651347,0.3626736468429839,0.42964850894866197,0.4393452449352475,0.4606514357140685,0.566420951026161,0.4833392862611259,0.4769015701438168,0.5301058486820617,0.5331348046549166,0.5825174471381221,0.7181692995969626,0.5762462433674279,0.4871509400443124,0.5414572394287323,0.5967709755077995,0.48959603488867026,0.36859883186098336,0.4400678952818835,0.4522489699937777,0.5212929064354872,0.5070587541694258,0.4529871443260017,0.6040903145537238,0.400176636325657,0.5405869025651034,0.582186065213825,0.4899515371888929,0.41683401770643275,0.47568752407230996,0.4910493536020475,0.39869035156727145,0.5028728959081721,0.5427595302998848,0.42755672904159925,0.34426435674568323,0.44669987695244434,0.5835818928114304,0.43469204355380453,0.4021633809123466,0.3526987037461719,0.35409479736388993,0.27274403295487576,0.47968915544117047,0.3762632844411998,0.6393863803272347,0.35877005642197835,0.6673680598848922,0.4092108422795628,0.5531205263885922,0.585144453773086,0.5383418342830691,0.35997805428582946,0.4782614244947623,0.5820961739395044,0.4863376332412686,0.3884062003677355,0.31349190477053795,0.34347087997347703,0.4789486087024626,0.35760606794224203,0.4160209838927295,0.5526097459647954,0.5548778033486035,0.45817170485466824,0.4775117306441925,0.550065288181615,0.4173910201835351,0.4273910040513895,0.5792354954042723,0.5659351956246357,0.4937488363447255,0.48588515586427383,0.5532107328724574,0.4545420577475184,0.4101828428071825,0.4972255135128122,0.40136345638805626,0.44940705654907215,0.3828723125368987,0.5456126772875054,0.45100747663689106,0.3768028510840967,0.37481189402878795,0.33023590259328683,0.5374903635758587,0.5000572989005775,0.5050273041979866,0.44717753573083735,0.4339101728355004,0.45768265705828826,0.5120852403509122,0.3502932805730723,0.5806084991601436,0.5078637842282729,0.3305091793466635,0.4596939879964604,0.4772066361997527,0.49122235106087975,0.5738486420607827,0.4612606114101522,0.456617903188112,0.43291253712503647,0.4237827765166891,0.37029256987087705,0.49752486162157405,0.5089972158443631,0.542660913823986,0.45912323337833943,0.4354263936762913,0.44131031331015547,0.3853524474451454,0.47541892117689094,0.4999210110024064,0.588952384387114,0.5154544396588941,0.5859024047399232,0.5323795054660573,0.4349716042447492,0.35416166948303546,0.3691522919394592,0.34129492267792394,0.4258436793534036,0.39448508172718993,0.5379299509368429,0.49207835670289374,0.5353637368603598,0.4187754198357455,0.522772258675307,0.4204687844376891,0.4372832890481595,0.4492469127953399,0.5172949053310374,0.6176054267496961,0.5826508482418988,0.5296582109831935,0.49567644760687735,0.5645882526698411,0.5921464384926581,0.4376038956917606,0.3978271247244099,0.5306879479541436,0.44646694568973155,0.41103446063704746,0.47505480898245905,0.5724044866984888,0.41411974214160463,0.47750816363279236,0.5197565303103262,0.4843525166844196,0.5700687790439417,0.41673219406852624,0.45570508098884266,0.5373505696598284,0.46613251643243553,0.4509631851811641,0.45726087460840714,0.6108052438429761,0.47264918666236505,0.425258542148812,0.4306689611271267,0.5525182654408042,0.39825863250778337,0.535473710514786,0.35900895838391594,0.4374817303841855,0.48446858735177,0.5984911195494409,0.4409365617189866,0.5161804506332547,0.5137554619199373,0.34838577873019216,0.5143260094884569,0.37074992995361933,0.38806736974213507,0.4108332553113402,0.4308768356150231,0.4078337001343106,0.44600969189508655,0.40065067416699035,0.5574840972270712,0.44590875702127897,0.573600787512164,0.6012166755060169,0.5753236987585563,0.5309834940731453,0.4707582048495785,0.41194416828275754,0.49444837547835807,0.4362194267792826,0.4070107145791101,0.5024084700872187,0.3645112512069149,0.433370635980598,0.45693759945470597,0.4883027044779329,0.4892433544912633,0.5109524184787765,0.4250140396257733,0.4236449620970426,0.3560832415456316,0.49798516845978835,0.43594021163882735,0.4584361772131414,0.5687793242430731,0.3952521156865465,0.37960594689571925,0.5660039266540752,0.39385534190248866,0.5628044994052578,0.4713087750539121,0.44432860309089883,0.5629246207914029,0.3519161713591198,0.35081766861646846,0.4175609924710228,0.35178345482140616,0.39324089842323406,0.5455253021288262,0.4432697555292438,0.44247677502272126,0.37198571247647705,0.4757646685105104,0.4801054668070925,0.39297240801061445,0.5192911250740974,0.49557755123411396,0.30643104264848486,0.5306144263497188,0.45515904788058453,0.4565723582382004,0.5282096199519172,0.531432363016847,0.5971392965969835,0.4846146907446194,0.5017535829108539,0.5629673444084347,0.5672546745739875,0.3433076454487115,0.560418021034002,0.4474688323168988,0.390008943854862,0.31984733857989156,0.4677396866063642,0.4009105956489856,0.3667055932874941,0.5735485372181418,0.38073472641076467,0.4090283111294522,0.7059826575926523,0.42064272145965237,0.41431627371605684,0.555235745743485,0.4741686922527323,0.5771329826684248,0.42142057892045887,0.4152821139673909,0.5820749769600566,0.47742618454110025,0.6538488867252189,0.32871903235426,0.5649442743832664,0.39527929202778017,0.44759388365552366,0.5877620298225109,0.43002151879489775,0.525802833664717,0.3406532894627498,0.4624890601833647,0.43261496909019465,0.42342030795761404,0.4106379117426161,0.3352141252235557,0.4723715934484304,0.49665132301351483,0.4138134892145901,0.48631647119316435,0.5215421419959051,0.4283190305917463,0.48787335837704604,0.5916253990691801,0.5656221490435241,0.38924323366161306,0.4316870346991856,0.6235093962349898,0.3069850460729202,0.49787283043200836,0.4426575921600349,0.5004229169689534,0.4984467194866978,0.6417964671798609,0.4942492811663606,0.4989918047310295,0.6061987682758834,0.6165540699464901,0.44663987799593624,0.5156385681153698,0.59275068696018,0.662135078326558,0.36305932532740187,0.49468041049244826,0.4813633656837487,0.41333322803925737,0.50457197643279,0.40529321700736326,0.5126276690044934,0.509643653622564,0.5208203965735728,0.5712316399706713,0.4369596088918658,0.525129241681111,0.496725362190982,0.43885355624511085,0.4913634071509669,0.3927253597939181,0.4653547233459739,0.48755016486776387,0.3946010901872026,0.49223096462465565,0.6050946062526132,0.3785747088239134,0.3917136695279276,0.5208334991584018,0.4138111140907638,0.5366336806441852,0.37771361856322033,0.5281143870772532,0.30075359741288044,0.4849071882853837,0.39692857542847026,0.4928761838715547,0.3329714114022535,0.5199891316996066,0.42447123514158486,0.4865011097286899,0.4360654432454994,0.33583607047910813,0.4799200891706794,0.4899287421366019,0.5883044254304586,0.4708521588365858,0.39832474856552813,0.5318815439467084,0.5516911962418889,0.28963651210691527,0.28259968380557476,0.5449541644303948,0.4587385191166569,0.5449893748917656,0.5908692689565417,0.4962522263742119,0.4578201215304941,0.4990557979205613,0.416381081692875,0.270434512573428,0.4674795581908421,0.34884707932752074,0.3257234199090392,0.495569212622795,0.4665449588843002,0.476467763429619,0.4389138543776506,0.5211308008863073,0.5312198009069866,0.4046813762346937,0.4799488050555843,0.510122290763538,0.5146936203862805,0.4790804973866633,0.4982909970020415,0.5258702000319525,0.40004576231062106,0.5584240757705107,0.379287245582513,0.5109310450760557,0.44634680948943517,0.24778850453717688,0.516140889093077,0.42059517945326647,0.4422615166850944,0.5538888282156668,0.47855874062881676,0.32531357817816603,0.41337665069558127,0.4098491800022922,0.5310430651948544,0.5328571807547924,0.5666662660038114,0.39027799494319615,0.5957823206031448,0.4497705076335098,0.5940719198924724,0.4526713492687054,0.45230829633650466,0.4255729368924703,0.44305872148596454,0.45632032218647345,0.42950642291252933,0.4569723077859478,0.5578975525941112,0.3830236407101965,0.5112232638755507,0.4170696802174448,0.44232992561579015,0.3542498517514083,0.5951070891940273,0.18600442803606573,0.3523210498956874,0.48775199137475955,0.43478552043572927,0.3847696621762385,0.3643528922442206,0.4779765969454249,0.3679075342299245,0.4576204598501188,0.4057456395334979,0.3814928845047592,0.36582419982011677,0.48633866307148704,0.46166738913656086,0.5432767057583919,0.5261034735389994,0.4282411586372383,0.5166177095801447,0.49317180912762243,0.41376239615226507,0.5173291712299446,0.4343139177488907,0.4776371949309958,0.49200763392325314,0.5698273569706691,0.6678920302958598,0.4752346706978329,0.32720487491732647,0.520134294082831,0.2715006605287482,0.36075779672483255,0.5705684585699798,0.5516143535058037,0.3733409110957168,0.3876798296022896,0.4793454918278384,0.5028238117172369,0.5009752829898204,0.6396466512095864,0.6283134292502564,0.493812534539699,0.6502566365181424,0.4028018292426514,0.39998877518959863,0.48562319956503747,0.3860886250510459,0.3019151588470572,0.4033200448782981,0.5582933431402537,0.4300672133168446,0.4734529142334248,0.492900590670887,0.47368375150957226,0.2827360459755276,0.3219812888240957,0.6791631564927163,0.4467568267120461,0.5970587185491347,0.4354377191723956,0.4935785738269197,0.5487918541908554,0.4746073066874243,0.5687410212494045,0.4468466359938997,0.309919430114126,0.4776148232369528,0.42964276706697246,0.39824527585730163,0.47244323576551794,0.38367795871270627,0.39818692701532804,0.49199074487518796,0.44170391969435124,0.4587915741548652,0.45314206149874703,0.46677521510808906,0.6243024781676969,0.3609972287997666,0.38794318925853055,0.3056313317042043,0.48275063825439163,0.35953284273207514,0.4529260041188652,0.5610773270593709,0.4009797953072996,0.3757460071184907,0.4949970135240141,0.3923367800223299,0.44314337413500565,0.38461628220162375,0.42224432628265157,0.3082589690955662,0.39015721480923143,0.3740906339940532,0.4910591660161917,0.4143534955247909,0.452391287668149,0.5202857631338798,0.4137389451393309,0.5456601917716866,0.445538301798181,0.48990886457207994,0.5170717467465997,0.4882319485781884,0.4196369982236972,0.5083363170729526,0.5631678367846272,0.44814547507315783,0.37499926647094695,0.6435767153266965,0.42388579788626635,0.40733402604630814,0.32985694988541775,0.5241308196713256,0.387249687176209,0.5052156820855,0.35166398045814073,0.49182879164582183,0.5654058483140411,0.35115393247388,0.4867982524007423,0.38472246994789666,0.406695330576688,0.44247788014993805,0.45113037873137246,0.5719454054474464,0.46655297577487154,0.42872950577389357,0.5520951170075776,0.32699149864898674,0.45423486572860095,0.5034364058172446,0.5980523718480959,0.586445046119025,0.5447797141054651,0.4106503241946097,0.4225941652830182,0.33959411496290987,0.4519124297150249,0.4530329582737486,0.5150745499594788,0.4373867676009942,0.6154813566920562,0.5304215381115002,0.5126493114634261,0.3272156838490247,0.5032759700256568,0.4182872873543193,0.40276551318839643,0.5433254794056506,0.531475352091951,0.4244316745119461,0.42115239249490843,0.6146136123981674,0.42685784505954677,0.48051253040602326,0.47523984557822657,0.571872068822021,0.4648528189932132,0.4280452934297626,0.4226518356502448,0.3860844422172448,0.45512297957604403,0.45376134669647794,0.40552552341754633,0.5228843248948607,0.49774001064318646,0.499756668500904,0.48444229311795667,0.4444288844960466,0.37983292791390294,0.450005091205378,0.5148094820366955,0.3758549920900047,0.3350828134238433,0.5172709934781424,0.3815928550951291,0.3714395107694532,0.5303521414890746,0.47897473104937555,0.4618988926905171,0.4550709386345052,0.47238787119595343,0.5502879926772012,0.46358003883091886,0.5291477899897525,0.5300199882630717,0.3864077917585875,0.5473625055961954,0.44958565475445667,0.5478439132793372,0.4645553664090571,0.591714085465719,0.4942769765751994,0.5585478979627351,0.5528978414220815,0.5125066088185296,0.39701940530840246,0.3867101650347326,0.5105141208229548,0.37337892210509377,0.5194311152716639,0.4374237315702058,0.456157406498235,0.5007086223439486,0.47461118067943475,0.4410609575535057,0.526965785732954,0.45309176551536584,0.34527374730237315,0.4580443736389417,0.44536987766399677,0.3148390463738413,0.5426302961420554,0.5341860545812956,0.4797667972735653,0.4179953806364577,0.5120052191304034,0.5121120758035224,0.28725204063504123,0.3928909472676776,0.5321897169758126,0.4204418398621777,0.389641093498011,0.45224578892509437,0.38279316560380083,0.4387623824162861,0.5238211803090606,0.4221838291915052,0.4734574879476365,0.3858321532999818,0.41321470244087666,0.3983128505031543,0.4348995048792221,0.5183296548951247,0.47817352407441993,0.4986406122541321,0.40526929220515695,0.5050014079004148,0.4238800870183672,0.4827892018887048,0.4162824495630261,0.3093986615493957,0.633156216711413,0.36717662870115514,0.5196845665815394,0.4666560776572478,0.5329328527953674,0.4609708503690112,0.48242782147448215,0.4486136949176698,0.4247583909041494,0.41435509492818495,0.46618545469219214,0.5405675885494861,0.5012779244917058,0.3931971855949538,0.5712374351614369,0.39919044351461924,0.4480065310504886,0.340702391270833,0.42886699872384576,0.44336107777811895,0.5081874313171153,0.4542376110045034,0.5506382580519004,0.530164348072625,0.3633007404683817,0.4603694030412158,0.43628483865788215,0.4416868403487787,0.4825823701929218,0.3698554114349515,0.43223024724015546,0.5351124646057327,0.35480933450382446,0.4585395698594876,0.43717550454015386,0.5326873391381917,0.5192801692938255,0.40428530386376565,0.4691294013883291,0.549652060906658,0.49479308375202086,0.47967719784733487,0.542177765772786,0.582402398374351,0.423277598040294,0.5041845707424664,0.5666083077253873,0.45583816846913117,0.4773683192285028,0.4256076037829722,0.588318148195752,0.47670066388822996,0.45275846527536895,0.5195327672436021,0.523940329390227,0.5698466395069787,0.42315393294111037,0.5948992439134271,0.32435828103946934,0.43328704288093844,0.4520964737748732,0.41621694166017137,0.3301049966127842,0.36638934899693193,0.5615872627038542,0.4856141728814546,0.46116611470877666,0.4510774649801455,0.5444196713148145,0.4561534070355861,0.21118709429264482,0.41203524422866233,0.3644917922480103,0.5071826570861926,0.26033417629655625,0.5050581924844159,0.4302086608375449,0.3816505560549913,0.5845721896787719,0.5226486552423716,0.45518679261663736,0.4651156177597752,0.45913086472003145,0.49237011579165146,0.45714989397796024,0.37525190879023224,0.4951519519832024,0.4782307687998114,0.42229569972726466,0.4176613995523783,0.3918954652508492,0.49434031603254597,0.4726189277859584,0.3777216341073717,0.5885591229065236,0.5658067458535617,0.44896559582892176,0.4999450943718444,0.4165542194619138,0.48598383477036905,0.49238537157950635,0.4775850618425778,0.38057236299996927,0.49803399463762144,0.5318682269563754,0.3715354447813424,0.5436677812443562,0.4563194782301653,0.3486684401627343,0.5089057976395635,0.45638138049279475,0.42731985640380754,0.49269722103474783,0.5359876425349237,0.5334086173281717,0.4491026687348831,0.4526920317669447,0.6056320922021943,0.3903603169699908,0.33569532055657525,0.593352479028054,0.5615449913159297,0.3734937149101831,0.47713526561833386,0.3287890893546538,0.3234977075268091,0.5169073663983874,0.4910458665135688,0.48746412346701534,0.4328675372206702,0.4630847111071735,0.45021523700922,0.4953858548943377,0.47011053887482035,0.3329576632932577,0.4011285014782897,0.4032413488492447,0.4807128096345328,0.4584077870800004,0.5920685271359516,0.5928433725335459,0.6340887348568407,0.3660182330162384,0.4216520948141367,0.42252051177384037,0.4977789791750854,0.4279296849680063,0.38178263305619736,0.6477933940647563,0.3696099886444789,0.5095629895165309,0.40280541076259485,0.6102499386174524,0.4192240105243523,0.44454603853807617,0.4142523736353054,0.39257210972160056,0.5326135344245237,0.48430430327827445,0.4119706993988721,0.6139741691970984,0.39580940003865817,0.3891074868964375,0.3841424990181103,0.5007124102864929,0.4024030243100421,0.4348027147386851,0.4427793687197989,0.4312640678403364,0.5412531269424663,0.49062608969543897,0.3312331688945411,0.3164778252342823,0.5102967419378875,0.37774101613475114,0.5045050206453401,0.46913518449668784,0.30478141744551707,0.4196437702698072,0.373968900746434,0.39085177150618733,0.40903570800016614,0.36537905447609564,0.3257573170024295,0.47778215110324057,0.5274971544396972,0.40514664364789016,0.5202123534040297,0.5699160898548806,0.42539041885080725,0.3962060648712084,0.3929525198947649,0.38713815749071717,0.3959657519597134,0.4797860530990911,0.4560439300190686,0.4327020876905022,0.6517351590852297,0.44271456966615585,0.3600744275502805,0.4385314203169814,0.3568414814048851,0.49353953286128494,0.34021817821937755,0.6164252725777523,0.5376353962747438,0.45102594509530997,0.3402429152596053,0.3228010956605442,0.5648018882590171,0.43386838077359785,0.38258319836763194,0.5729301902133472,0.5308784091354168,0.43660032632529716,0.5272345048613409,0.48615798181366304,0.37229025566469837,0.3673233117631328,0.48767298403241566,0.3384888533756859,0.488854949676284,0.47888646418450526,0.53678486957998,0.2800904006261088,0.4504489527786177,0.41862576444614413,0.434355214907905,0.46578275426867105,0.5994802382495757,0.6563911459316091,0.42965982925826507,0.494276344544696,0.5430014705761865,0.533506721396774,0.3112214841790725,0.4973302479726952,0.3767464321903857,0.4573801826117609,0.5195350031308362,0.5050593637380297,0.5678537857871396,0.381246735315255,0.34147902599802177,0.52662096380378,0.4912081360782525,0.4950010029985446,0.47033282713239033,0.47025995297339374,0.5593898583672812,0.38486414809720304,0.39440773260557793,0.4699544716408618,0.32584177396734926,0.3186981344186586,0.5502692221092096,0.4811071845499238,0.3222531738686126,0.5352852772222505,0.4221978969034698,0.3672101425416116,0.4517917021737534,0.5498489149150075,0.5162359704658969,0.5953366298548085,0.48205235517424566,0.4819536384123002,0.5161024136738361,0.32253968773554664,0.4772124706763163,0.30843895670516663,0.4570784189726261,0.5453092778202703,0.5113440667260132,0.3894886537929411,0.48064271531905817,0.43175870951707157,0.5507617438209487,0.6434908707489864,0.45568476546765835,0.505369898644114,0.27163452452507075,0.49231858876576634,0.43024703565988504,0.37094263733298644,0.4416956106616022,0.46538521438847463,0.4828974989009438,0.473447355581484,0.42203181630701014,0.4706619611177651,0.47983626024855525,0.3142797167010254,0.6204119442787837,0.47450396618799584,0.33428912151897916,0.522937548434581,0.3181915756440641,0.3891486644832978,0.5159302766331043,0.3989364292845018,0.3747272532329328,0.333796714180054,0.43204489577761956,0.48472880349394876,0.38775211845250196,0.43477541847722634,0.47426521483011075,0.5356722593735249,0.5168377623469106,0.4149194953361219,0.3905222911838484,0.41037223326666405,0.610023761485154,0.39143603339124866,0.47483943679169577,0.44151204270080113,0.5773592738258668,0.3722328070643118,0.4326220476612426,0.36703755476861327,0.41343090397591736,0.4822034329434818,0.5520858653773403,0.5031420973163239,0.5241709631553999,0.4898537306050412,0.34060234206817597,0.5238880877039422,0.38121796382633294,0.48460452935058046,0.4738619172873882,0.4528297620098704,0.5021109283557993,0.49298529809444186,0.47171913125327897,0.3771148577231128,0.4745758848578655,0.4489907288122327,0.35898829959865264,0.587327519778952,0.5203433380030271,0.4997648773822025,0.49885481488633865,0.3990611177353534,0.45385245023184195,0.42161487150013727,0.44579079448175113,0.47884582231665374,0.38264535729303245,0.4200768312687894,0.46323167538169047,0.4596344747288536,0.41766883423340745,0.3982874648020604,0.44653672520731186,0.3525062586570449,0.4876859377571069,0.4824722159084132,0.6207551543465357,0.4364510828265148,0.4635881862540579,0.46268667877212144,0.4712194140558305,0.45852047180635475,0.37970183290283377,0.5341166990897501,0.30871708134859116,0.47711763312212396,0.44632242815469403,0.43786628559322505,0.3072118509313857,0.5293356451772564,0.44453937379169073,0.25189983353208845,0.45125741489003357,0.42367183506488976,0.4981138433279827,0.5127748396778415,0.507786206919851,0.42336316688857983,0.5132117980218446,0.492844951802925,0.3481848560754019,0.36928190896462765,0.46989920407976077,0.3297272040471778,0.46075554289239806,0.41249889675883894,0.33221226083023564,0.4873817287563821,0.5445454152750842,0.41755063670955167,0.496640461522085,0.5344630257233846,0.587984826802813,0.4083642369629594,0.3893143977679891,0.43768141093477936,0.4519677428466287,0.4195164429904891,0.3622418917533908,0.5447706976260818,0.5135460462451152,0.40230619303681625,0.4849712260883415,0.5354721354004642,0.43867747260734247,0.44814152407137825,0.42343953864412376,0.40077908143934293,0.5704293705778569,0.36697241575532324,0.3289931183851145,0.5896747721572638,0.4591447885425156,0.6343156891652001,0.5020039995831249,0.48381809203224285,0.36435563303078505,0.5663586727999552,0.5190687721550089,0.45079314515719193,0.5328450204035206,0.48378332869443963,0.4697713835041264,0.4311847593137022,0.3979664697867659,0.44350212749601436,0.5701004067234012,0.3614729476156744,0.5293880791727665,0.4009610486770205,0.43015112772533104,0.36751378312226335,0.5696318703937467,0.4366355670336317,0.5950994443839547,0.40509144524358337,0.5347041480394426,0.41861521368103644,0.38077723250647283,0.4240617272243685,0.42782586633835135,0.5898940012884373,0.40938389045495327,0.39586579670412303,0.5621550159121309,0.4508686296749232,0.4473220166672583,0.37473100835668066,0.4824998305200019,0.35794126598287057,0.5414930751454886,0.3941038373031511,0.4789144515305586,0.44649808164602234,0.4557770206791954,0.5685021119001439,0.44968486833228016,0.4710423717070901,0.5777576387466986,0.34923228989482796,0.563659356280508,0.5731207977756992,0.4708975067438562,0.4661877857961784,0.5297140907182909,0.5239688019442856,0.44852330073327473,0.4213954680600117,0.41517013134160446,0.4510272965932625,0.5713622182090557,0.5125610345452901,0.5978350835325127,0.5058864463567584,0.5358397608089669,0.5568737054691549,0.4922482555408683,0.4685407211459737,0.5437791464547345,0.453169229977794,0.3854704603239477,0.3628993672082986,0.6043537766010896,0.42002315556700487,0.41590056880219195,0.5094833443032584,0.4380831235886512,0.4401960778258864,0.4178479084123626,0.5617183969223831,0.5668425010436299,0.38719933201890433,0.5273023004979207,0.5241491000776485,0.37223585825994765,0.5693697200260832,0.5210980351219963,0.4467542910302244,0.4831688439095698,0.4805619246004438,0.41497909217659246,0.3652226423413013,0.39057382343010305,0.6342681527672742,0.46929285959124706,0.44979051420495636,0.5052906207923452,0.4483331039267938,0.4068698357776387,0.4995688053367672,0.5163959275791823,0.5691501742590771,0.4066899021929163,0.5009275667623877,0.46997146218840624,0.41816924865840094,0.5081867882909055,0.42972089814064707,0.5426922257623404,0.4790713950150522,0.44151092175297013,0.5178103990190068,0.35158415136283383,0.5629539776484546,0.6058260649837912,0.583995091635517,0.45540312033470787,0.41702852465054835,0.5014483743589581,0.4876667540194763,0.4206837466642812,0.5216219641078327,0.46328839170824143,0.5311311770420344,0.5183468159855402,0.5627472291834679,0.45261234244714793,0.5248755840166919,0.34868854144078293,0.44146716385271423,0.351035079419689,0.47528267247091793,0.4122282637225493,0.43161187622585306,0.5055070578689284,0.3539318520873979,0.4143494503350061,0.3938179399699863,0.47163659282185094,0.4802847217859687,0.4979960511336821,0.5288738727803343,0.4635100708523964,0.38518137845245026,0.4556198603626635,0.5978101066378606,0.3325229847657128,0.4747277826807007,0.5008949641168594,0.4270078590789179,0.41407747012668367,0.3473298186922401,0.3974955138663254,0.4285434112252202,0.4575888654845523,0.37748451176791953,0.4228729602602239,0.47871048152566464,0.4475884139348158,0.3778123280372865,0.3984528318496429,0.5216472785611457,0.5674366739329377,0.3246744071873306,0.3560462181338122,0.5643236143148174,0.36047103378683576,0.39038453876093443,0.43825252623165156,0.447083887839396,0.4072658321965831,0.5588560406723632,0.40053117545897793,0.49532383299594634,0.5852891194843945,0.48920168066754693,0.4826049633677692,0.5737384179873892,0.5280990908640179,0.33833663210378606,0.3955942406925038,0.4601509655232981,0.36862082052572254,0.3284443500012844,0.49027354448632754,0.5928848848575103,0.37100097686110584,0.5408345909481479,0.5241865906789648,0.5036215666263582,0.4810674860995358,0.4773288235381264,0.4412673610000297,0.36990465401016087,0.5680359941535105,0.5553035411045366,0.41955599949331945,0.4169978747239842,0.47403110986483776,0.5803495384705882,0.5057664841561265,0.48325555073807436,0.5114721842458235,0.3694053679645487,0.5234878002193679,0.4405587139922106,0.3666922479154405,0.30657095756718195,0.4267935807201274,0.4967818095370944,0.5527880478752334,0.4486602686235141,0.4216537462304751,0.5537341407605986,0.560360051369567,0.5323908485989067,0.3192106248901252,0.4661985236230923,0.5650682110316099,0.5034815081570432,0.5253648809227826,0.4907967937922014,0.5070486940123313,0.38466505709075804,0.5240230214671936,0.4906004041230742,0.5357131573195049,0.49650240985008987,0.509978076277155,0.4820761970270456,0.5537519018557213,0.46832993877380696,0.47199073782788686,0.4478354764090104,0.5180777696437375,0.36049185398619776,0.5432955146083339,0.4496625262761732,0.36705811209434036,0.45209348187505066,0.49512769944335117,0.45741869785714395,0.4401121543086593,0.4807767244961535,0.5408915442478721,0.5023616407914027,0.3912894951821058,0.636231531986339,0.5643217607894142,0.5185949757266465,0.5341195017581065,0.4618642320356487,0.40318585405500157,0.3632323643558181,0.5117025414857602,0.47132928421644216,0.4114584313801606,0.4639334734974861,0.40034817333784556,0.4734634582773695,0.5185467795609514,0.46874107361907186,0.46522621352011456,0.4027997063785772,0.32258387108847186,0.5024831859549223,0.5179302739380366,0.3640137059554789,0.39271107567685887,0.4244886407029999,0.3518258639378306,0.43917940586662396,0.5901410374371201,0.4745572281646684,0.587844159074273,0.42280761477819906,0.3546429296697212,0.3683337448564091,0.5362771756187048,0.3697592620308554,0.48819699834703667,0.43469593806702,0.4180854949010975,0.5312717037829116,0.3258557597226161,0.36450230420702573,0.4716075694196072,0.5049135428109306,0.5670335385081015,0.5328112743706912,0.32607840096149815,0.5258222960772919,0.4554397457310656,0.6046145992712577,0.5513400286227713,0.5817342777495472,0.408661437688966,0.568600313728301,0.3705815382892884,0.4393377416941756,0.5034360593742097,0.4647609690109732,0.39403965954821013,0.5361297021498354,0.4287633012758689,0.5353441324939047,0.4837774111001815,0.43995589098640747,0.5437421375260117,0.3689583882565147,0.4809755918709109,0.4173135848909067,0.39056424170849535,0.44081306247348595,0.5115357618826076,0.5660273931910504,0.45600471331955195,0.42754028468481486,0.45808843511813174,0.47513763180465346,0.4097039275219302,0.41184020278011624,0.42070700925596854,0.4810019327072577,0.568359340188841,0.5874180818050159,0.5191725575209278,0.5396033165696732,0.3345122013758073,0.5144947643200102,0.38390592162446413,0.4961959202123458,0.518784457881522,0.35263962384755115,0.5890925524580939,0.45892403371913243,0.4179259423923281,0.5603853604339124,0.5474790895588179,0.3517349533257832,0.6879366254612216,0.5513883252504393,0.3865091376775459,0.421767869180048,0.4789785147862282,0.4709189341625728,0.4684607868790115,0.461419437369224,0.5578391131328855,0.40627544101117535,0.5530979454426485,0.41802761711214204,0.38074500766369246,0.48357366342174596,0.47616142573306336,0.5258297620187399,0.4563555697355952,0.4738136940295174,0.45906953463459926,0.4594482396946319,0.44808611815983324,0.34290880713797117,0.5514008308147453,0.42035847232141466,0.5376931831432249,0.6309673100995862,0.4288730758048715,0.39250060336561204,0.3634388830955361,0.4297877027157853,0.5021145695114103,0.3577829772313888,0.4148531508096789,0.5066225236389783,0.5024127131550553,0.508406869200514,0.5134626068958809,0.5742673781338102,0.4224564324329225,0.48433932214671216,0.49867404268665827,0.4040044213507983,0.46726507369197007,0.39104494837173653,0.574272006926393,0.4870064264749304,0.40386646504749885,0.5569907450281087,0.5023587031971948,0.4306264423048956,0.3704662418162569,0.3731349627597321,0.41024062332923933,0.3703748739813156,0.6255627269013329,0.3647730419052144,0.5281564460952247,0.4215017914860587,0.4616659962409781,0.3334851650599593,0.30279156524679235,0.5689450558676065,0.4249765437400487,0.5627815862395238,0.3579236561289846,0.5338051099416741,0.5197080883412474,0.5697728381482362,0.42639406908108335,0.2774963284506127,0.49558063973414035,0.4673118244072121,0.5120076610690845,0.6403910086788044,0.5225682110485216,0.5635169348345627,0.49738343380810507,0.4291740199980575,0.4764527887871288,0.5640596408834222,0.4900274599402183,0.49783143339552494,0.45469332477542046,0.5663414144519446,0.484529723083172,0.5413154741542096,0.4360115250641558,0.49521176480273005,0.5431270438623113,0.5291507192972567,0.413556151130088,0.32701686437432115,0.4557874528948972,0.4042105498967152,0.37537214739535174,0.39814792511759806,0.37291981933067037,0.5164377271439737,0.5027133529321479,0.44023456715321657,0.3928538809804764,0.5406220933188911,0.4125440870145561,0.37592363566607717,0.43706379863063716,0.626647062655232,0.5821189406514881,0.48930092527649727,0.4172667501942894,0.40528037671452105,0.5045530608206221,0.6217429043918602,0.35908097830082425,0.36927580393912446,0.549103147444169,0.4549117720680321,0.3316378564571785,0.4908819332354912,0.48530092609072756,0.4657070127448987,0.38942565096197856,0.2953476017611599,0.5018908618250268,0.4774384375918082,0.584982088295946,0.4707854953216305,0.5298674607195083,0.6441713744795845,0.4944151796382863,0.49136683889518534,0.4618542129751145,0.42330064463982436,0.45144184152859845,0.3978534676180753,0.40170713131508795,0.48283404231928745,0.36933207475325674,0.48965032803884984,0.626837535346247,0.45968133797835986,0.4406630186117324,0.43931091799556715,0.43017975297363825,0.3381311645099147,0.45921116703170617,0.3385277072496681,0.44567953599665433,0.6029611185833121,0.40744429747355787,0.584679088502281,0.505680708186195,0.4932638401579587,0.5032860065929052,0.5265500388329811,0.479405872614785,0.3265607404858292,0.4331070939143494,0.5024575183857404,0.3577006698053271,0.4294112218884131,0.2632414078994317,0.5907780244600606,0.5124182310166656,0.3254109473816523,0.3839380862182766,0.5579915590656245,0.48729567359335335,0.407897405953099,0.42636308511467086,0.38682043717091114,0.5885534078250202,0.39629514373051405,0.39902542216262216,0.44082476618602495,0.5542079953089044,0.6029401659482352,0.3612020967682121,0.3698288661193623,0.43603078957131647,0.49388821357348106,0.3911407347964604,0.4254544585915226,0.4853611985350002,0.4841915869064992,0.5003776161548952,0.37924766553129785,0.49633726230390346,0.4954548026519557,0.38423263578324823,0.43333179483987705,0.5287820390732305,0.43755753445842377,0.44623451654285184,0.5359874808657084,0.5316735370747215,0.4838877224508665,0.5667485445449171,0.3707194583591524,0.5540322848450855,0.5335822003500006,0.49148343622713575,0.43201533286130556,0.43766601284277207,0.589008104451611,0.36274187576260647,0.40013901412202985,0.43018193658543574,0.5066263940573292,0.4523137862099042,0.4312830860061696,0.4019546800062235,0.48464091699227063,0.46909139521740084,0.5212747507074366,0.44316644098009894,0.5813234192686454,0.5537644296453736,0.4681150394821574,0.5801175088415496,0.470055469200932,0.6023757680564691,0.4831007213585887,0.4856390246478101,0.5493917386688161,0.4871655022488051,0.4909480879882216,0.4662311646883077,0.47420440897580907,0.41311980067878085,0.5864895435432049,0.4630584224870958,0.41374902379393735,0.5151880914587966,0.37994284576814935,0.5724906948030228,0.4561012277915559,0.33718060348073103,0.49979662669485014,0.4796283608889611,0.5010456702068307,0.41271705043527235,0.580999759367176,0.4871697976306406,0.33885711499667814,0.4566708638500049,0.2614286816274648,0.5362324695933385,0.5584823158754698,0.5363416245926681,0.3944492233411582,0.5445073699954318,0.538002489018925,0.593544893785907,0.49123331060824144,0.4644269938853191,0.5818485766770584,0.623634044440249,0.444221455916464,0.5830073127056523,0.5245285367453749,0.5573185341282314,0.4440197587573416,0.4442134966302384,0.5111433427654237,0.39690309429562476,0.5741706752801701,0.5733966115841831,0.3597702083861891,0.48632609784328834,0.4737030131608896,0.48070286929311823,0.40531168679450236,0.4151772570000647,0.45806905731172154,0.4616286093400819,0.6162442113927322,0.4004951235033267,0.5214491776936536,0.39654947280489183,0.38978771365581766,0.5569530094038151,0.506783164637001,0.4460123077844529,0.45519153452736655,0.4279556603374432,0.42832427045354227,0.4619942416014728,0.3954398935182534,0.3842309994429716,0.4936605559098521,0.5355590163630809,0.411604127042948,0.43782765218678377,0.5366951122756803,0.4731432468493682,0.5349143631781073,0.3372029099059873,0.3253953406179054,0.5453832291959451,0.4000087852435398,0.5280024956848502,0.5274352495043094,0.5050145229037448,0.4405890438296708,0.39387688933116377,0.38439992036442633,0.44905147296777503,0.6126048491062873,0.4372453060556632,0.46279343661265093,0.3843641523595222,0.4615151369224982,0.5096781346280042,0.3976199077502539,0.5345793210722022,0.5744169546100996,0.4214023311167555,0.489065929163203,0.4321631697283662,0.5085746022064443,0.4326586587744417,0.6115185742891182,0.37866055738660137,0.43411008476764446,0.5589825131264446,0.4732249471674344,0.5307476684818598,0.4253620358073613,0.5741245718129494,0.534593829782303,0.4558170012772247,0.3481044212135371,0.6070140430416926,0.39763268015125147,0.4350109640885941,0.5073747350776348,0.44594739464515004,0.4207847784627414,0.45544073211375197,0.45195706866641794,0.601772752133049,0.566562718449618,0.505840871614164,0.4278904855549616,0.6998310190618355,0.3488482192997044,0.372789672312182,0.4548070700410548,0.5490469388375058,0.5195481408030643,0.4871145907371672,0.5105711207136138,0.4033829770146788,0.5927483775165101,0.49406006023786,0.513093909377037,0.44749356736732093,0.4828437441170685,0.4688693880025313,0.4379059585278434,0.4259985958903755,0.39808453646871034,0.5287658590666147,0.4877369767074666,0.4439209054312469,0.5988621614574859,0.6090904588070815,0.4782660877776864,0.4779189064229746,0.39912596363678865,0.39280269293217596,0.5740674245516109,0.3975381753081444,0.46774363068116126,0.4592115020878293,0.4610505394548056,0.49618926642240785,0.45062262385203744,0.35395821928564686,0.46668630988585924,0.5019696990380627,0.39066514196632773,0.568253326134639,0.411002193752501,0.5235641096957985,0.5500744651552153,0.5353432959448321,0.5043923031013682,0.5023296858700211,0.5857756971532122,0.522082828308379,0.47260274840685973,0.4376483772249,0.5982546048110682,0.4437927831297191,0.5595768506696307,0.36621027450603927,0.5832080704600385,0.37337024595832696,0.4561338116953921,0.41257496402348126,0.5577609889004363,0.4339420929094201,0.5268299672291874,0.47074632719206094,0.553824476831502,0.4934953162015585,0.5181815148684419,0.36792026654837195,0.45144215723985637,0.39849426106572167,0.4673818524270012,0.46394364084592665,0.43369362070903844,0.3999934036398734,0.39885453676331745,0.38370527672644017,0.4712628352941486,0.4909217970643518,0.5821743787142303,0.3936481728517802,0.5524089973056958,0.5531341191105656,0.5126510709324774,0.5691076464579362,0.5040630899617365,0.47131095539314344,0.5513747386070648,0.4324701022809312,0.4737950277225666,0.41338503162897466,0.46670294580575233,0.4136046291147475,0.47224616261085406,0.458947664776924,0.5726706999780409,0.38548353602972407,0.40438263557793674,0.33431002572398816,0.5451697544904002,0.48823563310118984,0.38556298190000854,0.3519652844502451,0.46145846068888247,0.40209887615223566,0.5215383805080226,0.5392145546696557,0.4990692499479465,0.3919151415558661,0.36835154281256854,0.4740951748665185,0.4241634302629832,0.41149558846344136,0.48927324454158533,0.4087827160309902,0.4719688627575172,0.5117568911642263,0.4933262366997677,0.4115185007146844,0.5089982587371538,0.442687605194806,0.5046697435839661,0.45370902526944124,0.5513227632238813,0.4592478073153354,0.4662118060867638,0.4819392497806748,0.4222065459440488,0.428008965102973,0.5615893026730656,0.48565373590033517,0.3872601342701277,0.40768939312303476,0.37869496020137755,0.4893265201935611,0.5471974056670404,0.37207917821004527,0.2971091534984041,0.50022624182795,0.549678455930124,0.47818680051272106,0.39580039190177657,0.49832333422314373,0.5582314862559136,0.5165495910277833,0.6102827179191869,0.3432003986478439,0.44822044167691744,0.46856852429654083,0.4956826089678965,0.5656969338668664,0.5392970265939794,0.26575907119160175,0.4650688518830971,0.3884007248227532,0.5546163073934838,0.44784265890236696,0.5122543943810643,0.45122563424172596,0.5858788501957044,0.5453756630355251,0.4670686276916833,0.5815894482694755,0.3816442286087278,0.5867158501467713,0.3713182507135143,0.47283694212972127,0.5772933197912287,0.31178785840624323,0.5070721117963519,0.3653388296122455,0.47260480378192243,0.4595482970628549,0.4433171555982097,0.3824867593521532,0.5060995436182176,0.5380800416957429,0.381895336918514,0.5093733838964759,0.4509310456548971,0.5400939324567464,0.2604734070350008,0.4121848198081505,0.34101743955399144,0.3701279180046082,0.39953444815771283,0.6441989238856078,0.3059900749873404,0.4844023065713823,0.6497667106855137,0.5860179704709372,0.5077190610909035,0.43169634423521774,0.5654192605719678,0.5928489271799452,0.4475556524014837,0.45070665158392725,0.58448424555568,0.4844144759564573,0.5560160241706623,0.5004684768115201,0.556755082877033,0.48840548042114873,0.4438163340149149,0.3775017991622457,0.5428572057089095,0.36208164551637667,0.5051624743774773,0.45866059539924475,0.452669129932501,0.41634486789624736,0.38006654813768526,0.30040898552736783,0.5272422619072099,0.40171550004192275,0.34430831170324966,0.45529614551518804,0.4908412638407562,0.3240935879038682,0.4138604407596676,0.6239188558548824,0.31872830446265216,0.43338613448360713,0.4729771342656452,0.45077691944766474,0.49107550584133436,0.5476052689254178,0.5490732083884692,0.4990446657014696,0.4618684145358831,0.4312733965069488,0.5386298215778743,0.5583057489212103,0.387321618467126,0.42061784891730825,0.5120590849295675,0.39231018893881237,0.4242434347245351,0.5399538949911604,0.4784278374766128,0.48100153180199184,0.4924338254032393,0.4255939396842353,0.4234983317631814,0.52211120715719,0.5188299324859725,0.5373644489900806,0.3610817082195675,0.41050318730169266,0.3429181806380463,0.2829793255280093,0.5067264527703125,0.44771303512894267,0.42428627861698004,0.42024904722464285,0.5023496893492044,0.5855833862440444,0.46066901201320865,0.4539340223427903,0.5067756707911454,0.5070511800299397,0.46308627314962425,0.5078286996596555,0.34424706924809023,0.4018978721006785,0.4381826275283407,0.5211491557009374,0.49698449491849445,0.5346996430424423,0.4092538042241389,0.5634740754952605,0.5834656208607679,0.5344648636255954,0.4651880010860913,0.3583349329851819,0.42093301726497245,0.39530340957754095,0.3445954351677043,0.54369674811813,0.5087626348819926,0.48344176431546093,0.37022763522215063,0.6101424686562454,0.4087030085547272,0.5052667242289136,0.45191572694084486,0.45295321638914354,0.39533406861270237,0.4031270202419869,0.543542069757449,0.578842193626991,0.5636296074461038,0.5061957648029908,0.5211982272069947,0.4469695076853672,0.47795015777996863,0.4108329101114499,0.5090398402667863,0.5209767945427384,0.5902115650896463,0.4305809448798052,0.6234762010213065,0.288323287989014,0.499851083807477,0.3696925751446799,0.30823887990957977,0.4209410639674362,0.49330447340668004,0.42582861670156114,0.5679646132025339,0.45632148638036024,0.5174443683223993,0.40569292026090026,0.4584882193616472,0.4520312381390713,0.5732999259580949,0.5510289862226847,0.41615120380959003,0.39440029488573686,0.38068827229671337,0.47078908829546834,0.4886482866489913,0.4655722855761506,0.5448950963123835,0.37842357024522777,0.6958286430247198,0.6308662350363288,0.49444764600940067,0.45228627192390364,0.5129925641006331,0.5293021869084021,0.47828116979916496,0.4707352889865002,0.5694935298107761,0.45924722519262334,0.5568946831709897,0.5109694857725835,0.4110660806826755,0.532333229231158,0.414865905374127,0.26925876365133994,0.5081952820891104,0.5687705115567044,0.34919354505867517,0.4185305980298842,0.4067173885586924,0.5806933167668437,0.4166485554037515,0.4018500760507319,0.5270781386348584,0.4477869486314272,0.5106505699636886,0.4163377428337083,0.45259360925881414,0.5175074438474514,0.5424110821226384,0.54758117769909,0.4269578412793035,0.47002494252642174,0.47647249645864576,0.4765059629569665,0.44026093635900554,0.546224208346986,0.46638343133796445,0.4224915700960741,0.42336698089143443,0.4712298246068716,0.4892019121771993,0.48875091703379814,0.5738310300886222,0.31184574857418745,0.49991255460549666,0.5515433848936139,0.34675465678817485,0.5392274167310322,0.29055848082660685,0.5581272984566368,0.5051876657614106,0.4577397049483743,0.6051680832407972,0.5128730075816176,0.4035834184534877,0.588318767376467,0.3525384843957224,0.6320576725455703,0.5190895704708963,0.3770002933959487,0.5068321564652493,0.55121066065792,0.5882199900167387,0.5046047513984472,0.60071386397207,0.5165821326429805,0.2905062867197666,0.5489294907571088,0.49825803141439734,0.4851889981978449,0.5447415849861504,0.376631387901494,0.4295317033988628,0.48513326724847344,0.5478514309924012,0.5349916230848423,0.4911574332587989,0.3740694615467314,0.6405329135688295,0.40529475582463553,0.42267947861654614,0.5462018654415789,0.3712915176352094,0.3543918135612326,0.49236982257076967,0.5277427443341932,0.44972333702954986,0.5198311150953809,0.4715986877883387,0.4716823059915923,0.32764308418675764,0.5856714774228087,0.4617625894095466,0.32943859707519446,0.5222954465236941,0.6086106784069288,0.5131779517969937,0.4732329895310289,0.41987784819043455,0.4576679797212965,0.5301590100651805,0.5194839435267612,0.48275152670587584,0.6436367329466488,0.4345090134047924,0.4895626284776952,0.4520851847067146,0.5562924632773932,0.5254064370446597,0.5616148089200684,0.3910584532790035,0.4836043394600642,0.42917884382428895,0.4240176657001784,0.5150487340840277,0.4410316618914283,0.4029027723369273,0.500909880905757,0.3561057923368814,0.5471216741125962,0.5267080546312211,0.36884737803836404,0.4081828470897634,0.584550449136865,0.35668194704102707,0.4017356200900482,0.3341161572420155,0.4120613673632947,0.332770141486798,0.4815807287001281,0.4447921608183601,0.4735112707680926,0.47259928612627283,0.388004528396706,0.44797248117686733,0.33379077999379686,0.5798290485665507,0.392047386945632,0.466087114489229,0.5878088878528338,0.4067976787380699,0.556667437548831,0.45128770600064966,0.4340741944749018,0.5348213555415876,0.3819747813726298,0.4267348008923254,0.5287985040199447,0.4761188905216179,0.5401101269809918,0.41588968363938933,0.41466854337786846,0.3778873369548871,0.44277744504317335,0.5055731310361337,0.40983119915540395,0.4110587594078794,0.4687732245360525,0.35726424923854805,0.4278282059210518,0.5135319544582082,0.2697652539935222,0.4276034359300369,0.49048551117348604,0.39807000551362637,0.5843513938884471,0.5009977061044952,0.5301555705630062,0.5726035913213144,0.43147908683470265,0.5357145159856196,0.49883019621651764,0.5083290636196957,0.6058776433181845,0.43394824571545093,0.42169132461954967,0.3413582746045484,0.5501668878625637,0.5642753484121645,0.4704485345235641,0.4910731453466501,0.5170806318017662,0.37849214874798026,0.5430273491976679,0.6048240102222746,0.3670087958869343,0.4331989387971445,0.4700937286019487,0.4505883837895222,0.48268939739395933,0.41422359836062483,0.5461610518853095,0.3841857596765994,0.4448454033151785,0.36126154693256024,0.40831615405347627,0.4073043019466506,0.4452135755791653,0.4537986467010213,0.5930363192556859,0.5024211438354304,0.5886704091438664,0.41958123733720676,0.45057268964419583,0.3251396877709847,0.5458923833456772,0.45905467320178023,0.4004401552046762,0.3400874244186668,0.5093762602761518,0.44110688517253105,0.5118610215330325,0.6141767736650876,0.520864800501842,0.41371063449297457,0.4862487368727851,0.37877112646864153,0.5167351283064733,0.3602231824095982,0.6074022786615956,0.44122270465625657,0.5110658695057122,0.5162901369086993,0.4818363201031832,0.5024272183324939,0.5896949121797971,0.4089742806886609,0.42196752954315797,0.4819803778915782,0.5192890031084106,0.35098518627236897,0.4042088719793104,0.4691809650945971,0.5235971746874744,0.5424198539174413,0.37536679378527227,0.445889160616489,0.39780602868701886,0.4393025010728283,0.4956942323806379,0.396934954400427,0.48587586621399764,0.525415553682457,0.52684672105128,0.414392881939891,0.4087092527536637,0.49631959032178213,0.45153007968933495,0.6196546382747279,0.4295550388879396,0.3728876974532942,0.47490905761833924,0.38663895006902366,0.31602099455066923,0.40380854902292507,0.38767342338132654,0.44569201905397304,0.448245031284166,0.44096481432346113,0.3608047507371124,0.4822580120426798,0.4303221181957833,0.4502364494395792,0.6233998797033311,0.5543152069911169,0.4975539262600587,0.507953574961174,0.5082622236837382,0.37483809810728347,0.42269635102481845,0.45030284572464685,0.48212050615064744,0.47472239745041955,0.5520959005086641,0.41215073602186353,0.4249876345789501,0.5545161575779552,0.4925045571973499,0.4646356799987434,0.49057097075060185,0.5581244104396138,0.4059297583426564,0.5148293760400037,0.3690683105346978,0.41929626711942586,0.4981097967445856,0.4245798644507629,0.4520758581439383,0.5538398557657005,0.4874516355365211,0.4463525840647852,0.4258094710802521,0.33697424293357237,0.5306576175662953,0.3587941721741012,0.5312522831265699,0.3633026679326114,0.42843591956515664,0.37923611428447546,0.5833879249959524,0.33062994037429355,0.38439962046925974,0.44156451158290777,0.3645212156668402,0.4461052355655247,0.4481822376820021,0.5256516097315496,0.5161301231547567,0.2407019219066295,0.4378638775361489,0.2845755826082674,0.5573764141505863,0.4776641834841314,0.5632293088804475,0.5648481193185881,0.4000206091119533,0.5488412300316937,0.517203655226431,0.45631984978569895,0.468965756693835,0.506259938442343,0.5148878681572743,0.5844535800489664,0.4216343121873796,0.6645173198302491,0.4486915359832704,0.46586261298902615,0.5251025517663378,0.35041736476140234,0.4014175032823599,0.5799970870082134,0.5768786708424378,0.4121099598756114,0.479524750909005,0.5403519006443283,0.4085546751755171,0.433257357685903,0.46611913891881074,0.46376440919337314,0.5604013453997615,0.4264596752165193,0.5124770605080576,0.4296729431193656,0.37451778318156936,0.43262340351301914,0.42527501698866055,0.4721913788487155,0.4233306566725457,0.4032850994902826,0.5093718638503818,0.35574815471521515,0.45982093790134426,0.38189427884769145,0.6022673376701234,0.45081026746907765,0.5298099788614826,0.43939656722188264,0.38343315454142024,0.5321932015780996,0.4895625316051515,0.4698441256100663,0.5248714447236921,0.4271003601636844,0.4929116711741356,0.4459683926680894,0.38728314290325927,0.45550461539870485,0.5832520469829926,0.2729770392611531,0.42267140256844354,0.3171904282743139,0.24329917982466967,0.5270128435553765,0.2632143665339996,0.5103751136499651,0.2746667542672367,0.5272541515321255,0.41059753990584763,0.47891193588188585,0.4981762193212411,0.44944109201468957,0.4203127058673343,0.41930432152642155,0.4006680161374125,0.6513048241538859,0.46183113401265685,0.4688507037253901,0.38526261147259844,0.5564757783260657,0.3145041367060736,0.46351220484521616,0.47617840550811746,0.43211698144805616,0.3423802076296677,0.5230839427307553,0.550525168978422,0.40266607016137196,0.6101058751164767,0.4797456272132498,0.41148574139050526,0.4811546109292782,0.34507539103916346,0.5724052837987057,0.6333158483372499,0.37887976954380925,0.41076282444699025,0.5186470138153616,0.42479694345744134,0.4978495892400639,0.5326260024353098,0.42175601412680247,0.45940886384704055,0.5036046111631987,0.43954827331654084,0.49476537240517876,0.4278743303682961,0.38712608900618456,0.383429415553376,0.5421896416091548,0.5080632968416037,0.5312303877103516,0.43171387943768724,0.45905147869829255,0.47141863418831276,0.298307627405029,0.38365633552473777,0.5995321048636074,0.5015698165351347,0.4400147735965781,0.4873216387298054,0.37589630648345784,0.48493840320152704,0.451251505220538,0.5372323517775297,0.42685186852075224,0.6267737313871441,0.531059318055779,0.5112753694799393,0.22890721502219932,0.4587274891437965,0.46242261353376624,0.47652486212320255,0.5359227306103361,0.3961188881906558,0.3925652500219806,0.5119982990644376,0.3616769551915065,0.527351866353166,0.4424164104331016,0.48439432720909814,0.4671968100036019,0.41347734189675084,0.5056900080115009,0.5051942028324649,0.6042555097975478,0.4686664969528949,0.47341892693962245,0.506157373218296,0.3802818310614757,0.36365424942629543,0.5019978486848112,0.3958398690924855,0.47769500025053546,0.35079175419125297,0.4294163051204152,0.40943884479638676,0.5468177174245048,0.339894608002524,0.43260620881782635,0.35497958600475,0.42652173466196514,0.39105656655122806,0.35326084716210066,0.4602072359969599,0.3327073704924952,0.5232120088617085,0.5843043100617769,0.471413680657738,0.3477460312742349,0.4767612517927291,0.4140229695612826,0.5477038816214137,0.5650505518347562,0.44582509745686183,0.4839073952396877,0.5367518190620219,0.5692243111494246,0.40069183432884226,0.45907205786968625,0.44376481236926013,0.42672875332934945,0.40641586056687024,0.5186822430555437,0.49838477134458364,0.40508003604042914,0.5608663801775889,0.38781115092127527,0.40624776388987377,0.5388814883450274,0.4229856351832583,0.45555177638325905,0.5107509440228026,0.47911784637760607,0.41348833786655803,0.34542468723357506,0.538254536087882,0.4258709314367538,0.4958057399626476,0.6221241060902112,0.4641700898508158,0.5657248289332503,0.6030650118083275,0.4431507369636691,0.3647595468200562,0.44905196071561715,0.5542592045473533,0.4090824422413223,0.575473703974619,0.5357493566272546,0.5127314757055842,0.20594543444548075,0.6026654767797482,0.45460943545356375,0.39385118711450817,0.5282878224070697,0.33731991305633113,0.4161478927184,0.36190567917529176,0.37820541376221084,0.37726513320101945,0.5343108114387394,0.46211037919749304,0.4807888061130576,0.5434051850149781,0.39308432286339934,0.4466087859173292,0.383084262895699,0.6431857263900019,0.3442395710437082,0.4284550254671405,0.3359732481296124,0.4796551608102643,0.3949505856664338,0.30608893630478107,0.39235269950089485,0.39312672038142726,0.43832855558789235,0.36224317750263246,0.536999941793551,0.46893683440778183,0.5340957855569705,0.44671067919200624,0.4553092497241461,0.3657721803307896,0.3849899456910242,0.3860288201449052,0.4334768703477442,0.47426391061683365,0.40226108986622233,0.4378214589872203,0.3676245807123575,0.5397483071976533,0.40888179416360837,0.48838174504071863,0.4446985074715618,0.33021702966481903,0.3407237786248048,0.556503985522547,0.48996938007994795,0.469010077897231,0.45974915159237056,0.33192142367386823,0.3923202242336574,0.44285682544658794,0.4301447046918311,0.5204303671804987,0.44843447931882346,0.31089758449580585,0.3666360672917101,0.561279787394799,0.3596083865109972,0.48058421777260457,0.7225918426686507,0.3924048148782654,0.5104227134024872,0.4254197934927051,0.31833695289429365,0.4885466375326895,0.4819511528643271,0.4565300294814608,0.630430099596922,0.42501114750475266,0.3797082611443158,0.47364505011285335,0.5158794988506509,0.4810366763731076,0.4201142228738026,0.44104657753862886,0.4144023941130001,0.48641659120322994,0.5784393531478246,0.3499962646431524,0.4938982068273185,0.610046336043248,0.5372847701244494,0.47673088547188164,0.5079987778531184,0.489395781480761,0.5633534520392767,0.45102820655917925,0.42656636350287114,0.5077733632504067,0.5038619500352076,0.43007919552452306,0.45371790731326755,0.34963216353638715,0.501997865158366,0.5214884543987262,0.5833684921270643,0.47492708112365795,0.3928235267679679,0.4261045349011905,0.4319301920720084,0.2636908232364773,0.48284104184444226,0.32167179322999345,0.5120873999218002,0.3711091696224304,0.5322881695446632,0.34938129273189633,0.3976748778115661,0.4253560495295181,0.29435321892785604,0.40625323916331385,0.5192907852074823,0.5433834033575722,0.5312753488206162,0.3885068180204643,0.45711636929327054,0.4767914763154304,0.513911645315123,0.5094751775556042,0.43308746657722097,0.38943700344187887,0.5008578817441799,0.31985122165974456,0.2875480619934333,0.41338463016902716,0.3795111861333809,0.38130449498226765,0.5221504364202539,0.2641694200146739,0.46570907194104455,0.45740043967212307,0.39310082169186156,0.6087724508697687,0.45191544459389865,0.49268149150498486,0.720692879200905,0.529273162578168,0.6156141165357254,0.46474287559358407,0.5233388096001836,0.48392328092443543,0.46212203472574265,0.379108560087167,0.5217396811203254,0.526954503359615,0.36832195365011944,0.4660088788288613,0.4523967159958657,0.2870722178849059,0.48641349712858895,0.46779749228711137,0.4853744812092064,0.42594984487630533,0.41146596204305985,0.3883654909246043,0.3584014044986856,0.485131624323303,0.5566686475775318,0.5641387088085715,0.575398479105569,0.42557352175966606,0.3791221073918146,0.32163874953521393,0.43664185902542263,0.45264602014146915,0.3793605885510305,0.5161810690078646,0.40252192609355414,0.44932696927286947,0.5630484308266905,0.5212665914479182,0.39792920955059313,0.4133156775697023,0.49747164224064055,0.3762833310850747,0.374623174078331,0.38180153634841607,0.3160959661479053,0.2697029445982459,0.5989376127127082,0.35242403233687664,0.46135214767820365,0.5721228639801758,0.5010721561726068,0.2942748557570085,0.5819025194220293,0.506262168993057,0.3429507461729904,0.42444491072067775,0.420910432647273,0.45795894897241424,0.5679001363991334,0.41254227626415646,0.47811521636346255,0.5711672661477781,0.42975079614701006,0.3653373761101213,0.49969584046837945,0.46803654991338856,0.44150501920980295,0.4017562010207395,0.5523618710704512,0.3606863534567647,0.4530161779180319,0.6051146785076693,0.40968510564978955,0.5443970226858168,0.4302875387704697,0.5273764691805773,0.4937541625558634,0.3950983411696502,0.4086240511917502,0.3520536781781285,0.5148249603708679,0.3418680446633291,0.3342726159496555,0.45180333990310295,0.34624018410001456,0.4568961478444717,0.5110111427753226,0.5707875141302157,0.5359526475839288,0.4263661811688861,0.548686021781427,0.3953580341438152,0.5419273032613257,0.4726744271967937,0.4673428281447324,0.3538545478701018,0.3898779536252383,0.3325002619897699,0.6544322859978446,0.47834745832615894,0.6282599520264778,0.5803285721506255,0.5465222235043007,0.6274757391775183,0.4819996564515972,0.37980139081078007,0.328466480498235,0.39917555653771314,0.47726355815097515,0.561779272125333,0.48531309144507534,0.44933421637331045,0.5816238561226393,0.3445436397321171,0.48269268381073144,0.27283790862983986,0.3610804222602962,0.6444743494239535,0.5046734305311746,0.44740106059736223,0.41134859610954405,0.44883319620406886,0.3653302244679706,0.5371576870391508,0.379029450708317,0.448419290807121,0.4870738533578927,0.5308930939566492,0.5376041173745751,0.569205054258341,0.5264564295794658,0.5407942367944912,0.5092635183228768,0.49738752639234124,0.5205699084095003,0.42978271714893684,0.48617507676571,0.3119226976596782,0.4823031755134526,0.5297004686933151,0.4563399227064247,0.39205770032769854,0.5499932954679729,0.4114377848453105,0.6192869759025301,0.4122277542365263,0.5840932081448816,0.3764825256019026,0.4990553726098161,0.487156210485643,0.5023611123168542,0.4930647837729189,0.32435168082371846,0.4730236678144369,0.4594256023059758,0.3604548931440899,0.4560552298320744,0.4812320131096741,0.5077826282427796,0.3532251142208776,0.43217204880209154,0.613210346297961,0.4996174611595086,0.5219181456828427,0.5356117411592317,0.47341093460730627,0.48463524713559797,0.5143655101602074,0.44079177975270006,0.47681294793472373,0.428155719546933,0.4138728243143128,0.34558618814845626,0.6144377885273684,0.506877166352916,0.5296733028845311,0.4288924494934904,0.35633716438824126,0.4028458452230369,0.41594452753154876,0.4047066058711013,0.3628794447479421,0.4826183332946426,0.5710163586154656,0.4829713420939241,0.4394073498163036,0.4330653979025292,0.43591806904513397,0.33264620649401727,0.4526371081957072,0.42356564848884054,0.4083160190515454,0.42299971716841467,0.4318478893626374,0.3899934627341689,0.4957583366238929,0.4907152664625433,0.44501577681221755,0.5544236621158718,0.49295555353229714,0.37020052094913064,0.4682076534862677,0.41866395351042396,0.35179241884938633,0.5988405979447962],"value_per_10_000_usd":[108.1769418969167,64.3479939023804,240.6165229229569,100.27123327685877,93.81643868136594,164.57684697978144,180.13766917713247,125.89164748696545,33.86590134797745,81.76572891339032,82.78927277290492,111.51839806406005,111.02766945610588,52.30416614902508,67.7809584947465,82.25392790693235,85.90386413057493,70.8127163164443,57.11451521312774,55.97490872456357,116.85608929140068,45.433656801981385,139.51763129947528,84.46689838294509,84.23889645546421,92.55995272158502,47.04130191256168,55.83192520285302,78.84031997143299,64.43204579190429,61.02721823324027,74.52092652033161,111.18617917965022,133.23666211869244,116.09906738520476,101.83061923961104,151.45560586051744,112.07486934299526,54.56683733090322,205.2099754111594,122.95798036093443,201.10991938016215,159.8480879669039,122.63414146239509,46.78410976603794,105.90632340416326,189.09366927236394,234.01440192379656,73.66890087934816,241.37071164005118,85.33898160878202,83.04937772182454,105.51932595333936,119.69197661124548,78.24780732247547,85.84558792176084,109.85602453831403,82.29518397908735,165.96833480620236,236.0181913453611,172.77631649217125,139.0369371037889,72.88645911816074,77.98224943590311,176.83011067621348,181.4978880625671,68.78837892391545,71.54210348550342,255.80996017403203,82.94027273898737,46.379687829898295,61.323611425455205,49.679059882823324,68.39359070421685,78.61833254083533,83.8938459923709,126.10316974732739,141.92039162050284,46.76178839605601,364.3019958809393,181.36710750113184,167.11333189002033,401.9485701253996,98.53967931065971,94.5293041778268,296.07625146794624,76.26262274978964,306.13186029187443,176.07791102737824,74.82673296022472,73.99089659335122,83.67865817001896,56.29049137413144,166.62062348210208,60.2122896446289,166.54578096353669,208.04379272812673,99.94179747308046,144.54518914443858,161.17936305160805,75.3307076264864,82.31073664643651,221.6321991238937,171.08142266164202,249.27446650954127,59.051530716819606,44.22846533080945,83.21197796302319,96.73892178325389,80.20232798942531,137.86843676844438,77.32523721852661,78.43703062938069,181.89395629925303,63.446117053690145,234.67587745048488,51.431788902026156,124.1136176755486,103.81711414237985,68.86962686561046,125.2851637824556,103.29799922601971,513.659821946951,76.36952987470386,92.05977126995523,70.64845946822615,82.17298312252444,92.58353887343716,92.06012973812663,302.34010129084083,63.675106980530614,88.39558450037964,41.60028175789956,72.29937493025496,96.90020292642588,94.70230905336227,60.60658639168642,106.64667315764822,45.37053305458422,169.44451104518285,75.4669504806121,233.836922517987,146.40602169766643,159.26023817220158,90.75539754988354,101.94733617085014,168.23375664099584,85.32571225070338,64.274272292304,72.91247978727353,58.89533144363514,244.4760496243464,51.532970230999744,57.0494788777662,290.5252500527402,309.68905989911707,165.04545694022983,124.38652034235743,231.83775953704776,54.89057527699763,77.63210626179294,153.4298208820327,74.63383752887742,384.88621793025266,84.07660038029428,126.43914117377805,128.5367450912722,48.05728552823338,125.53102611941573,97.96172147229548,51.46810153055957,86.59988748062413,156.7690746843165,52.632023637991054,92.06937241355485,151.94608441082468,492.3838393919662,91.75804526275623,90.79209950983677,46.37542145745309,101.41090861582799,64.92105790133033,157.94572187251555,58.503913373258314,59.36082026831089,393.7790993125354,228.17875233262032,158.18965982626304,117.84345503067875,37.348234849650424,313.06739509790987,83.11915368989048,64.38218463226832,212.1429384649629,76.31790996219306,186.5936042373984,64.73808884269641,78.52269363329692,180.85703079795923,88.78081307584748,46.41577873655917,39.44590259389982,541.9699570884198,75.37214748475454,78.54958513276708,134.7003801708596,88.1581108785449,197.93228103736146,172.55998934557425,48.96184726802975,203.85997368166295,84.71459723855217,76.18438801695382,73.23016096907004,194.20474350704936,176.80569125438956,108.52532320454208,68.87890213445831,64.94221632127932,77.16597325280388,60.13636897793006,144.2973736258857,160.59861238017143,58.920291498235386,199.9720958856051,104.05901093825092,108.97935412921433,163.64260141669482,105.94422997171412,99.21948164363414,90.59367523446268,191.28478220631737,49.30891521206223,211.72420893922816,57.853573860488126,122.62922644365165,107.13348158037672,98.82928628201606,88.13966057713178,79.36478800177443,385.90042808912534,69.57819137662592,244.0359926609281,69.92414133250539,76.64685380355465,130.62684847290836,171.3112886347312,82.71856328205696,80.08632304716458,102.87001241595745,134.22895746964386,104.78071633932133,118.58115067293048,160.27354350354983,74.02691645959598,322.0157327828532,124.11443760088099,51.05104654197196,102.3813462806277,256.8486127162008,447.3556465105689,101.49671193249117,77.47337744464454,60.303770146813754,73.83559125372479,397.44512762501137,182.07313454600845,40.73655194184718,119.45785447596971,112.5431402366675,59.046989416482845,90.16632269449147,92.53903347981262,156.81460948827205,1102.3030840253912,220.71533032876738,140.35248157910715,90.78935352340034,43.47783535407706,78.0554156373162,84.5178789685096,104.8721622089325,56.39376526422312,74.86834330226534,44.49760895954969,61.44450662258362,210.70357301012203,63.08372133634177,118.07737626388057,74.15676229457486,49.199889128635704,56.113949786178566,51.681567166871,200.4110421996323,123.47163697220326,517.7906262066626,58.92651143511182,62.40421279326629,162.55081657047995,82.92773902628844,67.81523339864539,234.38291522437206,139.83073421720258,121.29276999163392,52.86777294095295,95.10400675177435,127.76435901983575,96.3672514877157,43.642592531606084,122.42278381368602,153.05744773839905,610.9772569884232,32.87905113781838,63.54020701736509,64.49621722255198,49.15718421640022,100.79585493877721,81.45927948132905,63.84484418858051,115.53476454525781,119.492805500395,95.14233177295122,245.19252214557105,91.93542986714644,458.8344062947594,49.252246844174806,47.38072328025299,176.498763120123,601.0088082743382,245.83268225264368,62.94943831328838,673.0932425575273,63.977737605034704,100.0813976263079,386.85829725735965,211.7698488789133,246.00164060142882,113.08188244868656,84.38582594193426,98.05310526392785,138.00856980803044,44.72209431622542,116.76357328270326,93.99905153156325,52.78455592206964,71.48824940261777,496.9742672032973,61.830306273688166,61.375784596897105,240.38103441556865,424.45215669061633,262.44168996301903,267.01258997395706,86.73855702969338,141.84937464267097,58.1840326758102,56.07008706674503,76.80324262857393,193.74102869421512,210.37186487911634,140.84169075514257,306.53376471643946,107.68324425141827,203.10745151030753,200.41408786202317,49.47999516237295,62.156051849635325,97.7727634865953,212.02739850494845,65.36299761969971,226.01658799943723,122.31507685089262,63.66378757108808,157.9567166554103,90.37135667287426,75.43653228546084,153.8651617304161,57.8643551142073,87.74775472977467,100.41640788490997,132.07568916877602,128.32410170088355,129.6947667456561,212.2329431602636,105.37537763961862,141.56306427957037,49.69722386685539,42.21987523633114,139.8343678988553,162.32960627737194,291.2447043857904,126.42743465454053,92.69767101006106,75.53261209768084,188.4058513213257,57.81831046135888,45.479764061748824,28.994419418123513,56.69934129971453,58.14035040972071,233.45690270189667,83.04028625809994,61.962410818142885,37.8051106003918,121.48715740729487,38.663965931594554,104.75731777256892,205.08383571193968,172.90211138346692,158.27618984202041,73.72329919571096,53.26740623242072,144.77439218408742,92.74824634755763,87.89383091281333,90.26463290310522,139.87246948723524,71.6479428735517,186.17189738447058,79.62177980638337,62.21423530783895,97.65049068622656,449.1305055529718,116.12923307265162,93.97144859096838,53.5473275290604,270.0099592284137,63.016500223869244,56.4826036227485,73.29999070162563,78.93137187127678,64.58815618159424,99.17976981970929,194.11512699890878,85.69962449926582,126.99136635985792,51.238846951320305,140.84857549718785,86.66276752680722,83.68628870363423,80.41668652425294,230.57055687246688,156.82644730889763,75.4975836943536,92.98207241377409,73.89725182496906,63.492508638787825,246.25948545331752,69.66592336998744,81.54259369979638,99.60283498044721,132.03442809159864,142.33313545212144,87.65677926871484,74.8375391252317,67.53339564769261,78.37087574202391,116.38895484214511,131.27052277536956,112.46244545945771,50.38679715692476,64.91780421936748,84.80475661573531,327.50238040821154,192.2908929832204,106.71686219824436,61.16255157157031,162.44703924097647,127.98020320778983,95.3462099103624,76.23054713439846,81.63169900401058,293.2390307798088,114.1219116897424,33.2056475793828,199.4309986808118,32.288333397838635,46.06130835531997,152.38212871286436,69.02061191483364,71.533652574798,105.46289051972859,991.8602265533087,75.28733777473269,42.67845054308692,77.74095783391311,48.82787240953668,63.79688728865251,81.74878680812613,83.60293859850546,361.68914717917784,106.17201249088119,133.85061870173473,58.23842060059335,80.87732101192762,96.33325930664655,85.21703451593136,165.80429542946177,116.32093281566637,66.75374459254421,134.08305916853578,88.94699440552506,160.81685315217115,66.34392004025882,80.76084410478009,50.38994856135838,60.151422427402025,125.78995214107803,118.45890226838598,336.8666616607131,47.039197975708,85.50470131807286,126.5237461947819,104.73877263536025,194.3807943282453,64.79379320890386,157.7928641610328,77.51560833896588,63.20103173644044,58.55538394533125,81.28533437808291,114.3323838677895,29.49890302662954,221.83431609882723,81.69716841469327,165.04905609521757,87.1727001912291,193.25173701812247,183.47287344719442,38.80590638374525,40.51760864404088,610.718041502018,75.57397531206925,157.78093255624057,34.94063045913054,68.46567598972473,75.50432097584398,725.5914234542478,59.86957019081339,175.6287315813716,117.92463679955226,45.26114939329704,189.40009170984646,170.67382150822755,120.15652176157555,52.929279902500376,72.62850942701202,112.01200844558274,100.85133871893204,105.13141340285149,260.103485033863,362.05695552718,120.26450239434774,112.37360749566578,193.92824463801904,73.3797434200967,57.59682398043631,157.81092214673785,67.67013350459601,66.12990998904479,94.97671933575488,134.2236567422851,97.53987581791131,64.27663267723479,96.96271654422918,94.24365197750791,109.80813647014287,98.9143128049458,111.92237012763229,101.66276995798476,112.65570621854799,36.34624141991932,125.11207616160644,102.80774134527735,98.42939626283459,135.08833231584626,86.11721545226197,52.902906983480555,50.36679442292342,108.47158903333009,40.2522825845315,70.6098476968494,55.76448240633353,141.37580563239334,190.7145805597077,205.20840300912394,310.70942153527204,96.10889262794954,111.83339525124164,65.07203669914288,60.01931633105328,89.44009554347151,110.5105659168595,64.69675476431861,170.41899289792488,63.807887251245475,142.2453514725466,124.89716529702137,164.54179579066698,145.7410662428794,65.98344220409489,169.79322582011233,56.66755990342067,75.74505951502235,120.21612158751847,55.75197837746319,62.79206402236014,162.11325118861015,103.23532416905682,76.94773108407178,68.93592692823282,65.17073276240794,62.97939562378353,61.55781352850731,102.07184959617456,166.85593436521748,95.91981810601999,44.527186666999974,94.50415426297997,89.52578598599837,161.35961964956016,165.60764269346984,178.13740978641914,64.12609947008858,180.95081349941543,177.42040390016888,126.70124610265465,142.61189535927224,202.24501920697665,116.52354905264997,145.9307356132778,52.30898081281406,81.27595393529742,137.8033730192488,56.58233732415445,105.77567161997679,79.60521656253302,66.0270533879145,51.1171184008963,54.37988565106885,122.26663046139343,68.1311321447852,42.86113551324598,125.58621111524961,103.38963177777198,39.84084600421442,46.80856326482921,118.82262477510325,152.74131058390319,193.65682482680313,251.72225824294657,49.51265716440301,52.74536130782676,127.50296757536933,56.13278188839704,169.4811152590904,86.96999212452171,399.3290383592965,73.8890123882656,80.12692288604839,82.93904442582479,137.05223890792865,81.30326906036481,179.23005150304473,104.91812021857064,59.12546047072665,152.4646901795827,329.27115256607823,102.27017504154226,227.01431582752534,132.77902278400353,251.32077681374594,85.42251470165846,68.15915511091633,59.12978191600563,228.09911417602743,66.26604181723002,67.40712641470174,194.4325922828893,80.42715253954383,148.56983039542544,106.87492538087905,69.09187677238558,57.95966808968564,115.52508040651053,54.49402895578989,58.9519088108313,94.22236773582105,33.22130787543554,292.6891298598564,69.1758155222602,82.27334263664031,84.81144700536991,82.17245551108269,131.4096219316445,27.2726715393008,45.527835056535565,195.52058028024268,44.96968787505928,190.51286990399757,128.50371634872138,56.193615137092536,139.0887746345611,95.81955268147958,93.8939984374318,77.37612158332176,102.6320619711583,178.5079208684067,85.93490990534242,95.61909011730151,108.39975093142239,162.36545694415443,132.73931518115404,54.012178437244984,188.78559184787102,55.00128679419928,74.44812015838167,100.33978568062186,58.34672462034597,108.81195203335807,143.13971371918294,95.75174814097156,156.86553629227703,76.21335442358074,61.496864495208314,388.44355176265077,168.8152926704771,106.44933684160873,127.32213557380882,144.12492144614413,129.0067787824895,162.34109186865498,124.36686709540731,74.69903699835835,57.68357294695077,142.98996325104707,36.825077542690956,62.648603752227395,371.157684348232,83.71192476042498,79.64239849599586,134.5117754616884,95.76598480990354,58.640514851903355,75.45468765512327,147.99843815468066,68.15737450364432,92.57458618561698,109.34569404623552,73.82310114145997,177.15917563931887,75.1461211412975,74.98335676166377,73.3635817458473,103.1026770448576,116.86397811505121,67.09800662632735,239.9513585000176,162.8880186479675,169.97942986556225,45.27401871107014,95.11271660216553,129.81897019453925,118.62443923027539,62.87161312392742,111.8320292834521,98.57319754898194,109.23673933896274,88.68580076266907,112.72563935305475,123.41110311677116,37.00229433508096,91.22066366719811,247.57122918588612,208.47325456892835,204.1001298740871,90.59881592154568,135.38346650456424,191.0156436129048,64.11881615128975,35.96910399901175,64.14526834776599,83.02320700912033,173.31111655133114,117.39406554760882,81.30068607044478,158.58523237327134,70.10642774563041,133.55900985458138,48.4307763936702,54.74614534453249,53.65228870879954,224.53305200348163,27.288353571708054,123.12548094006934,50.50559706521725,151.56171720733397,93.4061062614239,149.25666633014234,84.13214420305042,44.30558910351548,63.442686417803856,258.09292631025164,77.14967343807466,70.321686843677,119.46506187198642,249.05313252873609,118.06647418389034,129.33519455126347,69.32088033597132,39.89403501700267,246.55129983356017,62.58395722419867,58.94385745253134,118.49072564822681,230.28154250894713,96.45190137511106,73.56378370244627,412.66408705351114,204.72809189079948,205.28226403035637,74.32504753626911,107.03508766894953,104.23942725273403,84.76909562922253,313.52771041477547,84.12528330990811,69.99108850196124,116.50140802510386,58.49897783689657,287.8396821546142,79.29202637933751,107.87738555537645,106.67205990021849,76.08534076136779,148.4016590529283,139.63617025073853,135.70116840842965,96.2058830415703,59.623310169303195,153.99799053702188,72.47938363079933,209.06214358394558,124.65817469742714,64.11161680123763,85.77900420514253,78.14869379912052,148.96550664944934,165.3527218691879,129.0164186999057,46.6484860630762,85.91426434973617,207.1186936426828,261.0688250032653,267.087491250026,56.218132764884366,441.5191410625902,330.19170731922014,217.6859898386628,241.61394553433618,125.41928638647374,70.28379570335264,141.32985624647867,97.5447496754775,60.6515082301506,77.0535515600975,92.8584831239083,198.02071138014307,122.54912887214569,78.4400322404431,67.38993140748973,109.92675922080369,65.97815734609664,61.82597474643193,49.20578960211052,80.21633583768286,106.447994938503,131.7001429622481,295.10041161188155,116.95739920664981,98.25716364609045,94.93665691440425,230.8321796362848,110.17597363115823,51.67743045733192,82.32158119486056,75.50700919384954,97.4468838908193,210.27111709817143,91.92580906553361,52.73086794974602,50.15027306016836,72.154484127503,73.72770571983651,70.77011094759852,88.78151900426126,42.87899952462541,106.91145497032285,81.47257995483808,44.54267013104097,129.4033802792938,54.366820439760524,37.996127494373894,846.790478544605,67.4944279817713,67.11307056569579,45.083870661307664,172.38249469798257,144.24470128573287,92.40664660901984,164.7137806165078,174.0175257675092,400.2172328278355,415.576586169897,225.1254151131405,159.21024843413053,85.39334267391027,57.2399305470205,104.50413266858337,192.5956236318956,65.84900847178226,104.48917227357732,47.50074430477976,119.88421492556066,139.50480997278783,102.68510744618335,94.15904946813937,59.07771066828323,85.2244772554221,48.343119571044134,60.98149095273472,89.13814560350139,63.30326545890739,45.76550522736961,172.60281379587207,81.33619686770349,38.9419189286956,78.3236820582597,76.67019936238037,56.408526915837726,120.39137675906944,122.24929140230657,136.8471348487297,239.71716801364425,97.32244771104887,245.89060546018703,371.266211661476,55.13929521146443,87.1616767205862,147.00622410108818,51.23420039259471,329.0538396688076,123.21329188805065,84.61971772717342,121.44596270621346,92.69879952449091,45.92142937006062,147.51336992807907,413.88496343820424,52.467858280376504,90.37414659714186,222.075776686114,146.99470874522393,60.251135991396026,76.15114437870416,110.76041534527666,102.49710000035586,69.20856666683973,90.02959192216862,103.41282993810292,139.67835447347173,60.47605142199996,123.17696008309417,173.52192628593866,158.53520287354135,555.6923775266469,47.1991161543291,113.77246844990361,63.011835462016535,46.212058743435286,124.48127603832066,245.51802604555212,562.2551518420958,71.40371307897175,136.04801341133322,63.847955083328074,162.34612855620966,39.44734295838916,78.90998008197738,52.65861930326756,42.05639260570609,77.25920298971529,52.48985352147669,96.62649396524493,70.28379637415958,199.19059566567446,174.05236767931143,108.9091661658514,71.94037313397486,162.45482655113858,100.70700669005153,150.26607015289093,60.396725030466875,52.32210502427856,213.41297205640058,361.50911951877936,159.38325338801056,75.60967125293365,113.83304388530556,90.63176632966666,44.67645542089393,132.91968144216779,101.95352687314926,107.55489426611415,65.56190967949887,65.31551030038429,34.3300569671589,66.59272748588805,131.12479685783947,70.77447727285092,51.59304845841592,47.37783303650152,275.33059189268494,193.7987434694677,88.88056592809852,37.234349028008644,176.60597009627423,73.57399251678028,43.1537857852818,109.36932271107707,53.36843182817811,97.011604572211,147.21209742224872,59.69004707321808,80.92162623205887,144.20583082212818,63.52947863724738,56.75980729837609,82.99586469355069,70.26237525430153,155.02581481751935,90.25499502032757,114.66116468369748,83.01380730463015,122.95293368316295,88.44103516333591,53.608389608815564,165.3064172595576,44.709552027478786,93.8313629780596,203.2728181363359,219.39572276657952,157.09298775179724,122.12010143568581,80.088730199244,90.18829028296386,61.84364760933178,118.08576404267025,96.87243263706914,81.83150191757736,95.66301869237796,121.45798705326543,304.0028024986446,105.76132048929222,69.7922087010413,268.2080040534221,93.8775517562726,67.49654159194084,158.52234520384766,55.73645103903162,65.72805489676577,71.3875138561389,77.43609676419375,185.2586820128894,60.031185253433726,85.78445278352382,160.32219155585247,75.75368222246746,133.22363278065612,185.44597913814167,92.43025249822124,134.28667203320742,163.45784837213313,128.12499640993323,61.742411021671,120.78246326778354,60.75968109692315,289.07231217070466,128.62034383780937,66.9375749170194,51.572036032328484,276.95282500285674,145.68430601623564,24.85290405869523,91.08271378772598,186.1670192348523,60.73448116681957,56.2193163724018,76.40720323479565,55.77649075635698,70.05928676241116,221.30364257174298,131.02182332439187,60.99388179358968,111.1832655642566,148.74816759385664,401.2637215285301,71.20381919113326,33.875524045455265,495.68502814457855,226.311814485944,76.48743779774075,167.77961410653222,66.75861809030233,90.49964651546983,66.0385483371329,57.99099894509347,146.34125159486342,142.20407378432338,75.89780065466145,76.06811097150802,66.05898768590774,189.26138695921932,550.6864060670129,169.5182848806849,77.54304295280102,71.35107259030957,131.50731234411091,133.98158323366306,58.888867734949365,99.7553673274833,160.38063523011436,100.54095747475296,192.5976465540828,62.03285073568099,130.67715950793212,89.75150945769781,146.4220924597167,149.30401140117823,80.73806136076782,72.1471831176932,63.325436802274155,111.75374573928147,71.31275809242082,112.02964376344704,70.69578356329792,262.68580991322,110.51112939382502,95.56114395603024,67.22506380112073,58.56202880403329,120.14562433747004,206.60272396601272,125.0858284767418,98.1969195673366,64.98010830344438,70.64528600403514,142.57344829255496,84.74366514193358,119.83372986146323,162.9819764685448,469.2909126265596,146.54461665871023,99.67895420047044,454.50969723927204,226.3567240891482,236.6465739698107,68.71948334860274,152.30956777927324,52.22370771711019,90.00614388673864,51.786487162689575,103.51076456559376,66.193298238191,181.94870458837292,151.37193300228557,77.04977394829709,326.6599045023589,49.44990213764841,209.16020514432907,139.2432591279649,55.68968191309173,137.70495431735696,97.29858434377604,119.65396823700918,67.26494555244018,171.47997117944254,96.84205880922968,117.96775463762906,114.36957136424151,74.4315764590714,41.79647512718094,167.97267001768475,81.2156842133742,150.34647930269523,98.18991668638769,202.0012826588138,375.80544171559774,104.62814457519248,129.6113408062302,245.97276482682878,96.93570916273417,56.594058852294914,195.0836847911314,95.85513055083868,217.33648841900663,74.51259050068609,133.4120804848115,58.407890495948706,399.8458914770669,59.021763910118594,97.34953348669896,276.2866221063705,100.65950441572676,313.1868469994724,66.8782809003382,67.23373540601105,59.69172905159402,58.90203339517735,76.01139129197311,93.47769400596516,168.95644256839904,110.68639487814227,40.95368591523252,130.65613426635466,358.8081708495045,106.12346032859121,176.2152127035916,63.87452397842269,38.793058948363424,63.77051339647349,116.94052461974469,116.30207004685806,210.88466278924122,229.01925452294304,53.998470792350346,134.1605443732994,50.37259385998591,90.19788998605544,219.5987815735628,195.4146911641503,96.2614861117407,60.317480465302395,55.779897033853935,101.4839777640936,364.23283278706714,229.71223330779281,158.15457437949382,45.75210090740087,91.0049641367928,218.06507610164815,42.54632185587792,104.89970777181748,112.08873693935476,92.79004874222346,210.25772483093672,94.65205769031112,99.95108183010836,125.37814610634096,72.20317777142758,53.532289712130876,79.26714485462202,129.84007432874708,59.317837696404105,79.51886388850721,53.83107808720036,213.6861827269112,61.9605814005893,78.59137021244403,72.78737563221655,117.13677394417529,250.7120017830422,42.17630767032803,115.26732719826556,216.1356796342995,409.2903014252171,74.1665743749169,109.14251924195091,51.957982825508175,117.94822633177037,107.83208581621349,113.61833214846652,44.13393943468514,41.51019638245757,149.2070072868298,95.61608542538374,93.50668794624718,612.3888466375927,110.43254870206651,110.99498391384972,64.26633792482541,80.49072199295333,52.29318858121094,55.9503511889614,362.2225189453353,68.89764039176242,72.15695258223316,585.9465671331409,117.88317126872286,74.19696379321405,172.78867593413386,80.06558000476113,467.2930069398298,155.92102933864197,185.82121416066994,212.34124763400553,133.37116169143297,104.96365518751011,205.78754441141461,151.7613189888001,146.23110349326578,39.47738734848134,185.18467659813277,27.811620724911872,76.11245750481702,31.933518390967546,78.04932851547207,84.88519148167838,100.42053760642797,91.7861183949753,92.04969594054356,64.01265876097105,136.27786202279836,331.31292507564297,78.37998678448498,38.50412254748118,107.7724890698337,107.04316367644182,109.41457691397113,47.891389690900475,230.03905363814295,143.23921867861742,48.55037026419386,65.6925895247583,94.13648191992034,141.92294919496433,87.40903512762372,50.07653596610336,197.03907454127932,134.2050561194407,196.4885452372429,101.11407561656681,61.88191041110203,141.47427448985928,106.48042591385732,160.00761593937432,56.53465605519472,185.37516558905094,57.21703420185043,294.9913997348505,87.54077903519205,159.58038190637242,161.5294584620331,87.30796344107534,62.86525722798845,134.14276201290497,149.60916446341088,152.55460989292732,314.0085740716695,50.14241161483862,128.73806277099717,75.66453296933182,81.6705836267425,141.6926296369729,172.72425398798345,49.82524877627397,198.7698704783525,85.79360464402815,280.29239972592507,121.44562019656894,72.6793998221709,110.17719262248278,514.062139149549,171.34249985418433,198.4952252560533,147.02534783406756,80.87817723118557,145.28104589984298,95.20270544661346,73.12509947463609,67.84053212017007,137.97786130886013,103.05050167445707,73.25729672112938,304.5501719200133,70.51122853927916,58.431537264449794,713.4939742243887,126.59460458364548,65.22324867760149,115.30911085494087,86.12762328228791,196.47797547650913,127.8340212558565,83.53236893319887,157.34652146734877,58.355355239896795,112.04975246570072,46.953024442971746,46.19456108417104,136.56010686822188,131.38110893122413,82.21351923042891,50.17340295172133,106.11783105761901,67.26925145411516,109.76633511481009,37.71839336926066,62.17466692707736,34.90576599263739,90.07673199729875,190.42894623177585,127.62219198843934,53.16018878789812,53.59238579258482,81.5868926721818,40.352626209058585,58.538175213375624,56.041535505220864,71.47708201993758,226.69214944493976,96.0233692291575,66.77618407560836,102.09627001131506,115.69681587785315,120.69991705269985,88.42867828554847,57.51295439145886,109.97998990771296,105.997273932844,152.71294063340477,105.92133422808193,73.34997866465267,106.61328110916466,154.75612959401786,135.52670445391254,60.73149910502918,134.0611475521468,67.60491409790176,143.1042492586761,123.59330495404963,122.02701121510167,131.14353126811326,42.27285078087974,27.651040206933775,122.46274282840109,230.63388569830545,112.86912497308012,36.599363738940916,112.97473539040541,214.7604137593174,80.69868157387702,62.35069727429717,42.13752686932795,130.47551440630298,243.47868830992218,184.7952440717966,158.56016476068348,58.5340237808047,207.5335297538264,42.57075908746731,238.93720687218192,57.8084100038855,236.5029012785078,234.98324840161217,127.10477783478476,102.5440707198765,78.980573037945,242.36706777214962,188.1319020270854,81.18839293273746,38.85409349563647,60.476515185169944,72.44181090237763,40.08470258820482,66.53940628684896,87.91710187726083,72.51368351775726,70.33038787784704,92.86202663818104,94.06053801860605,114.01195388035538,56.48806418444584,122.8155692264155,199.3029039327804,95.96916904096742,103.44510291656383,75.86779606798113,126.27064581157052,47.640989873568415,233.05243672628467,158.4614090134215,46.75279005352344,67.84897871664859,268.40899571472465,69.94987138537022,86.10306094587645,100.72538768903998,57.22948672875734,48.49565567797708,88.78277259674424,93.86392266454503,102.21337629151357,44.13647199217989,144.96834096639,152.7207188186709,91.28799786711589,116.62549094939844,272.3417486512056,147.23969248619852,175.27095059011796,116.49202010527506,50.77538321200461,172.7894392763821,100.66620749273018,82.64376703529895,87.46377573800719,62.92422129019657,77.57078410149485,135.6989419907087,85.67844048657555,69.36159105330759,66.90614609665695,51.908760822812404,82.55872498831118,45.96765070576341,108.42608889617533,238.65985481480058,79.78500233083314,171.07010855906995,146.60067962297256,77.37062935947233,49.17891173795471,72.87002695790974,46.032972733983776,124.0209706965843,58.41547419497877,73.27569620857308,72.74774540273233,82.18421373597916,106.81478181280099,39.415303429904,120.01848550235033,90.79735164463978,73.96514892400741,95.95074087553338,79.69065143842788,66.27024619268619,208.6539924371716,118.6652458502666,268.05364565600553,137.85563208349936,364.8639319900082,55.73771711535662,120.9272879362354,191.3260700172631,162.0398275533967,51.32738828098978,134.05259043061716,225.4587254168369,153.21241914178324,42.638753843388855,103.00614909452733,48.01622260490862,98.34294068272595,88.52872074783113,317.52771110154663,68.87980764032699,85.31133465806826,156.28444862366106,60.66595139384761,96.75012372199876,56.43126590204819,173.7783029549907,59.475354699034945,40.89355165411172,106.24076510887468,116.29496651593357,65.46342846344098,54.35890747415384,112.4246829676789,85.6592491045163,71.6679679346404,93.00451226020276,48.74712464645067,108.79062157993513,58.653841028305486,65.98281382117797,74.34945182678887,74.151454578592,155.95646100233597,257.6107380350227,68.28567527868128,91.63119958506539,119.53556098126573,102.70021418696781,55.08692637235892,164.5651292657242,171.05462966723826,56.29848557269387,109.83906106922413,62.02322508754118,96.424723562878,100.59913343994023,186.52054582296236,119.26436746663653,102.33430012824115,69.12664273893006,50.25240544320729,52.73131015324553,208.91705771765015,94.84034960788787,143.43498039353454,44.34124175293798,54.209326302063836,73.2886859555369,109.16984926382389,40.737629786485485,78.34964708046547,103.57205680520283,114.29328478738896,151.17362367846397,221.40830089419205,119.00451448378949,340.75582381429854,134.1749402102,211.10470513602604,48.98399180367211,160.203497732277,127.67569323903237,100.22515780325698,53.953848076833324,105.03341112392573,111.36877082138729,59.78620707038017,104.93374183026701,43.37294889623489,225.49705551637695,107.63225688342179,50.168958240101006,133.9387649939642,41.61516045338439,135.8927253264452,73.25574027959499,213.72493631167157,330.0742919130367,206.90086248716676,128.2966611699416,58.795970358558954,28.314351549712413,154.95441066946208,88.90897140325316,32.3784361696748,246.12525443513837,78.82635581290884,138.59695108971954,53.46376115851289,69.9156312103765,55.02397637183297,233.0821524951968,50.962852284903796,64.87760972044877,123.90018360067792,98.9403489328794,250.47841069280602,119.01478905495938,132.22796359378916,61.53942886856911,65.33414288535963,182.29368448246368,85.15675243663597,143.9507786166747,251.29432099182534,159.18659122497453,94.38337658850666,60.33924811810758,80.66722286691075,40.94938534417205,59.660306504092816,228.24694239170003,870.3244690586066,72.38539474669518,159.40456061915523,120.7627626421388,110.41315502278508,149.63697396433744,50.34126603825562,177.78140338056605,175.89357048927002,147.1669598195747,135.04614883451157,116.9477551872478,163.22047623050207,148.27241454733405,94.96345324095758,79.1503173133352,55.182276722835134,87.445244979393,179.51302213518713,83.02986809789888,126.15503879012343,58.2045591942977,167.74470904797602,82.11230080442205,183.96398261990566,122.10964088576127,107.5105058538414,62.836254445517824,41.162034878393285,123.47236997891606,61.852237212995256,72.49131791821311,47.08264108763019,649.6216595993283,114.19087665662208,41.96218979704494,155.39085989438686,99.52444384787265,237.54807129237682,115.34263796328098,108.49809238446917,68.24861956611872,190.6408154834917,83.6391112960201,256.96122282540136,269.67435921119835,69.68045209806046,210.56225123043947,220.15900168160468,84.65397180167314,113.38544795410407,72.87959423925602,190.4044511506155,397.7676883586198,78.3200448527119,214.594182260526,30.814493332219545,74.08009801255523,158.8719677517457,97.5831733510079,591.6816611741488,84.89044256903958,228.34940601862306,68.59564484471069,58.668768491518094,83.33484703080431,187.7224759163935,230.84454005825398,145.94616936818437,83.91943620678803,131.14111128646093,73.58094488303827,290.7161539660016,103.76480077473879,59.39707212188076,189.53881767002935,131.68940446126223,224.82930687210063,55.10983419308983,41.95676151917937,27.757593048700006,112.80619260265875,248.53599961802246,68.16286536603306,169.42344462950845,69.31042318794255,89.64702775615079,68.67465619888159,87.23832485448021,57.97400268858731,103.47113617394682,256.5461230035468,42.29889473416045,177.3086201926296,79.01725003624502,54.7082979430735,49.1485382138338,169.1754398998275,80.20467989472387,178.89437770354732,114.55333483353657,90.91414721116088,158.4460437839315,170.69536960151942,1207.5981414617693,101.71730717217233,107.68396763915331,91.04952884934742,366.3591440565533,121.7227049692699,108.01689976307748,71.38828598653652,119.5073025917938,156.98793769622557,62.24943271006649,80.8847949713611,167.53956070981954,123.07886913570806,96.03922197853367,92.932140409667,218.20807555288184,253.66422702252785,165.21995850198653,41.62038878894017,103.80607585212552,158.30024800448183,104.77381065859124,46.21076512927723,96.26519652648203,104.91373394624156,208.9062560931291,54.432630132901664,72.19954903572523,54.0542138772407,83.52491977149742,140.483577868231,749.477553858742,109.38190450767473,204.9229785134138,37.760571343763615,247.52165955718291,94.51141800116868,100.45193376362138,100.69684686857424,82.93934745751184,504.64214792144713,88.16964961713886,53.930107789611625,69.47621343920311,61.40958344968281,90.57432552323424,37.180219760216225,75.45430094843887,96.59956360381686,120.43464975808159,72.07202836066931,45.31993848261952,95.0187535246289,119.18335543982336,150.45899852424307,93.86876794898622,95.92936542904269,100.2497530265656,86.8239080144511,105.68432589808035,152.48519209977997,117.3371151691726,105.72204090989719,63.63411494922579,103.45671657543606,112.90566590543472,119.09444570903094,51.35732741253432,101.92681400940414,67.05913667510744,75.31392620888356,133.0857323909675,68.17687331225335,135.10225191512788,148.41128992381462,80.2407468800203,124.7497811785042,63.58183750296395,661.3456014381599,340.1358619690037,61.145858537231774,103.77762937539839,91.59424835643551,121.3251478777869,166.6921498294685,115.09540342124589,82.45900786471569,82.13991323487438,92.51275052526728,123.63543544552748,575.1458178925992,349.0805921696814,208.9248557905557,105.17257478550096,84.92595685541384,72.90574599900567,199.22980413157725,145.19952107856244,53.287348728504114,143.6453874719324,49.57905898968973,51.988896510254555,54.4858044132995,29.18804950811887,65.57016429013521,130.5725191459204,86.28449729730941,60.53944658073414,243.7475961281633,352.2755707790327,162.88330632516613,82.27597647770702,206.32602990492495,111.99809046602633,388.8582820509677,113.738600497734,91.22103506210985,125.57057345606016,168.39761990946047,53.133635926035495,125.63615855320089,129.92580456134692,254.3057145025354,123.76691515858602,230.72709992539467,53.86164839391377,196.6187641862796,126.03295283531278,36.07893871388854,99.8280615782845,175.24058978976046,153.68067926583646,56.41068338116789,122.6507727540276,162.5103310813891,265.3381232879028,92.2032655309085,80.4042245012048,182.1856214221654,179.27929125832046,157.67784611182876,58.95049036295131,171.70694675406125,39.916564758728875,67.60964031750454,78.31613139093159,142.9456638111269,62.53293101784127,164.65656552126774,77.78851475782209,151.81383633044513,88.32605504512311,101.34358907702114,227.18351790790464,133.16822783933762,78.56164563465123,86.88758832273984,82.48396951758328,78.53991323264917,143.1470064297486,85.03399067226161,106.74619555731563,267.42685356048537,79.0418834177385,131.42864006028424,67.68101927861962,227.02353817440576,265.44052460434364,103.45678821557743,128.72225338474638,106.73018004210707,338.73733317430333,53.32064543060204,115.62156566069875,245.13994404329512,551.0211297502428,85.76521497524611,67.32161149282798,144.9933086286512,27.89617593903561,45.544601704491186,51.51938050632012,176.91346739607792,61.70656383435727,118.84862537581508,110.27391622559287,158.39601376589846,100.54672824068886,261.880810559945,193.03542132017466,95.88011905135731,84.80617091168824,66.5824839757874,238.3048681758631,122.27716851299753,56.799766864368024,123.41277660865472,61.550264304731144,77.25489065568584,159.1880771992728,127.43153725980025,197.11216171000913,179.92576140392538,82.29010910921707,71.85444745950255,216.72192241201378,52.183876012664165,75.7243656865966,78.4026370666443,102.07879738087848,93.19222645118552,155.46836192837821,75.51260379336806,434.23490570470994,47.48154020859813,127.45362561940019,1573.1740641770455,79.8409876141315,406.70175746008397,52.78301980359339,79.86663551184937,125.64612923043398,74.39233490960598,47.13980293473682,98.35521871277604,78.89415859609304,332.0906442982391,62.48067754234755,54.755412634476095,222.54715028665734,268.14575928720564,64.95653411692567,151.04827324684126,122.84217367122368,105.40311954531956,195.02280286432216,84.26123290346322,177.6632078737027,213.5853180212107,67.2635904759725,146.8103062278165,48.26655839586015,46.876617467748716,102.80355464619126,319.20568937667554,40.996876386385715,88.39033925060815,203.21603041089585,195.77196837020045,47.26063983484998,126.20045860912127,78.17147872920465,64.68308030767753,144.85259026045046,242.6444719345401,199.71021580950804,217.06021044193693,61.54625448881761,83.23413796522152,66.75917011220406,64.33832684252769,56.433150323312375,66.06913207430892,139.78556666972105,65.1253593863043,90.12683205844219,86.26251389509677,236.17588933000872,156.09566712789402,250.6744296259288,76.5881106133447,125.01529936707611,294.0893144031557,72.07731623066094,82.24859190567906,174.6740442325366,93.10496051512304,49.30698857549284,85.69963277041724,154.87507728614239,58.4348777599332,60.172263258374194,182.98549549987808,406.2573861169232,68.66305287547283,221.77925111832985,219.45703837098705,86.72118937736883,72.1014607731913,52.407286421305194,71.31310821560818,188.211775267969,133.27231335470097,89.50803122948926,119.28133227524485,79.22612042239139,118.70825148474374,183.1211561603618,111.98749464807645,107.73352222675555,270.74966767479964,62.42109954583977,137.2371818166324,70.07890796463771,39.68778269635004,329.97010760424706,69.30985202569394,57.970185643243966,119.30751534319614,172.8622250703745,62.4623455037368,48.572347370478774,152.56759710341262,91.54054063277685,69.86817986340976,59.463007937522335,296.43795980716106,117.19547490106449,102.53755387666894,44.55276131526929,141.18700630313407,109.74933926119098,127.99661952957501,198.60584040864896,143.70561967534329,72.5762567803315,191.2412313407892,72.54062001186618,151.8180870555023,75.39310795756514,160.64434243842186,117.30423260567632,84.82242917804231,54.26346689390001,222.55426046886316,84.48920255451891,65.59563089158628,113.97319431398674,78.00747987163018,54.54487715828005,127.71014550716822,56.11637399880172,125.03894241860863,135.82258685699426,65.52937103875543,130.0803880228222,226.85680031110527,809.7941432154802,533.7397168483302,53.70882082990916,147.44470944002202,37.00544677298908,112.94787898054773,98.8391553681588,61.33247127429691,151.45117444827468,124.35796602239034,49.410659822792546,148.78934839713042,153.87038879567908,108.43832209728139,62.65414710244983,93.9118110656124,231.19560181935665,69.00072898832916,220.57348893539188,65.04677215285489,37.10457835128322,52.959880610919924,135.5417219301012,253.35708347375225,90.21173305787752,95.87905106838645,92.79752159597386,57.67773460957351,126.28512516475229,87.70392889758456,103.39854402560941,71.9144298733565,79.21936661410152,114.39252727085594,148.4875254436664,157.43811746983772,64.78602105084481,118.7231857878524,102.55971501808556,70.88393988246236,42.585432967954254,107.89675137593554,93.25317821962412,86.36416463422948,101.4706557851569,210.18748628422767,179.336007095242,81.09398073495824,78.31479404013108,76.64062040426475,51.74445075189932,84.2509279635778,50.12795787200238,382.6868314265518,160.3652797464306,58.94430787416415,89.08249292250123,152.25074574120987,87.00841417757927,388.14466524632337,42.73837109259864,140.52912420329406,104.35262192226087,100.91199231557239,105.98082900165268,79.06709709168784,213.87102031615683,78.20845807415787,227.9321596855115,70.91637086320947,89.80674316894405,184.58646277388343,136.54872465683385,197.5324256188209,243.52278438001957,148.5610781395253,135.8570398687377,233.20871079868806,60.7514207060807,128.04790397271773,111.17766263363737,320.4852358202094,211.36181408323873,263.71740086018303,59.92415977674168,110.35279911954143,92.54345618666339,59.62752554341795,178.83048417296243,203.76590278099275,50.62314289632263,101.77069087880035,336.1928844734828,84.23768910412882,99.7668507217589,46.10990509624447,95.45237259822909,55.21488239715006,66.28052887513036,60.214098665236264,75.35502753602353,96.13513025130601,420.8445796011699,70.11591810717188,62.32496830698494,67.88663403557734,105.34446572034304,76.58424350119948,68.87409292192166,158.6578600303781,168.38508568368078,270.060190898292,254.59105144168106,79.49070708756469,106.50887615269845,136.1191365508844,63.81612137962733,40.277472338022775,136.11463338846212,67.87256550613081,45.58561169764341,100.12281018967806,111.20409372715217,63.2118023790557,126.24556439573472,49.062247033991376,116.84002551036265,44.30073935540337,112.2046799842742,100.0301819932206,215.1731783169063,67.24264009780045,65.72203395561056,118.44973812900227,51.29539376596131,81.17921874945611,231.36916045537365,173.512008250221,140.0352914011415,94.87291813576148,52.64716006858463,50.602613825573286,98.19563940812834,103.04518646745808,158.69293542311107,127.28284592464632,97.9381805409891,69.1106148519218,428.90724486827463,59.4738362117931,47.418404177463756,317.0269454346277,96.24673120610268,78.9451215986052,162.1124984224734,63.97197969013294,77.00256751589332,79.51031449929306,53.86092113717502,46.7850223294635,136.684204680067,122.80099730828644,35.45078122587601,49.09467374744794,335.09976858838735,126.30676867819837,130.7824756889542,73.06872630072334,25.358296514365144,87.00101186845724,186.99448142902992,196.9037649390374,198.10235195157708,192.0232402247289,103.48075799002685,266.82559491051006,237.50714102999166,93.66945762083782,471.65667522953447,94.05982023423407,250.97818893943867,264.0550052788556,70.31604472864235,45.25897295127359,275.6920647428478,591.8167197013536,242.6252051390485,59.75802301244084,75.05332334758863,206.0706588284918,670.6502465097353,90.73320467451,92.50176065498053,124.36595414284717,43.82222836574883,159.50492043304328,100.5387132097202,54.45364330025422,74.45291269364323,491.00674924731476,52.97341429369389,187.18644635108078,254.51978787542035,90.34712868070176,164.42908413604087,168.1364253226548,148.77478516933374,119.34147911180784,195.7389688339951,56.86094469224107,87.76364460690455,57.015019347705966,73.48194941458651,56.41478727804021,46.26959272136715,47.747713374072134,147.1978382303334,85.5500860976252,186.3144218971096,102.14318149820016,209.60796634986173,43.44113141436888,122.32607988608783,98.1825018585015,70.23233005895636,91.24215514434121,165.6553040340486,137.47494873226555,91.55196143764672,392.75168499875286,85.06958710671334,120.64318149746671,705.912314377378,51.380679147712755,56.347189616750725,286.236400169998,93.99228405615189,53.379625546275726,89.73465251421793,122.00887520037969,79.75670954014731,86.42015712637861,46.83557541856426,78.13980791254997,322.02554600158663,53.13585814324805,236.67713420754777,109.70944879763779,172.81122265959414,174.84313270896303,107.6456608139134,97.18513637043286,48.167758861938836,70.93828839827397,97.45124611762081,330.45234256764314,106.29119511380921,94.07357467816996,161.52000005963524,76.08795582449834,95.44126146924766,118.25112788097283,117.27817765351556,145.61968375636968,138.3958885786677,134.71716471507227,66.89721180223212,73.32369708600783,80.9631703067742,49.33624111314539,124.40424110608267,112.33744715882492,124.042411729712,228.44700179383773,98.58680627603498,69.06563120013794,138.35502793608345,74.17623447120529,112.4886103517476,121.69679408875886,99.24144574816175,114.69941206390901,122.46146176041167,87.14291353127267,99.39730281089827,78.32909847450831,86.4510134160461,292.34011021178725,43.079404436055746,96.1808021160742,138.18735134646883,37.13555581022137,53.46690830858742,137.40919116089805,62.891341728659256,125.79206740989936,96.04807676021233,48.06235384603289,149.45347673130743,55.045212692085116,136.48271920242067,178.59579020034775,73.74973712071248,57.029174124674654,423.21437653772585,65.40652770191426,80.10725429550382,52.122684359762125,205.02803794306578,150.61074757558083,80.34661966279066,121.64116245732627,60.63555597639448,154.4873086691428,76.30162364856434,33.50801579448697,110.91780247750661,48.34784670132106,96.5901919911343,164.3017755522636,89.76286843712872,383.2203084448373,58.01874203988046,66.25400181994881,94.1841656226032,64.4929083174213,114.68706193469592,71.26337511327071,115.38389730212342,75.15380800966206,308.168867045508,93.16105801229526,163.60002643403686,51.854676099063035,204.3461183695285,124.69195274656713,123.33729944865614,143.62879754473124,221.43276813655075,80.25262699033496,74.38571239907134,77.0373876712637,142.2979157175828,85.52009551540554,103.89673759001651,74.82546617643042,187.24735095130296,77.06927958964559,130.7409193059609,50.22407734123996,141.11086653835517,113.55053019132421,84.37226597499917,78.68259202065575,47.38099779876852,85.2222913845483,118.2565503167628,302.65427562474224,303.9396892883169,155.2301731206895,67.90707977446621,92.24934217725428,62.38180809934278,58.75103269096279,174.30143358829974,136.83493603838608,401.681317966171,66.73899307457904,84.99368810757673,56.09981169866546,60.58297791832623,81.36243252203514,64.29440506068846,130.89041027452518,113.82408445842852,118.78129702183347,121.18873269637587,59.51415719342588,66.68819441238473,138.08563663753756,47.053581141549344,113.84321921713912,38.69008337031524,50.66606468085901,285.08662606939816,228.98876392941423,93.72989979051636,141.58199584316466,167.56802286913754,82.90768509724249,133.7151912731723,210.2175505704743,137.370586571291,71.90702871257811,96.06992131863962,120.02718112190641,96.10999665065434,90.32297541300068,73.79206490818376,78.18860104772757,38.54600601400021,72.54442690951575,608.0434107460753,82.9453357570938,143.7813973985883,61.68494681278934,76.31323986775135,73.57506465749995,206.9689643119811,297.7127868417973,237.57626797968624,28.13755327282151,54.338094205838104,116.00897719752514,69.90143951875177,86.79771228676829,284.8697543655063,67.50167095128532,276.92047059675775,73.1945646341576,136.62465074543798,353.69291284951294,129.12704615165137,45.72431578096266,52.480925826855504,79.63675525086633,89.92769620637604,178.16677182488695,68.87711800619246,216.15360427114655,80.97042087700227,55.8596908027291,45.75017018683908,281.78815111227277,248.02094864614833,187.71087189454363,387.9011263959462,55.260623704716515,136.4437076354742,50.39115576557451,82.51468331624422,86.34960480482155,227.09155520949687,207.4020670661903,71.16891052970992,47.534314690036574,193.76425479020023,241.81143036474364,143.581779008163,81.28997021586156,63.79142521785789,67.41053120814189,53.861841598723835,55.82819738678887,62.05561992545067,107.05300508929513,57.14827606141787,86.41181844195843,61.05684785594871,72.45432120040863,141.7430831211107,300.3777600710445,89.41476661362812,93.9812670588578,119.3224975882251,251.12581232877508,93.85254752523153,51.83150656747028,137.65527426675922,82.43405277676851,46.44267916170375,43.88933814245446,106.2327486276375,209.98401488321335,82.12417620537623,75.33311963921423,210.1437894105414,82.42922622684188,78.20654712399855,54.247746623429386,190.14441636945568,99.68045692415805,217.20073801365146,95.66507630108613,91.38054118553535,179.70556151903995,209.554643817771,88.16376780038728,89.48567106483037,118.93259928749833,224.00797559694067,152.93882167127032,408.51310292796427,160.4643231966315,49.17857470851339,222.23405441145496,108.62992720552485,82.47231863272087,86.74310072279518,174.7382336033029,91.98245424603128,91.86098455003932,75.98431116193109,122.51053834685582,91.60799599729943,91.00378371376584,84.17760700691483,207.8749005255796,114.87934859966572,224.19116746028797,58.948353285787576,36.426711401891,195.18730872867522,112.3832633098322,55.69563830807087,84.65802722722567,52.713122027731124,89.73486099217293,244.1737674661547,254.05915160142786,32.29852375892644,54.16940345561255,128.77499573577836,94.29404955481758,333.61991325323504,73.32114137971345,293.33317829094375,34.553901993807266,106.28201757062502,244.3703469832691,61.00945050162157,100.36060397433803,186.08333932191914,101.14980474333198,32.55748703449508,62.00137423324416,45.24725527089249,175.48119117566986,101.83881364362125,192.9603054890301,74.90491234153077,182.25085877864083,44.255628816693644,114.2489302402724,186.65332475261584,155.3948672395046,185.74440231022672,129.07965748468763,112.53203217446355,76.37119328171639,50.23964270128048,53.50357605208217,164.7175672142853,47.71468888302445,44.05080931382041,69.77203016621061,140.67955456346766,101.18647798106996,74.47809186251118,107.20765802088641,137.81198960170798,82.60978741488132,110.02986135945575,62.73008384736127,225.77241407130788,54.73470894375536,92.94473614663798,56.396933637967514,155.52074825092285,128.26357517788975,105.62516516040706,65.63073893358451,44.80887685464486,69.53904226197744,116.92405028940927,80.61866883059412,97.63161343207268,266.31117007539626,81.49842865294431,433.87316169608584,84.58371502519348,40.93645208136231,194.7069312048109,85.16136107170745,144.92337902394064,178.85368416915986,158.3350510832409,94.64966487051277,53.68596119911977,132.81655899452133,75.29578905131919,112.18861654668224,35.72286197054012,51.59939134272868,58.971083277833955,362.4863648534363,126.89262702564798,74.04795805342721,134.5785163345129,137.93391522996563,94.98871241973809,59.411949204164344,179.67034057903876,49.611734897540124,324.5126445121803,98.41387723200577,97.1739587418684,146.0847380107587,84.347638907877,223.43194362681527,123.55928348141987,88.99781375520715,161.8086348454327,517.9500905620964,194.12581044040144,118.36862183244138,147.1283506302435,71.61742904015802,562.6193747437654,128.62183380252026,152.76114068149943,56.52675544209238,131.84697199052223,134.80625235277478,289.1603620519697,201.8163876082994,131.0161523310175,49.91433545061044,101.9539444334093,160.50655176170596,178.288821018791,170.49796162500823,292.20955848989547,64.0631042385567,52.514122808813696,76.40845544008897,59.87877538449113,301.4143817572482,76.60961713898382,134.81076813761712,96.8987997805306,87.8526733493767,152.1476527166682,49.764133050960766,113.70999698513249,172.52721706878648,72.58904828766546,113.26513205918803,569.7559544220811,89.76873098336092,63.32762384193006,156.60808912141295,79.82883200780246,57.33046029840483,80.28717888108085,103.79442663130733,41.510574288373505,317.75637473786514,42.17631818272315,43.64278355246331,66.84108327578663,159.89439535021003,80.36846348145883,151.78858489270684,79.55490711606558,83.17041531066603,114.4852065772417,94.5069935053866,613.2470465871727,148.35300551738732,41.954979714057025,168.54489975494266,52.105576880527124,117.4529950917136,93.71254790539845,61.04709619439513,129.09130879361442,247.65256033952997,42.99112763438255,97.76920962166197,261.93452561977455,63.80172747667041,53.36647413377594,45.48537602248949,92.99907659879486,92.3832814489096,267.0767149437199,61.353644404488136,126.99887035452909,145.78093505040752,62.067335652184696,95.09591311940797,40.25909874585218,153.2956086176422,64.5688593482031,31.822141678897804,87.27060324885115,76.32847820055267,297.7108277261991,219.8190114026812,488.84248190022043,59.46482688481872,62.05487452845456,158.8735697753843,160.46152103070588,46.28992252436712,53.158239046566685,171.02649276425626,172.87544493635676,115.40382674781073,84.5645797796402,135.22748075654624,68.85469658524342,185.9290885121462,87.0936656595369,74.91199170760628,92.02071664175948,60.749477519112915,68.35711646436111,33.19321356423251,40.832194760284054,77.09733317383657,129.54970385780183,115.84602584454642,555.3065719644231,160.12126205252486,306.33849149824965,94.56529904210379,161.85268143293166,77.82668298339587,151.2484770232269,61.667413096705346,54.97100883081102,152.27825382210247,242.3151711736878,82.43841451962325,51.127583389944306,106.18912822856976,87.23705077155563,116.72106064585127,68.60075013703364,262.3376855181513,45.71336373452728,126.24592232742901,62.31995072048416,300.0158541256889,63.429589982119296,232.51601641427146,83.79352049640983,114.40408785957419,75.9541379136211,248.78941054187402,57.01164678526106,84.3528087115174,79.46413963743089,133.8593284002735,131.58154178867727,60.07529212950128,32.70980049182791,108.26821216949958,48.7847216946501,98.22410878057315,73.72925295747258,81.12336635860764,325.72646965180684,245.08948641493262,125.38658895040295,111.19185623806108,77.3608767623458,60.75543408589298,129.04172564700932,122.10871012093624,52.403549840053664,104.72271372741919,155.32015848664568,112.68461055495537,31.76782089063474,160.9260680846518,69.65235734646367,87.67957763455301,172.81838895082856,145.85691615680537,169.85162051963275,105.58425416296743,86.58015600512887,123.22380168701699,60.78105540186831,113.14429135714398,138.9476339048384,46.756317661549055,352.30399357357817,119.32079153643662,118.87049642456515,399.90633939554584,110.77025707142334,100.55896170718897,100.2242968125547,246.5959657119532,54.97848406421568,99.11173928962619,63.56923209216221,74.20315303071445,150.33706747289207,192.07188108372188,78.41205484113638,92.62816588851118,124.52153231183698,112.85693075089279,58.578878312857825,83.87308807703518,245.64115237449613,48.00679492004809,85.00388707591681,168.43218703879432,91.15944359154302,66.31946548059874,72.49721999477035,120.64138206618556,72.6720874931176,112.58859380520887,396.3633873107233,269.3699248219311,87.66866192309959,75.24962171036215,167.1145780709656,81.15879909108264,92.76447307301461,66.27796300848647,86.14566302956622,189.7965405144653,80.78728223462991,90.73022172667478,53.40887041587737,103.62942124341309,178.12051089847608,57.99544526114207,139.9591716993806,226.89293841766607,134.99058758234426,171.26615557401914,61.16079290170434,58.25275469666536,80.6612101683925,92.96352705211326,93.04268906464604,104.24050292020456,73.71932162227361,133.88809866337886,362.6544024157669,151.73660699858308,45.38616108586275,84.88299183523036,198.96443298746652,67.3351857929972,269.8416792070672,112.84960741546189,49.76985383624675,57.322050111771055,79.0314900921997,101.45986106722803,91.79524540083281,140.1054798148672,40.88806949650762,53.18337198877328,62.24122906398029,721.8422917803767,37.11329569743502,68.27005650887406],"multiples_of_cash":[2.261320278576972,7.508984106178452,10.112734489398571,15.189931851916638,22.0660553422239,4.045802970757478,16.409832356226858,13.904831847960773,14.560226743045565,5.04531221192404,3.4760146026341583,9.546491733405464,3.1342637560753244,3.310665692807688,12.180223302172683,12.556668315857411,19.54509620601936,5.472974108474738,3.411443019605531,2.607349863443046,33.969286383671296,2.2158758744526836,4.982878981829939,18.194762671979426,6.091805151011773,1.6126508353908522,3.544525279663733,3.0037650322408624,2.896491140140524,13.129194376424453,5.715453559792977,10.669224490465945,12.255960565737302,8.464709799056406,1.6235931847272345,9.211739671197533,4.232263239370392,6.662977034700149,15.734472443207661,16.500943091328168,23.35302556379627,5.4715282261621745,5.903115646124278,3.4899753612711977,2.5991215489162296,2.5258803941796515,15.542547724498242,6.228490000849822,8.583036556604666,6.760687048111168,3.144796267272301,4.5236803398760825,15.09421000175775,25.873473134702408,5.809362787765536,8.319188658386945,18.5332208549799,2.7571884781727363,18.139367975054355,4.5337911082183044,14.260691830785976,3.216348815739209,5.35948899702565,5.376927773217459,5.549860962828243,9.861536826955568,3.9465955356791653,4.944862852781063,12.751500025474138,2.79540745750734,8.34393415432053,11.203245490278933,8.574911439468158,4.673761668386112,3.838923238030119,4.857079017030546,13.81322713846576,4.751005693882929,16.992623571163936,26.004441034322177,4.403404906935624,8.31782435207008,3.0845753196445695,13.785547281942767,2.6982610473671893,8.242106336928417,4.39609909771041,7.57244543318736,6.25398652167601,35.687603387968856,11.965071115195268,4.238736817176757,3.9303912531832275,9.35894196438486,2.861380865194393,6.626041258585992,8.599954812207276,6.55323774238801,9.795063001261422,4.369371443870449,3.9790690227015673,3.0803433769743678,7.148685536327434,8.587821457135203,5.647553543949488,11.04266399907971,3.8255144038893687,8.376231193029493,3.861140108452937,7.7116829137582865,19.192602870582622,7.24157687284657,1.2544466129063896,7.9674938970460065,4.643435477846726,59.7105686509275,12.942478133786103,5.632676737502045,6.2642651148349096,18.866820358733975,6.707845530561161,3.2733453293811805,2.215547335585517,14.49709869478259,4.682889283237203,11.37058344763939,3.101718641655729,3.200330954387479,7.7811688160330545,25.53893333469153,4.902480915733287,12.00439325053466,9.911446761537263,19.396249747897386,8.310330310562069,2.742725371610003,6.449114111709048,4.2165762567680325,2.5948763892553766,15.696302953028601,20.128107472802824,6.051116669207233,7.526481279052287,3.2246965166753134,8.01775289945412,9.478126191380396,6.016760857946292,2.1913597926992483,4.614719831500145,2.5309803173584675,7.034832910293919,17.963268319346696,2.5923852509170775,24.00323245437759,3.694376121321469,4.716394802915249,11.514414569223211,4.452332919662474,3.1201884769255908,3.625387882928949,3.2923429992918716,3.1338925618671443,5.531371389074403,4.7969180287561395,8.378101504223554,6.29148063650747,5.651881352270783,13.42219731151811,2.41076910991325,17.56148134116732,5.225835561564932,4.04481624881175,2.6721787050751313,4.012070040507142,4.228574463274036,1.7998750223011635,4.189187962412502,8.177499714433504,5.805413296887071,24.943416723041793,5.629512809161595,2.993615842138984,6.306184448860795,3.2258662712321406,3.7831317527005752,2.0070021461868666,7.5546421247624975,7.800500057035994,4.07805025616123,3.7951356885405745,10.59071335248763,4.840556973453048,6.015061444318831,3.8348312239926114,6.512338638114912,8.500932287413873,9.40656759633363,17.25901391936427,4.010040651272332,3.012677763868136,3.1905770438530476,8.15008976589608,4.177086714749435,4.931616056240953,2.0536434107929087,2.36648489942036,5.41461585559696,8.316937732336534,3.3305193088865583,5.185596408739585,5.479578616085653,2.217310277061708,13.663447934130554,8.622297951448571,3.2971257537291256,3.992403192730033,4.952644764584469,3.6966110055251598,13.423336086394789,9.533728569149563,13.252329895560386,2.314871634702561,4.352264733669853,3.56178648850686,6.673715709465709,4.18357438481238,17.205882103070536,4.628875496419058,4.484571879956724,6.683716300280068,7.563442992237992,17.767555991642116,2.7997490047767197,3.9729436367891138,4.715024607427249,4.175697514865616,5.942658280787742,56.16724043670637,2.37857923666377,4.329814469542368,10.443583033722854,9.934011083274154,2.79978236782484,4.476487268270495,5.285278791164302,3.319519796827009,4.008070299430005,13.819034689956732,12.62819269607751,4.790931224470015,8.044372411813209,10.258260849299097,2.9023163646409795,8.013262233335594,11.31220460829352,18.52654833626239,2.883819547109797,1.2358655591827985,3.4976128837605915,2.010649592455655,11.286497354063345,3.301050349617016,8.862992552524188,11.93444484805259,5.452843435417644,4.347730573865703,8.1506451541309,4.116705026264079,5.480689376648667,4.9641040370056055,6.417033798902413,3.001525534132017,1.9229488450715102,5.086025730889041,4.259551125401212,7.508044289990801,2.680044339545286,6.731668725404288,8.890479080918098,7.384826226391248,5.76195250677362,4.622045244672513,15.320014525347878,12.15265041920996,2.132705262425904,2.553936614121323,7.625282101096607,5.415732690705296,16.031678537652116,1.482544910437946,82.74253299331434,2.663522551346438,3.6008141002399316,10.045177283986336,1.8525816230386587,7.30146993693943,4.001081968091521,2.4188212827378073,9.577503554041018,20.940247454468214,3.9326252759011378,3.502443104409233,2.476046931879064,4.894176111606028,4.610607448636081,3.6224419880755456,15.159485344145947,5.4845232161409925,2.30920957825895,14.343778718790315,4.1051230984107,23.32688555312755,2.0736036084215415,5.206235426566295,7.9362845647493225,8.055157167946927,4.657512248995461,2.341583937582369,8.269902684728589,21.611273927799893,17.240649470090393,2.2059869659677864,8.957543584481515,2.6824407610279235,3.643294873374536,14.62457704680534,14.1801312146596,41.150483844041055,8.496658464967748,39.00495619931152,5.434056434307675,7.433253995128556,3.3546754873772175,13.310239083069868,20.162947984974817,2.507878150309355,5.386929435373051,6.52204743891116,3.8255015209485452,5.711616437867604,11.685580778228674,3.5982501551739405,2.8931845054398337,12.80832814547395,8.450774150893519,8.813064858919924,34.66674580933601,9.484325780362461,3.395104199000365,9.062776433679009,6.380674085421738,7.854992128995909,4.845351355412479,6.780874122730115,9.708482505760147,3.4149878796057966,24.49067074373515,6.575223526000504,5.353305080093926,5.622763865626456,6.145385400354337,4.587344280038006,1.9059930652909869,9.128192483040769,5.303108082438512,6.439167884504265,11.448537928989792,3.4436645406800452,11.658978004855872,7.914913756651627,8.403316871644183,4.750450258087623,4.1910194464768935,12.589868686899797,9.0608907720343,6.5369790363549765,5.024511988283792,2.8532029449662004,8.930063100640409,6.3334430088379365,14.698966126145057,11.02171172876918,1.8936136646393318,3.45095004896306,14.177612802915048,14.998814609581382,9.010704056094973,6.873979744530396,3.649908611447222,20.703405729367294,5.0048966969745035,2.84446241009846,14.76086139857031,4.5011767309871775,10.96265507019114,7.711889824171373,10.271731279722667,3.124506699676844,4.796564251696759,2.802141752703786,6.3022287485088855,10.719192396810897,10.547594252880684,14.769690905604856,9.579028449501548,2.207109979101878,4.8783872281323575,13.82895688254835,4.325686795891358,5.574210073105151,3.5549565401333156,3.2128619422000395,3.5758075014442485,6.333531968420648,4.815431511818638,2.6971383105325875,10.77978730236993,3.1609784473748244,5.918961384878709,3.802573868190607,4.052793518314667,3.127952810696843,3.114633860536123,7.058351219525417,3.1733588919113305,3.4291769051306655,6.94781355349765,2.448738504161444,4.700044854978939,2.0694887703723066,7.241238084497664,22.966626858098174,13.107110369913865,7.11518022981126,1.3327971562136598,4.452550695155156,7.599327629575249,2.842323146717166,4.961100907251997,13.404931455373271,5.445512474172855,2.977914427331931,16.39987016768218,4.056723775141658,5.094129283495462,15.580359490787268,1.9900552041998363,1.7664610205159266,9.464260161483281,47.722678903254376,7.913209235427715,9.879657057129672,3.3951072908466084,4.369533438755008,10.644264319338491,8.864779374325224,5.182938844089151,6.2436942446816195,9.638388634531832,1.9340191055181533,4.5123696424490305,6.543642844128221,2.9782935361524294,2.056460632845581,7.747423225147807,29.362577325216293,6.409100672506473,1.8997950679922406,6.094151668981895,5.578908281811736,8.032263446362283,13.536118913426133,6.10124653583784,5.408192687694554,6.247311364747089,29.7778136403924,3.230799801209848,3.2277120934741634,7.258397514496615,2.24547542683194,6.388744462067326,4.154881266147406,3.164344007309667,5.016201281727721,22.257018051234855,2.3278244812074473,6.242126285611798,8.749455783090198,8.4818675727334,6.146943031017414,4.797517762293245,6.415028574424267,5.050063189084,3.5151605355305584,8.31463606948303,2.846721695186224,5.903013711852343,5.5451415126634584,1.6265802998901384,2.6801766529272166,3.722731709003832,20.9165545530696,2.686837751798737,8.072353831457573,4.167904802962073,4.24318578674323,6.766727584264734,4.141128168877111,4.9526973370636425,24.425241519261135,18.582864702202112,41.69241099211077,5.4393796561194065,4.1629825661758675,3.7394148102753038,10.847238227113339,7.823855517474521,3.4086321365359793,3.0899352135727014,7.276335640779954,1.3874783426584467,17.598207696170537,2.413842763519475,9.586834631687054,9.36820875137915,4.10849859588881,5.020430837984729,5.096152467414952,7.275522028073373,5.63951696040489,6.9241208435770245,10.479612119288126,2.301344002754341,15.716509875987068,11.122887522029432,6.18924695365559,5.540198616753745,15.555490556593487,2.624337564214916,6.661321263377885,3.854877188245396,2.1879864887198472,1.343967401672973,4.36141977776427,3.526561990433668,9.923354647896577,3.6380687335318034,3.7837972611777033,3.7743765534413867,3.8205524991066477,4.955828559300881,8.848371157722527,15.166874857971175,1.8564897851059508,11.738491193643902,3.809692603500471,5.045483587012507,4.39860958078224,1.2029662762744304,9.00944525261152,5.938078715939601,10.324059400577918,4.3617538388369725,6.681996420102104,3.9573089629433054,7.112989466086946,10.257886911127002,7.068440506294899,3.9592670778457624,3.7175521236920446,3.353316975018793,1.9626093894448304,3.6122661315971527,8.633223738509242,3.052878951657533,4.923419644030062,6.901637095290521,6.6466348199672955,8.284048114065914,40.732438619902545,2.4398350651262897,5.01954935337646,6.863446086508369,5.215345499409318,4.750978886035719,36.29625464855711,4.692058668598449,16.949565750459335,5.142099458312565,3.570691794146803,2.584291061060627,63.871765332594286,1.8091158880985685,9.589020127061898,8.271605690059689,1.6796516730124655,12.475371813844193,7.8475942812077255,6.206752022961596,4.510084832264131,3.034525869118306,11.209568067907345,7.559217719105805,2.3140652614873547,8.54546803329094,3.2578568260763747,6.431015572980707,6.9505896805780925,15.763457919445326,10.302848877290764,25.047719151555302,21.478746470393094,6.069797100442861,2.631640760237207,6.363312501568068,7.908651136350066,5.250198575661246,3.576189809049059,7.210084756631265,5.219599222325401,7.608955013782442,15.52688352671795,6.075046288784907,9.014260077683854,1.6991546881804271,6.04622835579613,4.847121926353532,5.222100320343901,2.855845268104436,6.364903524758466,3.1970466266169533,14.57569699396213,17.064485151332324,8.662188385975073,15.081183473358806,9.273798202033143,5.486610642683952,3.1162636342568955,2.129698578087962,7.12469345248023,14.713969901189142,5.101051891068588,3.302378794258674,2.7252980834619596,5.162504996978113,4.551425726636529,2.3809699077779456,27.730633948916868,13.543157463608775,8.839941704008424,10.870809778798273,8.34915118154367,4.683600492188913,3.1852388374245315,3.591719881507519,9.623145849593437,5.959540800194244,3.506174523586521,17.500073817316398,6.6526413599119785,3.8582923228034063,24.92380524955799,3.046649338773478,5.970021824719062,10.748623896758271,12.879968822847674,10.86377525864311,13.46399145405639,4.988622502974662,2.453619650795102,9.644243402388792,23.505513601266706,13.452706933077756,3.6436835284574536,3.4245141983546796,12.396973802631164,17.374746593137644,6.453632971618665,9.534231132424042,2.848506625786619,11.794034917143511,9.876816508162904,8.838348923811472,3.224413384504102,4.0950487032586915,5.729445139951743,24.86320937533886,2.8970933585999816,19.83446487068708,5.4819332929508855,4.986795481850799,7.329036111366585,4.459065950337679,9.586035798063905,6.725903447314445,8.563438437399329,4.362600641238713,4.9373798093857255,6.032085328780589,5.396781132809795,18.125288872741205,5.149411497689968,6.641539368996945,6.058780122256342,60.123170155502784,5.647547916930407,5.980169679330629,5.576846037580065,3.141751391612417,3.946186301254694,4.888820128962741,10.692051460242332,4.242618097240058,8.392423932466519,2.8364238219583164,2.6547331191387156,2.613989401005105,8.378424405508662,6.297239459534012,47.67985638503454,28.26683255499039,6.846540350026091,3.704391479620094,10.299586295476614,21.243504177209783,3.228332319713995,3.511084138061043,6.976673381461323,7.975458642718496,2.8187470716489,3.7987547521515754,7.9688752605333155,3.9673763364274417,13.546552011500781,22.719452828849207,14.065925259468603,3.7956487920402213,3.6178675378582015,2.8636484644021714,10.463208258212301,3.0241450203388855,5.202024422759468,5.279130335310129,6.52127808504159,5.11046151828764,3.499813074195027,8.633591907308325,7.360538441116963,19.417424454715928,7.84014339114783,7.560904315443569,3.971451282920041,10.829515359672497,3.464932701505355,6.8346933920892,2.7080674092996215,1.835097778793139,4.847750665816691,4.1296793982207465,2.938992917895839,21.359580297520218,10.36050934827236,12.45200760731315,2.5054163254358714,2.4135161415692004,3.463053378303737,4.454474535144615,3.301026098964889,5.88719006735083,10.224495920634443,4.861325435449266,8.913199377890669,17.38808079490749,9.605798483884563,8.82849869480858,6.598144097876735,18.990002422207116,2.896323605650379,1.552336317366027,4.356186240705308,3.484433615971219,5.227420199321267,7.572760948393471,19.91574091940864,9.394567623400267,2.1092344057413084,5.372528754432489,8.75358940899375,2.3364237719710435,2.108353731472717,2.8672349429099624,4.687498589039242,14.716258674352018,6.160874363618145,5.459769216055395,5.100505010966772,1.9496086084523163,4.567664437393133,21.599779032289554,5.668548973844068,17.853274118131186,5.956305440408654,6.673482606518471,10.490185860432922,3.894077482515282,5.010250533420949,8.932404391851556,4.826492567880383,2.94283466332851,5.647636143494903,3.7667331100433126,2.8778963466769074,8.570773946284827,5.02201101493968,6.68772217291237,5.996764578713795,2.8442564428528336,9.943061856447127,6.207155414370577,8.230681638610973,4.930510046748249,8.560070660650107,14.391003698560622,8.68959390034939,20.591060954498037,7.180786616675228,2.073714958987337,1.6320526476650128,18.297071776848906,2.4012887890036976,3.976616871395,6.497674471466122,5.7741441872288695,7.931578778181714,5.936911867834044,5.7064863001913695,7.6508466398572335,6.842770381854652,2.373771680021848,19.249711533530075,9.727123259739544,2.116145709293064,3.0716662691098664,1.9608087234610612,15.117820985719227,2.8512013435506316,2.1311958664627975,9.333307847417048,2.765477690109202,3.08583374305699,5.095146591659535,9.95740716634126,2.5632306931613136,1.7331188500840173,5.746945027344901,4.568860131162945,12.418792425237807,2.4862805704692974,4.896908642737708,28.157258959856705,12.982143262939033,6.452659973309411,1.9209363994827993,24.420153399555225,3.6122766826964248,17.586037774826856,15.750721354528565,5.436778595231163,18.739105487330566,17.895638199227115,4.416379125684347,6.275536052379984,7.815052650462689,5.622414385428372,6.56077279708278,8.601282978212296,13.553009811425799,6.312937472212129,7.219149096184141,8.526491458251318,2.414040880164626,3.090677562162511,12.697730853650128,5.380903971056647,1.350884341942216,11.960360093889415,4.078261739173133,10.213056906042162,2.029233437285378,6.6210945459615305,5.894907112316442,6.162209504367875,3.188914632072918,3.765224605667098,14.316684051337594,4.798853045016157,10.326092146296576,9.594744911362438,5.995480919177526,4.5531223096204485,2.2018643544935212,2.0072233218558404,2.405784396848006,2.435449774816456,12.332614287191173,3.182765176642644,3.699622698529805,12.113290663497786,8.211235045221585,8.668632193698922,3.949449619097599,12.318521440976713,3.0892433687736447,14.1424632833233,4.501559194549813,2.012365804692065,20.01763345252663,17.045185300105047,2.6940192785567127,6.508554147376717,3.7468317852362,4.601701007410115,1.258244563243132,7.045380403029695,5.497845793682658,8.43024579577946,5.933181508998868,1.750114923070661,5.153075187973702,9.70004311980779,8.124843641253808,3.6686795476507825,7.30652869758062,3.769586675959078,1.909094459027572,32.82462903821377,17.36297383230782,7.019435257102676,14.91464436586841,3.266399192462823,11.869814143809501,3.3259269755605865,17.63033633245068,0.9660027764425368,6.811986212857915,3.4139290467823775,3.4616497510453854,12.481835135413618,11.748336886078636,5.685185146746425,4.740681000426383,27.355490521709974,3.561703759205562,4.692658468004047,6.604187705536599,6.788622745048129,4.492222663911562,5.9946055539841705,4.748457971019579,3.3417970449391383,7.042219771901916,4.631878408506378,6.852232169262364,10.564894173922923,5.4965945762798345,15.786379126815676,10.443877126185345,8.300716940428304,5.265310267481414,4.043002766938344,20.08016429078452,3.241142678157948,8.359766803007796,9.855517555116155,4.722325766015509,8.080651610858014,5.731579015967287,14.560969348933419,5.920027541773835,4.461454740495503,2.816740063651153,3.0568526629928887,12.90094105366851,3.991372611880035,5.78712167528947,7.005621957384558,6.452087656392434,11.316202399665558,3.538533460318961,11.98942011669124,4.000591345243845,2.5867267975903396,6.10879041461369,3.841289999917666,5.089345351481423,3.951678505542874,11.701564656175691,11.308240709417108,5.709214660719767,6.938000567116789,1.4488024590183508,5.608050562257046,10.81040186750914,3.9401962641483825,5.877037350225306,7.017818342554993,4.090247085464746,6.906326559875229,2.9084423961220396,6.600462182723115,1.846060086570329,2.300992198861277,5.235777340703892,1.1340136068409525,1.92840411197042,34.351741759256754,2.967426527703914,8.585605280249572,8.38329973043899,47.22345645669478,2.1056902550822683,3.3983670665199273,4.342785702426848,5.819565516359534,8.821047388648331,15.84317599156389,4.542576946801065,7.6791546058715054,4.276101644616931,5.182503937286647,2.3551019606253973,2.8383947633877624,5.2641414338001695,3.49903260421151,7.488028959251953,4.338643461033242,20.545684218126986,8.335559307001438,3.997555970848221,7.554292000301052,5.466725850325399,4.392024501327644,4.4426280512000185,7.130366857024044,8.682019450211227,5.779510764865722,2.821088711441233,4.543267339462853,2.2591124753805003,8.518727891951906,18.357458113566338,3.144961144505093,10.075405833591939,2.9966425956522493,7.780089509309737,2.4438430489779686,12.90075358533413,2.440370759182044,18.68378962068033,14.571485061698185,3.356492288056305,7.770875080507654,5.852565460135784,3.6123928716265623,2.3618763778629344,6.98055607866404,14.767396495704675,34.67814876136333,2.957825279407626,2.120962618266261,2.8210125950459526,4.353211911298022,4.28541170337862,17.94848238388981,5.93322746641275,3.5011441536956958,23.803170929386585,10.473320672726294,7.488798752208364,4.6873280392708425,6.423367930556962,11.526515134796947,15.158013613614449,3.2075995522412746,8.529934109394393,7.076451839251193,8.80514489410211,6.726344120560142,6.1093746183270925,4.21872200473883,15.599277192120876,5.8654601116660645,2.110895706056878,3.2849944693398996,23.89977466503836,14.978045004091424,6.969796339564822,4.350616613460193,9.648759136635368,8.231358337868974,1.984189557357454,2.752626686698031,6.240200372766394,7.359160403735134,2.4581177388238755,1.745311142573984,4.542035140924199,2.1850131464543576,1.5480738168656294,30.4302989795821,2.6217690203738244,4.3203526634312786,4.5028924763171965,25.804738607867417,5.2223915587137135,5.615718594861889,6.594645044394191,2.4615111391466686,6.216451049873043,3.919968454744766,4.8454164282156995,4.020659460679822,24.268539964511916,4.091922263524539,5.641913908505637,2.5235817532560976,3.126134615732654,2.9052575496058086,9.248515613512525,6.817501831695319,18.251985580562046,2.703646144623126,11.561883588178214,7.225652329411141,5.89280485364898,16.622778550325748,5.175220524055165,9.959957551907776,12.506156094834667,12.841011461216262,3.654433663971813,6.106947493455577,3.1585581763140307,13.986649811039698,12.378726168887882,2.165602747707909,2.771527579318101,5.3655416146816926,29.84621320980601,7.9144759205281305,8.49281559425426,7.777504424609005,9.264364644615057,3.3492697429831066,1.8873883853809363,27.860341363959233,7.948776664492421,4.503264391601901,3.064980355844559,8.622744659330108,4.919681586305738,4.28890653272732,4.284779592237463,10.685549899635097,3.0758901349708707,7.946778034340748,22.98366484866303,8.69487280699593,5.406911536530032,2.133449600937326,3.702124197913149,3.0011711287602867,6.598432467168583,5.752881057798913,5.948950854648023,5.916496708598042,19.738178500554845,5.4749220970377825,3.9598796869340482,3.04944848858772,3.6877970183853765,4.064572355266698,6.04130733521091,12.480364391096279,16.02136921403539,7.283042506781074,22.73074541908659,7.9483136379024435,8.375774682229439,5.392996726960237,3.9773815413325235,2.817966259125422,2.4584004710409713,8.979232699918658,5.059835322432135,5.385282066228043,13.432516415823185,6.330778093689674,12.069518520379768,1.7205075415077182,8.112409512013402,10.766438075832252,3.659611678798751,3.011699146890751,19.26293899069177,4.937287214008131,5.027288221634974,11.645881964626298,4.2958878181415505,8.166537628758762,10.33772680503079,9.435520134463932,9.59404173408551,3.0675026740561067,4.978743303977048,3.516489336143031,11.698903007403429,4.900460324085576,2.723912048203416,3.4163352256264257,9.224240488913201,20.83072071520975,4.38196510774267,3.5469881094238853,2.5541337422859978,5.759095658807407,1.5208554662975562,2.594160560709127,18.068175346480203,2.99405158356516,5.6220313021222585,2.9517899488410846,3.4024388883072745,5.943668562851522,6.006448054906464,42.53498593559076,2.573005153995973,5.742995106434773,3.4626927883063274,2.6260821969092203,37.30759999842721,14.412649333513514,13.61979746731376,15.811861741597632,5.605484571190795,5.245814540796258,3.417628983155534,10.370653840964371,2.4379892308999898,14.08776117956813,1.7320829735727088,4.656268806348382,10.296412204923907,8.107376122218165,4.114164369592301,19.927299739706026,14.691384345298971,3.5665582754593563,5.228711127875532,6.344860936927139,5.038840788383153,2.8202974489608574,5.222388396391893,19.416253308940547,7.927676919109265,3.886301120611637,5.2483804313314675,2.195232349691281,19.03831574592247,5.563830109428519,9.491197946746839,12.355846483061585,10.471645521645016,2.1246851380122482,3.0135608617657046,2.9476113437558658,7.909832841766964,6.6157976954048765,2.283035649299033,8.821785640614442,6.3455219965796905,4.748268192555425,4.708614720481545,6.30693942952682,8.312128717920332,3.48836154232478,2.330100213890482,3.767828116013642,13.990393610250335,10.281139622489183,5.631223027315974,3.729594861692518,10.281742142696768,9.340690691859566,9.24823327657025,2.0749080000893123,10.70548676125469,4.500124616394445,7.617101783305759,3.7480139131442267,4.9976678256330205,7.293456500349415,4.934027664387089,9.60533569471353,6.019986253841511,10.482037447474175,4.805744515651396,7.245747979396236,6.893445489065222,4.5728534457383185,9.284401137596982,2.9226683661168256,8.45287066478637,7.905250907804821,3.987574402714822,5.453044859922273,2.621855787818934,10.836331372612959,2.1415901999975904,19.03709382508221,43.74281643002951,17.574307106524007,6.824605171299344,5.136701259641509,5.528262698956342,31.094116765863948,11.440708095516346,9.673866496411833,2.0043393766037467,10.36474589900523,8.340847040668766,7.124601469487303,3.7357774407944646,17.710976949856175,2.1764402564551664,5.114818361821826,16.16558784140158,2.5164373393332777,6.6870368573731325,11.160324014266392,6.102759827030905,3.448483959852194,11.855876008996676,12.900872924050077,9.745643509322425,6.885262119601854,6.33297861169604,24.962434241357062,1.4842183697748532,3.490682890541037,4.125874849354452,6.031404560529483,4.6747809754838165,10.876339117192991,5.617831439502315,6.548818336473825,10.149364903119654,34.09369612408047,9.140128162430297,3.777815842384979,10.20128087656817,4.690803152759423,2.487391127552797,9.244928759327726,30.989581606006062,4.357285131731561,5.462383522941925,15.004056629915757,4.096813282361195,2.72888329480542,4.3738117572359645,5.920937166050916,5.8476612736083835,3.629651595299165,3.265984394765071,8.56355352308582,12.01134845133189,4.429327690332369,4.9657207075192,3.5939515590043722,8.088926365299395,5.073497915065897,3.609933686344981,2.4868892674931034,5.367893516550494,3.5458472331656203,6.923500701610825,32.95323843451299,2.6911925125710017,2.430192507737291,2.119610513448309,3.760687963968539,6.720993830565195,10.146616743387398,3.993949112787367,15.316297570216733,2.1535422449746213,8.438964638367239,14.168693296166847,2.8000956716000425,4.028148672786381,10.911727181776845,1.7417194155627347,9.051197628053236,7.983326363296343,5.425220714307675,6.654131400820541,13.499943045476742,4.99610104193493,3.5554005112048115,13.401967054118899,4.230021025215174,5.771117428706932,11.512458488548326,7.255244948015544,5.409878130009469,20.825638188847616,4.226266752442704,9.966053267662064,10.564289324207552,6.907995493185086,4.23501453992334,2.8864873597888505,7.014078157371195,4.602222475154082,16.817692002803636,5.3674521623264875,6.132326688999834,2.507807998193159,2.7966119764233848,12.924219793582184,4.22714374476218,20.346229801752838,10.204528089794737,2.0909942157166084,7.991319094284999,12.5813433602676,10.722172401826956,6.164726046909592,11.518119801961342,2.719533519322202,3.3433070332570614,7.391460395286152,6.225112901834561,4.5457564356962985,18.777391970762054,5.238174914858505,4.047064440486527,2.645270783654436,23.587152849519924,10.604954234680147,5.782985257576375,2.6249034534186406,3.0639993397113345,8.318715281268998,8.484772665153,13.879035705706269,28.64861804438882,7.342817546785038,2.1697520860550266,2.375957716185385,5.745248773557032,3.5167066677341854,8.665050834559754,9.273273182645708,5.218498411259719,13.816104527999885,7.468834914218809,11.501035551705176,35.73512572275158,2.241983720727927,2.6121238496680736,18.669784901047834,5.947389121490488,3.2079336101034506,3.365238688223564,7.723745442806115,3.6851846290580252,5.72771150090237,19.755794621309022,8.63058034063786,5.300830278088445,16.415160810209557,8.815760302339989,7.388130889272718,7.8414465801008,3.7951363394222337,5.471893130440836,3.4296335681254813,27.35532113398075,7.296642759093462,13.585784962851749,5.937220946497478,2.8871573109217525,19.96888864094065,2.6581655976157914,3.4166490521114006,12.83477474428292,5.684525783188343,5.784672406407176,19.78415312046122,3.6787025176185955,19.457375483579764,4.491308575332346,8.256755328241805,2.6837849821204904,6.140122507439868,5.285895822964929,5.841317502600819,19.22042132509629,2.9709621366787418,1.5967466608104244,10.234316127632283,2.4699779779234925,19.035096509638002,1.9215070672356933,12.325881796428627,10.021111670482153,8.914294415648243,2.9003292334761577,26.07253134982011,10.086535226523067,2.859353919024289,4.749186767960133,6.619191778855821,2.889510713695277,5.171316767290483,9.249160191102304,16.620175886466097,8.105408984995107,7.557321775671506,3.236745289778282,3.940209264265584,6.594364874989736,1.7887757839120775,8.917169546933497,3.1643758529569337,13.671381930892135,10.105797460676914,44.771111765315965,3.8231256409362797,2.440158392111469,2.118629558101998,8.352627671414444,6.613588171850974,5.291036468365481,2.6730004323004284,4.9791715569444355,15.424297540802119,18.662178155875228,5.264367716719487,5.407474370015121,15.214828815800933,30.554325525464463,2.823108826527618,11.962200838329471,6.247284522278117,4.367879570694798,3.319056971070552,3.367266460529598,5.63222402524122,6.634329060108803,19.856370770825414,6.839524197858992,8.817141691451543,21.20953635474706,5.037401451994433,14.444321811293444,5.765837398482871,1.2915929051920743,2.4619244341882798,1.6253575801178761,3.742879411651426,5.290497605295961,7.43950301339573,2.845391771800319,2.5235884361590606,7.232989795778545,10.123796750656293,4.212319281485954,1.2235561286893855,9.254104734284509,2.5137184793769958,3.1508088034293746,3.0386616771074277,3.910937928741313,8.12310163507331,3.647906409337898,2.4679043995416357,27.549036091596886,6.930670383994866,2.959791638595209,2.6538604379660113,6.266014384586955,3.4085948311310363,2.7715312947868025,17.355752721079376,2.9476976642734463,26.02224292307608,10.746292355086249,8.700786598447984,18.675171996506066,3.069213861198257,6.36048799836509,8.70629024985195,4.736332872354468,2.9996664603453844,5.3700503173418,12.570069594357504,4.442715319979188,5.033950009607995,4.130440302924253,7.204699776822845,21.468116527856054,3.5001139385066335,4.714370763134335,29.890758955055123,6.288380128781457,22.606656467505054,2.2081740712630724,4.500728927035811,5.919808411717913,8.118247039479122,7.078310668002971,4.923614045112629,4.391590463412972,12.259766910405286,1.9820288097336793,13.601113628039101,3.3909528251785117,1.7744700196465162,5.2963776142184456,1.617863854934625,21.308838079636903,17.31936374101123,4.01214751221175,3.9255872570073653,5.099956083507959,3.8095672632645057,9.195555541281811,4.915968805614218,12.806148261830145,8.537294436084176,13.190113194437801,3.64841308139863,8.87477306727913,18.944049393929603,3.6262800840900695,2.8165018306379506,2.454217226317438,2.7880479977305557,10.893924333387485,3.55493388371984,6.72542848749389,21.582427941104417,5.224394636229996,3.681047981348132,6.292922253009066,3.8210021495272013,6.397402855860231,5.3459952351121185,17.20012305078512,7.2475554842236924,2.243372008681968,5.311933224465058,8.644995688369178,6.611140659279361,34.7469348425045,4.917025875721503,11.091502135734599,4.223072700005972,11.97531332548833,4.676998873436046,5.396205761989689,3.7196234952128946,4.213900136569355,5.139465720046378,5.159594531107475,3.293192668359611,2.571438690221152,2.166130144457533,2.766503791548954,3.313788636270686,6.1329965008760725,5.841510443541021,10.128674473614405,2.413554559988379,26.910447765389897,22.75760672440018,4.290487551230437,4.349987886638493,3.5508319760679,4.345765084342813,8.822202481940526,5.216519023673699,7.920964509004845,7.51221489177087,8.819108298287256,8.25352080814895,1.7350731718118937,4.629027900876566,12.942366683319056,4.012813727511654,6.785859490466259,3.811531721637451,6.228813112825978,23.230741675433926,2.0467289431362414,3.9536638927657415,5.040299655564254,18.400378886916467,4.5693070341615565,2.505771908952607,2.9790979331326843,4.656954267527338,2.4432209194385566,12.070276261610305,3.638787153242327,3.4693796536676373,8.325969096469716,12.35787741414518,19.71072276255192,3.623352239543387,12.231470726920339,2.164593930283699,1.8899376159157941,3.6614038055801457,2.9620744657139304,14.61686004413732,72.79015989365894,4.733803018092006,4.387995083019642,25.57952851440364,4.00910652549083,10.18294923692872,4.8014861930053545,3.80147854700303,5.677290495257989,24.224218488918737,7.052373893123039,2.4988699703300665,6.352643883923353,10.66586521470515,2.055624101244647,4.764605676613451,6.753575486311024,22.14966296092968,3.368524855162013,2.8880456383483857,3.028085476899864,8.054075738382,2.025222483160331,7.274134525744877,14.036795254774493,6.090514542258249,6.123955756607726,6.325283201781858,6.448097462193354,4.719277236358594,16.70099198019212,8.209027395930159,4.278935999966482,19.309091738848345,2.0232768655886924,6.52539855283175,13.289286598923209,7.4436758380226635,14.901785604260008,11.851235625101545,4.567081440366575,7.410292707013502,6.592115121580842,9.921144149862698,5.921562242399081,1.8796143840749868,8.63092998107624,3.362216783604135,10.362574155474386,5.489767997547399,4.509813987316824,14.93520301571773,5.341235727746718,2.681778916648795,2.03470890601813,3.9321741538904114,8.762905634920644,10.352635279399363,5.531320518956151,2.3362533268450503,2.633928789983531,6.316952046550821,6.51714090198358,5.733156031369518,5.952558400031946,2.9237266951047123,3.63540028279843,2.103402917969732,9.2257868966484,6.019061471966567,4.842116875930041,5.42047816379231,5.139461427973343,5.059172351128602,3.7474293626981523,12.381590530520917,4.884668751105525,1.9484481124793618,3.6479741071319847,2.2836147396284416,1.6949191522634477,30.092223076681524,10.938802029880176,4.724023506796867,6.696397309650731,2.5069314526600333,10.560704594642713,8.920925701600535,9.214696105765237,2.9130336972987463,6.634602472361523,16.40329027912849,11.790097448574674,4.0450018040256515,10.47187993591496,3.137407807378873,4.7448813743895135,6.156289761958418,9.604957440256554,4.026653402669634,3.5974816761881394,16.253557466961055,6.519416320991465,4.102522271473093,6.335991583083833,4.597668774736604,6.138181968967842,4.252998839732748,20.202068315590328,3.980635849971203,4.14482135774456,4.554818269938545,5.805447366366077,3.4160412368081716,7.403704114545334,2.188446659364008,3.62969231137066,6.1253787400548205,11.751121473493486,7.788727997379736,3.8120454848095853,2.6094105659450766,12.035453299085795,6.265764432914535,1.2877243439059078,17.235799104471667,2.836771645361462,5.083164059003733,8.986816295638985,8.990011885988165,3.6400141929217504,17.782343742193095,11.44705906592033,16.751363539014207,35.17659256042613,5.154982185674457,10.16331375531248,24.653755884933954,4.527328722620325,4.230442895995235,7.0343613511421665,2.8774267538362266,3.0943457966320547,5.236803398046266,4.799345090126944,4.9774482685034664,24.493798574761076,7.705534450695464,4.816547908620842,19.604127042439206,3.2150426106628793,7.410325711671437,3.94450090083587,4.080869050697216,4.133615807485329,9.145136085671215,6.382857402718429,14.491333218982838,2.5834801031040264,4.352375658152156,12.625799226338183,3.546092254918926,33.489285974634555,5.366151117197591,3.0735461006067406,8.7547616517941,22.58670648168387,5.253790263730458,5.831938054232104,5.37015957313583,5.38956509911159,1.8757680780436126,3.518473014151185,6.81138162176172,13.316147775590961,12.678625591715582,4.1020252131069,16.19511812957571,3.4923697755550056,7.803922840089371,10.136682796766186,3.772496822207881,4.908322348825302,9.68479962643669,3.983063552892391,6.154343588621344,2.723331066487927,6.58067879574947,9.385814770759449,3.771041640621941,4.004127104962391,2.123170210172151,4.3087935831759205,23.439181099546662,1.8236794796516034,3.4685599053677545,6.244096572433418,2.9613877610802475,4.207816411880971,15.096435592648344,2.2983419408976062,2.454904689566429,23.667181796036058,16.81555341250644,35.3324243101292,3.653727493486752,3.548170908676734,3.3060945454326793,12.382792046316363,19.333037984617057,17.763038842369465,28.57904580545754,11.746695816427613,3.7360512974318105,13.186042046383776,6.649855382064824,15.266349414207516,10.498788908231441,19.29960462853827,2.958606699558841,2.7292872002004986,19.26289336648258,6.0288044964722864,3.2678441443243105,7.821847776202245,5.534438490570679,4.547091432322451,20.093115201599883,14.213891578172408,3.111654903146754,7.51055420704771,10.182994823562982,4.4121197605553375,6.72429226278105,7.797861569105184,8.485734314355728,3.082929683071793,5.960101355023808,8.33775964682306,4.72691730316011,7.557642184934586,2.5003460176803696,30.86059341895711,5.70183227717735,11.859115418868347,9.099967165998414,5.455888008956192,7.250551905585154,10.661412570934566,1.6776463263290229,17.516732043802925,6.504816465598404,15.11383472767056,3.0521752387292613,7.215296043051684,6.42520040885271,28.68417349393752,5.963181061598396,4.827278118136102,7.244004059467053,10.664628196293812,4.766966032490863,2.5739261532939066,16.283223855143447,2.867530222840672,2.7573893410081305,4.990882085744263,5.084788752908731,4.055311702985146,8.079179838167306,6.663779444658872,2.8726850366866232,5.105776432510297,2.8308042276265017,2.4648613396037358,3.146024056166095,6.900397210920137,13.637580495176206,7.922279248982016,9.317759849275372,2.512091991296334,6.077890588469376,4.292040545079087,3.3651490250723706,12.46833670201835,11.470802599010826,4.919093575648645,3.735636226786543,10.658518915896057,4.591743994401702,5.7614604065999755,3.378120166844622,2.4061441255312332,3.1048140877194457,4.44514227309734,3.8131163744193755,8.51632209828052,2.195119963470443,1.7170717923257492,1.6449975671671067,6.338190196576688,2.533292550049748,3.4398745536408533,5.506157055511056,7.74047081532203,4.712283382610205,13.037412478458398,8.802216901949963,2.606790130869113,14.72271156374611,5.316910737768175,13.706323303007876,4.683168126798429,6.878054025901095,13.504853277958105,1.9436248211628455,6.483020198116531,3.6925910640160495,14.422979180107193,10.351701234201242,6.8993835696648045,13.416446468323828,4.424251080024807,3.743927481361824,5.027709577483759,15.23416674675784,2.2328636553751404,14.010747689127918,18.712458553319742,8.020115227802524,5.263697817390929,6.867659577066218,6.344049338421775,0.8023898265920458,5.691627634834049,7.484940232681726,6.019236094417155,6.1274368421867695,5.298806879876538,8.330983948174103,6.780981905254581,6.298869226817279,2.2958502376845837,16.878396443965258,7.295364429728114,3.8710452975791374,3.159558732966394,5.057961608417345,2.8307805037975,6.755928092788659,3.2095528347099243,7.449867483248003,3.5594729255470656,34.91933506799338,7.039291944132202,6.20258573842735,24.04855152409178,7.698764306143019,3.809615802853777,2.4470681461141117,2.7580329769735576,13.64403755900977,5.7271903695948065,9.465595886528279,9.267074925671377,5.502413733938522,2.130849098614005,14.206094650516718,6.607934951393439,14.200690157322889,5.848661210191302,13.40757973881733,3.6350025676138498,9.973477916026178,4.298967693045712,3.328627049458181,9.910824046523263,10.681483369987808,4.814646804852857,3.527107633955381,8.959861594754873,16.552930348282622,4.654838432194963,3.5295990779979247,11.162234775663718,5.779563491007706,3.0851046822513797,3.1942946752004993,2.976404779536697,8.46272995071829,12.948096107989949,6.044544609250876,6.1997349848320225,3.103567562474622,5.65041189830813,10.673079746253864,6.2031699061158845,6.701323973726743,11.478170112691272,8.462766592288707,27.74906292029135,5.145679531965825,6.483340722085515,4.832037488444809,20.847693952384006,6.24796134641557,2.4141598409159686,8.07293835630276,8.37487406348178,31.17154979746121,3.6565507549349525,8.317652136465826,6.6540156446664565,7.728652571774791,7.920086651269588,1.6682136581180598,5.580779523019832,4.440124959853772,6.194547862580525,4.4999105961440655,5.758309541994763,5.195584921575054,3.997500600906244,6.069162493285677,11.403839429042364,14.116169626131725,10.71437869854871,4.601864113835586,13.487640838320724,5.645386310455055,5.912151745995614,14.016204042988672,7.05311631936796,7.567037400715237,2.8952111327015864,6.767614725079396,5.031539322363267,6.511765642416756,6.651925055065109,10.26119994105936,6.212919591379689,10.619243936750797,11.739307941615833,11.57036353399193,17.91291248177091,6.594381008008766,7.090933711370513,4.419355573818908,3.851736868144334,16.371773444902736,6.410151521719357,9.60869502158339,15.333238776594143,0.8533966486993044,3.7497754668722956,8.19596519205592,2.9578532654057184,4.8779882815104685,2.207886144275141,22.615529267133166,10.980662815417139,7.231764104818337,8.942523469023099,15.174034252122592,4.159562002685366,9.803011293020223,4.97634888169252,18.397372844346567,3.9529496425119204,12.083732883994783,3.6085580263740034,5.905000125086644,14.55142608147865,9.55609140730053,8.217157278186813,2.9459835139407273,1.4415492973348993,15.13865850217749,4.844605259098359,5.961051091969959,10.278899058016913,3.493047338922077,2.6362499381009266,3.634752749927234,17.175992788221713,23.831667653178375,3.8372685335462555,2.413888904262499,6.297489365190261,6.065774365740571,6.933154638678331,2.061471257494458,10.565501893247687,15.259900270313622,4.8652236246864335,4.574605566540237,4.641132403634977,10.734934786861924,25.706995843689977,6.302348042544055,3.2796195859632125,13.634295821827672,7.270825875233791,18.533484011618953,12.086816524961916,8.222906551044472,22.099169198668765,5.221909705729731,4.52059322586925,7.133675597071595,3.180400457859542,4.644970280137085,11.346944777987611,16.74402611210837,6.106942790454225,7.126729340903332,31.056724713672875,5.343737966811349,2.023438573288843,20.40904615877374,6.3618902971512945,13.44908220884986,8.085107889845526,2.0374034149855906,4.608171574125992,4.840968151411591,3.381422228340583,15.121652266241897,5.1997734086047895,9.898128896514672,2.7299072428805133,18.46715805432115,3.018482466607777,11.841414940520693,7.291702437627871,6.152725860853091,6.907014513161929,21.24607545655431,2.905395799162693,4.9615330471525025,5.816692974659884,3.1925683580518247,7.239592326737742,7.660960291358912,6.387855329034146,8.228626331193073,4.075318970591249,6.876712081202885,8.418555242623983,14.121455785595861,7.449327730641308,4.034133656668371,18.544769287314825,4.050674876563007,6.307922629246366,13.242250287722252,4.3100294492604965,4.525476448539497,3.064919283168532,9.408061240014,21.154701565402082,4.632054024832214,4.039713312422512,4.604898633870125,3.8309304089522787,11.505778216328418,1.8499200434743697,2.823295504620247,5.224822151599758,8.59461897906276,21.501710536792775,6.819207074950542,3.1679801610296012,7.027738408731324,4.863049912349484,36.616607731934884,6.593465208000076,5.257977137546598,7.835163575159912,1.7076942139857074,3.1196639580153858,18.8075479181764,4.769101154918639,29.87080053981181,5.364669645740023,14.506782909092005,2.1700461720456445,18.63263162975163,12.15081301655545,1.7727504636508886,4.542381587627466,3.723455533507708,2.3140320981289104,6.730358166537963,9.930932469601032,4.422162258489718,8.026612272311596,17.252065184595107,4.880021105551277,11.908979408108342,2.399611702607232,4.845265774949299,1.7417076917261183,2.301642608316019,3.037101118129648,4.526466605221489,3.3216118095570097,2.1534446326910786,3.2077564257483364,8.92538048569129,9.747560531789432,9.248263623115712,35.70756875997253,4.592242201369506,5.809617955479247,8.506230391838187,4.776079953741397,8.103837854025286,5.547749014801116,3.2184060269329304,3.5885670435907593,2.7992987718448643,13.106512677629599,31.62351939508404,5.867360678360019,5.787792222624741,5.188587520034225,6.759068119805622,1.979779335080351,21.829528866112888,4.978430095420433,7.048374963905694,2.8156903358674046,23.488193036730454,7.28498894979852,9.758484923336113,2.8664388812856787,2.991163072166629,22.551016651938156,5.476877650166934,3.5167105500222213,2.594015187391603,4.147745041842264,10.528370968776597,4.503800591376402,2.3493494548049476,4.343182109969307,2.4027783258104596,15.657126236902936,3.798953850796919,3.467121088670694,9.081926910737845,3.8388827090565436,14.648183101875622,2.8082407013296176,9.289667066501147,4.0653935750580725,2.588708835839502,11.272768066850372,16.773030426152484,22.73596919009287,3.9819419147228152,2.8276783958920833,5.6228978228382696,5.116295736172123,3.5415311844571606,4.6106290723723555,5.1247253076593005,6.371572553893954,5.346309698347354,5.22683147195078,4.487083123123148,3.373818538978552,11.15095745356257,4.8940325479736595,10.089713582004661,3.544751405728491,3.1778668811631383,2.5634806419235567,3.3361240591780086,3.7469042303225994,4.969954091726348,3.8324427770376706,2.560201808036936,6.789679886551169,3.056720955577343,33.833407430997866,3.8041792667520844,21.23578964410387,3.3775788126938595,3.0846471337833568,5.8022798673185285,3.5289363774119824,1.7772366326252003,4.73033627593923,8.348153421049235,7.809367493542935,3.578221618723205,16.654611034769715,6.40850728862878,5.239226765355834,5.177103082240436,3.6601978528106374,1.5539335450715877,5.65848294284514,32.322753545649306,4.438897687501068,13.332354728582098,4.288393754687948,10.744200994053568,8.249212877215285,7.438844592308773,11.740005652502058,8.155041719874315,11.341290557943632,1.155424505790106,3.8490827066519038,22.697222615044225,3.202550605413297,3.054633939839184,1.5885160291171718,9.704512351797868,9.337230890821784,7.245018257379419,23.037969681710674,3.247428615678446,6.409171683244642,10.403537716458583,4.253278445675035,8.815787820130696,16.22955360608502,10.066256864811963,7.058076989865884,4.533554359646576,6.880152797991461,3.654076309247388,30.72738783956659,9.457941557754824,2.710782596207229,4.65538292544554,6.412980876537034,4.037991328883665,3.9094008792794015,2.244209427870212,3.103209843197728,6.78072778427045,11.171800309524667,16.344262667183855,3.907913711795393,4.569950217057672,5.17575952572075,6.925752364079494,3.2758196369398993,7.864912188545254,8.250292875385474,1.2337475546996761,2.174924999263687,7.344862876856315,3.0428312227855017,6.512205974966557,4.6300502938625545,6.466468851588569,5.842855339445507,3.728812058186366,4.003056164932145,6.03787223110248,3.9719154492877693,22.284947382550033,3.0664093860299784,4.838349367487601,3.8406719158231395,3.46512832547979,5.198979746625383,20.24130942933793,32.325241500471684,3.4126052785028342,3.6515660399637304,3.7983790245299462,4.503369107568942,11.708182537036432,4.191709819258106,11.077937786221588,5.238376283215781,1.1787252099813983,77.90907567972897,3.4132023456434353,3.375330947714635,4.288331777750556,6.891172992696463,14.04669810763167,5.380320894880957,2.1051199646847905,8.878980515738364,8.432421656987563,6.978858145743903,7.377186621677524,6.27719113093778,3.9708404234795642,3.655020629625538,4.738111158549615,4.268551234747085,3.5160218602569357,3.649881115897148,9.994236900054949,4.255984629984417,30.269798742954112,8.182211220198194,13.64386252231563,13.437723135163834,9.419235400652365,8.38446350618026,2.0291128923918382,21.001774603502028,15.560048364408813,4.036221014326063,4.054305353657174,8.115246720216597,5.376025988921407,5.569346344522945,2.537976349833066,4.083237608584438,4.32746080386165,25.93489319415974,5.2226237137040545,29.480288402974868,4.76652291701674,7.542523022445116,6.314546724804946,34.79891919345474,3.260450295256347,6.867227582113177,2.5219835482980706,6.41843428142916,5.6326374017739544,4.898224893837123,4.786970388843817,10.427227967249515,7.213940166490484,8.667738536313278,8.736738127976084,10.575992129435784,9.456774500329432,26.92380622995561,2.574416331563926,3.389536172654979,31.163081833168782,6.194926660364479,5.412815776290019,1.5143164567913834,2.205013154304353,3.6946667175648273,9.741680623519391,11.434742843501834,8.017191260501276,8.15400582598289,7.8769330975538,5.130628393983131,19.781118866152504,17.218893670490026,2.56475390649562,6.1723282432309885,20.43277535878011,6.9711285794214115,3.649746165725502,4.376892515110645,6.039647821015987,12.988489667511486,6.714875942942926,2.544455654658973,4.7586800218162955,5.779048665330928,5.081152671540953,3.908931851959551,9.477783143053571,5.184486504853862,18.442809626219308,14.130544880029895,4.05211138983889,12.636875429726684,3.4071635791330395,7.559262262902126,2.6450836760721055,4.193120805897595,5.147544773406821,7.127552666438383,3.6869090880496325,5.047515611237578,2.9514992460386478,27.635949513247112,8.619192586056508,4.764625608353273,22.47056913363645,9.491799672755352,4.317241989083809,2.3373586793966945,2.8636939655906106,5.971024334828574,4.38179622597819,18.587352904260623,3.9070650144735177,5.244509159735507,6.581455280451726,7.367399361733544,9.154138323867286,1.5263370906942602,4.933805133524243,5.929122366444092,4.858519839654247,3.1693245314657297,19.367233683569673,2.2353231776465448,4.076372280063716,2.849466305888287,3.1640403881373866,2.431318641343536,18.756960231707005,4.425058306922666,12.22253589331204,7.162748160089753,3.4140214714691606,3.3481680809646757,11.755439297713872,1.7520198319131721,4.062614712565474,6.114368945472614,3.9902012732094287,2.394233275741773,21.65822064015769,4.3909664948885885,8.27403738430846,0.86376858591887,9.8092000347756,21.11396409677034,3.752242466500772,2.852380994556675,2.697822941902648,6.49693070979277,5.2866048897461555,3.313604998059846,3.884155323375444,3.705655100203812,9.165713014187952,15.206930399047568,6.275014905079524,4.249485266480571,4.798477381265769,2.6995902249840937,21.56952843382116,44.03566348624335,7.040154517764113,6.358413139647692,13.043533742156917,3.739798176897728,8.517492647266302,14.455474924377798,7.0959868351350925,3.7307659962256845,17.16473553227648,4.4818080042784345,2.9819374016529063,4.9259745274226665,3.730752526329309,3.3570741934747987,7.774558036733887,2.9317415876510537,2.5723650797876734,5.39704634907843,3.9744626129240923,11.720849707672524,15.97890665619734,12.261300703585386,9.104361662225516,5.5011289271866355,8.34221749338241,5.023089511063992,5.386584537775916,4.401548189417215,5.305779438304564,5.940529542661697,3.6507436426738367,4.997981020154893,12.801687791418273,7.299123558888835,7.956852044526382,1.6997721177780847,4.402335249436156,3.871851847795106,2.195012608092631,5.254724170724132,3.8680575213273793,8.986021026360048,9.012599219912675,14.675501718265183,3.3099445332925708,4.618404407825123,11.245158875872185,9.74641310901014,7.5415534341679775,2.6685058785904334,8.053968260508023,14.461569510822132,1.8743096131068206,4.1966102301497825,17.03259723102261,21.57579473046037,9.071636665040906,1.7364604771609866,5.993835401754671,2.2732451950452064,3.6931215128279287,5.023062818744444,5.9027131239389945,25.722825533024125,8.997933315582973,6.750972547934086,4.019132159351123,1.4711896534403395,23.505690121575565,4.2400294806303265,8.087361731343726,5.459598235300366,19.884762410293092,5.792967769363956,6.77264156755745,3.6903254016088556,4.379165093606204,2.8405738958644466,4.090036679944751,9.780386748180613,9.683994657794564,9.203486043133152,14.739783035709763,2.58561698958742,11.260522140482669,3.078213837554671,2.2637193445159474,6.75653205805366,1.718489871751465,11.08159692670847,2.37317569564822,7.428203384801979,9.05535736104549,6.105373179042917,11.355185833865407,10.892503118584425,10.73840507816049,5.467425761689994,2.4143274135406543,8.652621276939135,4.3054652850768225,1.729055533469405,16.592689785203845,10.039520102168984,1.5941874842307613,7.478097054265599,11.92028949011292,5.192740297382456,2.5870327495662973,3.6861896693604947,2.801748092432779,9.293626019326938,3.339782999645565,13.816543116062288,1.5124181687677167,4.96276633988142,17.281512699639286,4.852610330802787,2.8683304925600246,3.5846302097633824,3.2992705148127808,2.692579880062539,3.454314802876538,3.7772697483988864,9.826606631200942,3.501491580365415,8.335552504172353,9.47737770567096,3.6957943856411393,9.586560155997455,5.102418551911129,8.380997878941491,15.371169958528375,4.793608599633877,5.130598838891663,3.2302070869107613,1.8593903250890984,4.268795269403038,2.3040218550076226,7.105317785501786,11.463362794672268,3.464117057027031,11.133074604046499,8.410157384768437,3.7439637231430316,3.265259498131289,2.252821435024068,2.4266875326801327,6.499635014514424,5.8161168139000194,7.96257912167683,7.538623103441865,7.144273700872199,3.019407818924457,17.45232820295176,7.924221623035012,2.8200079558048685,8.19781744188408,7.09444247945888,4.102816911770054,6.662459726955134,2.351608086184386,1.7232751052294915,13.821540095904801,6.278739025972559,2.370552621312032,3.9480785504938565,11.833481446511003,13.169348857920692,14.4708318748121,3.5040140308145493,11.090449108677475,2.549205134062569,1.8108053498017955,10.264964512035919,4.504882437627734,2.600408177071822,4.265327164399944,9.684024204281592,14.517753178861492,1.9897257267002815,9.767137236419055,7.692009213306045,32.99243107285041,4.387137823702084,3.9223175476784786,2.588342413355849,5.351671469274771,11.694398509285817,2.3320195135388113,3.8489913941244525,11.919615782897734,6.95183331560901,4.040658669660899,11.85586783426878,8.332680029335915,18.266941645790556,6.373498010552756,1.639269154928268,3.1780147543449564,2.7632705067659717,5.5470896515603885,8.952660490546743,17.60296668717081,8.211903940726621,7.300750358971082,7.7637598696082115,6.861273685173167,3.2603702830371804,5.362212341607849,4.897682703609138,3.889198190497952,5.517021997437732,6.175861759873346,2.8982891877951826,11.678108026905,4.134474842237452,6.761610967723276,5.549412365447403,6.112745848145103,3.2538406093488037,6.008126592111856,3.4919191340852396,10.509150875651544,4.9034611683047356,6.160064100563802,5.744368207572366,8.786341989637473,5.8705831898532574,10.214022325341752,6.299168504756666,3.8869873721991786,6.523417340159489,10.766418819896826,17.051165204412477,5.040800819171247,5.9164295191286,6.587307077263729,3.399727304749668,4.506535975375917,3.7635290942176507,6.142974823530403,3.9019014093194353,8.113847694443653,9.789762835322925,5.437226058399827,5.744050685222826,7.0910664012986855,29.90388221340711,6.374132332367788,8.671762557746925,5.251128825964389,3.583786604971362,5.430195010519373,3.906805142369646,5.192230820498248,12.675514309046669,19.594857040749503,8.017565628531132,3.7011792419288208,7.601476340464177,10.731453394946795,5.370659749582152,7.935628184723004,4.319814619348837,5.685792180309524,10.646561860309774,9.647551035353871,3.380964779563049,4.234821104010882,4.931722468980883,1.7409349651607506,4.040385533150489,2.5639802926087896,25.15886867109315,4.5536207728144555,8.372335269106683,2.780999743314359,9.493360558301353,15.435566718542962,3.4977132676587415,6.308916939628184,8.120273377250856,2.182044764034025,3.649634111877373,9.81847207146105,6.787118511072771,1.7653806050149663,4.7264290373418625,3.793520796002445,5.931543024934373,2.921712259634154,8.335714287629386,2.647623141701558,7.917667682657004,3.5243653909557184,2.1315728534397222,4.470006734874682,5.899951137585795,16.949810148168392,2.484206765745871,10.424441971202693,7.002946587106523,5.280915865957532,7.740976605624799,3.5567034144220884,9.078530148905546,3.25126145988372,4.62283187132156,6.632382266608695,4.170170223494549,9.635868852942282,7.252352838408476,7.8999945767763355,12.060595027584736,9.31090733579138,3.004732294397404,3.363417857076019,4.151210315906558,2.3653023555366706,8.252026697650908,4.860458469967937]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}