{"self":"http://probly.dev/api/sim/TgFoMnkEKK7Qv8HgBviGyX/","id":"TgFoMnkEKK7Qv8HgBviGyX","created_at":"2026-05-06T17:11:13.841030Z","status":{"status":"SUCCESS","status_datetime":"2026-05-25T09:46:53.462817Z","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.4995950410940316,0.5534941306967428,0.4505952067416833,0.5600331293547106,0.43572846323759656,0.42570106235678906,0.4679276963596957,0.4806723638866763,0.2953801107212649,0.5487702710343764,0.3160735667199898,0.5425543927946058,0.38467016029318174,0.32700085839110493,0.379656780890214,0.48871831456901166,0.5138016695280817,0.4550539933553821,0.5329966174912427,0.5020295473782443,0.4688216358523363,0.483683374817389,0.5274600672905666,0.4573591739644828,0.508968325166515,0.4044722111309384,0.4933565440859185,0.46998561638077363,0.414518469831111,0.44275759631289585,0.6365007619664642,0.4946942232639348,0.28094224677925445,0.3274156194947028,0.48036085335384504,0.3592943290869408,0.5632299229960186,0.5695512269595054,0.5204025539960857,0.5517010524098965,0.6488093740793925,0.5013932481691437,0.49669392811945057,0.5177174140505254,0.6358695677405973,0.53841364559249,0.46728616047938015,0.41220562538197814,0.37112126027423964,0.36526357470247256,0.4492469257230434,0.4152002407043909,0.3546269168801634,0.4666979863331563,0.47319127857844334,0.45670374547536186,0.3690069300896847,0.3676643083040321,0.5085325886858658,0.5869773271227862,0.33976252561540804,0.39125634263573766,0.4304530050519216,0.5221927576987546,0.7535295050425539,0.47291874070518725,0.42913152346380734,0.49911229317889205,0.4852949451110246,0.4191879437007312,0.4226972757507409,0.5791539248427914,0.38730098505892835,0.4194212237012293,0.4117907516480343,0.5281401312009839,0.3855817582089579,0.4649188126427031,0.5626750866885947,0.49402967926837416,0.43610017499884873,0.5321375966373584,0.348712570166513,0.3900847062908226,0.4724367290476973,0.5682953044292554,0.4894067697534001,0.43060405643169164,0.4249640541373756,0.6005670340089452,0.33208317057800374,0.5267315070895867,0.34838591840744443,0.4197475661372495,0.46815308032879294,0.3801991215852316,0.44594844242152165,0.4868504426138944,0.44314533788502375,0.5456979902410951,0.40142220564295633,0.5241526858204146,0.29589992796693426,0.5644107644610155,0.2740417151629481,0.3929223717626473,0.3820523438340326,0.6287960223292127,0.35037828003997784,0.4765765429539788,0.5106889215492538,0.4472068631794305,0.3916823263655455,0.4914468967458729,0.5381458963652153,0.4143011491652059,0.48003827935628623,0.4835417300944407,0.4430160551922036,0.5775587925519601,0.44876415340195225,0.5530467583216554,0.5558177342207173,0.49768753176971586,0.39939290220190565,0.3584127513212519,0.5362482895546834,0.48750523241396915,0.5532856756124985,0.33337215466515613,0.4120013125260602,0.48981805489364627,0.5033527950574099,0.4963609939885452,0.5272507867200225,0.48253005078750316,0.45276239584268646,0.4458997723328323,0.41692973812059547,0.4455819749421663,0.34786833572675724,0.3821145429673465,0.5619358677897649,0.3693189828906366,0.5085545033829776,0.4658142288083521,0.49223809440380956,0.3577202807124341,0.4479203284940029,0.39291221505286517,0.38041947781418833,0.39890195956076635,0.36722689016630206,0.37577864416793755,0.44412807453136743,0.5398027077719869,0.4544613832076075,0.4458795591739386,0.5645431442244754,0.44352497387426465,0.3110794608484706,0.5691216405951848,0.5282219613781237,0.40429311615866553,0.38296311531368277,0.46044120318391957,0.45904711395142156,0.5378968137991077,0.43290310809963733,0.6219752415782186,0.4302048876705487,0.3011643786077052,0.46409625410148686,0.6013485832929762,0.4545621053626734,0.28872150978420813,0.46117686396158963,0.337068075932101,0.4195530824290653,0.3650792804593644,0.41915205852843457,0.4035279248887197,0.43220221533282727,0.24312866286483756,0.4876085439348758,0.38690137467835906,0.5294313671799526,0.6229369259549639,0.4426671698787695,0.5995523154010064,0.45454295607577344,0.3545593129420762,0.42570200145883613,0.5555119478292772,0.5495327277302922,0.5728941530200049,0.45655265431070524,0.3892681976956093,0.45281699319390073,0.4624283423471994,0.5800762383686304,0.5716991273904446,0.5693968663427172,0.394898615020351,0.4103839674924523,0.49168938931409606,0.46613058881437636,0.31887844296293866,0.42047553035636887,0.47432520781287346,0.4430399223116119,0.577258352697336,0.45520453794221954,0.6080682344958991,0.44794718181259663,0.43369491501638174,0.4111966375829173,0.4746591334533078,0.5401411668711233,0.419741433512348,0.392439368955156,0.44856191579765126,0.47784541495735927,0.6060272705497098,0.6004048024193908,0.3978752608417789,0.38776636987906465,0.43366191480074157,0.33149965183307084,0.5166926241499383,0.5107766108366782,0.5369770693298074,0.38533936811681796,0.4620365417099053,0.4945245842088093,0.5535019878044767,0.3275970258608125,0.38163707232728705,0.3948399514842832,0.48544115858893555,0.45874591599940984,0.48786402957538233,0.3784024213369199,0.6212613080639157,0.465159262252065,0.4234207119870632,0.3168713311268107,0.5422661796618198,0.5646660935163234,0.45788692447820034,0.5036646397122923,0.4854733967887758,0.4875702942115008,0.3758443290291547,0.4226504978405038,0.5337779150124787,0.48343483379835966,0.3986281789706326,0.3490705469139251,0.567615022749457,0.43040349455746346,0.4352612923572351,0.4781915223921762,0.41358565268381137,0.47248761372934306,0.4214859748975419,0.42851633432510217,0.3946054306675755,0.5189800171304846,0.5073333700679555,0.5200355497450657,0.4631147573751917,0.5031799917125002,0.38267285155084196,0.3218417787113502,0.4639698672535462,0.4952707044227496,0.4328757906407786,0.5167154103061868,0.4708784037369752,0.3789657512006274,0.4047023623699188,0.4202194777543489,0.4564779325092024,0.39160128732322746,0.4611810036264652,0.36148434790003475,0.5088992330585598,0.45286692537384216,0.5239282913732015,0.4239399193937735,0.3738467557971889,0.4854057392855779,0.4113304685721251,0.24351880416434607,0.3916654934300585,0.5333803471629671,0.49535840114159396,0.48733608560942193,0.5919775735066548,0.5972829279983133,0.3680188568251049,0.42707826354257217,0.5277274501567691,0.32799587268377606,0.4730363234603532,0.4216809028716724,0.3869000186098643,0.42239243109640817,0.49098950244463757,0.4935788679022715,0.5568392759799504,0.3996742984096754,0.5061836396115806,0.4231955778975391,0.4506520992532765,0.5891475971038833,0.5646517580338383,0.4720590713033892,0.5506772796735026,0.5556299095792858,0.45560911402724774,0.46722896943843983,0.48827102500691794,0.41927339578693346,0.5255029566318877,0.4819895599817024,0.4275399766927834,0.5987197825209564,0.39943528945296736,0.45056957595910485,0.472820402692355,0.5231241892820404,0.4106415424834304,0.4328794730273371,0.39221831702058546,0.4454835650693399,0.5852630275918184,0.42000698142524284,0.4279474154721961,0.5190273004112285,0.5486708872541177,0.5186650362487653,0.36509204288246394,0.38351981818770686,0.42497901691839235,0.5113796837524791,0.3287175370857607,0.5059283359792732,0.48392545873026716,0.5478571430903941,0.5648892638422673,0.5164124562451456,0.48984954730022257,0.44806505167201127,0.4767034253981613,0.42610951175386635,0.5042857732175267,0.5484324654463776,0.33693214695709395,0.47304266662000855,0.3398665046935296,0.4340587021242828,0.3967307318249101,0.48122595876282276,0.40591061974231385,0.4678157510826553,0.3706192594621469,0.5425067070945461,0.5329985154438519,0.551666462630206,0.4574257625361592,0.4797933600838223,0.3965408635438769,0.5267019356567034,0.4362911579407047,0.5606236078337935,0.6208726858964148,0.5029553472978471,0.4034838815077471,0.49389676390113874,0.5691011510579063,0.4874643723246778,0.5699736173822832,0.41969723182938923,0.585861375316306,0.5805784507435185,0.4568569353573896,0.47129484852480363,0.40968749961738,0.5069035636153493,0.3964172237920675,0.5879509485644921,0.46672989896239225,0.5427026605087473,0.38340514818919585,0.4599240770748883,0.48386349484889435,0.3736514268834565,0.25259185880882246,0.5526597979125761,0.459608573056069,0.4818532132081114,0.43814357040867946,0.4785809816133143,0.4272557541709218,0.3201656196660592,0.5176578287436647,0.5703272908467252,0.41636753200909515,0.644077119474994,0.30417688564251716,0.42954016493922076,0.3966364879756902,0.46926317088897795,0.5550747239069048,0.28979616788603624,0.3739920472521775,0.5030475813177078,0.48951726614990637,0.45472543855751096,0.42270986842499114,0.5253278955983716,0.48279251660947503,0.3028758845062635,0.472307518099027,0.49128294185412524,0.5151596017064164,0.5187027897232942,0.5087045705886398,0.3578533447757024,0.49566063647253655,0.4400502361180425,0.3764856637247231,0.32313431488073535,0.4355228372955603,0.35523927477575856,0.49422756059088346,0.46755748944908976,0.39000056056206084,0.2853803411946631,0.4289818034304821,0.4438061445954353,0.5142768016860557,0.5174360020694858,0.4739533226554999,0.5255968793026409,0.35567109446226536,0.38294326973174564,0.3975090106799321,0.4208875772802082,0.37821050726309347,0.47715288151069235,0.5636250092982293,0.5856822395339162,0.41466044727598866,0.43840925909939144,0.38249628703270677,0.48016553338224155,0.40953696607574275,0.4672346575538016,0.5205657442789369,0.48744439363236863,0.3962786267921657,0.48589227769595456,0.4259551323225292,0.4085729322807825,0.27232958183317113,0.3667440150189251,0.3820678689668795,0.403401711122885,0.3502247957269934,0.3699918161676479,0.35545031137787886,0.3935641383613102,0.4035288565668031,0.35868449165036553,0.4553489482483279,0.46761710987881744,0.4638299401021786,0.42808115771142236,0.5516900380175588,0.4409830604196862,0.4608314136908762,0.5517861276437959,0.34217675958174526,0.47631034363360086,0.5128341924549135,0.4428570879882174,0.40355841056499897,0.4302754391686611,0.4887070600150031,0.5440221906380193,0.43713668012785406,0.5501447833938545,0.37094573779761947,0.473695718516486,0.5989620076908122,0.5101892720608481,0.4516432792599683,0.4395265209572491,0.40668569945918664,0.6239405957869888,0.5857908216885314,0.4491578276577357,0.40667832130987885,0.38015189007249844,0.4400973731997086,0.48509972997382506,0.436843253400358,0.40214872277112323,0.46793694518078116,0.3932910054770909,0.5054871890259404,0.39712576627501095,0.5205476056906545,0.3734579406776866,0.5289663303605319,0.5104835213659054,0.4224070834256578,0.4377480067898688,0.46543912056427755,0.4987390954303767,0.5205372035197782,0.5179247708496718,0.5379601299515527,0.5299385890555657,0.47353896137127083,0.5304874259499904,0.4109635653582224,0.558405433945578,0.434288488123147,0.3752208830118861,0.4102219025105046,0.42084149369489493,0.5104113287895746,0.33773951479032976,0.6569393663339723,0.44482213513142727,0.4250605533933782,0.4378963335751036,0.385972535436749,0.48161957839886754,0.518320994830997,0.5426816083887077,0.4312336043947625,0.4743922813970327,0.4542149816601998,0.4643397037355839,0.4045496754196374,0.4481558033692832,0.41627644707773703,0.4910070270958007,0.4348199069869423,0.4915855885901593,0.4441181506012702,0.334691874083965,0.6114997910783024,0.4879902175571552,0.4078249811345735,0.42203580945893293,0.46592271932443535,0.4727887396312124,0.3867600076644047,0.3832690934351785,0.48790205706051953,0.40543669453351566,0.512109202689556,0.4181372838186319,0.36544394762497134,0.478078988771989,0.5392763950060531,0.5644405754774359,0.40473600495561013,0.4623545076144915,0.4008086809907817,0.516728756933759,0.46491212315532204,0.3956966336832386,0.3757863582927559,0.4990328113236647,0.44210814379092855,0.47625867908338837,0.47610709605375995,0.6529869722991111,0.5320677972020728,0.48151100285633475,0.3445651299492855,0.48362006015209635,0.41654567370881035,0.45982014910627644,0.463036118390541,0.6287447028415547,0.3811091192881108,0.4623037836748954,0.683896134916368,0.44435862803179393,0.4981269950630175,0.4978358225628848,0.6064734135227822,0.4845936661292331,0.4854621246224344,0.5898547228918117,0.3591060574369159,0.48855973521443874,0.42544111407851254,0.4459349052653713,0.44152068438894204,0.5563151576880716,0.42905509195480873,0.4974397047671784,0.49092839624414436,0.6220870435487598,0.2594931186533865,0.4783021080331233,0.43689441601913775,0.37236673097824285,0.3949916958790436,0.5084891842767129,0.4664503915165849,0.4003593779102733,0.4118375102459873,0.5578180424210339,0.6230527773726778,0.44836987117991045,0.4414653986922264,0.5071483590549953,0.5515467484572083,0.5038589773238259,0.5750086314309705,0.5985929951348745,0.4985916134163032,0.4277755714655542,0.4689254269255699,0.5109782919161608,0.4961444976826074,0.2658218968841888,0.39654451397726304,0.6563906736839862,0.49302930236551185,0.44084605490038015,0.35152728403376476,0.6169393376567884,0.36624221499479376,0.4060676503232863,0.33047485242413527,0.48071828306944075,0.33249296075467494,0.6635808361110523,0.49592452815230287,0.44338393982375474,0.36399454703094886,0.48303641627592686,0.4370512968314496,0.4141004478453568,0.5271379255534601,0.4105399837581703,0.5442340466761824,0.332504197881097,0.5349209560412634,0.4100768970886633,0.44926856925710906,0.450552459483713,0.47296727425094187,0.5324200492965796,0.5209184679143034,0.5267569705910772,0.5632745350733726,0.4860556024354058,0.29277074211945664,0.45755658340234634,0.4679225881190322,0.500216610726004,0.45650211511502475,0.4425510373315912,0.5129437246009299,0.427602768751884,0.4733629035355296,0.4705038598321352,0.2732254394701357,0.3212406763763269,0.4607320726249228,0.5011430125837383,0.31959273287636664,0.506197800628702,0.5523343439522163,0.5055859068836978,0.6192788389308778,0.3798577468690198,0.414704571823452,0.4737090391123657,0.4948439834848429,0.41960711541731643,0.49943747086114487,0.35001036789882306,0.45545687017745384,0.48656881205453417,0.4134130688049949,0.3960789999343618,0.48267551089014016,0.6033345722572981,0.35625543049696606,0.4687018372273266,0.49913681706419316,0.403590753030376,0.4913884258289333,0.4014264127105333,0.5190998800236141,0.39970453495374647,0.6275903273788518,0.463140396089384,0.5476415902504871,0.47739087834835325,0.5399816884475966,0.40183616058422283,0.5424957328259702,0.4436751355965964,0.40410781937441054,0.4353217639532844,0.4726263270922608,0.4879662167358263,0.6065402178705483,0.42472301310658017,0.4556052822489666,0.5737483550868605,0.5245835253891711,0.3150160191397063,0.3584249744864857,0.4167681858089268,0.4039583054721243,0.4569970148360008,0.4038456401889614,0.39448705617462404,0.40199537600482554,0.5001277352839121,0.6252585905993944,0.37802224911082716,0.3979838513041948,0.38769682822138796,0.44431190883908356,0.4998146354267717,0.4660244058221428,0.4626722232674272,0.3987960705566086,0.5659031858508516,0.3386168143653097,0.4441472529241722,0.5092832909563275,0.4719109591185158,0.47573841385373616,0.4556899413727438,0.28304542999271837,0.45854626252730074,0.36141787854327767,0.3853152073055023,0.4214525710475196,0.5090406263655687,0.4641431980217956,0.3750056075277326,0.4033640870824288,0.4716991385168001,0.5755769146464739,0.44791946660850607,0.5019346712938639,0.4964674433753242,0.41140376164602505,0.48696835315694265,0.4574891309517796,0.48560254409243736,0.4390818118193779,0.5298966676749869,0.45683147479693015,0.3446526905762197,0.4169820427740357,0.39599129579870185,0.4866073570762944,0.5372064279221818,0.40743840018467525,0.4029948495579498,0.5255479053794198,0.4027600861225185,0.38824966357499097,0.490475329617216,0.4738494639668803,0.4814841907581297,0.41249577126937553,0.5151679021684916,0.3961839211505831,0.48704207409696215,0.32238265875713484,0.49395516316239446,0.43969052471740333,0.4082047469304575,0.5183417234870774,0.5660936629504238,0.5327536158215476,0.41571790889008403,0.4697353640526177,0.4831669958584008,0.27730842667094213,0.41606563516868694,0.5441859861299431,0.45837425643055973,0.5004891088034501,0.5585232068407959,0.33895667170967514,0.4636016689015117,0.454519351945587,0.4138026030727099,0.5577402550967656,0.40726441910519035,0.474965765441652,0.4958254311196816,0.4942778334393596,0.4705814217985728,0.6434341210289132,0.3372531630959036,0.5827075726035528,0.43284347236379195,0.5500403107762601,0.4770058614715689,0.4979869691883537,0.429493806989792,0.5382550616857381,0.40177706532261004,0.47382412846819666,0.5338446592988614,0.3957079870986368,0.6011407400688634,0.5229828619936238,0.31643565834733844,0.5352011023957476,0.4975043639251313,0.5183014210283963,0.43785968160249444,0.5147939745563647,0.593044894776782,0.3464968320504549,0.3572932101337301,0.48117168224707957,0.3747031041341988,0.4291488991717063,0.4601284060087373,0.5201237251058698,0.3494707710449102,0.42284334812949564,0.4953354130906225,0.39173944468302196,0.4034430634796383,0.5271753077079784,0.41760979527052017,0.4691440568200665,0.49642804179193184,0.38809011397896814,0.39692639810142544,0.45660665017177,0.38708801858642095,0.5250914020217367,0.35720395490370416,0.506032265418408,0.5065757581598136,0.5877544649139428,0.49494493059764866,0.4535436888757374,0.4351654092419075,0.4424561605543579,0.48844096161932,0.47640970361761925,0.5577577741352242,0.39087525238633797,0.383679203142238,0.5533424842454212,0.5326980835894229,0.49271217370408366,0.4507209992078645,0.34113343893057313,0.4245089700566068,0.4433221747192654,0.42181132852056774,0.3375316925532381,0.47942045286373464,0.45041673119036146,0.4394705634588614,0.440711809959719,0.4499334195389041,0.45148828878560143,0.4253757249266639,0.4425310410544521,0.5224060344864049,0.4720715165082024,0.508765204281073,0.47092720981713704,0.40797032182292625,0.4751052734678893,0.4725292445154285,0.5116199154294064,0.5974137965595969,0.413015809449788,0.5020578730389845,0.44885690595608463,0.2951663555110365,0.5003905643290197,0.4651572544825833,0.47046214143621157,0.43854069533385565,0.4703513820073709,0.4731853767188304,0.4628326438384602,0.39023492027150314,0.4864635434286166,0.5096303383009128,0.4152029156676233,0.3505587468512768,0.4506029768576512,0.4498554973190066,0.5185390625803159,0.35369948512754057,0.4442291428579797,0.4740757854831147,0.5466155090467956,0.5153831003859953,0.5189634353316407,0.30769840001874627,0.5554245500824827,0.5232708216222388,0.4153552098984937,0.5004481690484909,0.45140816783380194,0.5208425542110363,0.4242557904963278,0.35915486434168276,0.35580357591247974,0.4338628822343085,0.35826073559453714,0.5513624853579185,0.46508450638750143,0.3888976544062628,0.5491830968527834,0.3815303325735726,0.4891387617552427,0.45179285964293364,0.4276338608851377,0.5449995807861593,0.4514533811300561,0.6276235779185003,0.41508286331771455,0.5537208652896095,0.5854831153203337,0.5307548000200468,0.36588912993561473,0.6693798489434593,0.5361045140686169,0.38338668891392685,0.40362057234828363,0.4787302539456276,0.5228836624257912,0.3903230196825946,0.5011834122338179,0.5197511588186247,0.568373873113679,0.5299753307327257,0.4351761636223263,0.39830605885909465,0.494731468152128,0.3323189342950822,0.45305508993685034,0.3995891373633384,0.5716719394097487,0.4564937867951678,0.475967129800625,0.5080450334744466,0.5562259591035652,0.3950904240581901,0.5228575262647807,0.4776039271471501,0.40729247128548657,0.37627560295600543,0.5601808147644175,0.45743834419800916,0.5481965537695095,0.37009182907361904,0.4728970331398848,0.34482507888702135,0.35421209446294705,0.42816399953488204,0.3523470339931998,0.49538397149771907,0.32287709691184885,0.5722721203856939,0.3103383389271054,0.39056907473532915,0.40963321840991174,0.5974213390746774,0.44378264858630423,0.5217470304504467,0.5919774379210984,0.5492342702103854,0.3550158736466082,0.5681470899026642,0.4871829471100384,0.5214155807497529,0.49731631458852255,0.4256252009160676,0.44038535525418515,0.5301126377670385,0.4708630922469315,0.5414448574230842,0.428264397351232,0.45942861729601275,0.3352461249783542,0.5115102610299163,0.40790038774016274,0.432278801863188,0.5011699298782235,0.3924103372839115,0.4346523497360452,0.4574699068101084,0.41905052654535657,0.45590583240440075,0.41498431010258313,0.6133266615419162,0.5278366400414725,0.5523753319995321,0.47959456287667984,0.6412774683734634,0.4897029941554138,0.5266061515176296,0.37532106747298816,0.4076519103868219,0.5198938235375921,0.5362751086246533,0.38025077369396815,0.4131055224547882,0.5010979340917943,0.6265827304497288,0.4233236341988423,0.4751102199925204,0.43733095619864315,0.5109716571704696,0.604873832505471,0.5256991483381156,0.3764750522661998,0.23661662354365381,0.4549910340541647,0.5628473632534385,0.3517015366990149,0.4435336193996059,0.6087049955785749,0.44008517000508174,0.49884388651220046,0.48005982118544566,0.3770257217224391,0.5507741007164138,0.5258585899092234,0.33786950148579903,0.48300508073762444,0.5264806680492136,0.3893740765156947,0.3092887274172574,0.5890229465646862,0.4732849623124588,0.3180623186674585,0.628057990464236,0.4149264590815278,0.4454132483642886,0.5749288270674944,0.5535829692787828,0.49985031506895544,0.5411782602958315,0.4523773343694053,0.3136413608099539,0.334450043616317,0.5204243604923997,0.5369290494076745,0.4465800955901068,0.40356045086662407,0.48436721550425776,0.3820078849156232,0.5766572879066524,0.42730140181961845,0.5025937015388298,0.45412714970679996,0.5656368611172943,0.5001957383164466,0.5784088759884358,0.39748659803466224,0.4353323557091634,0.38099972930035964,0.5734239735262477,0.3312757095971511,0.4130650798734305,0.44603284232014634,0.4853482747320203,0.4662921169745237,0.511846180499932,0.45908170372560375,0.6090463161084877,0.5774026930536851,0.528574272542615,0.5809510794591577,0.6552049543319018,0.37936856456125945,0.4466039385753383,0.3253233781607566,0.47775881914550805,0.4141025047920069,0.443093497003985,0.4140402563380052,0.3777579227429545,0.45245177581085516,0.3938153786409995,0.6409601903935412,0.5682011031092401,0.3720119988342725,0.5893579412834732,0.5666053077838431,0.31618311484818057,0.5335849540767609,0.5146003071799412,0.4687710532577696,0.4534854287235407,0.46944745705368923,0.37332402280266563,0.5119882299362714,0.4660909394672112,0.5749324104644947,0.4454989696587885,0.3669915409364113,0.6303034971833475,0.2552990827258496,0.4779326147568433,0.4791077020295078,0.3671717150345234,0.39656931165557396,0.5558723792874429,0.4957193382517591,0.5320985623824451,0.43161821711193393,0.3698970963510589,0.4124618703278147,0.47058757446475735,0.35677685284452537,0.4858043933978131,0.5652181683910522,0.47374946392214734,0.42506062551164936,0.4535094962015753,0.6137859373784074,0.3205657031754784,0.442946470977019,0.4700621147977476,0.4373299816163095,0.5454470328108513,0.436505125826454,0.41908896379630955,0.46144873489334126,0.5594112486609895,0.5207563629747625,0.40355214024576563,0.42668204235922486,0.5824740802031815,0.561518244239389,0.3346575158386685,0.32618152701868186,0.503742072702894,0.41361351405299634,0.5387960334974712,0.48716321703252535,0.5607547145105535,0.48446970996470556,0.4557788281241984,0.5046580030963669,0.5397097850133552,0.41399531974573034,0.5213567291873309,0.5166159875109612,0.36451180206366385,0.4829071908747876,0.4269961769096743,0.3921642743522462,0.49366893666750994,0.4625195615899663,0.5275600024479201,0.6215397441518175,0.45290595053808186,0.44537380698895246,0.48371263163269484,0.42775533764369555,0.4972646060505054,0.5273632878855452,0.521744720593311,0.5304377966626692,0.42050739496962164,0.5144653111933614,0.5154090741827545,0.43997263764750355,0.5193332871481535,0.42064485297400195,0.4102754196569886,0.31473865557336644,0.5489533847577375,0.3938864861481146,0.518436423200428,0.48265183448199245,0.3264243396356314,0.5216526885655923,0.5694052145681876,0.4865007952421433,0.4291758717858517,0.6095948557856813,0.3881508101273629,0.4902930052690842,0.478217331895111,0.46210420568893423,0.4295797302799211,0.377307529740851,0.4744037652451674,0.48212273513597104,0.4781805332537344,0.37460298707668105,0.5134962346179122,0.5545886391152564,0.4479636934499906,0.5453176742344858,0.41252000200396954,0.5239288260568712,0.46566907874328883,0.5101665391732708,0.45923244868228685,0.6031045051164096,0.46983881724138904,0.600875110063082,0.5618714726018487,0.3674951072100983,0.5294007245644333,0.4701037026580508,0.5195769663626271,0.4554580767817358,0.5021267815330603,0.32107239676530075,0.4388184605950147,0.6405934796982092,0.39155010555870534,0.40148200542642337,0.549240262190765,0.4947216015570969,0.47121141637179537,0.5395190636816307,0.36931417980498266,0.5555586479516587,0.4490162747209866,0.44876362448074697,0.40502282310096777,0.41864763281902084,0.5051685238853338,0.5243541693060118,0.5181161558964997,0.43828921606817667,0.5175546885112684,0.40004421817602387,0.449916678868802,0.5239184768854241,0.5339808403391185,0.4743135144488826,0.49051351010115035,0.5160999558711522,0.48749638720720023,0.4896556669423756,0.5707660913963354,0.5351723382361125,0.3630977513854697,0.48053885032064064,0.3685105466730009,0.44222282492301557,0.5036102208007315,0.4514343110940577,0.43521633417989847,0.39125411967957585,0.39848246150204214,0.4361636131210324,0.4889020763374152,0.5419601526841684,0.5350407395471621,0.4221529343979657,0.40254931222077944,0.5342854604176768,0.5407824978360444,0.4831118534956282,0.4170898988720319,0.5227968899628215,0.4368758782171287,0.48842145386784364,0.4464297607829432,0.42211220169788066,0.46895891115274085,0.4110507137884208,0.43479306370329446,0.4639289459147771,0.4625208773690534,0.5210265811239493,0.4038230158347256,0.4326461783675239,0.3691159706531689,0.4138314802789741,0.374407146477722,0.416406431594518,0.43559725943115746,0.4555124628317366,0.49565412149006727,0.5433212812467082,0.43999492207226654,0.3195487187803426,0.4968488300040585,0.40085434575745527,0.45558059322437183,0.5077646918210283,0.5233919321479774,0.5437536668514328,0.3068222340141664,0.4176653990819664,0.3754627664713197,0.6389004369792943,0.4125169010254033,0.3252948676650691,0.4068761728257333,0.4860387533028156,0.5051739010546671,0.493523830217535,0.456140229261336,0.4610259767876441,0.43973722676598226,0.5254988376590857,0.3561991572646383,0.516042518658973,0.3958089439882544,0.457397905545847,0.47275113485382597,0.3689838012353316,0.3805658802926699,0.4968631890318404,0.43818251865416313,0.45184658465680017,0.5834651427095779,0.5489677479748196,0.4526888248059787,0.6248892505913901,0.5332966503545277,0.5919876551597293,0.42621466932151203,0.4938876179219134,0.4138586605944138,0.5048969911866632,0.44212026101471497,0.4104891484291536,0.35643476180200434,0.4988776829797882,0.6327512208718786,0.3588048779049915,0.4403589663176414,0.38083148885964246,0.6160118296121254,0.5596764274641173,0.4292478248775165,0.534935711651727,0.44891107196163943,0.4886361164601152,0.5378271835295261,0.5372716469386124,0.4416551876044393,0.5949014357580275,0.641750540226845,0.4720764559470328,0.5403062476965665,0.37780488643583376,0.44076744315965116,0.6123435099204207,0.46257466257979035,0.4000192161473557,0.6400663067309554,0.4540587836128243,0.36241465717967986,0.44323855035590193,0.4327033101650116,0.4422415442117334,0.5135206817796202,0.47195548396544595,0.46000479804525324,0.4108413198663947,0.45537962675658245,0.5258573536463705,0.44144949119147614,0.4853326792453698,0.3734368396530216,0.39367404338897954,0.5452573068087639,0.46492426141365495,0.5100709879299726,0.4148742798961457,0.3870900894789793,0.4955387403084462,0.3954487018112418,0.3479305258795501,0.47240982394769127,0.4728482502990678,0.48588575926976296,0.4779613257920972,0.39526100624735533,0.46709606372098506,0.40955521627026176,0.39990471491879587,0.33732532693624995,0.47714378842078387,0.5497938796802655,0.4413123769601857,0.47655334101108715,0.4697113087591986,0.46235469020948694,0.41618337160508617,0.40109175645759637,0.5322766210667779,0.4874154444192814,0.41156591253815467,0.5097080914931277,0.390250364063714,0.38731422029088564,0.4241418636946017,0.26896424055245804,0.46307699206228276,0.6519053534233461,0.46215886919249854,0.44879880356143914,0.4125179964433033,0.4002474598089279,0.46846503264938094,0.4466703223720336,0.4010931422887396,0.3298050745140962,0.5238410963371782,0.4882125050504694,0.4044943225101966,0.40118750070036874,0.5821449402628247,0.36855715092640706,0.4118133865688946,0.43671167375119346,0.42923576201550445,0.2990044060538778,0.4724777783527227,0.5074061594375765,0.41176146198556784,0.4797360683677592,0.4413479595483221,0.5022729588569645,0.5247827013667996,0.4310022028446592,0.443433899592593,0.5083943764169832,0.31925744417284474,0.5703215525481421,0.5284135710521927,0.5318076788781305,0.46435932241431493,0.315166462697157,0.5185871894555266,0.49932483794543353,0.491664341373965,0.5201544214780686,0.5288862383755556,0.47478043631191524,0.41575944369659623,0.47408397671885966,0.5801548669360962,0.44144579142531215,0.440786853944058,0.4389904710142005,0.4942458019412387,0.5915135518552554,0.39185059904680325,0.24126639207052186,0.450572042150002,0.3917977595125105,0.4527411463835741,0.40961361049233885,0.40154175818079674,0.4900918666822873,0.5262871282420437,0.4329337105363225,0.583060338059346,0.4677467756135203,0.44969442671958676,0.5235273143862094,0.4737664083558882,0.38498644537961624,0.4862498636314885,0.4142536804193355,0.7069786985264312,0.40785920402010606,0.46635162303669503,0.43396847798176236,0.4059134382575467,0.3696317449193969,0.5190928292028153,0.501218761567147,0.5613754306521431,0.34072387007254235,0.5952188534456792,0.4176276049923255,0.4563204390462945,0.4282456870605009,0.5953155080465511,0.4797971228397489,0.47115554368057744,0.558013756796153,0.4815390320116544,0.42488446585518186,0.45553282067125084,0.3844716645704725,0.48366053841788653,0.5058716526000844,0.4932116853743709,0.4790180626380868,0.4459972411082996,0.36297607618845573,0.2992246059876499,0.42304468747466384,0.4456696607438734,0.41856061555002255,0.4102204414381778,0.47443736384397317,0.43091740204146345,0.4793076553987153,0.5097288352034283,0.59509876802995,0.5523611501425254,0.42846736013323067,0.4899466055747859,0.5783829092723997,0.42841725521996527,0.5757107050905517,0.45132932213289695,0.45369644853784835,0.5868286098093466,0.42165190020923704,0.49938896399788846,0.5211504514378485,0.4545555761508549,0.3951140041600782,0.4674493918654479,0.3622549777762122,0.42900598253976985,0.3992029738792166,0.5156147998177834,0.3710126238268499,0.5754871430080286,0.41078905699246643,0.4541229063536776,0.4496909746196166,0.4838906246273202,0.4552579452292571,0.438478259554492,0.4714569177944057,0.2953661692843471,0.34011587356360085,0.4232842254023858,0.5967547651955426,0.5313302602051352,0.5098040735778482,0.22213219892823027,0.3852251167059374,0.3964512326406016,0.39998392133596167,0.5694300658445335,0.49105220438882613,0.5304312983426681,0.5590214645043823,0.5146843814804906,0.36568953157636525,0.5650847225283586,0.5032981482901175,0.3562924240458021,0.4278154843997301,0.5310447074842025,0.42413853369563076,0.37286763192566014,0.5295926567544487,0.5551995584101002,0.4010135481290982,0.3941003431798342,0.48628907061638355,0.43060303667930183,0.5207234381500083,0.3800413894811591,0.5830366909138068,0.35790340435060874,0.5757209643553692,0.40639893996740734,0.5877765705016932,0.36547248303886365,0.49672334355676584,0.41699358984740675,0.5079879240729983,0.3729072478795708,0.3861773969754024,0.454449667989343,0.5507912222066487,0.3804985217361687,0.49386508808707036,0.34995147575690744,0.4203254575064659,0.4911440071550572,0.401607506678994,0.4180097676423687,0.4995095810340775,0.4247425998841278,0.3899134561593378,0.5709242390730601,0.4462152089243564,0.4964157130862635,0.428118702758847,0.4602323867089202,0.38904346091585656,0.4041879763272965,0.43104832931310366,0.5011757332889469,0.42894922900913934,0.583352709199305,0.5426398716005078,0.2976363748034689,0.6030932507958225,0.4185164333776233,0.4742294986617776,0.5430992345818736,0.46955484599463954,0.5350454510341518,0.3452317207529941,0.4466859361483615,0.4971332786487382,0.46385019980787984,0.6226211903080479,0.35952590921602295,0.5879198167794573,0.46552798422993014,0.39777818647901403,0.41860747149048555,0.4199043201010753,0.4610807764864223,0.3256757021153005,0.42365287789867057,0.3441236090071644,0.5022360434013466,0.4447910106623775,0.4187991551784289,0.3206261737357826,0.5540750449690988,0.4763204617289104,0.44010325412180534,0.5210643841906641,0.37389254194696875,0.37473211758067015,0.40894675140702924,0.551920900967221,0.5157945288549769,0.427493742980533,0.37048116026511096,0.5632059201333968,0.43292578183791003,0.5495916170930412,0.497704229507174,0.40866705908685724,0.4457147855820278,0.3859646900264896,0.44319994251376277,0.5637331818755976,0.5601452531674728,0.4296931258558965,0.5430552153555575,0.26051019446179935,0.5477891869328522,0.45329027880178985,0.5100748868709843,0.43983180816943795,0.554731453305114,0.5608009575882092,0.4331355615922268,0.5021650124173812,0.4657077259165552,0.4600338695552466,0.5653209972836305,0.45805821926627793,0.39219514450756326,0.5062032925680785,0.3902561229281484,0.3397989281304768,0.4828496883338678,0.6454956134427194,0.4218310675893973,0.5531355593150349,0.3608650494716033,0.4162997392551068,0.3827303885138292,0.3893152605208327,0.4588048838713921,0.40751772845501594,0.3414038682040578,0.3937776600217607,0.6125508046676792,0.33918590746604166,0.5719705629408351,0.4199697364642859,0.5598361807662949,0.4083658897899957,0.45300909952175583,0.4427580248272029,0.5643304779154936,0.567647480511624,0.4287676206782221,0.38255421555423846,0.38760041470967893,0.49968248315611763,0.39934705442237395,0.3842207623071287,0.48911836227464683,0.4855559962464656,0.33221760586057836,0.5255522712233665,0.3840901173776575,0.4125494649950369,0.31078149374867337,0.39466612678562896,0.5002569144690864,0.40621619730173375,0.4192588157142999,0.4760960987267691,0.5989637505229689,0.3474883961047587,0.5211931496441757,0.5603245286901011,0.4661206005521838,0.34901087066483044,0.5479912873146137,0.4393940612379369,0.4510220472097242,0.4656973597121431,0.37077585853651346,0.49804067803946916,0.4269750152909381,0.44736745051332233,0.5262010742424869,0.6000495390565809,0.3830851558051296,0.5875283443996755,0.44202788460404024,0.36113503741705705,0.522207910774559,0.6108357386462242,0.4358285678535238,0.43496024364001257,0.495615113295497,0.34457642045588566,0.51726099819407,0.5352843872921208,0.5279958727808226,0.4461632066367407,0.4727669371666858,0.5127098876382938,0.4064092620193576,0.5006348893064602,0.42155569039317237,0.5343008580569787,0.4788931895978002,0.42819662717448675,0.4015621159190544,0.4651048162555853,0.43782354675823904,0.4807319167138418,0.3135941192221227,0.5732483760392336,0.48154137418316156,0.5895133732531299,0.543728353024353,0.4555306237253554,0.45635252802832177,0.429693532366056,0.41878206415104874,0.3539273438620335,0.32250244247909576,0.47537525234268513,0.4902804904136118,0.4949027341601088,0.31442628420432495,0.47472039284429896,0.5281617789472223,0.4177087154049492,0.4768728748147471,0.5211861885164653,0.44190191787379,0.438886569298833,0.4794371010762341,0.5096603325326386,0.4568016029274093,0.5413025494620355,0.5525994103516971,0.3830123027496372,0.4233018178438286,0.47678759356971107,0.473951225938355,0.39240783340437085,0.48893395025394504,0.5152803649198364,0.6169862207121586,0.4674111906532284,0.5286344835609467,0.3350349185817599,0.380921969256866,0.4946571995183063,0.4916552473021651,0.5884380919223794,0.5289535129732618,0.3297248430700159,0.36592558205712566,0.5015188491992788,0.5275877194949421,0.5090550066130786,0.5579550984724699,0.42611307768230056,0.5202035380076779,0.4215542049998009,0.5477041039824908,0.43422908978383695,0.5102800008415199,0.42172812369445695,0.5350364295255462,0.5216407921545527,0.5627434945328189,0.560209660458768,0.45803139053606806,0.5128951993449824,0.5542408614915912,0.5912419407128521,0.4571974434010769,0.4140443037997456,0.5768013507174091,0.3911351510512249,0.4804642942610942,0.5005514581569291,0.5062075606961963,0.5490339928296641,0.44867726729669766,0.3141151712023,0.3997165798782164,0.43663398291400984,0.65744718404458,0.2559464595164292,0.6283850679577305,0.37951214371929914,0.4569657281914399,0.37064659753219886,0.4396517415173048,0.3829218671565928,0.4976899582418604,0.6277106105787402,0.4145321737530286,0.31211359832548885,0.5031473759681971,0.4477910114043525,0.4648232849862923,0.5028265173630783,0.5083575669520628,0.4668201606149692,0.39473679649849397,0.46197769096654046,0.4924421736057368,0.529291182792073,0.5453809643337139,0.4442903685927658,0.4549709871565495,0.40640181763605665,0.4289161102409594,0.4430619653074517,0.4790951779842049,0.35355114606811244,0.48675365369112256,0.536440991309173,0.5210074066763217,0.4597593105040543,0.4838043816624025,0.42747092474884774,0.5179851200625483,0.3813935244358781,0.35769862262321633,0.38805978197419766,0.4777831041492285,0.4904013282720567,0.3868564543460824,0.4948058642766507,0.36658788132965636,0.4707077558991526,0.45994413942998447,0.24472219837080791,0.5490971652369931,0.5531363041786579,0.44069904415416455,0.3809484616180216,0.4126729652971889,0.43808435163749215,0.3120527753431118,0.4752751711531342,0.45910892882581816,0.5005500549878867,0.5442592388498698,0.657139496886495,0.6001887920656783,0.406953168632325,0.5480688686390904,0.4946350246290781,0.26725233708163276,0.3665393900873654,0.5912017870457142,0.43599883144113283,0.3867261719296042,0.5599457734730586,0.6610425629347175,0.4894463416843121,0.36744561689526756,0.3311906513993357,0.4465485695698644,0.44966781688141083,0.4758962367957784,0.40957991866556354,0.45205618030898764,0.46612439129497596,0.506809744123219,0.42420463894350835,0.5708882886035936,0.5885096049321096,0.4763110938200562,0.42580543128193526,0.5047191940304084,0.33923180409683645,0.45291451519432974,0.42962192291419576,0.5377968654655425,0.5443091462743512,0.4273372266837791,0.45939523230490575,0.4168630671951567,0.3938308850483995,0.41558286944711964,0.4610792184600935,0.46996815772301204,0.42674782450745163,0.41892154918605695,0.45788944821287475,0.48177124776127295,0.4612938604898347,0.5253646792822368,0.5137402686350183,0.4391135282182314,0.4036076076206345,0.3213964306581228,0.39644315819601855,0.3536603264284718,0.513538107206608,0.32783761745991885,0.4816674119974208,0.3712927949555552,0.4662248966612378,0.5058208266794636,0.4716288373512267,0.4323605700493016,0.524474802776522,0.30418712085275945,0.5303752526226303,0.527535804559117,0.5834698914344938,0.40129534147682944,0.5185517676425168,0.4914824046713263,0.4773348333531044,0.5248583771203399,0.3313671889538181,0.5251689617705368,0.40638185612092736,0.47571091886295336,0.45665417858349827,0.4699899949311456,0.4516238608805709,0.37590262704103805,0.5742495973880658,0.41915867167245424,0.34706150979974465,0.5084428732726182,0.5042937657901336,0.45082356899434717,0.3919254036621122,0.44151430702054945,0.5742895061613194,0.42686435537450945,0.5155216478613881,0.38417884095392063,0.5104092834908224,0.4872395468716587,0.48798505487211247,0.541863060923909,0.40210265099351045,0.43218862870518315,0.4469150480718761,0.5459240805034872,0.42481757909455875,0.4014000075710206,0.47405141511823773,0.5527604832797339,0.5935695063489851,0.4166086391202077,0.46133143873264687,0.5236139164274329,0.5416390007643856,0.4757808631323158,0.6165103951709574,0.4555266253730346,0.3741295591728325,0.4315051786827613,0.4256597822849804,0.41105214768353326,0.43353851011148853,0.571947393889695,0.4771304216493634,0.564165582211049,0.5100607779432501,0.4979537842743445,0.5815610395140941,0.4054570285077318,0.3614377089691764,0.4236394918073287,0.5194413859925595,0.4946021251578979,0.37669917682317045,0.473123897248222,0.5508450772862407,0.4117164474409414,0.3832812355383948,0.5174065331698954,0.3844892790106401,0.4592857578923694,0.49129440707554906,0.4881268887845424,0.47542672263946717,0.41258453525658945,0.4447955690078667,0.3987921899531913,0.3349865397592988,0.3853366068525738,0.3357845391545851,0.6272101855121862,0.4013806013937263,0.4892521557717787,0.6320987179256168,0.5319410835038031,0.44665708930546955,0.5450117769379108,0.43650011361904195,0.4983790389668886,0.3831332370529796,0.584707794756217,0.46058600632310365,0.42871668058311657,0.39216905976477573,0.4831002300172283,0.5427069511880102,0.4155972532151473,0.5397637357445367,0.4718531432358557,0.48399911745052465,0.4581818929260937,0.41930981525979183,0.5823373750209518,0.3886235097458762,0.4036779492007015,0.42485635103206537,0.43009529501294197,0.5458319702212548,0.43330574544695777,0.4980699514739521,0.4356369822082598,0.38920325519577686,0.4291372720675996,0.5662330811271415,0.5564531680807238,0.5511623812019473,0.36753667687817787,0.44171274637028585,0.6026274432945032,0.38334275447895627,0.5633685126673178,0.6009340009748216,0.39268827402122886,0.5322844556704807,0.4586678091018059,0.48649638829234293,0.5956100216342328,0.4145944767959998,0.5324023218399063,0.4558308824841939,0.5107220404710391,0.441650357287031,0.5214772217352744,0.5555413279645814,0.45223952679797297,0.3978108327525865,0.5571481021254653,0.31651686522317524,0.36605559996144393,0.5000560200329589,0.5693814879541627,0.3561800104124237,0.4586170294611471,0.5290694800849355,0.4964159337557137,0.4456399789298816,0.26821339703869185,0.42911472484904123,0.4576433478069361,0.486514592303853,0.4642721414860735,0.30126986957078694,0.4076618004020011,0.4730697108943878,0.45182230851317656,0.40755222520187273,0.5794518760655766,0.42929158309611004,0.426749356594719,0.4005454339684046,0.4070589322389377,0.43507545323145397,0.3473531479044444,0.44373231102418237,0.42057406553455584,0.2981827727635403,0.5542783741280857,0.46782410403052593,0.48790709019557216,0.4949314024426212,0.5389131240301763,0.4871321153193438,0.5100473765290628,0.43691569135099384,0.45168797111483466,0.4758514593895312,0.5316320937098233,0.36430849499396883,0.3645034396602417,0.4442178314211029,0.4576743578693465,0.41799263797448494,0.5081282001660387,0.37827478714519874,0.5387602568765582,0.5099270261872534,0.3646478461599939,0.5479344844835596,0.3556851151210419,0.5434043413646621,0.473910387653468,0.4350777065380016,0.4912732961888352,0.5181510109510699,0.3901939306882457,0.43524091294686823,0.6466931600382235,0.49691743821497925,0.45354862105298893,0.5994773964383883,0.48184815532635156,0.4701245505822858,0.5954176681308593,0.5220674213583658,0.45017496262084383,0.293425461270029,0.5019306766469263,0.3597990406252771,0.33561506757929827,0.4720973398993002,0.40069216293788695,0.38459591313580294,0.4307868980265345,0.49027084027401474,0.41803079651448444,0.5501825755758478,0.396308686115742,0.38246898828340875,0.4776011179661751,0.4954690885132645,0.4119302876798916,0.5224772958422568,0.42369671222654454,0.6056460680308403,0.3314782966474671,0.4653524217372746,0.518413830924903,0.529060862448085,0.39462803112418804,0.45933250775254697,0.3744127173637627,0.4382379951191512,0.40013886974216706,0.4585967051477913,0.441301021473695,0.3671911030785987,0.6048214523406646,0.5653213347993057,0.48680933675441374,0.597544615055018,0.46907153221367737,0.5032178977481911,0.23743500243686244,0.5088574407312907,0.46970678872368277,0.5110672471126474,0.4046598637597212,0.5587899284937612,0.565717349081248,0.6907992523293239,0.3832002476169047,0.40572195726390325,0.5021943425792891,0.34120362229013973,0.43880139759682973,0.41607868354702743,0.5070396323511259,0.42120783761774677,0.4149927245833299,0.48119479857625796,0.5377930994935276,0.4737175275467027,0.37808348844282835,0.3736334815558732,0.47901943541471687,0.3783743038804737,0.27146910208714603,0.2992545773638849,0.5416820628397716,0.5202324933254409,0.45615237043849277,0.383392012716247,0.42728119627235855,0.5404942960106237,0.3981891644095637,0.3939906128607526,0.3862036979043875,0.45815552065132187,0.3804801870960385,0.4251969685373172,0.5384635267081099,0.504530447721562,0.43330837411123974,0.3562753577669201,0.4808707973532679,0.47636312160885885,0.45689966487897615,0.3653860644043794,0.5480823177670426,0.4648469331289495,0.52032383171692,0.4883238561911959,0.3305572758018728,0.44942785050336465,0.4309916333994511,0.5206661185567999,0.514802828604628,0.5615660384189542,0.4031971663829184,0.4842951053904494,0.441042795178269,0.5213480204365518,0.4889960108801004,0.3962747920534092,0.382832010822945,0.4902375137677955,0.44595582619562113,0.44374988983945707,0.531743675657633,0.34400939922159723,0.3943132101326052,0.47188364832585317,0.41573096783849334,0.448640741817815,0.33642501498151284,0.4098988890532971,0.4826772990431799,0.3480675364780578,0.4027894987122405,0.4632365494518961,0.5402067445278571,0.4406340912419852,0.5124991320658697,0.42050600447866593,0.5139319930225983,0.55263154763386,0.38765311935950275,0.5795884943170676,0.6290423724612075,0.3476940363654412,0.4442416483513925,0.4997758017812661,0.5581926029983209,0.412031216637062,0.494630158245148,0.47560447849477433,0.3648131907567572,0.32006323258892994,0.309049318573907,0.6061634806076981,0.5144941878098015,0.517040221833858,0.42663173416828615,0.594824350113909,0.40991918942113625,0.5831499588359944,0.335874703191742,0.39364216989334727,0.45260843275205015,0.6716046908147042,0.47607576763660164,0.5028156487543116,0.5230726628968403,0.5670933692905827,0.37873349054792466,0.5501683457200762,0.34911765394704597,0.4652795054913786,0.5469851482140808,0.434116319633626,0.4509982660271646,0.395741953542398,0.3944485370530825,0.49062073451778687,0.4469037849914119,0.40321868537045547,0.46528382909300153,0.4372668123773446,0.42603214752380825,0.48299239867874116,0.5724503616252885,0.3820719612504275,0.501207789932017,0.5416450176824459,0.530418067738454,0.40402959483336826,0.48325397946706006,0.4293897756850187,0.3971227985629454,0.5396824296343936,0.38529318911797183,0.3782045062301007,0.5501989902389117,0.41027736592661024,0.41728584593308216,0.432068942434564,0.5007777087261316,0.39016587825091886,0.5946268010668992,0.42960643961064415,0.5484213470411131,0.5374771093418578,0.3710576741285074,0.421489135320115,0.37111699396141257,0.5822003811832316,0.46836265575867947,0.4180804921203017,0.60294977760645,0.5835174093209602,0.528657105128909,0.422072256397029,0.5290638799550933,0.42176281141214744,0.37951993052809213,0.40147591921212283,0.4496170068450425,0.565422478221659,0.45751852284624395,0.6146699326327463,0.3479538233548686,0.42075166723500906,0.3499801634321533,0.41274343019749726,0.4170334557814526,0.5301662631050049,0.49229785064058557,0.44494505122136013,0.544893101294676,0.4974950452058708,0.4763999320708266,0.5374136135173941,0.45995593769902415,0.5309458775352517,0.5229268859637407,0.4657688327700774,0.5369025781644358,0.5528423020062959,0.45751455369565086,0.5117464653283906,0.43470541258077694,0.4642970468272186,0.399136051691292,0.40774027621014564,0.5121272970616656,0.5229380107014907,0.5425903364076575,0.5494457210394257,0.49493688236683114,0.5246619379803957,0.3889389301417059,0.4598904523908431,0.49939139700016116,0.49876105362659784,0.44567352413332934,0.5409989447007357,0.4271466326294402,0.4060683315645093,0.5841789743640717,0.5583565397808187,0.4286130175390702,0.41391194692521277,0.5515947095822821,0.46410262507711536,0.44600665402794,0.445157481462337,0.37592052501326617,0.5540282259307117,0.5660371961065066,0.47966712684397017,0.46703700163085504,0.4266035167974574,0.3316911163772548,0.4449086214006036,0.41703098494712465,0.3901897833637135,0.4120374615108793,0.4647039395145857,0.4677448731984125,0.48011706599169707,0.44671049397076146,0.4825311249322592,0.5253037910568267,0.5180421625201799,0.4491941009987428,0.4267185568672949,0.5385929884257724,0.5306152616058027,0.5218285379844351,0.3651550957103758,0.36938645743975856,0.47906581380768865,0.3475413786034136,0.44276674118593007,0.46080929604132487,0.5099266381027056,0.4104190409813212,0.4302358540768064,0.4545975024315945,0.5009033127556721,0.36395332196277586,0.5721435144954534,0.5388676328603323,0.49424389712527184,0.49329175636500394,0.3277194797453307,0.4559256077872231,0.49446274579459937,0.41511007374636005,0.4028935112991759,0.3689679497745769,0.5412062433663822,0.404505775821623,0.4857263400468679,0.6828086857095528,0.4790567477860454,0.47122837212868746,0.44721029880361807,0.38305638309013257,0.4123365310010365,0.45320192153820543,0.47212486396432046,0.5059055013676682,0.36395529868033044,0.5756288042916107,0.5006723680267364,0.504253998471263,0.43054642714559,0.4818265865427204,0.3952892664410199,0.4158750185879042,0.5193104140764072,0.5035418939419788,0.4587544183053993,0.5295597308355654,0.3673356522882345,0.3731735852152616,0.5130272727479762,0.40003024282725896,0.29159436527576604,0.42374016816359295,0.327746141967246,0.4360067246823941,0.44215931618582943,0.4310951291411537,0.42925570857560363,0.4754769169494589,0.4678726969262578,0.39103732793380447,0.4756317467451299,0.549363480358267,0.4898695467674101,0.4807314422930904,0.39046365013747547,0.4668695191059704,0.36362560043870534,0.40304429179940077,0.5194753036326815,0.40293764526971626,0.46033076874942425,0.44518841578871227,0.5070251397076808,0.37320939193996355,0.4391379579284734,0.4068888352512679,0.5520560039480807,0.5327837262100887,0.4707530499539802,0.4241908579320837,0.4032619464509571,0.4359796466313458,0.5078109159417533,0.5905682450491007,0.4769728480679345,0.4994932375105512,0.430762587704062,0.4660746989063929,0.5158673913019621,0.5796667611385001,0.45210639299504857,0.49824491781430263,0.49075885094385757,0.5328015183565445,0.440368705625067,0.5698670570771042,0.48177432232588785,0.4643948070461837,0.4085077414988532,0.2368726913601843,0.5525367225145806,0.49442269258981525,0.4251235591796108,0.41443803062429135,0.4823022017784435,0.34403487791844767,0.4172203154980053,0.3898836607397554,0.4644886142659781,0.4778016364585203,0.48247174835552425,0.38974826728107737,0.42366306081945154,0.44382015024929455,0.5168783121241549,0.6181490261289363,0.5410245463823551,0.39092467105109885,0.3662769997930433,0.5167513280255727,0.3484859521541564,0.42324825861637777,0.3361093216999322,0.49025221241604433,0.4141732815150422,0.36595664734688976,0.404501500756399,0.4456306993491337,0.5196809490234321,0.3764844372115313,0.4748925852598951,0.42425994248745674,0.43385808315560903,0.3672898289221656,0.3817406855135459,0.39892868765892037,0.41758973239535035,0.36281967024996387,0.4109981432618687,0.550552714706117,0.41939509496639815,0.341768334566478,0.37684865650787774,0.6063472180362631,0.3864364687653066,0.4214243889532712,0.4096922288146506,0.3990983350560036,0.47622627309164545,0.47065588870002206,0.49242699572729,0.47516453884951093,0.40879322909779775,0.4749358563881329,0.46689929671060887,0.4919236152051787,0.40053902014286913,0.3297271787721462,0.5451215757466293,0.23753932427461857,0.3610937144567543,0.44933808523733265,0.5167191870329909,0.5428730391473712,0.31530284194104363,0.4455918902365539,0.5033157165289032,0.4540851062523547,0.3159629393778935,0.3964391638640581,0.45010469596387237,0.5708020721814729,0.47322082949988825,0.5564717860223586,0.3994340438781992,0.40373278576919375,0.39789677547904206,0.5699357826157435,0.2890294228003693,0.6203305844921626,0.435200041340931,0.4334268080833228,0.6314505723091747,0.445687225136011,0.3645999873493708,0.4581647664621296,0.4089044473544705,0.5356388319687613,0.3984112997488337,0.45035781621000803,0.29932301267899175,0.49853049117045634,0.483065686529072,0.3609222897519112,0.615654224879646,0.6116922194473232,0.3846397555379447,0.40607932440020533,0.5916678048335124,0.7007236894236868,0.3939153461543227,0.6019493110509343,0.5082704744927349,0.4923478331815219,0.4706414815019493,0.5167272236026305,0.3984658578949389,0.3635825904183641,0.5221412685817043,0.3862574186013546,0.37169849678146877,0.3862703189985872,0.4415029218206251,0.47531449974620643,0.5387767902647043,0.31335397088588,0.3906979221985454,0.518941338543995,0.38754535050400263,0.5304977603821507,0.5092983274342857,0.32614607475854646,0.4344790314734817,0.48593526946487725,0.40673464240389806,0.4271340995353592,0.5371680034827979,0.42372385005276364,0.41146221493332424,0.4496683228466189,0.52986688224116,0.43962200790725603,0.5085422375024385,0.34890945837329085,0.42423457741169945,0.37468306635444926,0.5617321176706028,0.47162501226529624,0.38938162623181716,0.4683886696593669,0.378725480147805,0.6088430156634304,0.45637096434386826,0.6088248136362888,0.5439469192697295,0.35884340421363636,0.5210760163825777,0.3487619773640484,0.51667819305831,0.5412527157216592,0.5137278996170411,0.5781093756919364,0.5204139632707749,0.477176335615766,0.5079917903140566,0.4508054029078434,0.5389010515780088,0.5725301793001208,0.5144029288869362,0.518566555079432,0.5376046662959695,0.5058317184035973,0.5722532988144159,0.4772997377383367,0.5399624364206128,0.3002735097789721,0.458194005453726,0.49052815652309667,0.49138211606485305,0.4925356023434259,0.576310397892234,0.429215934142728,0.5464521999435491,0.27505128824189073,0.39905072674672737,0.5031561557943394,0.43979294576413897,0.47380127611646206,0.5357607947100099,0.48463809099000293,0.39368612426492655,0.42497094015595105,0.5208914942732136,0.39670581457295984,0.5372968172063848,0.5184809755841849,0.49021538687107363,0.5093095089311528,0.37038611063945315,0.3707465996501201,0.3996271168302608,0.4644745781274666,0.42885703832875116,0.6000506527104241,0.5528346686571933,0.5017708136421013,0.5747783472900494,0.4964161363713092,0.5450010699838675,0.5123282323614564,0.5051079190041604,0.540616147421985,0.4590594054582265,0.48619753029320395,0.45574992088467964,0.323665417759067,0.525956800384361,0.46769505280415347,0.5254912581319438,0.4276399981837886,0.5126911106932454,0.3979416587192407,0.48842246421120084,0.46743530308058107,0.40944192210632085,0.33842376937254043,0.4804854437722364,0.3361751478381471,0.32639742193538135,0.5764579302413133,0.44235839451292375,0.5858642995372269,0.3120187284789938,0.438379113368675,0.3477196037190209,0.30640148597070616,0.19507158170815075,0.5203479805207539,0.41776482752897975,0.49204329256191376,0.5489099737137341,0.5276038911822493,0.4635313029056802,0.4276375982599219,0.4395899086449645,0.5105287422128494,0.4498660073767838,0.4542368130603013,0.4647527108439062,0.41542232462151146,0.5218011001018702,0.576396160153612,0.46350885660536556,0.29062596111963684,0.5537472938445667,0.5274533085030365,0.3596481424047558,0.38083370719344917,0.5570914671654774,0.4366061496117363,0.4012989286778994,0.48099996312771176,0.5133607093582302,0.492276773167506,0.5329703353229942,0.40301030831185236,0.44064613896326565,0.3121567756041633,0.6094131259341234,0.43491559116190154,0.33305189855075706,0.4713621659442567,0.43467832605345674,0.44857099160998026,0.42495997798599167,0.4840257942469421,0.4088616351382719,0.5175329612005006,0.310714646503118,0.4549479227144255,0.4626275586744601,0.5072326179140427,0.48647600318298,0.43767504445967187,0.48154528618813375,0.48208551959832496,0.5494671710540423,0.4285894083358652,0.5440632324611876,0.47048433789327276,0.653459202290474,0.2806853551795702,0.41431850215381705,0.46200289914352766,0.4586393914868578,0.43348074496401673,0.42497787982508667,0.4933703019355605,0.3218795064846915,0.37106459984632933,0.31914927036707536,0.4077822660429255,0.43723029243129746,0.41223914485669677,0.3455685813210441,0.5967838334870961,0.5300322484023325,0.4074929706601739,0.3989189241532414,0.33787057441797796,0.4055586777085005,0.45841782117131774,0.49229117933473576,0.3500509136510074,0.45243857907030227,0.5274439036886143,0.4729092008715502,0.492223369871061,0.5316432572616779,0.5024989806224137,0.47898514517815854,0.464885140600457,0.42558247450561393,0.46797122044141065,0.38365096455522923,0.537995140524717,0.37345751812991124,0.3137579471725862,0.47513945684501574,0.417393590375951,0.6018860076974863,0.41190231607978156,0.38372911053040865,0.5038124045968573,0.5735854247881614,0.5491372446767919,0.3382343357616893,0.551161150473982,0.5165335556172722,0.5064179719685972,0.5265476911126239,0.42957237650739105,0.47563263038152015,0.45716180857685446,0.35612396342308617,0.44694847963814643,0.34881876283571334,0.5061001174320255,0.5039753192483822,0.4005568245360384,0.6057594236169128,0.37188791354054274,0.571959886611477,0.3358335198346034,0.5287372716233354,0.35050425894433634,0.44284191667901834,0.34153312754715887,0.5462191969582327,0.403083477540669,0.4211241173405019,0.48679603735986576,0.5149578354035341,0.31363128293832276,0.4948883123773046,0.509176860984536,0.4881368648283861,0.5419415116587569,0.3868408283121798,0.44793216697773514,0.36061818482693253,0.4088590259742982,0.5735469370264159,0.3485358651918714,0.4692258112400163,0.396020561256799,0.5116613132798128,0.49067909211529187,0.4009633237757111,0.5620295885918728,0.37219249407572164,0.4469467859700984,0.41650808019861635,0.4637958088300446,0.6581093190397715,0.34766728394039337,0.4374449883730535,0.41680317078295587,0.41390078146747133,0.4947495013825338,0.4859465537285244,0.5337307853272412,0.5666278745770179,0.3195261138020978,0.49525572607889146,0.5262780108256143,0.43143398732417815,0.5252243762407366,0.33605601501732996,0.5318816419649293,0.3557285996626911,0.4888844554570802,0.49436163303317204,0.42727482127231203,0.5016678071917894,0.3681742190396384,0.394544819954715,0.5270691876682391,0.5323540016266584,0.4752249744012395,0.7031491444868244,0.4863680935980303,0.41099695111204315,0.36845454424678425,0.45522984367577013,0.48421142587589966,0.4094300591379043,0.5984754078294791,0.3828697413434857,0.4277815668992895,0.44515782409839166,0.6090641480298321,0.41445749653763514,0.5800608457908949,0.40176280352661636,0.340679613533094,0.5432059046658742,0.46946717334666604,0.5753520677238422,0.40244305249054635,0.3132893231944853,0.5581531845015207,0.5337861825574196,0.39071884593565404,0.39967600727123803,0.4618824984209443,0.3960482420040178,0.3768348897266144,0.6695623334330194,0.4612193878179908,0.5742294536373764,0.5553020171489035,0.4894370524906178,0.5242619602116336,0.42701552042193897,0.49028514328636413,0.5509905618478526,0.4552829930999598,0.3541836528984108,0.336400628752682,0.40968272309315173,0.3307464980821137,0.43775420267132475,0.4580765871817997,0.38743425716020835,0.5019628743354239,0.42458666851708077,0.5802866247212937],"value_per_10_000_usd":[119.502957621854,50.90821803670315,184.90754346926352,234.88167876430902,139.8678901347224,94.99789724215853,32.31021589537847,376.9793068618187,75.57965583060849,191.72203964040358,51.97845070682617,105.54473234626987,73.23174843184007,93.98913937481561,131.02579552259354,183.18198165141428,252.96324060087758,376.794560533679,66.76252975102719,119.55964390977924,51.34993468192047,258.1466004325785,167.25288462265195,61.11871451105383,73.15034170081466,81.75754030866248,143.86961626241097,167.26492898986123,63.7037165340023,75.34266073045939,111.48437103826998,80.31045930327969,52.81649991580804,66.07487317858717,64.00221252192932,50.34058019798651,184.93683097350194,64.60143298220606,219.2637677890163,144.74112218864315,151.36506941598168,227.1180933360515,69.74770928949201,167.00130103096282,459.1238138057005,221.61137325946495,54.01453763707026,194.1200963195309,168.50760073525828,102.19171159207492,120.49252182526833,79.32259198659534,123.00331154587032,95.89810478018359,148.58662275892956,102.14096015574172,195.3951291566535,108.25486292246073,139.0246907023476,170.2326367296604,45.88013063752911,100.49130528338468,103.71393409180715,42.472935854667185,245.55097322421432,100.77796729535304,49.982944965419954,106.28825660158373,320.4065288008647,86.76093838962409,261.0397990008253,174.26343293083278,167.26229178291163,59.53223133497456,54.66846879272505,45.58464676649423,76.18293674200233,74.56968192698113,58.94241498436075,144.11945922269524,174.5531936440588,268.5568872802245,75.49066197816184,65.53016713174328,150.8079370535559,95.12717448887405,55.90839197156779,206.51245947313086,90.59246403323033,1193.5141570582928,91.77379753493553,53.35419061784654,48.995529960552474,115.65174632465383,80.57312649990315,43.28603312493647,115.76326417888887,75.32012796864264,90.00904587777566,134.61162808683767,213.54774241292264,390.7361063412885,41.37099601672024,101.29523361447664,45.827609199041504,65.27405366489197,30.17791892064647,100.65914109558784,160.0697449570063,443.4002335033688,177.08018687924337,82.48298357117588,87.35327845554922,137.837016767241,229.86322104303125,491.12667793842724,91.60797785610548,154.61896789589878,155.8812573030171,87.64066579801458,335.62585615472705,247.04749586419626,342.0208051262841,126.65477518639634,94.73940872742911,33.63009213084583,403.91911877233906,67.2082839075091,180.95339371391648,506.3992566541929,110.82268971014977,191.66153267689447,522.5192200056755,72.24204685419177,118.30734706530372,151.8954182132828,73.24629700835264,224.264067871489,69.08323454567437,41.99165562703797,167.50085343452906,100.41832971576619,163.3002577925815,42.452337453181045,106.52724450828073,84.30452486131826,197.0922486686081,74.71354144418578,172.85795227549994,99.06326672594153,128.50430005103613,92.40900539686223,44.323732692450385,84.63387980824213,90.60539584205743,76.22370139738429,209.8504373957248,46.81862010032997,109.9326032844641,108.05921232478347,103.38794394413534,108.37906752819023,83.90696230599025,71.10883100548611,76.17483998043116,284.06997225817935,63.651194099348956,60.76219151337801,100.08926129679455,129.0437337840697,127.32834700924602,52.380599655361195,46.56491156380858,103.4322441018129,96.94018414492714,246.62657472468283,85.71165220869023,107.96310186462533,201.3502478878172,305.3440542367298,152.40488759940797,71.92300938171024,84.38563106639901,114.08268060104533,293.4486492041845,50.229386026624006,131.17019031580347,113.92964336433704,96.20770730987185,71.34073452177283,106.46855396871155,52.84968275400424,50.67613159175015,65.86358948226153,136.2808263031581,94.35019192430987,185.32899473537884,48.1617217222831,122.99926302961339,82.25625012687179,315.51459338740915,184.97673145373588,207.53085813924875,101.624534231655,47.400515878968015,85.7651990557178,94.05801343515229,103.61475146017644,83.34218525429858,79.28705731974942,70.81803694525975,167.61512897383506,108.42195473409348,302.7386552991452,83.21180192796209,142.32003020389553,102.8845731163514,67.53284215233914,459.41108817581915,78.05437810180382,71.73520603606337,90.08320943660705,276.36288452368,212.38245386343328,109.95868261159725,240.93280822017803,125.36720176049542,128.82209906203352,266.2268590527057,198.1583484817127,76.35248079780597,118.9140605659742,187.49332130622034,127.14716505016104,96.89778033290838,66.12325079866727,204.23526180517774,141.0650587390976,253.5599633772982,53.851908176238425,112.89463524089929,138.89939231023163,129.4751363312289,89.92834581219269,82.83984629257489,149.03231694973363,29.229159032502544,98.48525254980737,68.68550065576966,301.9507284468047,70.17879598425569,46.32626660896123,77.38119990700804,88.92182179419544,42.906666377908756,112.43347934850902,295.4130839056621,46.040576569898704,103.38482596651394,124.11275452758372,229.22417193120864,132.33534172294122,92.83290117681969,182.7977132041798,65.35966502893434,138.3184230847328,133.85409128042855,54.44899266028154,81.528890137435,64.7872935635052,87.13079493496757,53.554069292377555,60.318893908220886,106.24136626705184,286.1749298015422,69.65636005142252,74.43983895253209,151.20405568114813,116.4604247832174,77.93504228950727,31.50343402372899,134.30959888061048,74.2598149203272,60.85918978436301,118.15305574712532,153.18806392375623,35.674257793312435,59.82189784115833,59.702218269658104,124.1082799596322,43.97298937403461,120.89709534681734,78.15520505631913,80.74623386415402,40.71874948253047,139.82735368429388,86.91091223095103,127.41708656171025,230.67232000706323,165.70725629964343,163.18064592945709,118.58084199723979,59.587892070694735,72.50375125370775,111.13127426591447,67.82358681045864,455.5392934137422,335.5243191082237,159.03096015428127,114.0544754242571,60.39729181777501,179.66516479339217,41.85469869921971,61.76896862959117,122.19367750200107,95.34572197870753,108.53217242887474,109.88589823281166,349.4671243872127,429.422726391173,139.42139676256747,152.04647282340267,98.90204977699133,77.16421964215439,27.02901140992772,113.53846450748453,281.6163171468781,292.4015985130476,41.890697054630024,177.9680401377361,91.9160150469511,252.11900671308518,118.72955403240123,94.15525145180268,105.44513243586321,77.59026457562827,490.39162455714563,40.851336190586544,43.12486486184609,136.71434213532856,79.60554112779698,80.52145126271961,110.12321748143198,44.46122606662105,60.568219301791025,113.54195505249534,85.28485628918041,77.25618640534076,42.4397429656434,136.30269794550156,200.3318338313221,140.5351677546771,94.25402954731669,260.2709086455133,77.02889606195725,70.79250093925381,141.90522677926498,78.78996125478716,79.96649331645399,98.238099561718,482.5816203480511,70.69574993468613,79.65965028223711,76.05422850918164,148.85140780382068,60.864089543253606,64.4204232498152,57.24945568251906,179.90605342145778,202.90859071557895,84.25277639682508,182.48895069742633,88.80465802405155,66.87381265384433,99.81905054338382,227.41352554393612,101.70881673825625,345.4589268282735,70.731042117442,126.8024074382966,80.94995819264503,212.98535012389982,97.22634144762216,95.46726259852477,44.94804789185946,120.81222895910224,67.39388692402186,244.1098577743282,153.1769040766703,54.35958833858009,168.75254987140997,60.91549473095033,109.38781869357713,98.81457558014856,95.19978565730574,88.43323656959618,128.0530456871189,87.09965059503703,55.592030900289636,48.722925926384626,354.35224671355576,444.48132983143284,100.98921683647275,50.04098380864997,68.96608496946601,57.94446613985461,37.86456512282904,127.21793739439138,90.14368061940945,86.58255725151295,209.10206920877857,143.19944953938062,147.16361967895173,69.67052332965807,150.9548279881175,86.36080281756337,87.60939248084418,57.92915797756085,48.912136328641644,285.91874699051556,328.940178976947,82.97234213275593,53.84185591140224,118.38452916740724,97.98260719928416,111.5844464414818,134.81741790845487,178.72699286715118,80.58267555398369,107.07696607374722,180.40813977058284,120.18390605469384,97.85560729784127,113.24249592499213,125.50789683291464,89.4542428302475,70.84535525729062,317.1489329140924,103.75458635331573,140.09660111152382,234.49683662357424,244.11219073594287,77.19166739642691,164.77517062697817,56.96953417143214,54.40286009698436,163.92154154876877,82.32215649457324,104.01906898840356,208.78893806061276,59.67034796748706,145.5687838563205,62.75277766629373,72.47827170804,128.69469314901914,32.94978307773554,166.98336048758532,107.6454998497649,109.37237690981871,98.37790134250358,68.45945038127545,158.7232984642164,56.65397623485947,70.95519735100383,166.87376689918202,38.410473455782,85.87268265311953,73.98982997195662,234.50781260202697,111.43902796719843,76.2554177768088,105.48148202590446,47.78182619363294,56.551086380895,62.56988546955151,78.17118245201374,110.83574866902283,84.34932308226175,258.83256465145024,159.6368663584224,97.8735682445572,79.53276401142752,74.41681011083368,267.8247331633644,135.17106548041852,120.3082723550024,47.32558546816749,88.56304799783778,117.47159587195999,44.958507288787075,151.51919204217648,91.05238811328212,153.46896171365782,64.62501369048286,81.95818806223151,39.13382742881877,85.7430346669203,184.770610740075,83.72667325738118,148.07229848686683,110.18641840071619,289.8251337712077,99.51782092327373,99.24029445798271,136.95044035767035,62.93497358945512,61.27003335358992,156.2529649971083,185.77005573809987,134.3999983914661,68.99662743858559,81.58128236776848,99.11708465184627,96.58424185538748,66.87618246652808,607.822553714368,47.665947108054134,76.95000738110502,64.63941620570857,81.55833396763632,101.43831430011961,76.97285026779883,45.62420613293115,154.27988135480388,51.482812926676665,207.24844367966406,71.08245120417023,49.51040611701303,82.81235372169134,78.17076015554646,353.29020840259767,112.39665401815076,137.07959954500768,122.08024366248272,299.85240112662206,63.02582801585614,138.13238689307326,105.24048980441648,81.48426072010692,71.39262121369929,102.67892513677391,125.23283119218137,169.76996079033603,68.15969022526795,327.29125512814295,126.5240889568224,233.88726860920582,190.9144288349143,138.7098686835126,54.11232071592251,81.45573507418764,126.6419346394101,158.6774214009839,70.682603394546,145.49462565367702,101.32912162565854,55.95456891888807,84.50401328466005,144.2894926269268,53.89676523275111,88.36391470752356,132.81949754248214,82.3389313803073,346.8717513533488,215.86413008557923,228.03304000758763,68.7673063603626,118.18453267819467,99.03358262936047,72.35601594494932,89.18607208503352,92.16141084700364,45.68662026784266,161.08134398099799,673.9356682267903,62.897918933320625,131.34014425212507,250.859704010713,40.42652406226185,71.56238899797565,90.95502117256916,63.64034408084996,386.07040108767285,99.85500744887881,183.14885990855902,131.3608204013745,124.89370272409566,52.66658312186009,65.9732173419015,313.0864751172554,131.51333005979944,78.60545129149891,660.2270739483885,87.41149141106419,53.08868476197327,108.61488130456891,71.07687846284504,79.91584556206566,75.63739687071153,82.17944730215044,58.641606187171675,187.8514403020432,378.09582460538724,129.407013408364,258.08650517481306,138.33677650144327,62.74390172280047,69.58142381140954,309.42992783233024,84.07181833108902,61.91198926311459,71.05325296504708,87.74963891164218,103.65865571460361,166.88157876649277,146.63369299685448,134.05369583052905,91.60499678453063,171.57020637805195,76.64870330455796,47.281503342493465,65.95570439361695,99.32421326535214,136.45165254085012,98.04729672385767,64.04719142754878,69.51878400713527,154.59943892186988,87.86073045109082,57.12759601446442,107.88889925932544,80.95388195769411,158.76838706222802,105.1617189764825,181.28779985685796,105.45584855879393,51.8937014511037,130.02591121666148,141.05631440831732,41.44810281744884,123.89575537922578,67.02009939623277,68.75336796663751,65.08464173435853,57.62248429675667,45.011656443035086,47.74236954094888,49.128994356131784,130.62576552464762,102.66943953130112,110.64723085016328,112.31672927959914,76.75150318341893,66.99111156194246,39.502887768239695,96.15177999599346,84.10092594975382,113.20553115122817,32.12217543499333,115.34692028467786,52.687157527309786,87.19921088526475,71.431738733167,79.6858218529443,209.0764114477406,100.73655919236118,108.55927267600663,89.65114065448672,161.6996002777851,79.31157193126953,45.356381056156465,50.43471537201104,152.10586779232736,135.68926572980664,116.24618844129253,59.263170503919596,76.48790177098202,77.11241150125464,77.8684258468374,169.78480535935532,46.18658490965368,64.83624400694706,117.19506988883928,46.663312230814284,126.77694333117527,86.41313083685543,54.69080654718184,220.69440299567492,70.25539123928674,61.07807583689477,140.94287807342187,195.99178040714605,59.79763576291171,61.91594089056929,103.20972574764006,72.91286820521829,79.39810795299407,87.17290236183324,269.9544371770577,334.3925867951867,70.78304648155533,55.444161070827086,207.98708036353074,78.8540103411514,153.81558901977877,150.65412307642373,31.38817463469238,115.60748324130668,279.4707698232187,293.45571942344384,129.5400944586322,65.49588482712471,127.65741249313757,266.3097678185072,221.85525046697066,226.05359842883314,148.33905574924438,55.92640186096741,170.578029945296,95.3291185251526,106.97129844271029,302.1669015374587,321.5046014199635,139.32560377747396,142.2980962886288,63.619482273819884,110.92950933181925,26.67298658405053,137.8177176488924,51.25066491531756,96.90382444127066,190.29551180400836,42.347586754796595,119.82970348675354,202.05733099624018,51.53741469712606,135.2435745256725,58.74760173902291,60.620451133551505,66.21097914783918,63.230211329664954,111.84111447631788,69.29124310454316,81.18423139899072,108.09057806983816,64.73613847575358,162.72679296333945,61.17219757449245,103.41747890935314,210.110037737035,75.4372430527219,92.19324061052477,94.05147860865023,83.63675374079202,119.60871495958642,56.88723464153937,76.44270279828135,71.08787786414896,69.8552870105533,75.18386448727826,145.8415804695828,158.9019527821346,59.341041716165876,38.26275659492372,105.17230681297536,40.7636328974866,75.19628064881672,59.06362123074673,125.86986661412914,156.00264054450605,238.4959729055842,77.22636653406748,65.13302858981046,108.028607304916,98.44082662155803,79.67120986590655,159.90370227970206,62.755696151591195,225.9671459287324,107.87671116776451,37.685584507806496,50.25613251761189,51.455778557515615,115.77220797168735,67.14410292402678,138.88301944918254,68.87631767296703,40.864503107475954,86.45311920833278,75.62950816831354,471.48210053812414,243.5872412416419,40.49577369742754,70.8724469438108,114.27915209623923,50.271404634975134,83.5219035028156,96.26733405258915,100.09475404998693,51.45815931757413,133.87631486273935,64.27973302581184,139.17971884628716,145.20831619856813,68.64876704253157,194.45276469176582,71.04531293453493,121.31614322026621,83.24870176755411,106.62104024355361,73.3526678270302,65.89670199276752,82.7623923389775,143.77136042526752,66.56969969943093,494.3067491282019,80.19541707971067,168.30595720725358,60.14050025320628,138.14473432377648,61.27413237117064,130.368073024682,40.153202456477096,68.4486196810914,260.9974960517939,242.80799403608714,123.64482677594496,304.1698511083327,164.73220245304398,150.4498821510806,77.43534859043132,106.6180577095122,91.86909644763234,92.46111683122051,177.94056616489175,104.37116009523449,148.03941300142108,37.1169619808301,51.2894756288198,127.50515458205794,70.39211017181158,45.65931260506234,175.67255706457425,85.67347530164888,46.892625006271466,77.4224869552642,105.93838185410489,111.71113161639838,414.2538830667578,173.77007374202356,107.77047793577623,65.19050569038879,87.81278396668266,60.582088074943435,142.4455945017171,102.89485618457175,162.11608778544718,138.84175428613196,177.59153033510967,58.16758513403284,66.84085748189742,345.69883894219976,41.39228378712969,87.25954740181692,49.36540894895315,246.08979212963914,55.83360160045722,48.394681885482996,71.44118387253751,50.59623334696461,69.91122971593892,481.1010489356729,148.93265100685835,145.96943831097707,184.2690947250021,135.6397910357562,68.48358042699977,203.76073091473833,58.73964112554119,88.92320657122235,73.4473066308629,184.2844272906881,125.98526893616723,60.33539975367382,173.2833470155163,46.60975778859348,55.59645002796834,189.820698412116,97.33833031921992,68.86973722651862,157.1579285991385,182.71124445868742,87.77183430761792,168.87867161611257,86.4533718278293,71.91160194639103,79.85362937091065,128.52799747620298,99.54661287869372,338.4537383048068,43.031870527903365,119.27845065950972,210.63214493103825,159.21212407071502,225.9873254678221,209.11470367693897,91.00513881694263,263.1568919730096,93.4322241310991,132.0487458935173,558.5258516428212,306.12727502114706,76.0222549369579,384.3473981698088,73.2685550970511,87.91312708432882,94.12589228564275,124.25936670849934,244.31658946726768,59.21472871347387,129.54701075740996,88.89600740146639,92.61546327848393,163.9867525577599,90.4341017646136,85.94185112494968,70.66425142650236,63.672218527808454,318.4283319062726,85.39400317488723,61.98707002150543,222.98479874693638,100.66224818846851,100.88616443982602,128.86052957279264,234.07213518336977,64.99504765336809,60.97154901844833,105.31855457878831,50.712954189827144,55.310712798824,36.93327730212272,214.41550035024417,112.57933444125328,123.01462948802342,80.33193755595272,67.48492178338991,170.99055462085468,92.03537783957375,109.8881311354066,227.1690620077262,114.67283412004255,121.73136785840923,159.0098956684505,156.57584683243923,160.51764411363027,96.09405533085459,157.28208040547977,57.60567085637035,226.07398286701448,311.87929637800045,82.59378826071843,48.18418071160867,120.7073662999431,95.47659349332481,246.47115103499283,122.3769964521809,107.12821941318384,242.67266786598734,75.67728530016959,78.40557990924029,103.81074428578319,59.095582764291635,267.34653140529855,75.73479862383141,205.90528962034003,61.144168578225404,181.00795246787578,75.58711034250418,104.79618683660694,69.16133753995696,70.67430823573125,76.71765486721108,101.27787783237653,66.16718197710513,182.9704122269349,106.51949899071786,35.27813948175677,115.04617524129473,66.4584652717376,81.59521878845797,134.3946309650694,68.49717535740484,183.5622002602784,135.0921623871114,233.71870820535995,163.42842640255003,80.13728042205533,84.94266970284453,203.08541950996909,74.78508160563472,124.58100124840061,37.88141722782038,73.03598251967064,385.45877169002614,86.94591640569845,73.48279513702514,215.5390474494183,86.43734721047751,235.76983698611218,220.64790092611221,105.58649037237095,44.04504063139408,252.72945883838108,37.51353892076266,197.65870203671312,344.0528647530417,83.91170172081284,52.00066389012671,129.05810385247952,208.65608816528098,113.22802900964835,93.85328255158554,132.89615958918995,116.52699735118227,125.49816213527345,140.33885177567203,73.2012337797072,98.4488227662418,273.26935866784737,165.58334189202162,40.34395636871244,52.40969906302307,63.407579087849825,108.62910547435027,248.31034339857072,67.07879930686056,90.39440797445323,145.09315654673244,197.67863333243122,129.29603899398847,30.401389093393384,50.05188830380345,279.41063890454933,484.9814220944098,79.91647213039532,60.521354812313575,442.6451059892462,48.18517871616797,81.1521748724559,102.41822836410194,109.3195438374262,66.62903561819503,115.97862261718686,75.34822631510303,65.67178317965248,280.2970347372414,52.79424006080614,56.61198282742427,160.01213241214597,158.12119144905213,186.73189893489703,48.225684356671785,411.2191216773377,82.14078935419973,914.3298051285012,181.166288623159,54.04697911585844,63.06972503889034,74.06795657519376,72.35766842104516,44.54949281814457,49.359181964425524,70.65011492161943,43.42446122045178,56.666183694997024,106.28293898210964,94.4399260485708,127.69567780277026,49.237577543291174,68.751419761348,338.94817584905246,79.2096747739003,108.58004207200854,306.3953747974616,47.15134902477387,88.9632667366544,55.18311501921854,230.50673129581324,97.54689430683051,231.79597575988043,95.05460749084232,101.93956450994375,127.88558189086157,155.52759961358657,113.12751826793297,101.12102237618167,61.354232494439714,67.20291534027126,133.08216662639208,101.90179881205898,126.54647213385849,78.33189741070375,89.93256782899803,135.36977358962145,77.83273985847178,130.6256204777083,53.739700262197154,52.94310700292277,114.711503322945,49.21279910936591,74.79966843754168,131.04462071893147,112.41679840737964,101.65977795940616,90.48061209246869,137.2331859148763,162.01965866464144,353.15411834199045,116.34620172646461,74.29098231182866,179.80774438529252,84.70984725305907,125.8629607669946,157.6150225685827,124.38578478914862,114.55278789978995,37.77552127506887,118.39837494244333,60.28361779260789,76.68724560053839,45.110295364494924,56.78987029986556,155.52878725454946,58.645179444482494,50.56912250483658,167.75781835480433,235.1392065702004,54.497559164441874,55.72870051255413,135.50227960750593,63.54634123382334,152.1907779695448,108.7543242064756,90.48889379909038,327.09599104286406,141.5027759399849,84.835809644816,39.44565136879958,48.29649257506404,82.779610667561,85.9463049888571,154.00085704738808,49.77570781460298,70.32980964469694,58.49033223176679,73.61469938356421,56.183512811986304,280.89145711996395,197.4141957187388,115.69447250903497,90.16378491986232,49.159693487804674,130.22714530691428,190.83572640742693,91.50408504306537,112.7769810546837,75.19335963599966,123.9368148529226,92.9013403375596,148.47742946422517,71.1826134733052,96.34606556712367,59.165523740142774,144.2357445046864,73.91521575394202,111.31111449598532,449.5346307183465,113.50055464141317,207.68839136838164,375.59371481932794,57.78108484336825,115.42159558583627,95.37623726211848,390.224233058125,117.71709976684407,60.16651644843379,55.102079706208556,125.68463348232092,124.0801005622367,71.95219055902055,219.7827312983935,92.2914680966213,71.05911291765203,577.0656486016691,178.843433466822,81.49881475892272,118.51748245996382,71.6066186943914,53.66133530508116,141.58448553681473,103.28998354000181,75.82219790282859,104.39241441156948,77.57415188786496,81.23158775139247,171.5328206186284,106.63111800155318,46.38980673607252,108.96652590697745,96.36398117869575,195.10280112472262,61.98021577923902,52.00761138941276,71.56277714186352,81.62583359434556,72.36561227927402,174.5766193800474,70.13382171631872,44.57349731680568,289.7474848690587,266.1794187271987,81.81480595103939,83.78535272846615,44.48383928562137,40.17948956449317,189.72083361119138,190.42886167236577,194.5662144318877,118.3429107827067,359.7730178700593,255.80792540265008,140.35108085111352,57.39228111941589,94.71590632260414,94.89357786120719,94.77578375141387,184.3107236283585,87.09828720929053,77.91919924587887,133.2183248281953,201.44037922296644,75.4627012014742,131.32925518479885,76.8524414670816,97.58212065292375,122.29639636027109,104.71141592190745,50.41019899694532,107.72541946724093,109.66637158879908,52.101582468617366,78.21513640201405,47.9711966986966,68.76360041115225,162.5798650776349,153.56215630536238,210.2605254388213,89.6142197516299,56.60612445076654,173.37156662039982,102.41631050267615,201.32462248492914,76.19337096421592,145.70635156265826,100.90455986752703,49.19515257549516,127.81675423881825,152.46479931433183,57.383137957350186,72.63342095122741,102.25970683145688,89.68883496775537,39.556724802582124,112.22470094162885,43.446661044581745,34.16358329981758,91.42137997862163,31.44387789618418,65.86213974380472,42.386101999832306,76.78848818173624,198.2780655410518,62.76125666529691,76.33249012160891,126.77659112979647,287.4871649028072,81.11460464269939,90.14643206804628,76.01435958918468,82.82476293349794,277.5756424932221,57.789706103792454,82.58655047156661,120.17546361191229,176.27046566937966,144.72298318351832,114.80681452150075,166.8148175785376,103.63592476716723,57.85689203119932,59.73398245617341,73.9873029881564,75.0741555989878,158.96060275072313,86.38539407361374,88.57127639825735,48.60817197004806,93.4537928514906,67.76998641092102,53.90362455403867,33.80830489004918,67.86316054452261,73.15156083656015,48.21091702193229,218.26943256437306,119.59811663243364,62.8219376063483,243.8169361357776,65.73161826404443,65.4579027571974,135.20234574122708,75.60510181531723,112.57817083836711,132.68614145470522,111.44101892432025,104.66876095695436,130.56298620787467,528.6553764124528,81.70261646239771,181.0275287250695,94.64818487804583,135.41182157439872,56.47161506618112,101.14735928443666,59.37815852605636,51.36716983807991,192.5099945497687,72.18068865872033,62.24345816766289,79.42874552391645,266.21530194955915,85.87688234900014,108.60681162297261,234.28386856183465,457.9920680613436,65.81356159851701,130.00923961378874,51.91021590681613,266.0075228658333,956.1869132348223,148.17307253943798,94.16276934216137,78.51334922988106,81.98534328604003,176.23549161673947,88.8626027922542,111.68760374813189,79.41644912486449,81.03780634096982,176.95173425834153,118.27319573616397,141.39066317190657,99.9680680887752,40.094609146491436,73.30480432484524,199.43895716608236,262.30252639826534,163.74041001843526,169.4070493168582,100.69502714814341,57.54278646900237,202.83064351608004,84.960837309251,139.5611852218811,125.09730472010574,86.5876321473497,134.45038241460603,432.07642246127784,162.81173650554774,52.33601780707648,82.65605308965768,121.15068589150229,59.624701308829664,74.9363715254602,125.53028508795236,155.8283399442176,122.31589738630633,160.8472826215142,157.54949518331628,197.0495413493457,180.89311945783498,65.31861534739468,58.540276942086585,139.96686656325085,253.75737465968473,208.52907001713388,75.49690279752832,68.24675892393698,87.5055448319172,70.94115111563991,56.00391098620349,55.26223960326963,187.87330707855057,173.30896098333076,197.6051524257514,66.08407929525248,55.78949890863108,58.43313225063141,259.834940667417,68.10583459815489,59.225039934020934,128.32321723432355,40.285548057327745,109.51305669777393,51.888229129896175,194.20547725234758,366.23665865311824,62.354699198381624,313.1032322476812,274.3937403970461,170.21511210734474,169.29719704610375,82.59829953981112,78.56769350218283,59.878367793354435,32.53568303573124,52.54580037136904,106.31791156788947,317.02129729426997,124.03367907691394,53.13057639484689,223.2225162548513,56.77911858434392,60.84637815785455,282.72703105094183,72.7592457882873,165.3582376726298,45.07394200120447,46.974122295721656,199.8235372619268,187.4588656987256,56.49147325579119,61.884280073651304,61.75788958934555,78.4418320163325,36.9327282229164,79.82575076247295,102.64573692909676,55.47098966133413,232.66247744085751,49.41595125859352,89.52272688330531,274.38761128537044,99.3044405480024,78.76630019373862,49.85295742022676,39.8405091249831,65.17715077315339,77.85545304837272,189.88644342154493,197.83349618095895,77.21704332807127,50.52058440261376,35.79698116913241,459.3459414896073,61.97011324253001,227.1756867921421,58.66993269010419,104.52212253435283,287.07837893255817,42.69905660075481,44.1181600314119,77.91235846944507,44.891098923095555,73.5245895055624,171.8660299087467,151.28896220195486,29.636361433656017,54.6221184777606,122.56781400108741,87.4441203257112,44.57466610960349,97.72510481905881,37.882815033358064,204.87494657816407,73.88604621829923,67.36542920033757,117.58059765426304,74.95269558030373,52.50533248872565,121.50930514537296,44.323022201841866,76.56035582340044,61.38503025362044,134.63575338270795,118.93131686888083,86.64963937435189,72.28354651084874,79.27902282902312,105.2328633150867,342.6688430172735,93.33919465850283,94.44636379825526,109.29671724384612,85.35084541099154,144.28559632518244,93.99633796530915,118.48374249631111,179.5280989949513,85.62895136741689,204.30041749451425,88.94460022669053,191.63331927714052,58.461789223700784,180.9830507054897,115.57146715285849,51.069985698729425,105.15864487265485,99.89378479160946,183.10960562000128,62.87561733992753,71.91699276641614,43.480695061787245,257.2768775004435,105.15091461894546,84.83633275646952,84.94884018854886,135.2618401571023,98.78577298238781,191.1707511666136,149.79297616978877,219.5900994740204,108.91764919205961,66.22419567243615,113.48532803202409,148.67641416237615,165.92244943311064,110.52633419967638,141.1213040975987,94.3031247024537,137.0768206408727,85.11332222747308,66.4680426890889,190.20084965012876,62.16493792399939,104.0139707445861,125.19412865493403,95.66787879342394,58.66324741936283,110.44648159106806,104.41433628756559,56.145457434265,78.37497776565316,162.61285972355273,114.38493669054084,60.250129848949626,147.1897621553881,95.92772911139897,38.055103004663444,90.9973405169935,177.1417172455918,96.95996573122942,99.29367846412883,319.6629608816218,52.47184323502543,173.85383592716494,68.66428224977025,185.3445769249997,30.81136257612811,59.69075359892091,128.36813498730197,69.54683412712215,239.41434566196864,145.91765003847547,248.4394623755615,122.98546814502224,84.75506888957767,65.83905107339415,124.4071593238924,54.58446553889978,81.68327613111069,73.1654415131976,149.98275601689704,90.7279506810493,196.42156913754124,181.39877062626033,78.01101420166016,102.75902018653163,125.74031421258927,545.8586688622687,128.58749026116368,198.2744511587804,62.50362420383738,127.32565376404332,48.03487839583864,310.3284874559574,71.39449977210214,353.30229788527635,138.44380437126446,129.2531127202176,89.21732475301815,155.06437149260927,95.60369912325369,65.48204216237951,78.39174178679067,167.18333379454822,33.71707256718577,64.66487240090376,158.1469286827196,121.05665430429752,84.92675268243424,204.99352776361096,141.88093838401485,68.20850202688493,99.74514216942991,106.07925756220193,137.2263822239734,222.41107700701446,144.31198993381645,78.4707459414096,56.62380375171904,122.30814421515748,317.6567828174679,199.7623812524075,99.08609966448742,101.84946359707953,50.972836463553186,62.742887996375856,94.04004221580831,492.5882294494739,102.68624965655845,152.59469109506261,134.16682663043312,101.56475012515182,168.4517253209514,164.71053708403014,71.75270905114266,166.6941169736473,121.99677274297638,177.52600556388379,130.50307617657177,118.9557935456126,65.5815053143588,90.47212363194198,83.70341104130902,112.34581956681279,87.90041257524815,118.27824651856882,67.84561868793766,49.07994610744195,107.09947532342134,60.61521516265012,123.87247999591519,119.52645197285382,66.73408956034015,210.19941832315467,30.455396471881933,162.5581676461901,64.81504066530536,86.60309048860621,133.59086008465195,250.09332787006863,55.07289732832642,99.56045956705108,145.19951501155535,101.1370984263306,143.55342868496686,57.02206006979944,141.83822336916666,64.48999174161912,82.73998937848769,82.10984177034155,97.49502665762789,121.03966617792365,84.47543686999317,43.72867899017717,108.85820862800892,99.24093244096674,149.2979117728655,48.75422005352872,72.86414615798954,110.69318817096801,116.97066274737314,142.59142813796313,84.6546179973133,101.18853705247678,72.92736020860269,336.405684449492,115.71140033474602,171.00181956309666,42.89460078737105,83.30585431932484,117.63063855241347,243.8125139487099,130.8331142316066,92.46119304016761,55.08685251532595,113.9442029609407,93.01862189356534,92.2389046450034,150.19458925779966,68.77963760522387,297.12356795364013,84.948154108027,414.8712902265507,86.81886857045666,280.56575560070155,53.18708924772831,105.88710621689977,88.92062415756521,84.91236193810211,82.16200614292418,117.14484419424635,81.88941221222305,67.84803952100228,45.78528916738863,61.49980847601874,105.30428325461311,140.67829781547695,73.62609007250393,70.62190528413028,89.30486830711048,49.28991596602273,100.00719687232944,36.915443240399846,184.07107581977866,31.297309746949704,71.96511154079819,110.59816947892931,90.83873995016687,291.5324282405966,53.05928407573776,75.45747137661826,98.14097768087392,101.96815503073898,152.1957465085411,48.91186330867624,34.511255177981404,63.57091166905548,93.22259243411334,168.86246562572416,104.64251113229865,103.78719070582633,201.5601039410334,104.88288873025816,44.51446113562977,89.18065873107714,57.84206359653169,115.32440137818433,52.277822893038376,40.64231219197052,99.18282839001044,95.08425229982298,119.83228025723749,51.11482962979318,61.70745501310573,60.61253496013748,186.77324406830914,147.4714034064825,129.80065555682836,96.50569103315115,145.37143524225374,61.72373718650466,129.83332830777482,188.03049006709657,89.62263166113063,169.0646581397066,76.29941755519921,130.6234442008912,249.63433260775557,52.19766946930527,61.97468685444315,111.45055404987728,62.075212996292315,20.860103843302294,72.01761854453713,122.89051746869431,43.46929675865442,260.0498559957996,92.5646581519569,79.66694914179361,184.81612863860036,94.86468882332879,28.525716198627773,97.36105046259127,68.89929968239493,99.34848560382066,60.476307730903926,89.12756054904733,62.88938595958288,96.59838594047673,184.03357754458517,83.07900030060568,119.2289496141982,64.72180300283064,63.08530065658311,60.439055455315575,209.3795119970853,158.894672100748,79.69023190547445,129.93533507227409,85.35483311840822,48.44500278335017,76.14361674608864,74.91689651251504,66.3911389878297,86.45942020363967,80.66514800963694,166.0063055887839,112.06504351770968,177.61581646014088,229.32187682096736,117.69903802651571,99.73097951850195,242.49064451323875,260.23498768199175,89.05950670176452,103.60149247255184,41.61807806958822,73.7447907079933,93.75140466611526,53.17686787782843,106.77839835924108,67.1229442347776,46.3686113004765,295.9333817878163,123.77995876494475,116.93308739424396,149.4048692799687,80.09721621132053,61.471914756583224,179.37641533727736,122.2711421969634,303.9648325695538,85.4823064284948,88.966518289261,991.482183737076,240.80921154950778,110.87005736502881,162.59591385170415,115.89713822544911,65.3646190593055,153.4457336081066,100.35544699453247,262.58123953739533,251.3330977795385,113.89371898748391,30.162341759369607,176.51428365744206,80.88847973012818,84.3258076023066,67.32475908834033,80.53265307275032,35.87990728301291,141.2896431186506,143.039576816885,97.22294766610133,72.87342173580143,91.54536435341596,338.3205283278384,68.05271146533757,55.56403019535993,64.66359770701169,79.86947570294787,57.67785589345756,82.00641857621154,64.85186578132908,95.54443550546496,198.5572692492798,67.88027497095575,56.36339372903319,322.32303340684837,93.53570263258945,126.104476218793,242.1291184123003,46.2776137795233,86.66326410515514,50.19159552866484,47.66479472593691,207.60108009447939,59.69394438833739,85.24231480775268,150.26335692044967,100.90449616637821,312.0041011988227,152.279822019428,113.02861568471809,151.5079925296063,142.21129528580133,38.74288272257562,119.14380724084751,115.03653986158217,183.77849858402897,75.86823305923097,158.08682322257906,122.01264933775359,53.89363354992275,38.96148896463188,104.84294227741918,67.3728746201109,55.37672816313677,182.577314679184,72.82966097733694,59.86680332896197,60.41907753490849,209.83627798270453,93.66950279828892,67.12495204741656,71.25089483182872,225.13931066729964,160.82212700944586,69.08918122907377,223.70406662200017,53.460818560823995,45.800008170759874,91.50641257446247,140.05547414751416,270.40059152137644,87.37039343959135,86.88245529637712,126.2134264290725,72.31308097117929,34.97586886754046,51.237923757303896,62.871146708741904,49.03268246918718,413.0549514566867,155.54150487166163,77.53291681767703,98.72254026789268,142.66437965212899,67.21082744479806,150.15542269758606,96.66976038231573,139.65327296470358,48.6458267336754,141.7187526480519,70.15524845697506,62.487536576827,46.615328234204796,89.73048562941332,199.58326512677132,43.918683541283905,241.33000686317243,79.68084423985304,172.11717704436808,118.59727284855485,183.3008359139901,148.39951441953093,106.23851654644693,280.59469850078483,226.60340364826888,320.12055889086076,106.25533763250631,67.79775515711461,154.08411788045046,73.77601354105313,123.89950667410828,46.62096632348523,266.15094794360215,102.3062785167807,89.84613337752252,209.92444823091046,137.47431211820498,248.18688552126807,156.56930453053187,444.4723278402741,58.341256226386825,46.179090024330826,140.86855963133732,57.10471918593953,117.40096839760886,192.68264368531499,272.4040978611393,75.80255150586673,117.32981986800925,302.640714443426,52.71038611685078,93.77194400979846,45.10113372613051,71.28631861054046,134.8397245314861,88.80136410670828,123.79530996205126,81.98186699380014,86.60293960469825,62.519778080188566,137.66077834350207,37.43638071161803,63.979048818004685,89.98453179442738,116.20754242273978,41.5670171029073,202.5886732729583,160.2344675035585,172.92352759324018,87.28641196050981,108.72897229682403,93.96307553889073,91.87833777491213,103.43991779183746,170.25091586818738,100.48851997554142,85.97302264079019,94.76217738754606,67.34320091296865,51.261415756873795,193.69358731693592,82.27700650222322,139.58990783048128,87.81703313878991,78.11827292984998,43.02951759554153,102.15066727007046,286.85298755984786,599.9356977343825,113.51491407069773,106.66019796040057,152.76554089230441,514.7770161993928,211.08373457384116,51.42197107067821,91.89157561440591,74.58650984077485,112.49841843527423,114.093777727182,117.17689264199218,60.41183293078691,235.71979433199155,135.71323038025074,145.34111313014506,59.77562641695023,103.31019317192248,100.39067986867673,131.95383727706232,148.6220587552763,119.77870160361637,73.93389214255714,106.99689515469225,143.2099313247708,54.508394102829776,70.67853548939067,74.80684752286518,141.85730815389869,242.15577982077625,68.47532284645342,48.21988393092576,65.03132227904855,40.46137008926256,75.5703028527349,53.7398746086894,72.74366911243537,273.7399793219371,174.72439138938054,177.16862402545993,161.14350648374986,154.6624820226273,42.2395040624343,203.79614886715578,42.487061102528656,155.15351235105504,95.9399156335634,173.1623417754821,66.48415785485435,145.61929500443412,168.6774912073023,167.3101372024555,104.91329334793251,68.71566695493641,146.59345665796576,62.63368453258414,51.785590645482515,80.59629658397186,167.65993951709427,107.23409567481438,56.13118564534121,168.74378553783995,70.56964430665751,76.46679582476698,180.11988436337685,50.34270227787406,681.8435696092829,55.85276178851313,74.1291701913154,180.22745292511829,705.433531817555,142.13768440788417,114.76284628186394,37.075029146169136,78.54205499576382,155.09138480555592,77.72033816418771,119.29242100618512,54.67464828684395,477.35303109040586,157.12972806720558,367.1729494905782,184.74451511135143,112.42975338285328,99.69193653366143,78.101585057972,48.28526641622714,150.24940300778593,107.16929123012186,55.30873607143514,195.66262823053418,38.56248390487431,39.65560887852631,204.29891713868375,38.43506716050422,76.51328754963356,127.55113117360676,194.3161266986792,44.69819406380754,126.7016251379103,185.64531568418673,103.37203006098903,89.588384360326,21.03624863434422,152.98311332880067,32.89379568374984,81.04783952828505,164.30562666262864,112.41553555812611,370.6879078805189,49.44401964912993,187.9236293716517,44.06403505854404,349.56836065522316,159.75258422927067,84.79265320609782,134.6744256711646,335.8387251604089,87.03514083145325,118.26367890968193,115.38104639719009,92.45667114630898,118.49826571732552,175.30750042004362,87.3406886100095,46.76555495259625,106.39840564597434,58.96954314108446,196.89752040466274,259.03424258323,131.3682473005114,73.66964599517574,68.01165298296878,166.32892139012046,80.77423521020114,195.96854046729715,85.73767490157086,158.00205137129916,63.60290818744977,107.58989669493846,45.61046550862948,87.62326807212233,132.78843662577606,77.61591669315358,399.64609576754424,68.68276951500395,253.2179005061154,156.4560112552398,152.43168796281796,122.20015676291351,204.47242755901902,49.31766073374142,125.9291793769847,331.9370092241127,116.60158672406259,179.55358394816756,100.73019414445614,106.54523339781385,39.51773993042471,247.88668494741896,97.79820408068238,71.31564119637049,93.83677048351358,122.16922876897031,136.39845167378874,51.294898952476125,88.43142131817723,66.18752992619116,107.32066679797714,69.91833933556049,386.00401880294504,153.71400092344513,347.97794503377315,96.45764296297818,38.362301625238906,52.134056987325856,57.88561634010051,56.04098379616422,132.05915768535706,127.1629222360181,83.9026606438767,46.49845641529903,122.69467697987623,83.93570540649633,184.32852873929974,102.08268749019898,120.74448597206424,31.288807105996863,75.7306268620624,196.2057605687012,51.04430708017502,85.30053351159802,67.42658620190385,115.34044231246335,72.54891424248513,248.32942031089942,78.84514585881335,74.4005602334297,77.8972902217283,45.0231963171946,59.3516669484103,160.98591557047976,138.44810352158916,156.02775476957584,116.21251549144142,42.22175898124999,111.5436832809789,87.9736705381739,60.661341217333934,110.08346927150785,47.39628046719474,49.008292848544315,43.38589920264796,91.58942819055567,348.3579019205713,68.56625023723797,74.200227368343,378.86318912139546,41.07473715111886,58.667265637688025,41.96535207076041,86.10752736678586,307.1229751473837,39.01734172671849,36.947983653679934,59.940108714886534,63.50862184847588,99.29827416071186,142.87030353821547,43.801041172697026,364.78259044469576,116.67171198044305,32.320974240991546,110.86077609551565,396.0764805519508,53.04338534926606,127.30520433181107,118.75813216822945,73.37616914134513,76.56565495334534,82.72245202981127,213.51212966589975,82.53639580118836,37.302801898647004,53.28959347939847,246.44923585839092,70.40419355460133,364.0922984574473,155.02366561667785,43.46385837175181,80.32481997790471,42.029365928836995,93.39397872469475,71.76972980883423,125.37032021599305,86.40968565323696,110.59554264418612,192.16320812878672,305.403759738007,46.435882149314345,127.96915043202299,101.29234491970128,76.01830549125447,71.2571629378828,101.63417430281982,50.528097466161924,42.593027255226374,42.956570090931294,184.23573111760183,59.17155799510659,80.51021269075078,153.7309569206221,44.22473823384584,510.09525538046125,108.06797069420924,78.78600990336722,109.09144202518051,92.90538236785025,43.17262306590873,86.29053951403004,56.30867816237234,79.17397779017233,93.5413852579015,70.16704504117317,154.45830009987552,110.80835985143857,80.74139446155185,101.60481196801634,105.54719927144016,164.8614688402707,100.06901537025209,104.14054746206371,46.08406230005073,86.43151495930228,96.0790871891503,102.81013576584286,73.39073755438136,461.1935022773238,156.13909510280624,35.97729327879145,112.93009505248641,68.17577760855258,120.29129085516017,40.26018438836779,66.39701771433882,86.9947068346697,89.97267171610184,93.66056474479119,233.1826174171335,160.66928313469492,100.35890921809253,154.43734629962543,150.69899386016712,57.425667994721884,91.41186024269997,71.10159505446721,472.24291217645435,187.2990560031899,137.8935282055738,61.366602276914044,200.6107866639194,85.22475488130787,40.429146531334155,55.26006192110216,146.43911425734055,113.54499350034143,60.96924385806196,60.06795818097382,59.57646937134326,205.76857785134476,338.84801734574546,93.62862525784014,181.96723144283615,157.66226673299593,70.30541002546357,53.61109306559858,175.92355206851303,109.48007310686359,58.495939792781286,399.3584121507114,74.9366418685917,139.0225365614979,80.51225145730655,183.79586780967082,94.05694858782682,95.10367783119587,165.9541399781534,117.4819233272514,119.53424540428301,51.59153433333931,67.93195067255532,38.54847556083625,88.39208720807194,156.79597871388034,50.73811365842991,88.77397639743653,361.4009125351045,91.61675059625587,235.8768150387944,64.55963138180925,429.8153159073527,83.46377335299363,134.85647079500828,33.609305148108774,164.60536483735518,74.58555409368812,166.74369709448683,49.35160290711049,73.8798950973286,78.23851756161298,78.26722510706905,110.23758393688324,123.12747995512336,67.57244734406828,308.5118210572955,70.87720125616357,151.4815791946707,64.56958327333564,116.47981210913714,144.01470241356932,119.9568155973836,55.07848402008099,97.2283135945379,70.20983135909363,137.04292116663188,65.63340206417705,171.91836713149755,309.98783265222824,88.5323479226601,172.73245297281755,125.74832972985091,72.85720674886441,121.0346423109495,244.32912653795998,109.02886198754713,71.25510562447151,105.88114438470832,88.50483427311714,280.2327239881516,51.48642117273913,85.22514833964016,62.21992621252236,136.82255183556774,221.4746129444092,67.07938850895661,151.3410193047945,109.08648059490105,59.446169819148,141.934138345013,74.26945441744593,93.21977090639903,59.27162806153829,48.871358418143224,51.78723447524423,234.1308243075281,140.52164136425563,68.78913031604162,275.7199941517635,60.40100016416776,67.98933808167408,35.93765250825304,58.40000882574065,198.7567730323844,68.44585467684517,56.05283560919335,83.69217760691514,172.64980078276733,211.12612629179765,132.55344675275313,135.90252824181556,272.93841629941164,39.28805771739109,59.988491987715705,423.81885231025103,126.3643275568318,88.69926111028919,74.92952901379019,273.568599369781,161.43705969891383,76.59005976475561,420.9863157019233,186.38713087709183,43.27203981598752,138.79119036086814,204.96857417006686,47.64982065429878,104.62136140997973,154.492953779436,117.44648285127248,181.13173342265884,336.7361322535816,85.55117347745592,373.5385090338914,170.69932048670174,100.52024579251885,78.42141577157824,84.92834089579253,62.926374390304375,91.24421544620705,273.9686448474487,167.63965704643667,240.80203280287503,76.85971833347816,61.55233536043842,36.86362535153272,112.84132245994485,87.85601791542908,82.77221413193524,65.231997420195,98.37056409640782,48.968778059160975,176.59162915134107,86.26690751828826,195.77387962402068,33.86119093936223,272.0332567144303,101.88076742906568,83.06694418260636,45.11887875424359,97.29824823128956,163.98297274837066,78.61526053893743,203.47719166278964,195.74868049922793,72.56035214392121,192.04237684021885,183.35829062316503,132.13787245383554,73.45505826321468,149.66085463833844,63.131080356443846,144.79193289874183,57.154502319441335,74.7848233438785,54.24507030282739,147.71515834814588,114.89713808597612,273.1971424127568,99.9270693681861,232.48712272543358,66.73961871114405,67.14817560623362,82.45751829908713,39.06576535623354,96.7378161557979,54.30211923326892,35.37626208930276,206.8293780803522,156.01752401971473,408.4492296920565,160.99344589959685,150.30583106461535,192.1025215914909,83.82390700240482,145.47559152593288,113.07538932859211,92.5394143728427,77.99389544692936,52.620027443905016,162.22726634601642,109.67682884247664,244.72490992069345,111.54844599553068,71.31095857276647,75.1294591966776,144.66696914713023,146.44427563918498,109.47527342456537,52.111241627790335,115.79246188557698,172.06512063131595,291.69083909580417,227.3641718226135,89.44257581689165,135.61852725812315,173.2918008557514,87.50203934629344,62.19855069998136,142.40929529812692,66.85018989083096,61.10405945305237,47.24209513898135,97.32890621059502,24.10329644775184,65.10922502752943,116.48316066001804,108.11942781582869,65.49597497288298,80.8949552515262,177.14571592670632,148.9167960067541,214.1182761891117,40.995080301253516,122.27077573129657,40.524856075455496,83.59701057434035,41.72260650025383,171.4674091361833,88.82845248969795,309.436468713348,121.42011590911534,67.49916190250829,46.44327779489059,208.89640991188764,84.69839651323872,175.31679897338404,63.717990174423704,130.91850070026968,159.75489968144535,47.60767884425633,38.31646647087699,51.737165262065844,66.1769798894609,89.3649821571811,324.3209311935398,162.4693670419554,90.40175922854478,118.00052301413132,120.85171154839765,136.98712672812945,118.47752416139093,65.94377846474315,312.8612776793559,99.80026184208295,94.9447650109273,121.75113802069701,130.4654132452346,74.73858761190253,308.33934031693036,121.48078767136995,62.275278255148805,51.019881868869305,39.34343693758043,45.195446388519734,80.58535950555307,56.475222855593785,63.66220311064359,60.46173586331325,66.91025586701082,68.26100350290095,59.66540357385337,85.41223607277693,104.12739033858244,51.846177041660624,46.505277010371515,236.6893554149299,99.2793412372854,120.38330310722361,97.30620088560616,58.26116277728062,85.6699064860262,69.44716297103756,91.72141651169625,121.37635318891564,67.38680817856451,155.27573348351103,156.7807551072157,85.63405360616566,103.99015641138409,139.11056680410846,53.83114866929344,57.87077259325349,49.80684130398564,895.270428571858,154.37838202802885,98.46016821775063,27.400559484105514,66.30076352625568,290.86351588817365,59.51343457066005,71.31045501698762,90.21221947875638,142.2373567468643,68.14123834903347,99.5586304504755,157.29962535070453,74.44771894242642,273.64207926720024,69.57061250528801,113.58605054702043,151.30529963143098,50.223530475448534,70.88531562500155,72.61633981520009,96.94298875124697,91.81835386502834,84.6459731867962,202.23339181830764,186.34618567095677,60.33904234854679,74.47051707917709,56.3931578545008,70.23479301871502,82.61062062573485,89.89011864708753,86.85740867004594,57.67723503951156,36.824403351406154,71.29234059001438,186.99509110902298,95.1961944599409,86.28044133641141,171.77461007029606,57.06049535397329,128.24049713258327,201.7351593725179,112.04711955215586,169.4331595112885,51.655073880523965,87.99054805560782,138.92291859863363,94.64711868571551,81.73356972933246,51.30262975571524,66.7852577799373,61.72271839156833,227.67600733260824,206.83359084956524,77.22632466902658,99.04093705187663,188.56180805395786,40.800697234498536,433.04806024790537,48.20224738431929,120.98175512686963,76.0483490242491,58.90004826625307,85.57649190619313,93.50645652421048,145.0778753707322,160.08180376553824,235.8823123535726,88.46519372883542,168.83790277289114,139.42342272883616,153.19517728453621,159.62255728078745,53.68920845424645,82.65426125400222,65.49696603903814,144.41271061851631,113.18513541867691,65.5607974882743,167.4875879710015,57.22161113520062,70.75098093324877,106.7437227406307,103.96528781999758,143.42206067065328,28.86484830419057,144.74490309765852,102.50035797246339,79.41836871254188,51.84557039914985,95.47600192838013,102.0995494524392,37.59368448098562,68.70084756815668,96.75792077319345,41.57901591969752,189.1270222545973,183.2354094348012,70.43258346152906,78.76511458860153,43.97729482432746,54.81612365915535,74.08248575045394,83.6429482453114,60.77687177135754,145.84406915455926,192.1333521428465,80.3379752769528,317.5627270708368,286.8915306911794,150.80896307910106,114.51460946864707,357.46440407499244,170.00051035667005,129.56314986463883,81.82331872929255,96.38918018629468,256.0588673389953,245.75565689704018,127.70194664132015,115.16063675632388,98.24037749457739,93.28225383731267,111.10541595440463,74.88918288134825,43.990511063410494,305.27646542814625,52.097847420068135,138.22719416281993,71.78242238559272,43.41287309716327,96.98993670486017,67.13716130524101,140.15100557988563,29.773852469267744,114.40256033547689,89.29262047649631,138.2347584997895,34.36464174076256,98.30391475185485,185.69767076232694,118.81319659655965,115.84421879983323,101.70607485539476,293.8095325361784,199.0263541662218,126.11796485018786,288.14296467581397,77.00247839862969,44.25315622741171,117.11433909092088,94.9700556109087,146.034656299692,219.51771466382036,72.56774166568647,51.01600827827152,84.53454163635539,98.70997363223283,79.6769934073949,143.0923673299599,95.37757798568558,66.3705203056326,125.62462310904355,246.58479501854416,101.58318982856179,103.78142099434378,64.05085453602018,129.83153307684643,92.76459992448076,38.87986116042377,200.91580413383372,125.25313956140295,34.939016626771895,75.90749813686229,103.50908407667747,104.44034208565,239.9530446449463,124.08014381506459,124.44161180797089,113.47565847067776,126.31763639716915,286.4775696392746,130.30193319645883,59.22927548692961,42.356106482345524,343.0741407895578,75.21525835078688,80.35245837592177,196.88317420285864,134.49878852968004,107.7855538356343,129.8633858616932,64.5380487879296,80.94486718996409,47.919740559017406,43.65766663441474,161.03982869073437,105.08326134161973,75.23109905225817,203.61258758985426,163.63566318892435,72.91350684814066,337.7112558111781,118.58580338880192,59.06624015081489,88.03090802547857,130.46059753604723,313.3682403043799,97.71007903146176,106.42680852547497,188.11601729251703,118.15781533932707,66.86558511126435,50.84898842568611,82.59565575362792,46.341591769328865,197.168302278363,63.038487434664965,126.86373464590355,95.12913100411565,384.31042559358406,64.57027827904567,303.30381695263725,144.1779831001115,252.03943697923694,65.2688471898795,89.979191849728,194.10633552088265,98.24030433065545,141.3134349784567,94.35201635101795,224.62498511267023,102.49814782163635,60.32537855003431,133.6924973022644,75.02504347579163,194.96111560632767,358.6251671025997,35.77695027833905,101.34012739044461,100.36912213751619,86.73894251917133,48.6482600212561,49.514786621327,197.27237026238234,63.5207234800892,69.7594863719096,71.21375153997317,38.113153748212866,82.09860693275142,60.81170418676428,28.6948593345694,143.0088922320064,182.17602002994332,207.9728327792997,84.12952525148552,49.78868291934097,139.94777038904883,59.07213795149258,136.52947886717251,99.43573273571575,92.20288358825343,137.19908837343056,234.89602787924082,148.16535437090928,32.79082768005429,306.82116970973277,84.73748183242935,58.58254774551026,114.48896385859719,50.84807091385577,77.79534445301691,104.76184833547813,121.79174225915958,89.83050179256477,140.5388548503101,52.66458725682434,75.17639586084711,232.01338459923983,197.02808373852403,127.05753661690827,160.1681439800575,77.62673473358974,89.00327962011622,37.037773586010566,86.96161875570674,96.15751699270025,414.9336067547461,213.46843338729224,78.37430757746331,90.79200994266097,103.12407961223569,84.73621881757553,49.34058538282205,128.76809198606242,78.39235113198362,96.35316944342976,113.91344052726485,89.88640281349703,192.5351405746717,90.13174685434305,94.9700323137874,65.17721287320113,78.48561610254221,122.59775717115318,116.86786821901725,153.87956304576358,187.80312733686034,87.8579351851106,114.1150075434105,120.08854978976086,48.63735517382139,127.27468750819531,84.59673224506099,79.32073852407378,44.490156789732545,170.76031216495934,92.4619241855484,153.17983267291694,56.11927450864575,112.35941678838954,66.58449175365693,225.82915556642126,70.51001909459836,442.3269058204883,434.5769939299118,61.55403517895063,26.445373031088806,128.46368265838393,415.79022661125,65.07104619083516,154.41900889362734,37.49387402498674,159.02688297300818,126.92853609435988,39.43638237993524,55.549789674125165,75.21341887226639,181.26862079475356,54.58947988085521,98.00879511454313,51.210308515286094,63.45872898939221,95.61850981150899,70.16430530571475,346.25254411977187,144.02888568911885,129.67520443382688,160.56994495011742,153.36372616598044,37.48110945193361,53.901419819735445,77.7478385763777,58.707720097942826,64.43053006740439,187.4863072745148,51.93816291163115,183.87037887368913,173.04973352510956,70.32899883242695],"multiples_of_cash":[4.168362774031209,53.489642604701444,11.70244822984218,18.03369116323799,3.7906706734235533,11.665938396237468,24.61952648891756,7.843873799661369,3.489026750399198,3.434047808735544,11.248303281959346,12.259737710821065,4.647853681366323,9.803479602652128,10.679538120543215,3.6244390893024554,6.795129545812193,5.328523869773691,14.470615281852968,7.977984813981485,3.114186454506384,15.645884048726561,2.548276842759444,7.748678366782147,10.643973887621923,2.610336480984796,3.311521540867034,3.601349404316259,2.7234174150512858,13.260999308236055,11.189779225414624,4.501715170356571,2.2808150992685543,2.3411538109920405,4.553826738942807,5.486211191662972,31.032586908260054,7.184130004971842,8.239066583201348,4.518820634186572,16.07355811505897,6.465473381683523,17.644271577907357,3.3763486491338472,19.923216400996576,7.848871940269955,6.934318031550683,2.943408526226835,2.3413480712768173,9.78731336099473,8.72340899001755,6.884135550086822,6.973608064252316,4.024514451240073,8.342466803882363,16.7461289699126,7.308529791557331,1.9864039589783622,20.674601016200015,6.6447680174124315,11.656787812686902,2.554765334436251,6.043892106600052,20.1334543468005,8.624983558946306,6.613463497319801,21.15626916015961,4.0502109505228,8.374693856020585,4.657141863886482,7.639754180051039,7.112176462170631,18.02649020666052,6.757518286285209,11.513708887345771,14.237562963184331,1.858264769133527,9.06039346430631,6.337877215987955,5.254300127772705,2.3856956859543024,2.555470381616595,3.0899139139929175,3.2701130915933203,9.541378045613413,5.6030691071981265,3.7918902533516943,11.337692804887883,4.381848920746317,36.15344269118612,3.6948928090808133,13.430837550458975,9.734458029260038,23.19047764221326,28.22816087035542,13.111543381035158,4.267987085840327,4.215702589998702,14.575256416153758,17.838234759443235,9.601193020800876,10.021156328224961,1.1718043350100762,2.9280840702811646,0.9934282938767194,9.46482651146285,5.712702771416393,1.9452100378931152,15.039435631512555,3.5422015450805486,46.92899054851936,4.457434088539302,13.483660250445116,11.81040159791326,9.020873033541843,13.146595061409217,8.716209009820469,3.942902500768277,3.116784703718191,12.99564833492469,4.206999571235772,20.483365166057627,3.9399934815672166,5.49484568473146,3.890425587067123,3.842860335420559,8.19559785306881,5.409807484902419,31.81499050123005,1.9366458700982665,8.164932454209524,8.555977086149264,4.7104336402361495,14.104216224992914,7.510301717556686,3.928276007724323,2.8055051277743677,3.616734099908474,4.623310776739956,3.0113171075699112,2.699632632396948,32.08222393169708,15.288202060380575,1.8476695904215523,6.90917195605553,2.1813483865391774,2.0282524380586606,14.866937017625128,7.199059957188432,1.5308277590377715,2.8335764490428543,2.303591610721289,4.283573208210399,3.1158049454950874,2.2269999716719995,4.882039664164451,6.419329499587094,4.037637325483577,2.7451920431483168,2.4558825807782023,1.466661564674122,20.110659874668944,13.707422794398017,31.251846674416917,4.135094838973324,5.8671103998470775,1.678491514197396,2.634710556842635,15.96863912277396,14.128201302053041,7.31424988692615,3.7019447653251523,3.957193677861239,20.497148124468943,7.205085704261485,5.4800113389019,3.504027336195713,6.378343554899263,5.763604419386326,11.354386320653772,2.5867037989125663,15.212540106338272,6.914359245498594,0.9220046015474366,5.772516370545001,6.146402877821762,5.297699181986644,4.025002433199548,6.2647131298161165,27.986819733920456,3.607780583762852,2.9233099979131723,3.5949414345597948,6.649394465840142,8.569527856670465,4.067446403293907,3.380966500540907,1.6938669300543476,4.535617570183309,8.336580518959677,6.794561241770452,12.302881545493076,16.796431531668627,2.13679072506582,7.580620122283839,10.1302199944627,7.156549878107847,1.933107901277864,4.705390124372237,2.7737968775718596,8.709692459220621,33.413029064716,10.278713676566065,11.394706505723477,11.783876394406827,9.871684248614896,6.264616669708885,10.046021183390657,6.490645270831195,7.680914771111726,6.427674205647011,2.9815517723937144,9.701697020921653,3.172640221469057,4.8768057240334395,9.69932743647567,14.902505319118502,11.776658657467285,9.69506451148143,5.61193936693205,8.40294502032788,4.48051493341839,3.615321416058029,6.927300919577651,5.342474006042201,10.104804391671605,9.982241118275036,2.8782515403237543,7.192615551347136,6.4411614096299905,7.09104962130559,8.132933644110539,3.1337073834348126,5.241031295819279,1.679993852522254,8.26174484054811,3.166259100358883,8.970372827736801,9.910758860022312,6.301179621894055,11.23976336845996,6.2963388562168205,4.384718403256701,10.350407756477672,3.747316644921435,4.916422720693147,12.267571043893962,5.094110666931131,5.240016108395156,7.9269543814318135,4.791189954860675,5.807176650669819,6.617683772117625,3.848144546454284,6.916837293323944,21.130714721479233,4.3541985989332055,7.010966455885182,10.022341916686292,8.20166818391882,8.149169431791169,22.34371971742908,3.6261179888893094,4.434060928283836,3.909983594044536,11.80933249184717,1.895418049790156,3.9145248977875244,10.114033651047311,21.71788925420775,2.5820395685233963,4.115139592869165,2.4073170328664784,5.590161632589732,4.8495153335112695,3.3341788352422803,2.3281632696613506,8.306366998515989,4.299447852478631,7.982273996025892,8.082037062519927,3.6493615491666,10.956085455015486,37.25429544409119,3.2651388998521167,11.134413747388367,12.704003174922475,10.414343526946235,39.87465477337466,8.037808304491149,8.684408330269914,2.5716960204895467,9.209616566469792,6.991190449155537,8.076493424283019,7.466692761522204,4.249094255148996,7.23330818767754,7.449692517754775,5.581505808361231,8.322178096946637,7.674892176685797,1.8794529817975625,7.298340032392563,2.0769727886015685,4.0584644494909545,8.102722382661698,6.2602323568529235,17.039303705781883,16.523607945105944,5.346135391313133,12.459985466825096,6.046617027357443,9.05891259330354,34.18430189464504,10.29679796515249,7.799497091011787,5.375981375285442,15.981494058335976,1.5298629906984793,7.01529735328229,3.258108277461472,4.830065630926495,3.779598544305334,2.4287377588859083,7.165767883610246,2.787679549218225,11.140269917376125,4.336453866209653,3.3133238202481454,3.305187598473535,5.972239061617117,5.671184746256384,6.075072894138983,5.221437502611858,3.5395504841247343,3.983995119393873,6.431312037214468,3.287931084777937,2.5987666631125927,4.829064704616125,12.694858850964268,25.647412523747043,6.607754319494905,7.830773546454858,10.13679707000266,3.1466941858456066,14.700481074574821,27.499049547758176,5.495230861880354,5.18090858929277,2.6982858772717506,6.688629717087997,4.563048328050936,6.755780585179016,2.634649034305042,11.940669662734516,6.471879265164801,4.3475350506998165,6.254705205737135,3.8483701848657663,3.531125531426299,2.8206262239969386,7.016768055083015,3.128051808029486,9.465892887515666,17.60450829438474,20.042154115290323,4.957761110589399,3.9441314029169003,7.539843227078601,8.388358340052017,5.3355435014153505,1.7948256163920342,5.579431213732787,13.920776702517646,3.6223740696517153,2.55193027545319,4.057350471084849,14.402069134874017,3.454989540517273,3.6960913074708044,11.729517553554869,3.1071429523640806,4.121232973756497,5.234635668795562,18.05221097596066,4.3471443588103025,25.7140968063258,0.7783489842641825,5.094734542298449,2.349471804369257,6.91336117166504,2.672808071295144,6.843080380586743,11.137334497933637,4.8227071654115985,4.377044587582041,3.8852386323702337,16.697976630145526,10.873789156977175,3.764587048897492,7.933028446358366,3.6558529099931114,8.75993259868126,4.324242412168289,3.776428756543138,23.195899868687636,6.101158051190517,16.179051008064356,15.071062248543857,5.623844197039946,5.244434437649262,11.676367619549604,5.060534460653127,10.439686402648794,13.192002733188675,10.510691379083562,2.123617701477478,12.685081371952469,3.507010177595229,8.476413148213695,14.265276033641577,6.960213723219873,3.4824603795211293,7.685391648470682,2.483927970813243,6.158309569227381,5.2069930477747945,7.67635992855302,1.7657602075926402,4.9831125693618725,2.910130676906232,3.4434145330965853,4.627413458270968,26.331712191654283,4.65230134258624,6.331181494176569,3.0787610775794443,3.644953295796882,5.281110459592315,1.9962012729749206,3.5036739231119767,37.943278429751246,9.060203520038236,6.1669384800044575,8.580121458382315,5.014614989892959,5.40891140640262,10.062321326718902,12.442862201915162,16.302607197985946,26.058111286440123,2.505252122522139,8.414151276297881,2.464671184135728,6.2703491395646935,1.3719095937547336,17.11064097427597,2.1497692637688033,10.462699669121065,7.0578339806541415,5.5601836909964195,5.712786891094193,3.880201556713814,7.805341377679424,4.478415002685903,18.517263562486907,2.1822517305593774,19.82805961431517,8.831313168011256,8.35946948771546,9.641715957675073,1.9859842375192633,8.34093669226581,6.495480903995437,3.1486287537630777,15.104292111560591,5.465797102065874,3.7832363323221685,8.226827240339096,5.178171778726597,3.776413969175425,4.860512335497844,19.875592495344506,2.139879561504003,3.404113470362594,25.225924852618185,11.553838177969697,4.505629281470144,3.8286602730088872,1.655168212134188,6.821257060943873,11.301472725574431,2.0440255665705003,3.092501194876843,3.269195325157207,10.80315197597321,10.952614922677387,3.3685879620015133,6.153427195377876,4.800612712255731,5.447066063801545,5.454656264129524,19.61310573064577,11.283850288053367,7.941452063342686,2.6888693523241947,4.805422930660501,7.526900870288495,4.496133286789671,7.317812072329633,10.543029346765561,7.434106239297652,16.8807573207419,6.631993213851904,4.6985771001230425,6.440769411029398,13.524609717981342,4.808624763116811,2.0079410066863397,8.386604823729876,11.978496271998896,8.416346957885553,8.715596239986573,4.189910499920337,2.079354328710808,4.84184065629404,9.637112368111636,29.074876909509502,2.229290606178734,4.641549295571848,17.501356971994856,4.975085758035735,20.858399720981467,2.209856728319749,3.1034073622328515,4.029738020730794,13.52065929974801,1.5892931984965408,3.667380054918409,3.973948904372668,3.9992674206078243,4.223498409778754,5.046926266355933,6.545731670922889,4.257356888025364,8.428963067732901,6.506639736130292,9.560969613528673,4.608308020782871,4.48562433101918,13.595901343867393,4.293163516340309,7.28501439458623,6.808576336452928,2.719835945885,14.861405141951805,3.5027551133031687,37.58754265637356,45.880669564791575,9.841435440928532,7.28627124812077,8.108344301194048,5.10334082983678,12.800340681674959,23.51866799562565,2.2370509595587973,9.24389328383328,3.4865865627682475,9.599616628723407,10.854229621115683,6.418053043509001,44.72774228508987,13.0428840677189,6.73008651523457,25.914396108654106,12.662871900892057,6.083807093033181,6.368138596528252,6.468615665516091,34.84876109278776,2.533119652884541,2.2876192815642558,4.964573914071793,3.301468157430309,8.029789434237294,4.771296033252597,3.6355335176041383,49.546150488034954,2.652229357948104,8.236070984565671,7.066169381125352,11.439037489378185,5.249889813630783,7.297852767088282,5.13443193222026,4.4107254204101505,3.5069936510341027,2.0677376099958775,8.853617013191807,7.517719215965363,14.098380341780999,1.6803640298890006,9.608940404733348,9.247913299457425,5.875281422706244,3.0667272368861966,3.7587182329444513,9.08205788726375,4.289883055442166,5.692212863420423,35.969949172730885,10.602149219702493,4.400556841482164,2.3867112193891677,6.673765382551493,3.0183596824029757,12.114802817174024,27.118923647496917,25.064100538763526,4.183300980350657,14.244494512110858,8.041011564839522,10.918320511525206,2.8577668093680355,1.8810644059073822,2.6726029201823946,21.58810596852378,7.555794167411606,5.225326977973666,6.98101281616703,7.559378803495799,2.3308389760536534,8.781302663473275,2.156175399175014,10.05504935405066,7.856314770179959,4.8312032337569235,6.511055819982028,2.1439558686289937,11.735027358898325,4.3458420079151985,4.1388140020790765,9.697519758361903,8.086514541139973,1.6198664566756389,10.76978549171345,5.374739389008007,2.867033702285981,8.644839737702984,8.528764668748579,3.897168191430837,8.298894693108952,7.076649892792687,3.8552423020405304,2.6157631418709206,4.297647752289574,6.001444528694183,3.479879700485933,6.659668846454594,34.090592978778986,5.516238865153906,8.520834019502672,7.916313371375693,3.7007708579978384,3.8507979883989134,5.0482596728702624,3.837954649437594,6.330580498922551,1.1727281024710756,2.005128085371238,7.092350570076854,4.7817221430230665,7.543867565815838,9.832436090600524,3.1901196785933528,16.282312012965118,3.270314300199982,9.383490546128323,7.260815823270378,6.8933852247180205,13.71761658315172,7.823844803508306,4.338609406170043,3.3625601345809244,6.853801381279858,3.148948375191316,20.474864765303188,7.038629835628636,10.006149716163998,4.091060580488477,11.92869679437238,19.66223090737875,29.408305199216933,4.331372401557342,4.459481012022515,4.761729113419215,1.7992299844124917,8.424304103799786,6.477403184439685,21.69942776489025,5.193264399402275,3.8157912862999885,12.561946180599795,2.6306426865171777,5.460443445650579,10.17803942908891,4.745859910542565,1.7162737058651858,4.13217123059836,37.75329390388804,13.49628901473152,17.770455097090473,12.082943815448296,10.620124236027795,6.485915547671139,3.6803059574887107,6.072118188830641,4.883819715377493,7.628525914659497,9.888289275412925,1.024724940808478,4.513252804141927,49.4804829554605,6.250662418010257,4.094795064206231,6.224381894085957,9.10777669296387,15.313328278958853,1.861763089652959,5.718457379313749,5.16413013245196,11.914131035796688,6.2833983175859345,2.57074345980267,8.012834461833073,10.4840246419431,3.7582514013507615,3.7572932709013993,4.073487559276824,5.149527847283864,11.44162963827386,19.479957869415863,2.319112155979594,2.7291087922521644,8.9539102180115,14.109090528091052,3.7751634593842858,3.861757933309418,11.081730008041939,7.977745520598142,5.188516404963963,5.583759443072631,36.38531759255361,6.400447465978696,15.868398601750009,32.28878203154541,2.854762293913612,5.914512321025092,11.637691993396764,11.994265737261943,4.077252671739506,9.75598680403644,8.92196408394081,3.315138753955756,18.58357355793062,1.5210535717330012,7.205177937575619,7.0533221425742445,3.443079149507017,4.881649099696471,5.030946815981953,4.860272147736468,4.759105737713406,37.114837143218935,5.153685982977975,3.8969381887767858,9.934476583587974,1.619758615729652,12.793579935431904,4.935498248238466,6.188474824072387,5.831436280404327,8.203743018229616,4.81274933030223,1.8681560498411125,7.728993572866722,6.914836227813171,41.4539742928123,4.834818669624117,14.883202872414294,11.7490485266886,3.405546894106539,11.269508749767486,2.313179286935422,7.8005341521026486,15.628714980423672,22.436662464732155,18.28101768530559,7.826079349332533,5.305428953007136,2.370919022714613,5.625672924090748,3.930607552702518,12.181326139068098,4.631837132901674,7.604988384421608,2.1072991274174244,8.920404506650469,4.813972026965522,3.0307763388286446,4.926743399106269,12.164316084490565,4.1494914538789285,5.722957270884821,5.925527506601805,3.9408339539653023,12.813227371031267,3.053422499104089,4.7735670791502836,13.448538203981364,24.08875008859694,4.156524450227426,14.203535217732272,6.174305850745366,107.92174010551089,1.7148172924879543,3.6697202541403984,10.362543071933702,7.727884492827186,7.450310569836601,4.644475677085666,2.9436282566908885,3.2520749052594407,2.223343370301774,4.335567966146446,4.657192552036538,17.168302440296976,6.334830663249302,3.435104456814223,4.996719101203212,12.919042417985114,24.41968458872706,7.3695671634590685,1.9132774879353862,1.791590564822402,11.155352768025812,11.976562024436099,3.6914506738087587,1.8015618959469923,12.706765950409553,10.230063983175109,6.021489234127294,6.690247669383502,4.7311876019933665,4.456561703476365,8.534071195276193,2.5932291599786947,2.5118748045317725,1.7137137090730306,8.587316481790713,6.199019363086666,5.841563856150437,16.739980554484763,2.5189617082318607,8.988629551341939,3.058846461678001,4.766812075021098,3.6912119060077044,5.322341478908219,1.9238798400259947,8.026899142633855,5.061891774395413,5.825045718766617,22.792849944813675,2.680645102514872,6.628314058681278,5.74558710836724,5.4780355770304165,32.04419603963703,7.309274991928449,4.465938526259388,7.2975152920838005,12.972049143871022,3.062860098189276,5.331934554712813,21.98766546038966,5.356711988487971,6.0007055207578315,24.020574228659264,4.095367611208246,5.2375395553293265,2.434052294558082,4.964456573977894,2.4792712201871594,3.6199013860526694,14.598799134631815,3.845900149535022,6.500679629138603,9.098044971767154,2.1436563214278754,1.7617102994465341,5.808190248271656,13.020182090820112,10.964774727988548,4.018338227726226,12.015040998341668,4.064994524504768,6.106140190994024,3.5177189301345964,18.116197352846605,11.031120780092682,21.907527389514694,32.51397479276624,3.6078282264390773,5.298316247462632,3.2596686584198085,6.4539028831203895,4.849629914267589,13.34518903675585,1.8217511833477662,17.754283830917775,10.307385388800707,15.858667005386215,12.76073012875405,3.359145149072999,9.1153220005835,8.585611155071602,3.5407404096130173,1.997693167917174,4.510241209892299,13.016471531012565,8.094275582076856,28.644459208295334,6.599971451346505,6.452222308397503,3.126578736514339,7.806547913107432,4.95121564917113,6.744905477134081,17.65294387617568,14.034891056963483,5.330288792380467,10.426350572998134,2.9667088118933647,5.88767381977733,7.764480437511313,7.654550790311524,2.284898954669005,3.407706317902898,3.1184661590992193,4.04249626213812,5.010140055063527,25.3560669825586,8.942055404888082,5.86393476980686,9.92180441331812,5.745726471536861,5.232055313170884,7.649219539074867,6.807885915782091,3.3561368191581717,12.63281076961857,5.038726011266038,8.653657940729868,9.060800967502793,9.740979176675173,1.5942306001782591,6.242314325160427,2.613454161477805,6.37053829191179,2.5168968145854276,1.4587812338534547,3.0956161709487606,3.357846093369873,10.610577735752402,3.7883545903248224,14.247388305757934,2.2819690302013838,5.21607430652002,5.182887356436925,5.188680036607327,3.1773491103925795,5.535769540983135,28.848594955448707,8.140723334122585,15.587934576371461,10.404094399280346,6.069412780640955,16.26611245485444,2.8969398998962026,12.960197823230727,4.107612612473851,7.995705870457459,36.87721983936277,5.292748376866239,2.049941177876714,8.876530554039876,3.106412505916279,30.72132028710979,5.233033169911333,2.398711171001581,12.66493321185814,2.8754010150739275,7.937060374293705,4.496524455734584,17.51376028785908,3.4613293718058538,10.651466345443577,6.25281754354072,18.37190226369107,3.2947148381362688,4.594816578264633,17.995527486765436,9.93531599936492,2.838497264877476,3.2673379246916836,4.892954015621257,11.090434122964199,6.929692848695,2.3179660863733513,7.4931732316499025,5.775734196341114,19.532050314627305,12.332624729489703,4.460289241869969,4.242776433577693,6.083648269004722,8.95680599579192,7.220176251380328,6.484585531188029,2.361147571183771,19.444652189681147,5.649771794359866,8.546314823408931,19.586530170665814,2.3809087429798304,15.683085701096969,24.161807577862906,7.185701439681505,4.8006407010264995,6.392734846494749,3.8504947911011214,3.836065754720072,5.205575722833326,11.246025344387672,12.047354499733501,7.526017355824538,24.886522453448293,3.964124947212665,18.323702978115392,2.695653772987985,10.121119117625645,4.958345717831041,7.542347493954394,8.324786979917477,28.274195928196573,3.732013329256019,8.937185621895134,17.414322471325455,5.736662182754958,7.229121931925982,7.915655774245063,4.8086540913261695,5.600566754594729,6.742499063503809,1.3013886003537014,4.2255160279154635,4.26222179670709,12.927544621167675,34.09927204673652,6.024010136750461,7.425964859423334,3.5709576582112716,2.076505681306848,6.95142774773359,2.7742522993149796,2.2053046990977583,4.298980449828104,5.0765987236892585,4.396267800188981,3.11354912948099,3.867281198261188,13.975839561988748,2.346664421117344,2.785613800671601,16.97435884851692,2.1313697238158156,6.5720040812948275,16.365856661406223,2.988224757863907,3.2422668595961124,4.190522948645212,6.880330890185845,8.577423674397515,2.5527660387752587,7.941996718006409,6.529363598371906,1.5200292174557626,31.86227982373002,23.452453272522565,4.812525432795455,24.584920320048763,7.08536209415276,15.630524431652278,2.7124508977238446,15.536010903134466,4.465645214669586,5.489026472073668,4.377625829734617,4.646428553559022,43.4061216743079,4.041687120060326,2.1734602527921485,32.95562375964516,4.438072389829441,4.621727031065956,3.63493596640492,5.476179567073668,3.218015247088824,4.992013706125758,6.526093648291552,3.0409558663450924,5.161396256380921,8.414658810444973,3.7309780892975826,4.411558067829605,6.67539528716738,3.7652496773964987,14.37854724080288,4.542442474696283,16.450402376703448,4.76537738973607,5.4636439105355805,5.054750331021077,2.923624743601205,5.470002794618472,2.5686439815518995,9.806821170887796,3.2422860188288447,2.9158031270529046,13.369625356877,8.301075899466603,5.217021536719972,25.616449877877688,6.871737498353452,20.173837035244787,3.9953382029831466,3.271086300205004,30.568249206344916,16.103025884301996,5.193362902360208,2.774367815413176,9.444926499613178,4.398447154279434,8.824265240468185,6.142280618513664,5.559801126684278,4.361143246501389,6.61314105576192,2.9136643773317163,2.08235752326794,47.33501506702587,13.383078304955779,8.55462784032278,3.252863870182991,26.502354287850462,2.6592891112486354,5.636227575513736,6.207997368427311,7.434528824669383,12.32610248763335,2.5558584977808474,2.7629881128500062,20.41168559011526,7.652780830902311,7.596633350942388,6.60454853335412,1.829331914062744,6.099145998485016,2.4261621738357806,16.44435471444109,5.501405631704411,5.489264734029512,2.9356914997760586,31.1269922677731,16.28293354800979,5.780668732837948,2.6044751376796844,5.9411549919398805,4.260845309491534,7.625931293814661,23.231257223183395,3.1199880588610593,14.277229974706021,9.083476720357213,3.8837064077023804,11.537588960411181,2.6748450910235726,3.627230740991176,9.253060548791165,9.199238053557965,5.233313967273962,29.4189528542987,15.70187744764535,11.504294208848483,6.591668595561106,6.474660081885483,3.103960950328036,7.7320098335564555,9.063049103945186,14.441442440372018,14.595891469132258,3.51692549550567,6.490238969655111,3.6111840082137596,2.9728391665091176,7.582134902589731,22.940281597080297,4.2233909409580255,10.584765116233639,11.58917976844281,0.9099984360262433,1.3389740908127339,4.462009233296056,9.9941283331438,5.796260947742637,8.494132939162087,3.776791131471968,21.313132151012322,8.326513356053225,11.301569132417502,2.4291584559509114,18.607962372595654,10.356458247338855,5.810920326851179,8.482252786346862,6.649600454110569,11.521674827039437,7.011500217328943,7.825973023919724,4.034399834911363,6.029229111598745,8.332242172480955,1.8156427634187033,3.818986716491849,10.45190633756493,4.6257684986651375,10.92425211555654,8.244379653282204,8.251394226904262,6.921618369821345,23.727159703752715,5.5250769842026415,14.771473098772104,4.025999221401856,14.173951461106006,8.770449987279,4.027781124240984,2.3423869028329785,4.007397088649537,3.975902652744394,5.689064472867252,6.798683350205302,16.63397296487588,7.507142123737353,11.695500699615435,6.3160396939658545,3.891016357326623,3.3864013299765583,2.5916223940716834,4.011473776181678,2.7466285326975735,2.1351078533643717,5.8567707073518,6.603585783369867,10.796736468574203,3.9581466804475594,6.987566369508662,4.907338926380481,4.702142575482201,3.8993133645909532,4.810483617280285,4.198169116006637,7.930473353386534,6.202087000506378,5.894387244406835,22.893972970377725,3.768474922453179,3.1708930608311925,9.353640343659025,7.165190150986077,2.134066602770213,5.297735677257402,6.5427740216791985,7.902253588111598,11.439047583844607,18.74592192157995,6.756741653652679,7.674836102622457,1.6547086828829862,10.956834405520198,2.323630296366563,4.092476621780027,2.7828225550556747,20.76855521030694,5.989587403584277,1.449908152861972,2.7021114968977535,2.9872270606307616,7.18693689897741,8.918821341419665,2.1667709261243204,2.1930569008554377,3.5582855213550353,14.356887161122476,3.3639924220782587,3.763349184840695,4.022852380977259,8.51665004429951,8.992406592668406,14.557906667474278,2.3169593406447375,4.691027679204272,1.9241739506380018,4.658628853999409,2.3137627735591724,16.595834238472804,21.42378934278631,5.5207308166977915,2.3461672810008993,2.349948172885142,4.725367839097512,20.199884784143897,3.4169530313927376,8.181167689049813,5.802851073674185,4.957419417569541,2.2674154322932734,10.6114960679437,3.2546129918659283,4.487011630298173,2.723874525875998,7.6801299726551315,8.184577183010553,38.33670771871346,9.699617574839927,7.170886088910962,2.093896933212239,2.9564008247598337,4.033248387977731,5.4192350142590895,9.658568735417235,3.3975606498420303,4.378272294592067,3.4520066862725587,10.564029804253687,6.8468992028124225,7.305480390800514,7.241223091058979,10.842771072793001,2.461666510093556,7.703247885884659,1.5124111856943012,18.00187301297591,2.118170237827227,27.02513600149287,6.4110391701628116,6.016280380907675,9.816552258260451,13.305007011286959,11.808066458710952,1.9388604936467164,3.3370333963198493,12.070009011933234,6.820914027585423,6.462035522008442,3.8224572741892153,9.912627067482957,2.9655772036779444,4.9903340270809124,4.284488684934327,10.308469697958442,5.712248537027352,6.600112100126169,5.6387575236632825,27.30875005480276,13.693396553696225,11.223340959119797,1.4948754327964096,11.330732618917889,23.847986908723247,9.49985685443491,9.158394523691362,7.366076802849698,5.5048454550232515,17.860222535137353,9.384646590134004,15.564440550037254,8.300423251674275,10.47489831765383,4.863544076411346,7.047326232398122,7.965023620549456,4.441427457191999,14.308896242075791,2.058501977011763,5.232043194213039,2.2414568157409915,9.25903288669796,3.524926085919611,5.889818895661203,2.3259127036259026,11.412594656034416,5.168180436188669,1.1299841077358388,5.872872698140264,12.267901275604661,8.901997449807922,3.13998143691657,3.4760481596641566,6.443460952597469,6.102089794571905,26.54347717893603,6.125222044872349,0.8184960056739098,18.519542471410013,7.707730148073429,5.171387341565026,6.011704953310546,10.448754210170494,4.147542893116456,19.304650159474686,5.04749481064414,3.996651248996885,5.119304116928077,32.12999712309273,39.515855575133806,7.7284128812441555,3.834390338550498,5.339855917994859,3.5968891169938932,3.795900694110247,8.720456720467663,31.91110932013638,10.485687150363486,4.0105445953642995,5.5200490290515765,5.433287251552449,3.6677824231388714,3.720832553603839,3.307063964428392,1.8824174938807219,4.7249035957885885,3.1860727293875484,2.2676980217641445,4.6459098033209765,8.650268628028057,2.8136970797908245,13.729786769864889,18.978861055364778,2.1299252337087147,8.428717066233249,8.223778621540326,4.9291908071274815,4.995259000037275,15.233574490346978,1.121633422121953,5.5218252394645795,10.116506202671152,3.4641054632159767,7.005748354060385,2.9947962034406608,5.1396921316951705,6.070399376678113,1.5374081006961544,4.8172550339126,7.093544865251841,23.17638907088246,3.158303928014894,4.695123708435604,8.14160592581305,6.270764620582344,16.334547841218125,7.915093645278691,3.205260346600965,9.046965309976743,2.746149063152992,3.045653556511158,19.969172714210824,2.982076589594827,4.116446594941208,5.884825626103214,5.451603773177983,19.986942764742867,24.95871800137808,18.0683399054093,7.777087536352955,4.109649982520662,14.97576185971192,10.146873086458907,32.65996756485502,6.488982044723789,6.600872354779377,1.5466854775273342,4.363827807670413,9.691169275534929,2.736362101861126,3.6358005350001465,3.8930426216661638,16.454023636820175,6.332760673919346,5.118254372512403,8.06960672934239,24.59097265223568,2.7456731366266554,7.387573907603898,4.338830744844995,3.250421522229446,7.078421436550066,5.521938835367284,12.64024934371303,7.381849540394802,6.584267625692606,34.78926469311327,4.055201023107252,2.7690720571438536,44.57404666604751,35.35670899974583,6.593668676437488,13.17240048955505,3.757247042557218,5.451683289510501,6.980114076863238,2.8157422496477245,2.034815443130609,1.7040008906867081,5.5015923221173955,3.9069236285285416,19.75062484037881,8.198908255360552,7.0074289212156735,11.433624899137552,3.0578284116727468,14.045126094452883,5.309528461720432,3.4350581838930716,3.9700878691092845,6.562728882619801,9.581688049647632,24.195046414775113,4.291214120138503,20.461756850324146,2.579979236975295,12.685481059028486,8.533029472535741,2.5052384624583204,3.718881169061927,7.2083390758564985,5.7855737425300005,38.28490080376349,7.322061853533732,47.845967982173704,10.437273628510594,8.842617733786925,10.075756295308443,15.299496264507388,4.293612574418899,5.224118589556609,6.785780861169891,15.625670401848328,5.655850197956277,9.590794833400619,3.7593565331155783,4.895680936418343,4.093376739985367,3.498576683826379,3.032923279821276,6.184648993698056,3.040541737221537,4.247170171736625,3.160862053108763,2.9776538904348517,15.268732405556511,11.766630515500278,3.6848423693084995,11.034244462599093,6.323687293771967,5.859372014281877,7.471194105915496,3.9148237830828796,8.35337050427219,7.948774371886854,5.408250815947499,7.890683288105017,11.937023059262627,1.8584589759821182,3.3965131247189544,7.1324703950026755,11.887923850554929,10.226767941192536,7.8615318988162635,4.845466687522471,1.4296540264242132,9.496052861267202,2.6379303121916244,2.697412412240331,3.1191458841073305,5.775309810883609,5.7317635851050515,14.84453433511641,6.485696847716855,9.162406205880828,2.3780387937511542,2.8961585770879377,11.3801848666683,5.325581637885066,4.360734564074912,6.3579287925873516,7.620175019125351,10.572634336504185,2.68840152166901,8.091449614120735,2.739977098334176,2.323540562798655,2.6929466972122222,9.583956216642958,22.700116043176976,18.075677834874362,12.601508309915367,3.3362143512395925,10.02648529691375,15.09872306654879,9.726593537439184,5.56714075078883,3.436184823900205,2.1600414522171874,5.288058719912198,10.765444868776108,4.28055961701873,8.091898958675051,2.1445699605413746,4.302327513853188,8.212675772223813,7.637762011224768,3.7677502642429705,15.383406330282819,10.732031975153541,2.860688553817281,4.591521994606544,1.5650389595009557,11.965480958804003,4.402809915913299,10.488248334521586,5.373402367796533,7.1166635190496095,21.31197355722456,8.760346829774422,4.499347158362004,27.467765769611447,3.3136460252254607,6.673821369149847,5.46011622632042,7.296400241709642,5.410136684789814,7.992801484449575,6.0942784304284565,7.248246237501585,9.326709425828378,11.074571849786977,3.9051436199619074,7.06986766891418,3.41076015336968,3.7333178288470417,3.612558432352512,5.571974567241987,6.944981898772609,5.069409729188741,51.0068145345206,13.411482578044698,1.8222451560203115,4.374779728848087,4.904455459080056,6.618494318450174,4.713235868447205,4.812663842158167,4.432437776733783,2.1006459059139493,3.5202880566037007,1.4475512364616163,4.895965272851908,20.177281115640074,8.492208075727891,8.50843144535088,12.440969351941913,11.625698634663713,48.853783775284235,7.665559087856589,11.198043861686369,5.704319701718048,5.621599687478227,4.657946665857276,6.350017497243309,6.631019096275154,4.516235571563961,8.98357259352666,1.5588187416721544,5.942786043500224,3.4185445370979126,1.8293726834413346,18.67454177465691,4.943848068639161,4.5124922922919275,4.566511106605442,3.6114235068209863,3.4307861152093997,5.236340337678972,4.210261859578899,7.923816517599042,3.836290926461331,2.7427363942631735,5.158174057613719,15.21058856302384,2.6717730505480346,15.16026038343993,6.043731644107104,4.247582501448884,1.606970416158532,3.0068066024883984,6.1950830893447435,7.468765170547935,4.041587830886153,3.536915838251097,2.7706412194969467,24.991992351325933,5.189887378458947,15.686019410010383,4.588189173473987,8.705934981021912,10.895049488944444,12.284366501803637,4.493346263160811,9.314018630834498,3.1210530997367796,15.466121408681103,5.201989007028547,13.636837823857299,12.33916135232113,11.212067657908332,8.37731566114152,2.954404417496874,6.5711403801240165,1.8981237952767758,3.458987106100338,2.96673100849129,8.650283852639616,4.008679866057601,2.3467791915506386,3.18076795226708,4.161176166935109,3.771707528523373,5.876474531682868,19.96076685524952,22.654107638657756,2.0203468697706244,12.237722567555087,6.244075003626625,4.826751034768945,3.2291293378199524,10.809433039451605,9.517518419620032,2.3611861814564903,6.030493215632197,5.310099722381427,3.6836445780396834,7.108677882044457,10.696727413092686,11.187503520507413,3.5952631457849766,4.153741443605939,4.711065355885377,1.915375939485871,3.7467669985141043,8.33817684268341,38.212252674629106,6.786148700304715,13.548541120298767,3.9018426883355173,5.362558819002249,17.388741276148235,2.691252168275702,6.0181429155777435,2.9482391792892417,6.70505744392667,3.632132551462698,5.928132049000374,3.0277697949143714,18.22787400152398,10.973723211213816,6.3449733050379615,6.435448714648753,12.63169162649683,7.110968982783695,6.522146812063353,10.661707356783657,4.633574032337003,7.802826015932545,4.698962198302675,2.138082787083608,3.3851401488575923,5.161111253177843,5.390278397561031,4.947248032285684,1.504092735505276,10.035781072093826,9.21565027911119,7.301141378215945,3.178216492872984,11.366166088358655,5.950913364586905,6.712004379399486,12.255400522625264,2.4254625324165877,6.580306136329274,3.150580331414772,4.7544606930967,15.06403628776328,9.48964859575405,5.677383700113357,3.7761640624887747,19.409838625827202,9.877045881650226,2.3409172202151733,23.66952423730938,12.538583921701951,4.554006228188256,13.75027174881019,1.8838622260753675,5.601467218284462,5.0401953347227755,10.696465103162298,0.766991032540561,7.1374351939679785,4.746790787630716,2.9919834236518845,31.39161695989509,2.551214668569087,2.5443614101880163,10.770184981665112,10.008466999877852,19.79076211565162,3.473038357317526,8.121769645343562,5.397761586620176,3.0471554894942807,2.313299847409372,2.7920947069988213,6.268295583462893,6.878009398884196,6.03460528490028,3.3989000661027715,5.307413437554955,7.077117946831979,7.074057596897311,14.59269499590904,4.512897711059225,1.8766987838389313,2.8923728273843388,3.4588311952170963,7.240986151666402,5.906731175780778,14.064397376388836,9.446305029981499,2.531275834938174,7.91274201181954,5.304477946819488,3.789189096966525,3.4998272743872842,3.024556752776032,6.008662020507535,4.166376360272454,9.522304387623665,15.713919993783135,6.588971967837788,8.22943373163741,7.487664655743186,6.037769401226886,5.273680432636217,4.781163665191813,11.004418157110457,3.5732659623347613,2.3939365352160835,5.192178468099609,2.6734095293534286,9.666523937013617,4.187680564130506,12.131350343803746,3.1773815409844484,5.245324506686188,9.55281341203688,10.232092160171455,5.808620155905225,2.696226572010001,6.053344983880572,1.9335791085168603,9.762246538923225,11.735895860188084,2.7047953047813866,9.513146248423839,7.490015034280456,20.092015104760016,8.931168508530188,1.6432324707868178,4.638154732836928,8.287396432174235,11.650401998537216,6.572994926720374,13.25921095873403,3.4290752815165453,3.704809796714078,5.712612275811221,2.0001643600460155,25.551495133998895,17.939239440605036,2.072747387053819,8.898227945304546,4.747594916874439,8.267565084434526,3.3985452230446622,2.327585946156161,3.3828348540403366,22.104750535209842,16.182829098325122,5.624850037542414,4.364514181479143,6.498299260984241,1.7738358667970884,9.28273364934057,9.934489072991088,7.9444516489011,26.580371594944012,18.065981036137114,7.893657989458989,2.3940169465649266,9.249060291460365,8.320725321344959,4.779819491209988,4.82028657058196,1.4653754498141425,12.621229127370693,10.536065569218463,10.473202814627168,2.2346034143299485,6.893304241274743,4.874551147682622,13.221263854607667,6.6216185063525135,7.049610006005889,6.9457649203681875,6.411348998112881,15.664531891903515,3.304641872763094,2.638041618963417,8.129562011589265,19.64798987253339,9.466109040549936,5.602357812563508,3.9916022319372946,6.166001663698657,3.945416685645797,3.80620923159278,1.974322543090259,2.074567128124126,13.275743030957686,78.16714896869824,4.657796172142897,5.051656914288927,6.348847860195637,5.824310665269387,2.3415597784798186,7.111562995436834,1.6826785050264275,4.973540655502806,40.58937790591721,2.946330844822551,9.532023112849549,5.089029474814498,8.520732433274954,3.4955376406798506,24.225811443220838,6.540683012872966,1.9071608666083675,6.270451043115247,6.1467309539582375,3.1726407720998058,17.003780801591983,15.315104101655443,13.903092731009982,2.2284379747786693,3.315325988434504,9.610537948322424,26.432632708175184,37.31101123720031,4.853704752142547,3.9133009298477384,21.327876882034566,11.389724524387496,18.866789880577006,8.766366180134705,1.853059526755577,5.024280760534538,10.547615196303376,17.887087600865073,14.126709817640732,8.022910347420082,6.285995974268029,8.680623369280083,8.32193490180564,28.06310356497013,9.258590246094698,2.4697735011825213,16.736500267861647,5.068968671421664,5.49467851320811,4.3171362384085805,8.149836635603606,4.17876439801693,6.85456430696668,3.503574276472417,9.344801814196249,7.557960734376233,4.334817275509615,4.984048787909801,9.01661117540653,7.198201516559127,4.869438218106015,4.033278939256147,3.9120366473970716,2.8717853813927823,2.333971420460742,8.73238493678388,4.360596434231386,6.407737693761916,8.107700396677197,4.851922352860102,14.41817191369533,7.326035821238389,7.280691027403953,2.7651225581381023,67.68899611165688,4.410376150116154,5.36863773241837,5.6414129868040925,6.422322443810342,2.0500314326504405,4.198696925581691,3.097844376581894,18.916498350839582,11.08197524452694,15.092962759180105,6.094199593184721,2.634771061895306,16.821659552911726,11.029700345144319,22.651072351754188,17.429944142572023,4.715044322560055,4.908934844199875,3.8987745200865764,6.499901764247389,4.562312276962738,8.444530533416026,35.818278510176576,4.890273731586631,6.143698826209592,4.791547782971872,3.812557547975691,3.24465753710658,1.537137608308566,3.338580179068214,3.455486529367648,6.305140402657444,11.057024134646262,6.7127010733343475,4.649000042337048,26.40190806019864,22.079131466613603,11.254824613051623,46.04686419330822,9.196696605199037,4.899892009782559,8.82929757404222,22.405859431893337,6.581353018760968,6.173316818166085,4.07395671374655,2.703249579348527,6.872343796603869,18.78590086921014,3.773227590879377,3.1795596729617452,20.6418191373915,4.726499001036128,2.8530754017404014,2.8063610061130486,6.083253836463029,6.742843088684077,5.599117914528916,11.911875181464378,13.338675621334296,4.297004158717223,7.462891497750764,4.44147584373289,1.1108220360195866,2.33328622798398,18.101260026475398,6.703388141283732,7.251613914901764,11.108254613036593,7.266454970491863,9.406622195283292,13.7134808307609,15.358788740408388,13.145124971237353,22.417597285033406,6.683590496344248,3.1745438389822622,4.140042358432007,7.448693741019914,9.03431872196233,5.424840755923908,7.1675760122936385,8.93431558600479,12.39214018515523,8.72216023136562,2.859981977593577,2.8597245062988015,2.4353364924651517,16.902483620978202,4.793902791635174,1.8862007814791149,6.219483334588145,5.428303762847031,9.646589418274372,10.03325533713948,3.0744892629583336,6.355893507899063,4.221573837849848,17.861386903090708,7.0128076736807,2.684546342105432,4.745015485689199,9.99911012158548,6.183532607860253,9.72772655613418,2.3885708832425254,4.531596543727519,3.0054918749688078,10.214821549990393,3.2187418553878233,11.43116464976332,4.967117912014327,20.375043265815997,6.887556847916661,5.542718262330358,4.9870061219030575,8.773544452677788,10.914327614320992,3.4300576929104065,5.124722961219891,8.403401546331715,19.576497976318162,8.752842295280406,6.0311444644955845,5.5079865904166985,6.318002035818623,15.24659081145911,11.390297603150264,7.07925295303749,10.056075976450561,13.011940082458741,7.767068177054052,15.320797761922742,14.33195520706249,5.594441543348371,5.491775942110187,6.852338102844936,2.559768568889229,18.566103037153542,19.72175627483127,7.9338492767078685,4.220565660799857,2.136520551682926,6.1909462785621985,5.950984105475807,4.5441340660707255,3.427011714112891,30.305312795804355,11.89894975878059,23.40633938092716,3.2215280950971517,7.636859507869216,23.640477498994848,17.59402752709638,2.7489740618789904,1.677879354294251,11.343305711820474,7.240434527945753,9.918066578013235,4.970105884413225,17.169833269911777,5.3301604185559235,15.102140146261073,6.597830006675953,3.882426695080098,7.73135234984085,4.738926365773331,3.0036318156563393,10.461630182808841,7.362457195153843,8.256135759029352,3.836339451580132,7.6713213357817045,5.170958597961215,2.523816117092849,6.4467873049026965,3.6015730505257175,2.2680266726745875,2.4417680526790813,6.4146247597317005,3.460026662015057,5.846054993376982,5.438311100343896,5.741494307724467,3.314405198798103,9.29197658458094,6.7377712624860875,4.267775390930384,10.414545869044304,5.258471282371371,3.0622038538643546,8.51034745835617,2.1927060485174605,5.768392526672351,9.743565280026656,4.474852980065246,5.62287756644188,15.060187843341286,4.1821161491930265,4.303060717631126,11.418406948879294,3.650647563186233,2.342040101069803,3.649711996038773,6.313553465116566,3.1995581941082514,3.1237016770872654,21.616669752468418,4.681150639274824,3.330417539881917,6.519924212507253,5.192411973035187,2.5139627190184317,6.7121765620117815,8.282798791761229,6.679317031963753,6.566642653290472,9.922671220905276,8.414282265457745,8.908681312012858,9.135265231451775,6.6019363592937435,1.551360526769339,7.384573164099808,21.214239461988758,3.2761422764518566,2.9694373422203633,1.1144714571332521,7.11396094111151,2.4968622684903936,9.876841706492202,2.9036367663148948,3.3816836711045974,8.034428771790006,19.371732526743557,5.094963188399592,10.862114157974911,8.504931952888114,7.182595490248897,7.012454554318549,31.632443146597318,1.1758016431810956,8.575810809423142,7.096936954579961,10.2859475485183,2.3132333342963873,8.040621410806278,37.143550867169814,3.576879339730432,6.523247797833821,7.345941719355242,31.236924546991446,22.943345682682548,22.80336862262531,3.7555454471396117,7.587556277749586,34.639113412953975,3.547564705836346,1.3851847607967018,4.748033036351011,10.40270221127977,14.271520550745844,4.854610230162843,15.832719435374138,5.08584707017794,19.684783667883277,5.3614981327166005,3.4442485670882665,8.878574544698457,13.726057271260848,9.904590799850977,6.864559941947496,9.4347869359848,9.670724013021026,4.491256363812354,8.669050320041308,6.134466723074783,7.535572589041414,4.048770277548113,2.9408702156077773,3.0447998576369883,10.144725021740777,6.889911843074824,2.6523059934550957,4.107034012479218,6.854846923522461,9.38391154599732,5.058883620779966,12.264626146823447,1.9555007338977715,1.6477068843943667,14.907467407551277,5.6858126371741085,5.869690314977531,9.779738330928737,10.399893939978183,7.143392687584604,2.7190063100935884,4.296708886003846,10.035022620302975,8.221021549535735,5.625898467227881,9.931497701172967,16.48707754738298,1.7926651302645868,5.735425248207338,3.164686119057454,6.1655735878136,4.740859892990581,16.661681933696638,6.46798181895079,9.54884660456856,20.836783510368278,8.468191782232353,7.356880665378776,2.9889059989450963,5.612348964580678,14.669770744009124,2.7719642081313816,3.599176257310006,1.8981417904961233,4.056892961419153,4.293678272796431,5.301116978492801,5.385118386605531,16.384174520318968,15.13388096227608,2.953812918162947,8.617200235141611,13.739074353132253,5.552165016778679,3.256749740112027,7.267486708359785,4.001239722264147,3.32122504260691,6.8644155424354745,3.7363443791062436,3.4237656877661236,4.106130568664023,37.260437080156585,9.837164174085386,10.93764757428365,5.930062711758231,8.126503349224349,10.89084388742969,2.329298209291778,3.614268061089046,5.066247407375919,7.418694622936747,3.6378507057222302,6.677018221298704,7.543758531251064,3.7439760265228297,3.488342072715589,7.443813984121949,10.494747172669276,10.204051703344005,13.974664605429748,2.316298601760129,6.046799983417716,5.893913941105022,9.376747654827279,5.878482818371134,2.471308651063713,4.016118643935468,7.775303536655085,5.485521357438226,7.178951072425129,1.9463581976834554,11.961924914567026,5.575178388739663,17.56414042310489,3.533363071265177,2.5131285385139033,1.6330433461918943,3.660477984900757,3.1132349525107017,3.4898051592277994,2.33790568509578,6.142842845632467,3.632842256394145,3.3893078644647994,5.832121011962887,6.808931378161409,18.82735201074538,7.741270465683025,4.9420662206220545,4.5012221638004455,11.33768381383133,7.328816191259633,4.12412434881131,3.2418853793139055,8.7221480983905,4.456765330861941,10.167264320167302,2.400608965360817,5.112749125466292,7.5725797249220745,1.8302906673373043,22.61546923396909,8.177797972911081,12.599935053588206,3.365646207675691,3.426759361985536,10.966183123671586,8.478875203565307,9.909884510476195,2.0885700540186036,2.3397494533832255,15.34735651902427,9.991258419779484,3.009881782218189,6.894947017697669,16.38591605864915,10.212635459600238,6.16972296722582,6.458768721823331,11.100477202630886,14.563592221409266,19.96201570495241,3.0893960615342766,11.897346820981088,10.015004752715882,3.706636461366316,15.250314744079803,5.528481314379318,6.620621939730283,6.992339513497568,3.323783405590705,4.593832018239964,7.06948674228028,1.9250326266637112,1.9132568053613446,12.522339517265081,8.850995519462346,6.459208066413663,10.393939063830183,8.33267482372179,5.567101631405465,10.933692467680478,3.655285429070004,3.3022777838140747,8.210861301200133,25.469507857524466,5.700001234029311,2.6168409240633514,6.85705776394596,4.242089175439784,3.477905570176732,8.220500977021937,9.302192026722114,12.052666405640554,2.7747238982404276,5.793982353954892,3.5749784488128555,4.365771775267483,5.879233697610021,3.849560330974609,3.2529224767018694,7.283215757449618,4.235837681834049,2.605734546165451,7.847871948171687,3.2630502232371335,3.7778154220629148,7.428125253546392,6.494200185706869,2.582558154036817,11.009078272349305,3.193845707963917,17.464673301379044,9.58456164035667,5.347806440492882,5.222232705724246,9.061761425861507,4.741232042658359,5.0636472841770335,6.064789986649105,8.484945741567158,12.222069232852983,12.219562831178195,21.382073070733842,7.130084159746264,12.375200010735217,3.6506079209547906,4.18601405286179,25.83488668742214,6.633785337034928,8.196752551015173,3.2744546618844557,2.652431148865913,10.966597462873816,2.572205625087877,3.0514545321407325,6.270154354525941,17.21550346641455,7.757189459202157,4.208487058273152,2.517481345030842,4.9375883518112085,6.101109543829999,4.784068197208802,5.4175672584491315,2.4056075103764316,5.485336168709762,13.707289577840724,16.448752227475627,10.39516694741154,4.229700922298724,2.6199719330930553,10.234357192512947,3.0078119207508376,5.925715660024403,11.023591448298738,3.4801788836237724,10.766934538714597,5.102145640576372,6.3965804148582315,5.880765875778778,2.3807694234902494,2.8519452634834037,6.072859351066783,4.489401671432431,8.307111577824383,2.6581581363020437,6.464816728475638,3.3259676466171393,5.783311749586825,4.961673894646747,13.306271326613347,4.325142444588183,3.837144743206071,3.4044819860716853,9.402426399352436,2.3027135036460917,5.576501278866259,3.4984473884317024,4.856150696371192,3.163843813280297,1.8582418190327818,8.688889994536241,9.30040353673714,2.390477657401735,3.0640164911508774,4.454031195310349,8.280211055857666,3.66075100531089,3.4952815859693347,2.489058753527993,3.792627687094935,10.078984611418374,6.382091180704285,3.5825837121210533,4.820141952105637,9.729902061099299,2.581700787768002,6.086544510709028,9.999645527025143,8.397714129150728,3.2669778397574616,16.28970627788587,11.407693743417772,3.613276003992033,5.62511458883458,8.36302443073138,15.252593596728422,5.842128075483668,5.4517184136664305,24.47864306773721,5.043859684540376,28.98657692598792,6.279899988724953,3.5606116411731135,17.00530523984506,3.599173800364393,4.742436819266426,5.792941359912098,2.681192390188146,5.153163778516014,8.635134921405747,2.7417054950402058,6.168009427796718,7.635025472079307,5.689141860804379,6.121836633425794,23.434952894903308,8.682866954924071,3.3147900445447736,2.2337330827785484,28.634549777989903,22.569973527846333,7.029323625922087,18.434577362276706,5.3151017393776865,4.2288495036764155,6.946791743115211,7.471570428574483,6.484505802051694,1.5823037118188739,12.520177876676236,3.9340846624629027,1.5552001837878893,17.39911666074292,16.074799419216834,2.649045001559097,4.073403714469876,1.9004179682563378,8.505781320212526,17.199223536731076,4.604305833074078,13.406118032156494,3.414964789593098,10.193794627135556,7.5511325052337,5.841478398796751,6.042722854999776,11.236601864183598,4.782929706433193,6.178474282074403,2.06856854830344,3.527117858961713,2.3380516811052487,3.14600638153161,11.838454154379578,3.1377657083761985,4.841808997616223,4.988654202474614,16.661066827175663,5.4265350705515,3.310622546271089,6.268069897747713,2.561601931455109,4.921620450198058,6.234682019456955,51.44645437892535,3.6836317749909746,2.8155873318926625,6.3747689628495054,2.9095124518656164,19.209412659354804,9.509924957485179,21.709515709175466,1.9300078065016968,21.931682667692023,9.486101551047426,4.395815848162346,8.755646294835428,8.771694852279774,4.7612189977187835,2.0610789261494618,6.666196419017718,15.968665061891091,7.400468849177931,13.919750681043633,13.449975025147202,12.08862637546834,2.750469543781852,6.456535282650725,26.39774264158931,3.247378593271356,3.051734364218746,12.461269187513018,2.715877129852552,10.66495663398073,2.5878661593853667,6.507773030740204,3.797081015045857,7.969654648514132,4.282717942925387,24.091404738375466,7.979693059269297,3.960734472893528,3.153244994248281,21.46464775085373,4.8675998330338555,8.486822289487732,3.59830752704023,7.738985466656531,2.5545724657814195,5.1620576818211195,1.707291456135867,7.133462005514057,5.304483575462573,5.098847296851382,9.503485938260095,8.352497253160761,6.378783836984045,5.387564969976588,28.29213422595989,11.11634274086744,3.751165610958611,15.869808626124675,16.656600461063064,7.515951947908668,5.619572442091632,13.840225051867243,3.070704637422917,8.745641161722919,14.486115389534488,8.16437877729938,3.0090274476205763,2.3659745402018526,22.482099727115177,4.925821016974317,11.781363435214711,2.625368882134467,4.6913366650819235,4.111732726404203,7.3952574653233825,4.886698935586219,17.03859407771754,5.3362409290049095,6.9387573764130845,4.347244375878596,4.971686490520868,2.7916973748554796,3.73244329077918,9.846301446560373,5.488281937013777,2.445349833722951,9.968102496811763,12.618782694437328,3.180832845963587,7.241578021048252,5.27959013039233,2.061278776023026,13.390327149122669,9.87275968768362,11.602281190895276,5.571693267491035,7.837144187023086,6.307720218051944,7.661655262797982,6.2750945931975854,4.1393545929697995,7.49230812303839,11.261441606077103,2.9963446646078102,2.6815687721871937,5.64633188733945,5.512032550111283,3.032679553042995,2.181807638721473,6.352398612161681,6.632046246547788,4.031958816787207,13.65488513314188,16.07907206815007,9.697189860615168,5.204208671004499,26.197577254898814,13.883294510073656,3.508358915037282,5.809973608388899,10.690101291724087,2.6412496972031243,6.435848699868944,4.449548075915524,17.423814359257438,2.0677161193484754,9.503146496898571,11.328745634010096,9.543893225623558,12.173315310876841,3.551193026553941,15.981103288103094,7.601757173256528,16.055542081845303,5.787362970397437,5.847418040571437,3.1885492591560913,7.775294529522064,0.9605193598300429,8.664246008041237,11.549836777014697,8.654423348323071,5.803669397332824,3.818046381986365,2.9965438827895277,3.479681500246567,4.190057479680148,5.832496725405178,7.111732447013566,3.5180016074215446,7.88403999644653,5.70986692284165,2.9945840548196725,9.366464557553982,4.244944665865211,3.4684872357726784,3.010585203477664,22.249064729200303,4.762660408539124,5.578120181842116,7.967879677766425,9.477599622764249,15.184437532999333,7.614608667961526,1.801842547869252,9.556572398522606,4.087891877391844,21.950888432583206,27.231756470574766,7.965258932270729,5.309293708701687,4.497692677926431,4.10126191158641,5.364306104750724,2.687003869187575,11.422294465421325,15.639288562215539,5.329934306991604,5.945097635174116,7.6011243544177525,2.754938904361651,5.789517829419411,7.744632005024407,5.087941198495401,8.312261906660593,3.8596854142039305,5.656878435788939,2.1906728138454796,5.0417684347095575,15.265508939334842,2.13823900731226,7.0186772973856595,12.813482756892931,4.969854308657444,31.107450750599156,3.1128810485598186,2.23542659553952,4.215857069513958,2.1850836443539006,11.347361016353078,4.137094686020743,6.723614365448315,2.045914586814137,20.76615559670298,5.6958305052263825,2.71863046633448,8.539673826067448,6.007810163108506,3.766471668962189,2.6623886004919433,4.919934976708879,6.648456822989527,8.859744877765058,7.023140522447108,4.034208462633939,2.294227945285803,8.079143455741084,29.92147012712755,15.070530552720697,8.505083822030725,2.616270572144425,13.936692529106754,5.24819708677113,13.10818047598918,12.294053723362467,2.9609556664950136,7.2024541965392626,2.909733291278076,21.854533257365652,8.44415444835708,3.4440810018767327,13.060553482568032,1.8005750489253358,9.50939236420287,9.900123298083813,6.996476849949594,3.5406337726791723,18.526644734779676,17.774525135264284,9.618238772240554,5.328070058200416,2.4952162895023644,6.596356459648975,14.274646917289633,7.669468259026034,3.2486897273441473,4.238539892185202,24.18821323847381,6.411893336855973,17.115079258449963,11.67449911221425,39.7784912866115,1.8004795183208124,7.59375661674569,6.066762658659602,16.040009131776195,3.316200996627415,14.836387128519616,7.762266367489023,5.54120080288854,2.0797828433781507,7.284568522403517,11.5195517990736,1.6866585949569681,4.028171871133328,3.8875043381267327,15.275372150174745,7.745443538454226,6.601962058669881,3.639913647302239,6.584881701262709,7.1486753277748045,4.145478796364264,4.634379762089605,9.71793381782656,5.306815709213933,3.298300579462504,6.5665675804793935,3.39970690634034,3.179883480381174,3.4955663233186134,2.7850111243960733,5.0203967642376055,4.483236074515911,4.551235721990427,5.42458100147585,5.6411731417563855,12.999023374748134,2.945789879106297,20.03507545456151,3.7112243969135417,2.4934903185025945,15.187302244084648,11.709109651149452,5.102565872623305,5.0206423464507095,5.8956263383568075,3.2545936330528273,2.3346840423073676,9.09264150294297,2.348400209901782,10.707077659645215,4.739028643911217,6.936585645953724,17.8297671192899]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}