{"self":"http://probly.dev/api/sim/ceYfCwej4NavW5Uxqg26UF/","id":"ceYfCwej4NavW5Uxqg26UF","created_at":"2026-06-17T23:32:14.743923Z","status":{"status":"SUCCESS","status_datetime":"2026-06-18T01:41:42.196832Z","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.47942368260301277,0.34951224258966135,0.4491196667181548,0.5026533817537121,0.5834722222271096,0.4260331272069279,0.5467216245291275,0.5341184662240758,0.5684264715883453,0.5370841815368499,0.5235607811989886,0.4601164571016494,0.4389110394984599,0.42324521509376783,0.4663838250496347,0.43248241130045206,0.32777935807092734,0.43125030435218786,0.40850256185089173,0.4071903025904734,0.4571429271768216,0.5192155480992446,0.4164674120758426,0.47728522017977215,0.3668447773763128,0.5878613654278676,0.4494557606375722,0.4302630666181717,0.38054235025502264,0.4377335372021616,0.5177369763065931,0.4115618877268802,0.46945365062679373,0.47627427404994216,0.5574652568289228,0.38123103886195275,0.4538165657174801,0.5369041137448751,0.5939645631581071,0.456342511482803,0.44699759906728465,0.4703100775927711,0.4514545688662116,0.4473448715472271,0.5277406422942652,0.41512434772485024,0.5058543973129898,0.42677757619256385,0.4795148907744406,0.48590014203633597,0.4453369702837757,0.38161781645028464,0.4714818871780731,0.2404961251856516,0.43371080175105714,0.5951672878730336,0.44124648586188076,0.4346898165390477,0.5692709346808303,0.4080441276881919,0.2961894760780434,0.4806497760839865,0.5515447124269064,0.4451073884282348,0.4779629467631549,0.42823501217882437,0.46510920645956394,0.585862602150481,0.4597658631676595,0.4995522910294856,0.5464811456222562,0.4855324318743212,0.4252530992347482,0.3973443364113865,0.5816613339688071,0.32698486658000053,0.46913492310516053,0.5650476673183131,0.5340556816050224,0.5431100629290574,0.2830465456199018,0.41848740928620826,0.370952946068768,0.3773883988717232,0.6555089920418952,0.5227237106320771,0.4537312009111385,0.47382449883349365,0.35323274135506205,0.40451262076227884,0.5986999953191606,0.5417285529954505,0.4345031932160281,0.4368858414686539,0.32505365167766764,0.3518594055017853,0.43146929978713205,0.4610624562228034,0.39068841480972777,0.38190409338373904,0.42929125614998037,0.3496040977377276,0.5011945663477291,0.4050625778447817,0.37142479603981815,0.5421070993639237,0.41526225252525695,0.4442430210571695,0.5033550218066486,0.40128112965372453,0.33779724647457143,0.49451138188906396,0.5212539349611015,0.47802506982718435,0.5182475916444349,0.40643206411627897,0.35079046975873274,0.5091168587464785,0.4485897464092687,0.5755568558442863,0.4552338487257431,0.5838648153993011,0.5416163414212346,0.39031375412685343,0.3963504437795693,0.487590043560549,0.4930418347165054,0.49957107786861743,0.2994613278371179,0.6034923368228524,0.48167258174982464,0.6192174080954448,0.48776031826464916,0.3297384184184796,0.4062952645715408,0.6125226593610787,0.5667771136076059,0.4136687844009611,0.46794860427352086,0.5136261564998821,0.32811245273495226,0.5668019129463553,0.6031395621974426,0.4627479938760382,0.4599164478766637,0.4437220573687598,0.4810873494408842,0.40175318395206455,0.3610296005265584,0.4578084012803321,0.5099773461145054,0.48697162717000336,0.4773264934202744,0.4981950554478425,0.4894777349971337,0.4830362579988576,0.37595157466092693,0.5603007863436738,0.3771558339737513,0.5609380367231437,0.4706306789678284,0.5627975162565995,0.5046146931060993,0.5883528841395205,0.30929204915159536,0.5043156075589873,0.6078648978567922,0.5081013339175389,0.46200983283921004,0.4630581523559346,0.4473979157638653,0.4495414521549575,0.45759672689032976,0.45080995088151493,0.42446986719357177,0.4252935404519499,0.4306501435862401,0.407831811290441,0.36778788514814675,0.4169886627219524,0.583682154677921,0.5125332384619518,0.5378875593457948,0.5410135984564869,0.40292504846067195,0.5526502401542484,0.520009055665064,0.397492457640692,0.42072417331086265,0.3418792193772624,0.5682278050427271,0.4874680658364773,0.48875837665938454,0.5278877785818361,0.5305325169148385,0.44877168700062475,0.44718797262987403,0.4009140884403445,0.4254836330271788,0.41087796715880026,0.4811703858830504,0.42674626732478194,0.5210388324257325,0.48334994296295225,0.5984338889932507,0.392128655621074,0.5331846781404982,0.4544739811769137,0.4253721369173356,0.5215529271049557,0.532108875527287,0.4719869784040102,0.5019974556600465,0.5069012205419497,0.4451837534856502,0.49200771590320636,0.5565447492893554,0.5301589529886319,0.45406510380584175,0.4629611617374956,0.47876504196080716,0.5344255647583455,0.4795649869707756,0.5288523278287011,0.46308342707240313,0.38668428238969643,0.3665780084356598,0.5014574200868813,0.5398518284292448,0.48368225623722727,0.4324818485808175,0.3630272145109053,0.4523476595006442,0.4817669173163871,0.5608914402820577,0.4508729905899661,0.4073319702993762,0.4732903994447494,0.46069414455595764,0.4977653542210357,0.45947802621410205,0.6199416475947624,0.3694743271976599,0.3852150281222932,0.4239048013956018,0.41518084718995385,0.4670362840881031,0.34712439821747765,0.5267059394942615,0.5663374923929334,0.5667489101254269,0.47130199787315685,0.33960703558060273,0.48029299432841793,0.403667913765895,0.43006404445603247,0.35333181697056526,0.5323962332377216,0.4961600401454004,0.4316056492350916,0.4103999226939654,0.2679026416702039,0.4350468100336585,0.524828173808236,0.5243471235030792,0.33420159820007717,0.5105232591409119,0.341321461879538,0.5187969932513015,0.3885768542481547,0.4331384260442954,0.4468958905106894,0.43162357777793453,0.5397358840811414,0.528919443543617,0.5358821450506253,0.4388808648489625,0.4301069793513509,0.4524523514355805,0.4828648558405298,0.4776833273603359,0.3230133065956329,0.49587671159250907,0.41274909240357727,0.3786408105342406,0.38582317201574745,0.46036451558456415,0.5543219066041289,0.4644641841939078,0.44327619907022664,0.33538130371405983,0.5125643351472551,0.32371594061297587,0.4568768304768568,0.4951250920406494,0.6192175837791203,0.37599575642428845,0.39899088505502445,0.4554649421395401,0.37338347847291925,0.44379504778553674,0.5388243283403104,0.5351346331631954,0.48606135216486657,0.35108207914771294,0.4479668510950691,0.5078347041439955,0.3988428882839736,0.3042430333481878,0.36258097061963973,0.43898693309185804,0.4175717279538594,0.5042135264204589,0.5366850056962582,0.4340554209886854,0.4962878668275037,0.47282512315674924,0.524955927790005,0.32228989650847234,0.4123137760404379,0.40404163791912756,0.4782351300286777,0.4135401060399648,0.32516883060350316,0.34572091948614025,0.43381890661499256,0.4742728291602345,0.40612579163309437,0.5179416295380279,0.3693042770623606,0.3738585299521677,0.41825261671422725,0.38703428133257,0.4146497849434944,0.5541507864674853,0.6311911947468212,0.4811293834906709,0.4668020027353771,0.602115728894395,0.4107492014445633,0.5845648194153167,0.4888579622864206,0.32867512722477454,0.5522404462579892,0.41056031716099245,0.4442271823122537,0.4362927571740225,0.30220844057358853,0.4255396765275856,0.34848861651771795,0.5180357529331195,0.3487934279999585,0.44059380093567063,0.5078364247880875,0.4234609620464769,0.42221747794012177,0.510939938164117,0.4866108611580306,0.5097023653042336,0.6293831368154279,0.43270990120838115,0.447798355180548,0.5219268681478336,0.5217517040668332,0.27441789814465717,0.42816699488361726,0.452464197583901,0.4112478911421953,0.4263640689708881,0.4690432276112694,0.4746769513561902,0.34536203716649283,0.46374222441907936,0.4167417587981069,0.46362419796830134,0.398858242539683,0.43618726038997974,0.3838578831019469,0.5133294290398553,0.454078204846528,0.4273484341225357,0.4066518304648318,0.37212694409383196,0.3767861164264139,0.6248179797051256,0.5076573542893837,0.5674793410764479,0.428160619087274,0.5439522193127397,0.4456556887487683,0.46358620077013984,0.5645338060738966,0.4981990569071683,0.40799914423923755,0.369087837531938,0.5701180320541012,0.5006326247303672,0.26581442178827275,0.4106054161856778,0.32263054077590314,0.3484542185663977,0.5344474067753658,0.36835633280202557,0.4270691880493171,0.5709728764354658,0.43919472227859746,0.3356268359120811,0.47037752174098685,0.4944422731800902,0.5441452197996886,0.5031289191601219,0.4864775585042783,0.3689430379119977,0.5384714419684102,0.475380736282626,0.4490435123623564,0.327490462669222,0.5910709337064683,0.4794747099396389,0.513311638572091,0.5836086579824629,0.5158660963495636,0.5179712667231623,0.40115762247429954,0.38129218355658284,0.568444216259087,0.4118979448720349,0.6849284116778654,0.5682072098105725,0.4787448222000648,0.5235641155200328,0.5016980559941705,0.48226582103167076,0.3306939362255139,0.5706928660283719,0.4114869861131219,0.47640248404081165,0.37569826880985385,0.36819304883823895,0.34827968250388736,0.4500653695884063,0.5682039767908833,0.5984276949634765,0.44121286357137735,0.579466571050327,0.3589776706644321,0.5630894236701709,0.6417487722037872,0.4621389745366338,0.4588331043746017,0.46469685171346303,0.48088323228309465,0.39463593251105455,0.4569519102713645,0.5218113588546974,0.4988735345412169,0.5247898195778791,0.3080270720715789,0.5008448744741497,0.4191676407436389,0.5069728834805083,0.5879851477938414,0.47701159014369754,0.4634642662294334,0.4463320989882191,0.4061599111574271,0.48678102568726983,0.4210955485498524,0.4838808975399243,0.43871588834671554,0.4548548311809901,0.5412329263622184,0.5219799712164118,0.36646770021210157,0.6193300115971861,0.5706507812777296,0.3338908373202866,0.4303581617688423,0.539096560944419,0.34433274500587424,0.7300115278877005,0.4301652506642633,0.5366876253571257,0.5085491503298338,0.5169891718187288,0.6533092342804394,0.4366081100389311,0.5493726099985151,0.4251467651974233,0.4479231370860806,0.34477134776346524,0.4553917546310036,0.4582709025905128,0.40706621368538093,0.5179612180129909,0.4581371328205872,0.30121582003916836,0.23560677307607053,0.4439804261647794,0.47997037140062315,0.5871528603720545,0.44201949474774654,0.45293128580860753,0.533785207344428,0.5422378589030484,0.383368420557519,0.39181289382212425,0.45277708650620874,0.4761524925237503,0.3719591500846649,0.5370184491059498,0.4233953357648669,0.5002525165318462,0.5368756278932422,0.49714873373415586,0.4779382858321422,0.4840574241009864,0.5444658615190107,0.35603119188347343,0.5057684356549456,0.41119886105564757,0.4820832439272792,0.40134665276452225,0.5884614353584189,0.3292399809260745,0.48181339167379283,0.34087517924166494,0.42632504642985725,0.5117612781319947,0.4428068524011075,0.3801277712151966,0.4534752951640446,0.6236251786138327,0.44941801610522053,0.3753162516295671,0.3984397801648268,0.4836325961543051,0.5592799859191391,0.4189506530667671,0.3646777500952018,0.473120541901961,0.5162733732855495,0.43570536036896146,0.3239727497895176,0.5241757418980417,0.37924919690161757,0.3891516695031997,0.3356263016910788,0.45975166283564434,0.3529575401743068,0.7675598416327917,0.5568372617705343,0.4399084718916466,0.4890053147068975,0.3751978034826108,0.49999147925173076,0.4154611059108297,0.41701480849400757,0.4411884877547721,0.2967847967952455,0.4348461064814016,0.43129099979097485,0.463717605442669,0.43412193099097074,0.4027941803009009,0.5040026362079972,0.4437037061821139,0.2801346932604131,0.6269165155404584,0.4279666888791536,0.3940051174142587,0.5014935904904231,0.4570672746576132,0.48584657148953236,0.4946798482713212,0.34082453082315584,0.5420006384146422,0.5622183679270619,0.5587370830407897,0.4763968343245989,0.4421414020032436,0.2713803594172633,0.5700878419077605,0.42470328776037103,0.48187565421354067,0.4318460818571151,0.527495101308122,0.36335766384587564,0.5154922136474732,0.4961708463300547,0.42099092472106164,0.5001674305376168,0.4559303255680741,0.42453338643578886,0.4570877187306337,0.5757286316055165,0.46552185483987596,0.37000862310081784,0.46793942213815093,0.3340162989292988,0.4533262345258487,0.4699157691380656,0.4644602502985438,0.6538625636693495,0.43237284793929587,0.4672404237899458,0.4397730742073907,0.3325432529600378,0.39789185950581896,0.5341848544046345,0.41803132401934595,0.5529817579342495,0.3998978202077891,0.3633157220610139,0.43011573479457477,0.46336095967076457,0.4498057191001159,0.40241928786141484,0.5113523040933778,0.45806320588189603,0.49856342354941596,0.5263623584826559,0.550429187575311,0.42561523919874983,0.450418117002872,0.4936681832810671,0.4244345012189695,0.5224433204123505,0.4600882013375271,0.4221638163155632,0.4310557997009632,0.42811735413374313,0.43330486178250377,0.5065808029599155,0.5174684778639581,0.49382737308842045,0.40360681638369605,0.5755994631887045,0.42117865462107834,0.4071610870897172,0.4362357692069925,0.40439833580201207,0.5175607091946834,0.3715182435423629,0.4629427386358103,0.4525387767468828,0.5635625697446358,0.3468364473319709,0.4961124304309682,0.407161126605482,0.5091001033011098,0.47413827840768247,0.3765158853863759,0.4644542781281354,0.46029991744020643,0.5595210348727339,0.2960129658229132,0.4347514408930672,0.3627845267590467,0.3506413036873948,0.5004638349243332,0.4169828517182854,0.3864764532006547,0.5377177881345873,0.4728745534641938,0.4748026745392416,0.40361348130958186,0.4934786864628747,0.34026534094446853,0.4346966374649319,0.4537780724425888,0.44583167630332743,0.4050894088252787,0.4581646731346648,0.4615327721283827,0.35414459039240725,0.5074046765304178,0.4942947432828865,0.37480071578174823,0.4232863822692529,0.4537460256947655,0.39579410994028014,0.4463242187604661,0.5278330346136717,0.561753676525198,0.4276154859694825,0.6131100200929751,0.5467881162387856,0.3375963676124928,0.5608894151608343,0.4342168460647408,0.5221471504449338,0.6109558651704868,0.5063453354805117,0.5449158851467419,0.6235716254817368,0.5177293191440708,0.41985954753698906,0.4958478045297624,0.5970705797740522,0.4068492054198977,0.4709984051359786,0.5208177063741157,0.6023567373658046,0.5325446055511784,0.40438132271305643,0.36852784676337247,0.6454864665882406,0.4613043203794087,0.5993870494128759,0.4058702401289374,0.5622698242950651,0.38696953177195836,0.4470659846092999,0.4277701939325155,0.4494939398172481,0.5654321200655723,0.5290254504648051,0.35541223396038624,0.45108811932860066,0.4285230224430298,0.5240329874213118,0.4525858885378462,0.4729352463852857,0.4574283533979516,0.36075979302291417,0.44128339524558213,0.5529735041361541,0.42390942275697263,0.47328040207782957,0.39707572339771396,0.38993307098485724,0.6485891389100428,0.4934317638942435,0.4336008273716059,0.6560712190820259,0.5332537227871151,0.457219258003508,0.5092243090253306,0.5883558462069288,0.47736065217085794,0.457155279373447,0.5322981629739688,0.3265615225922389,0.6113764796547158,0.47633918833112937,0.4201717367324203,0.29710397973105285,0.3695776551104934,0.509050437321385,0.5173297950654958,0.3428911478571965,0.3574477378719908,0.5537798687261101,0.6237603444215598,0.5491495652760877,0.44900856266863265,0.43695698344783934,0.5769236494900548,0.5308534348128705,0.3857257557485628,0.4797777564490338,0.4596572694646518,0.6494081321782211,0.3093623868693244,0.46634983634835003,0.6102820923949631,0.4677986940787564,0.5942232047165328,0.48576185460802596,0.4240904886418937,0.5285133952512013,0.4644406795820387,0.395765535378127,0.4431822829128171,0.5042486115428945,0.424117603240321,0.4409534984105435,0.34361756730112075,0.3985778656803484,0.5283693823644451,0.4481258462622891,0.49012726803295054,0.4773002486760832,0.4647633532448304,0.5576011494581431,0.40843149093282444,0.5763636167986955,0.40923500937476004,0.5793882374587187,0.5030585521177581,0.47873162350801174,0.44668783389382455,0.4234987913225093,0.5171236981592136,0.5147711283204014,0.24006490290514704,0.37571373556383286,0.3790191474792846,0.33715097786166914,0.45341974530428314,0.4074340884327543,0.6057616713413357,0.3675734306368942,0.5004512157273198,0.4714564090272995,0.4524925970778321,0.41810340974369375,0.39791204925569823,0.6057091831780859,0.42978578335601914,0.5029520802053461,0.4738435874027916,0.4887873627012235,0.4408405291151066,0.4659717772634708,0.3443184806325589,0.3373950922876894,0.5846286850116916,0.5088901583856964,0.5679266198884405,0.4108544202313742,0.43661322175458955,0.49817074626965724,0.47444179856214397,0.460906975675592,0.4414958574739497,0.5315118468256008,0.47113299597459246,0.508420569655002,0.3945276382570709,0.5090100419531356,0.43468363575077035,0.3600861627871093,0.3738665086664915,0.5352226131579377,0.526171137875987,0.37529469294688517,0.4880754120763257,0.46583621842670675,0.505435801989861,0.4024366865515404,0.372660622039306,0.30548953064108086,0.4523826594854985,0.5365591598967492,0.4646856508821226,0.364827780171528,0.3752014921225064,0.5856328450418873,0.4324513346411807,0.34651582057703056,0.5103361102843046,0.4409804615029975,0.3388087869876246,0.5105524485392283,0.4038436886635093,0.4118789922093029,0.5323822401966368,0.5461687188469568,0.5915941207176633,0.4334162984070588,0.35590681445294986,0.5797117795710086,0.4921854141904909,0.49279356554549736,0.521302817681616,0.567439062415378,0.326774398242231,0.5229528607621232,0.3635296027772998,0.46373162496359605,0.4028906065975239,0.3262294228981753,0.5419378076741176,0.3993002166702391,0.4891533475065652,0.3159134654462716,0.41969177189100687,0.4578483701505229,0.2906279828909199,0.36137030213709576,0.39935942308471245,0.5316114574713114,0.5030253699572987,0.39852798701081327,0.46630190638570707,0.5093824933912784,0.5094400728609285,0.48110801323093316,0.4913401201419368,0.46505667524783173,0.5148272522515878,0.6447101606498826,0.47571407561033524,0.6314480301108443,0.48304007237785895,0.3771309516002482,0.45079664555099414,0.2832346862038338,0.551843032999233,0.6056954688389037,0.3884550702314591,0.6111067353274081,0.41313813895091084,0.6121622292646983,0.4956399765120188,0.6165711021089414,0.45241613669771447,0.4124285631827688,0.44305363506790546,0.3830544902430834,0.38335073002748143,0.48228839818812586,0.44054153004809576,0.5299776098962212,0.36122260348496327,0.5181226559091583,0.26029551994784644,0.46446633241870927,0.4179878664133552,0.5808229583864642,0.46715607581444174,0.5321890011451287,0.4429107518365626,0.5207875945756087,0.3451122529355704,0.37409628210434126,0.49744278076207515,0.5545317763366625,0.43415574579931426,0.45814323684463837,0.48702419872501457,0.498802664461628,0.422750703768588,0.3786527465775673,0.48465212440640076,0.4256309586063387,0.44984729482915853,0.38690103692519745,0.3257922717494502,0.44233803211690664,0.4993078054685308,0.5297551685032814,0.5451098133448712,0.5119449615844907,0.46803662642178,0.5063531367607736,0.5335032429649744,0.7140374574190714,0.6375908141286775,0.38450052929568246,0.43089950392061194,0.34764272260967316,0.4550115566574933,0.5515080042859016,0.5082958804790519,0.46584241332756415,0.47181430467991564,0.42594863730521837,0.5140747622626134,0.47167126701436896,0.43358175803791277,0.5143983635395157,0.30677053091615897,0.5726077808230778,0.38814267093140115,0.4733800704544579,0.3889272820696833,0.5361274623844775,0.4684423402379725,0.6056578171395383,0.4504727028447183,0.33274678208507646,0.44119569326827907,0.3909380444907188,0.46228449247266434,0.5599609669921739,0.32950366707015327,0.4440773450299882,0.5085295898273059,0.5146840864097502,0.33395503190374254,0.5307535054332422,0.4648439884638483,0.43588973429504285,0.4140794091281591,0.4685419725203636,0.39186190062612425,0.3765656666001882,0.4245317373648683,0.507521419940603,0.5331209064056258,0.4089438288311999,0.4115535205308529,0.4997354434047387,0.46758887837861896,0.427923743966652,0.5003356532977935,0.4010296669302744,0.3946540664994584,0.40667821502909396,0.34361754678700673,0.47973198888220964,0.5694853728127567,0.505745163600274,0.4540970073288548,0.4735337638941825,0.25081546642705904,0.4408889935521647,0.5044444034166782,0.403503605199102,0.510188044546628,0.44233526538548623,0.47133392605399216,0.35543063592242163,0.5690267339709933,0.526643975228215,0.35415945792612985,0.5735145936445311,0.4288068234298579,0.3312071345367642,0.36995364308205664,0.45946658000882745,0.35773099289823035,0.4394436582731114,0.28054680788548414,0.48274604028364326,0.6214638978113151,0.5913637262898167,0.5826269119685942,0.3353152691007648,0.5106116363183394,0.46974160269214144,0.4615089144580767,0.5118007964465107,0.4170566440110425,0.4936924302948182,0.35255400798190467,0.2751676617963463,0.5675987920390007,0.46905121948953993,0.47708146297816584,0.5064353910941258,0.4860893310584864,0.5578168214025289,0.5065480249929394,0.5100081434967825,0.5522998938077287,0.5065847253480058,0.4575279376391276,0.5916914161899415,0.47542832570686505,0.42330076266681227,0.3582215302768264,0.5541724039646285,0.554690551700107,0.5132691394861406,0.35040118255306846,0.44545491232792206,0.35333408927208715,0.5600435413981196,0.5174727064576223,0.41471194781666837,0.40450611489465604,0.5294850339984086,0.3935019172324149,0.3910439000755174,0.507943269033389,0.5071244278258564,0.42971502837568265,0.47406037018307734,0.43857290277461153,0.41837140657391236,0.4819229611086455,0.4156159063202401,0.35145116137864535,0.38891644922126223,0.3810353786317018,0.34414247453346136,0.4698229337163459,0.4138587104032148,0.28580946370896976,0.3875990000104582,0.33849941234757286,0.41494662836972135,0.4379404190045045,0.47984475143183714,0.41365538437840804,0.404841128348832,0.4175182026058102,0.49587190493343763,0.45976866116687937,0.4710442840034449,0.41341987738508645,0.49137240869077675,0.4837390803067088,0.4632875009168812,0.4387023446931343,0.5598607629970351,0.3790300389613294,0.535796915670976,0.5379274490909953,0.5431824581504421,0.5381533852812914,0.36199580218505206,0.3592342438857774,0.5440581218596687,0.39492118100490053,0.476962654162284,0.3073811086857755,0.3016682882544165,0.4799165628642459,0.3400534405673691,0.5613288906563786,0.3226813920037875,0.4910833253065918,0.6022688681213119,0.5494388552018353,0.44311718353902985,0.5602581562672013,0.6283186180527124,0.4945894324281401,0.4337299043339682,0.4253995238156083,0.48269209680313174,0.39168390048114304,0.4588742947406105,0.47264420818046365,0.434364847763025,0.540563014562029,0.44097009658201036,0.3824391913608792,0.5180044782583816,0.47801698651593194,0.3539126698690981,0.4967532221345358,0.4028680930613612,0.5276061851297742,0.4878503097802474,0.400994720528766,0.3046527689400602,0.38328229536060127,0.573157974961559,0.5421662790004902,0.41590038094539905,0.5072486710207228,0.44269746986891045,0.44732906863751576,0.37797038429106533,0.5392138174591502,0.3433998611787763,0.5320096887596076,0.41088742526230043,0.4311979613439224,0.5269565837767295,0.554172085468611,0.6768628773184545,0.4399862035718624,0.5167473505677848,0.5776117231111831,0.39202693616282286,0.5063456710034308,0.5021051753296373,0.32554166359252823,0.5391620604017793,0.40133300677358397,0.5146721134820633,0.5294808856509327,0.499807418127321,0.4571440584030071,0.45402491971608083,0.4532415758450952,0.42686605519322873,0.4862231326211389,0.4940641000122251,0.30051604760833694,0.500204036377744,0.4672433456199713,0.5302545829937083,0.33645282191759135,0.44940787286962663,0.5137127016438562,0.41343365502271584,0.5070051119113264,0.6898765054818551,0.5333577373558926,0.4232483407581862,0.35214094775559235,0.5993383293780226,0.5455820330624118,0.5260151064964848,0.33208568244185144,0.5221565439741218,0.40183938504973676,0.4986138681063546,0.43876345023337676,0.5756081838947599,0.512810841648091,0.612859387156291,0.3718756072630327,0.38940040899134554,0.4247322682658128,0.4722596406185294,0.46848531204626015,0.4923871040988877,0.5179395753364705,0.529332519698217,0.5352872790092448,0.47441060784565825,0.5096546068234171,0.5387554932005945,0.3991542104973738,0.49008752348852846,0.4856130197912209,0.4617144453622373,0.7550790895649881,0.5093895636647132,0.394479065698156,0.49539684229821757,0.467138834351885,0.45174601156740946,0.3631178824601186,0.41428339519271384,0.5237131632917646,0.5725759160820308,0.5188905219025896,0.5054477534211231,0.39998310270614695,0.44637630275966866,0.5692487111180693,0.4216903751540234,0.3493068091956554,0.4011756224434157,0.3720866659958252,0.4477541981881527,0.46259523740994063,0.3518900777312055,0.5027345185176114,0.44572383623147277,0.5217020767355769,0.3816020510428287,0.5659746405951891,0.48680039252097423,0.38561110578326246,0.3873273271336099,0.4392613096432808,0.42916275072373605,0.3522090446145454,0.41164231421869235,0.39754568942371077,0.5824804744941445,0.34263090714769284,0.5006810512250284,0.3235133252894791,0.4211939272400217,0.430516725338019,0.4762449218060394,0.5296469815369367,0.4608421081416819,0.5113818466982206,0.49663254075284025,0.5844653633353223,0.5026194831171672,0.5488358183297648,0.3594867694865868,0.4781833282235034,0.486427065722781,0.5151882679823989,0.4874123137382475,0.5021704436866615,0.42742607227848733,0.6099136051587971,0.3761432746121345,0.36750944840869637,0.36213990763279125,0.3814063899526958,0.4495281388652737,0.5260933353245579,0.4750507911606467,0.4543603255543242,0.5148501224128823,0.4252691943468253,0.5138914251054906,0.410137716493699,0.4505295542419077,0.5108081317626413,0.601505827747003,0.3314504169860666,0.5836573906283498,0.4644143030162504,0.376954313754165,0.38180448502768605,0.33249862210634623,0.5412000667151031,0.33933041874458353,0.6044180535750063,0.420609138895599,0.4814129753622406,0.5126201536249017,0.5101430011831131,0.3028007394116968,0.5688645582991955,0.4711479948900294,0.3886848433605755,0.47004956756753924,0.5889339984177224,0.5745440130246375,0.4285653318774053,0.4138167667684413,0.4405108149690868,0.4004576031641748,0.4096707599419284,0.36898244969150934,0.5452301465686883,0.512386457200702,0.4452560564368368,0.3510988663455568,0.38992560959414524,0.37476070166547343,0.5032520120804249,0.38144259636733885,0.6195236582827461,0.4340851293665926,0.4401090240606711,0.5159902662542524,0.543169386169575,0.44692193895063526,0.5545621554392457,0.38153425461516016,0.433955232636896,0.43811500636860995,0.32529158750868675,0.3353798174107276,0.4628905708341215,0.45205904690619225,0.4457655647638325,0.41648674592193696,0.4892810525552351,0.3899874437013042,0.4262340010058027,0.3707587773353464,0.6028008064329813,0.4803700742234609,0.39636580901761287,0.3513384254414286,0.38753907747417954,0.5266569767083188,0.4765806480754577,0.4358360538676056,0.39164817518295314,0.5202369851954622,0.4198752678299702,0.460428593545906,0.5420808006631165,0.4277001190398673,0.48282804770807797,0.5671001702629002,0.4141738839802229,0.5353432225597128,0.5690687921684806,0.46230654039101676,0.48709552245913945,0.5334198408301237,0.47356649042941135,0.5934708248681083,0.4526778052217499,0.382856490923251,0.43647331075358503,0.4918354529456104,0.6188012521266754,0.5393812036618437,0.462971057533062,0.4840955912228391,0.5166941443834787,0.45059937480128126,0.4971208019673995,0.5134599543920855,0.48855867026644895,0.5091654328054666,0.5128197582140098,0.4666364265463916,0.48058882128314534,0.49655168377430947,0.4083493667334137,0.31942817599868123,0.5333588655125767,0.4589543244109226,0.5917513594152582,0.5246676739769516,0.4413256010400286,0.5682720395815285,0.5070779940798229,0.5393902697429256,0.41907747700354053,0.3520461383132186,0.3108185007071166,0.3260704273003442,0.4312703471902524,0.3899359295643154,0.4472935561992854,0.47534472360704744,0.5049794654658197,0.4969015651634068,0.4305931010192325,0.3542929392391627,0.508275284020998,0.509535310818389,0.340263184867048,0.4337520447097864,0.44087983765988226,0.5151809795358655,0.41364168754777125,0.3541932653858214,0.5594954669405979,0.5432970143321035,0.5296359958751997,0.43270255049354983,0.3796697654709133,0.5954714130669422,0.5114711799119614,0.5477378415302883,0.5402786100864838,0.3835516546989231,0.5450556108022775,0.4445142258297137,0.38413768988418606,0.5267331842168734,0.41984032391594955,0.49160868413866315,0.38105446592268494,0.42067751918016894,0.5068864206728855,0.4481335442596167,0.5036626338693363,0.4952637899273415,0.412654555339552,0.44295697184389227,0.5780968046338576,0.4081196065592368,0.3911931450424035,0.5652262470714601,0.4306089348960859,0.5128726098278164,0.38297776139412226,0.5527987432372423,0.5530518157210785,0.6461147522952452,0.3518358061338415,0.49457264783356014,0.36895279265189473,0.4730216287089532,0.39568789341019417,0.3827843811300512,0.4890267562676732,0.507590845981295,0.42667555591273637,0.5253820228898475,0.4673359113476824,0.49241740552764357,0.46546970317867314,0.31466711353392685,0.5668464134528056,0.5290886180108056,0.45691432084521094,0.3746529268317314,0.40130721327606766,0.4408433689951466,0.44093619806100975,0.5786687893957209,0.3122609860342238,0.5033358754814742,0.601035962055568,0.5022137400179658,0.5587344969839273,0.3661306884923367,0.5103717371362871,0.5593125486088807,0.4317796596381717,0.5704122547352036,0.33592936749363644,0.404905721472308,0.4629387634468356,0.6053122464059943,0.4211972221507253,0.4762069029469511,0.5179127354831328,0.5957177875387184,0.49038192716265344,0.5166549152075965,0.43193030515978065,0.46196638118740285,0.41741777748774,0.3836713456076378,0.37893643572473706,0.4068739903052066,0.3654099772312799,0.469160475687808,0.4532411819405975,0.44421554296290316,0.3433359143088522,0.454432812470754,0.4103400359930259,0.4663944732164003,0.5697059935109255,0.49074718581982174,0.3522324782596405,0.5151507046787406,0.3983817556459068,0.427729772301303,0.459370966314383,0.5279963382830625,0.344301201271692,0.40362937829463036,0.4951617787547999,0.5623276778031449,0.4260234025977707,0.45827483853470186,0.4164083816407401,0.5613169003635695,0.32812690548349555,0.3426176802487076,0.45966901078816386,0.4782766483348721,0.38079211434282356,0.31503626135294793,0.4584030270691387,0.5147452547293514,0.5055164980033732,0.4681258309835671,0.3549202060296858,0.31264548595376873,0.5137358433462484,0.3866505679252235,0.3681543896713611,0.5303534521810591,0.5778734065874525,0.357944607829758,0.4665839834046642,0.38799958483292485,0.5169402579710755,0.4449334703023548,0.5821994974350023,0.349564884028669,0.5362019032119741,0.3598588391391638,0.3194330984839913,0.45050683758439386,0.5618009714479987,0.5270302024290133,0.4449647656346252,0.4552429909207196,0.514744510627738,0.46703949082673707,0.5055280057088016,0.44856449194853015,0.47537000485182596,0.4390454708225623,0.4486654431636498,0.4441055058675381,0.49134040464240436,0.3402541394462034,0.6054041145010932,0.34055215374040526,0.4989969218009015,0.4562483825049737,0.4094911166002987,0.4047505978495099,0.4048815823086623,0.46999740663788425,0.47959077871739836,0.34962266817737203,0.6227825447830396,0.5287279515675551,0.527034414932661,0.5307858719320214,0.443497155834405,0.4635047166919036,0.38768336892857597,0.5760368260848777,0.4647238843445307,0.3995946686418048,0.2697280794776937,0.5027277832424335,0.5704201031818584,0.42921178231802104,0.40252472964425395,0.4781938586105783,0.6297036833012833,0.5186565222868118,0.4007015333612264,0.5112231856450389,0.47247896750633994,0.38058107258034785,0.5400336813910287,0.5163560010160987,0.5932128826671612,0.4994852289663821,0.4507618719917491,0.38860591747340634,0.49240545361363935,0.48761673902350716,0.5225908913757532,0.5131903820070627,0.4444953966640887,0.5221646549330323,0.5931868259141088,0.5517062946983758,0.4525420854219887,0.510947389830186,0.5488384457544083,0.5248384158411987,0.5367898153597219,0.38652678064519375,0.27437225411683924,0.4592715344728938,0.4682763961511735,0.42424233880731993,0.4914225798390471,0.3820657350212744,0.6923489909106788,0.4830870819622832,0.5118857756801597,0.3260797643251983,0.3749410421010051,0.404285420806539,0.3853069926042357,0.4078992061822234,0.5000713954206114,0.394522009275916,0.6052709749372633,0.4564464338720176,0.45811936678314685,0.46509539133292294,0.5342486957177874,0.4046442423266514,0.5112235287919252,0.5778695296946985,0.3684073183679427,0.5051933139526628,0.4680655423313461,0.45156582612110513,0.4966666050000302,0.47758038370469624,0.5261550768112223,0.5181912932472338,0.4143936944737926,0.5333167836318446,0.49759769454542363,0.4079277371649707,0.41832981966591626,0.47775573668920757,0.4798355878474164,0.4820390038526697,0.42020999129791725,0.4901899702541766,0.5938702577035849,0.5743483423309341,0.5380950087350204,0.45348553595021657,0.4938289651299666,0.5056750116825199,0.43883459939389635,0.5079598644108908,0.5463054633789285,0.38275710322651463,0.4489277716573422,0.46103869251229207,0.5168811201045002,0.45315995983981217,0.5753119563417005,0.5707041032398652,0.41807094137747836,0.27939370113194845,0.4109364818378593,0.4010816480621939,0.43148569544333215,0.47232106771231364,0.3856983042564284,0.5778406923188523,0.4575751684433924,0.3471012548207228,0.4204057290894113,0.4660883177761759,0.5797053512687896,0.3958414668659898,0.4688058987533834,0.4370667219116848,0.41623965491399395,0.5210479881763087,0.4879344785898027,0.3656461647548464,0.4155422091102419,0.5107479936081032,0.5235977375255632,0.5004534860989512,0.36284934470980185,0.4846565666356942,0.5559263009683716,0.31261298708226903,0.3605076331206496,0.35922632278439526,0.48137240359978517,0.5497571926542273,0.46201039335414595,0.3168263360384381,0.5192669784112921,0.3144879700152299,0.34347928112652515,0.4561886402643144,0.4516712841362338,0.4459940867972397,0.4864126098224304,0.5052170555225851,0.38303026798493756,0.47010756885816063,0.4872256216347889,0.5411297056827065,0.4099967959150762,0.41011285423612504,0.3565721288650325,0.33053612452426934,0.4217879804253004,0.4705888826374561,0.4782164833126813,0.47178102407446826,0.2737032288582484,0.5009059572408434,0.4690095381723759,0.5388982033004358,0.4845446236827496,0.47308751801211524,0.42534167435176357,0.4958699758010316,0.4346736888132927,0.6789837304569262,0.3281724231360054,0.37420099960018777,0.46285054951084714,0.482623254097318,0.38054692940127605,0.533937655727528,0.579799181744863,0.4720042976455988,0.47961629275920664,0.4251193086429189,0.42222395758413817,0.3778747652412312,0.4201201532638238,0.4526157544229863,0.4065211220816897,0.36658470080864514,0.40375352631867284,0.4153481369609023,0.5496425437068169,0.5162321934622809,0.39373853655637175,0.48930208706180617,0.6386430233253383,0.4190589469032,0.5431082118436104,0.43486758246892065,0.5034201076928475,0.5045840830670223,0.4927825404650823,0.47141798344917446,0.4075698758251253,0.4522561779343696,0.45866714315887425,0.49916893249395067,0.4625569325695116,0.5430550147887965,0.5396841407520795,0.5389131590735159,0.47285743399071445,0.5017801589537423,0.5229278026057242,0.5318459481469081,0.5256917319872871,0.38844891585037983,0.45434499033654585,0.5908207619180958,0.4036807603602423,0.4104035299631611,0.5747844733541398,0.5845587080601773,0.5317909911786524,0.5362756211662404,0.44259877686493493,0.4993892799940338,0.6333046189528585,0.5077599518664402,0.5089207746063101,0.3770673837288444,0.5283821144882587,0.5866337248221988,0.3414968874559726,0.34556546523439063,0.6020819144935529,0.4633144591757787,0.5271889388966045,0.48764651757693295,0.46797860547593084,0.3561114191612623,0.3501901143759887,0.6187070147011967,0.5927338473736636,0.5202608442464692,0.4171141781556217,0.46829007981636334,0.39510493756741033,0.5245227885871917,0.4511421509419101,0.49761860450617984,0.3782446051837602,0.41701485664841315,0.4915342474760124,0.4649084431920065,0.513173239594209,0.43439715023051456,0.4196148510469523,0.5226801480568047,0.4258045224420859,0.4077862716688361,0.42940342347824145,0.4148252887261595,0.5400239485916856,0.3781878897420632,0.5853199931522262,0.357377240833053,0.5655773883167381,0.47456840200541445,0.4562230573044728,0.4783490911582252,0.4321317162206855,0.468348601306546,0.4219322470359579,0.4777046579296107,0.5057780582194098,0.4888511672311613,0.5250782364869363,0.43255361208602533,0.39248612855022735,0.5083791705477296,0.4129311619833056,0.40861149702540145,0.4666679646006027,0.388618097381684,0.5133084561045332,0.48002679411873517,0.3492450247574125,0.5374531508665972,0.35449307391085605,0.4792842960627797,0.5155029505662312,0.5861073053756338,0.5722378729272547,0.27941941469876214,0.2708170807236344,0.37587044648756224,0.44281712894483305,0.39029893271322824,0.29242545538436215,0.4131870671070664,0.4754816579537608,0.5267729972101577,0.6028608049269009,0.6275214115389686,0.42176293855616714,0.44333260267013114,0.3291884437077274,0.49774879436830044,0.48907809631447396,0.5393294064243418,0.4375283399315227,0.527333086094706,0.3428628734561938,0.5108209381500031,0.5869993897794591,0.4995954522597958,0.4325959456944775,0.5581116810299156,0.4428704434344325,0.4107706917645955,0.5897588232567459,0.4751410374170451,0.4273352659307172,0.4768013417731597,0.5066535884283709,0.36865510829525217,0.2586189173668122,0.4137562084239814,0.487385931995726,0.5850198593659195,0.4919193788452843,0.4533328342961223,0.432513971242069,0.43398848354703234,0.3945455912963678,0.30522030488336227,0.40423693502210334,0.4606317771145762,0.40004845498775865,0.45345831789179436,0.4334349183467104,0.4513898934542907,0.5769279308469933,0.5628755119130725,0.48187011533514296,0.3612530495660919,0.41928522693995374,0.6348430827426002,0.4662089177376093,0.3839483366765897,0.5982628907695355,0.42891781704080084,0.3842966471120424,0.4798888838072705,0.5251927768218334,0.5528482836332188,0.3543801547235542,0.4944162253592761,0.4716830689619932,0.380162625912495,0.4825714827880629,0.47812165072766094,0.5219023724953962,0.42823476329176435,0.4783830460587001,0.47403792295870284,0.43206708704674684,0.5808047487850312,0.4056875333423227,0.4661075181687155,0.5586004352689478,0.3963692094839366,0.5547078813148743,0.4566964418052922,0.5247303316063322,0.5240313239299391,0.38302590207127046,0.43686178064239856,0.3644010569563389,0.4119192588670274,0.3819884575205852,0.4031730663258046,0.5811820205384999,0.518365147590588,0.42735938200815143,0.46532045304104097,0.47636160486878965,0.5146129308209881,0.45253274028828966,0.4407036927542027,0.3826806072632361,0.473258550611765,0.5000559696688813,0.42318262544363944,0.5562341070037754,0.5500033512480078,0.6062313398485673,0.28688703326833837,0.6463100884837558,0.49681320664013395,0.4086755881462383,0.4539678374482142,0.4775739208923551,0.5949927291959168,0.5409470857856112,0.36163739785178417,0.43467466423573903,0.4747085202001392,0.4648085766363178,0.6637274374365392,0.5980804340048393,0.5536457276200616,0.49152633438703247,0.47841177684090125,0.44140425555244833,0.6010173140114491,0.5514130218215317,0.46486673050842786,0.45868360174921186,0.4271234801046503,0.3344868658155782,0.5760916994978854,0.5897886909362264,0.5396890108855572,0.4885185799003755,0.3977471919946661,0.45583204861664894,0.4554158987662834,0.5627668417622458,0.4760695284038889,0.4836873940122392,0.5569305615367132,0.5169726872761892,0.5524602109278541,0.4728968501921604,0.2977075256450451,0.45410705252472766,0.5429141118093197,0.41344333530489935,0.34897784562008394,0.46838314615656457,0.40775014913581,0.436343624562735,0.451362366493604,0.4274436956660343,0.4775988042060515,0.5622939693702075,0.4687198694239915,0.5026763700527376,0.3703249546287157,0.6143260406844886,0.5835945658957183,0.35108217603631253,0.4468477738235782,0.3671036226517569,0.4600343498542587,0.35387308154118874,0.41831784534555494,0.5669389186735548,0.467081735938062,0.47258542772927786,0.383257073325131,0.51782163531878,0.5225118692750014,0.5743858423774898,0.5461547997332936,0.5245628345202171,0.43058445877542917,0.45622517906356946,0.4604893859968592,0.47391528699605373,0.5129195901983357,0.4680846845439317,0.5207222797097707,0.34418582189487723,0.48864911272002876,0.4050510812786029,0.48699432126784303,0.5665675566524548,0.3455533570495552,0.49608963515683113,0.47084822266868015,0.5742660202133664,0.4649840357801657,0.4207135850105163,0.5262107432995909,0.4475191370146916,0.4739428857972854,0.42228148414545563,0.4593136939174032,0.44129468949623085,0.5161043201781973,0.4544362185175805,0.507663226763369,0.5156767643660904,0.5684696085468705,0.3992465441725812,0.36304440666129834,0.5012336439004976,0.4399599945026804,0.5741986250552169,0.5575112270203945,0.4204517182369911,0.3565793530191442,0.5776906571155513,0.6094442603213147,0.5943082575558623,0.37628211085238217,0.3846496308204616,0.5375433142906555,0.4197741204483673,0.35987801270616504,0.5394019031589706,0.4833560726505081,0.3431193283489779,0.4672212180617904,0.4253090389331771,0.39569207522051253,0.5859402083587769,0.4791185118211288,0.44490630468430437,0.6144448111994165,0.5275817227188012,0.47221716434711186,0.4346671276633609,0.46263079228780185,0.5688428926245735,0.45280675832973133,0.3642696768263772,0.4451671890143534,0.4405938276081535,0.6169317064145152,0.4690170455856092,0.4752204426692712,0.4227189977082263,0.2950502912212107,0.5707809692972309,0.39717944413507733,0.4066772651003528,0.43815831786514237,0.4414891685837512,0.49881035658826867,0.3657559948456563,0.35568446986115543,0.36177320841794347,0.3976064893316266,0.3908757334636341,0.4387282554338184,0.43751214811039457,0.3901494801206022,0.4803243246264869,0.5175266387393106,0.5347813922134609,0.6729809258390604,0.5007332598361579,0.45612736715513935,0.4073230654107905,0.40953639327745567,0.41155186358569906,0.5987304287699298,0.6052389076239051,0.4924707615926532,0.467774613027918,0.42641745104389783,0.3814417109393155,0.5128722689619837,0.47745005304444527,0.49226993399942515,0.48025919096355224,0.4569485160070326,0.6469119504181838,0.4694092039035137,0.5511626627017039,0.5093995874730779,0.4813489612554529,0.39157006904652153,0.41358678963186507,0.5639462723313968,0.446655003025906,0.49038884857457976,0.5997451030115012,0.32977624626115953,0.5861615115772931,0.5557226234446738,0.46209679248320606,0.5840930617905784,0.5492445491522431,0.5984663812334797,0.5384177579023169,0.4948707939360084,0.4126565311071937,0.34986881783828216,0.5203517648683743,0.3397100642133273,0.3726322076691752,0.6634127651951727,0.3863220112581212,0.5772673710431911,0.5243843682837845,0.4981239201061272,0.4785563007832954,0.45596251885236294,0.49980505413685067,0.40771481438914897,0.46533222434246035,0.4116632783774838,0.3410264795869664,0.46301475072716275,0.39258214408066383,0.3400491867566774,0.4466227944799727,0.48654277641553323,0.47993659205686545,0.5663947482683351,0.47391823978855246,0.4106834229324231,0.5829487315228953,0.416980605315087,0.4592845975456896,0.4107398024697625,0.4391355813510535,0.33585551780246226,0.39041697687553006,0.2812788115344345,0.4642012054238849,0.4179891939775377,0.5001359044452274,0.41150740840243416,0.4994517960634828,0.702071551390305,0.4906721309330307,0.3082274169324444,0.5172958891722652,0.6539772667319105,0.41008225101488616,0.43578490120687946,0.5072092684038639,0.48148404770540704,0.38550617354430833,0.4781723390713092,0.38957877262676044,0.47743975599027044,0.6113745468592616,0.498977289368058,0.5195051914393902,0.4663965485754833,0.48569461358261296,0.5252327631716935,0.3921639726568127,0.43421990871802424,0.3720147921935482,0.39915425675639693,0.5592770381654709,0.394331712363302,0.4737578650255513,0.5260323287085429,0.33562172391457484,0.38621353680816317,0.4881010099320963,0.5284320247798024,0.4133701946291907,0.4245444513534045,0.4708002269321719,0.4700111187388489,0.3820082556042466,0.4825322825015414,0.432410181207545,0.44858727381114644,0.5166114296731069,0.32869775708567917,0.39388061597589186,0.4051667327391848,0.34593063198816304,0.5333869852268815,0.3774422227533247,0.4126202910439071,0.5282978642116026,0.41257409170355724,0.4368642842703276,0.3652317309419713,0.5359792344567746,0.520247715048948,0.4671306597073531,0.5754173708437802,0.5342505502588272,0.5439509435627845,0.5370274775186857,0.5240615405045396,0.47496669287350424,0.48166345796519894,0.486280159783981,0.3890981714488044,0.415283018534161,0.38431334205855605,0.6468684086523319,0.4765162290999855,0.5191245126711517,0.4554326627455549,0.47251020335968663,0.555666427848186,0.4089249164622347,0.47080155808741,0.4404340457961972,0.5856531806448001,0.38983192105964914,0.5457962068800158,0.4222937649597911,0.4307134175222055,0.46249246013524475,0.4216749703969872,0.40342937951456226,0.5435606238750732,0.37352868251478666,0.36130144509776013,0.4433634166288525,0.46888211284427883,0.29848855966014626,0.3700498822289887,0.7115207776873996,0.6180902116882052,0.48273456858874686,0.4115557462219465,0.5005378734498479,0.4057631027313975,0.5261860194053266,0.3102135706253696,0.29301747418290897,0.4009764788355872,0.5522287052666941,0.4532315419023157,0.5817814828657774,0.47196806596249924,0.5432407189919572,0.45714737077394574,0.4545410079965586,0.4636567927572208,0.6151832062128512,0.4029031688366438,0.5170550921839722,0.37860028220751013,0.3980215024965172,0.3864115340487104,0.4287465832802933,0.4604935607050641,0.31845212002131323,0.5063604224897243,0.3458745295941493,0.5439385839685509,0.3579881569275955,0.677893952547878,0.40113133768817566,0.3253788521922331,0.3434246339189302,0.3136068374792521,0.4217548101146292,0.4992339140519415,0.45251680707283976,0.5690315488680998,0.5305901054219334,0.4852600862079561,0.6035441048342483,0.3435988693990036,0.4696242665654706,0.42625741384384547,0.42439882681434393,0.30702782250458643,0.3851522056550543,0.40906729326749264,0.5186249731927486,0.43481632150142885,0.5468958147173094,0.4673384281148231,0.6323661558934351,0.5880109505136187,0.5285980122123369,0.495104578431052,0.6041644163754623,0.4627082457890625,0.38920366477057367,0.43056072042763394,0.5219104863708118,0.5281854517540835,0.4189508531137233,0.49640479675509847,0.5886245364738705,0.4703494922076779,0.4628845275036994,0.405038544316289,0.537957590791832,0.5268353558247252,0.49238067222826887,0.28907150564470174,0.5124848671867398,0.5192787570299834,0.3485573441214869,0.4460905196265671,0.5639865715310433,0.4552276428793295,0.37159322103225795,0.44679516681957504,0.5364278294793949,0.4237844814898065,0.539302099763221,0.48774513149447785,0.38292901830859505,0.5567800620221569,0.543811786623735,0.4466674076993741,0.46785314749025564,0.3939618041669118,0.4470963361566544,0.6180393693794523,0.459319119948505,0.41236326181044575,0.42223492225296544,0.4887723218426691,0.5100159367375966,0.4706525594466189,0.658816899689204,0.45287713357468135,0.3810686419158737,0.533852216423776,0.4476902931319747,0.4208429768173331,0.5085614574209188,0.4540912131785667,0.49606431444122523,0.4032538838199556,0.5787497989214735,0.5513604897364969,0.480435436872434,0.4734447878187117,0.40759222072253526,0.3825305074885099,0.5235691439465305,0.4525010276424926,0.43666286041276303,0.5005678618148947,0.542998721742867,0.32528222828162867,0.6068697384051447,0.4829381184568773,0.49788995816731235,0.5777491108713594,0.33703395315587914,0.6061775616186641,0.4273178959917673,0.5057731594008825,0.5730057895628355,0.4373535936034935,0.3414068148431466,0.44437202051379027,0.4985527573456814,0.29720481811912985,0.47063678992439717,0.34456081935532523,0.5251456524761563,0.34774732840518996,0.5289365632859658,0.38308589929782566,0.5090020989695864,0.4031468665746597,0.5518613061217253,0.33679826455781997,0.3577374003973204,0.3905163185692482,0.37937205586286477,0.40231442332018774,0.5462311297185771,0.4437201034071775,0.5306049963368153,0.4352370242860252,0.3931993917039176,0.46987981880600016,0.4848263573656397,0.265113293006067,0.41476454818101427,0.5793444036446836,0.47068023276452,0.5032119986831961,0.5318060558849648,0.46018029523092363,0.611382980529583,0.3584830875582072,0.45474377221837914,0.49558192064458895,0.44356088144864797,0.4413863600481717,0.4143244662797282,0.3493282679469656,0.5580155592786037,0.4796341410883885,0.45978914398589094,0.4367224252384624,0.4568276426338027,0.488922386107727,0.5546237409866149,0.4199301612252961,0.3996331963431007,0.45789739577015687,0.40569101882627,0.5260748669560897,0.49040941834818874,0.48497821941866426,0.39124161883283737,0.4928430913808057,0.43091138124287115,0.4541169167864973,0.4883539883356624,0.3835272963708115,0.5512828904857923,0.5066155073820846,0.4784079216525998,0.5368654353291679,0.38692891737320945,0.49490882723650953,0.44798970586466513,0.6066045571941201,0.49287201820928395,0.38538825864417925,0.5887901263077553,0.4615228750858688,0.4942336107737569,0.5675549228578405,0.3505634062041715,0.3934426696495959,0.43601702886732346,0.378832918126711,0.44489947594086937,0.5433594533210423,0.5897511101294266,0.45801229314389463,0.5879530193673673,0.43501557809501856,0.35812554798573143,0.4257593327221021,0.4260482532396485,0.5420682145330151,0.5030564834901226,0.5091136549755796,0.46561086745694213,0.5284067904107682,0.4130426539358503,0.26521768073672847,0.48372629884416785,0.5331245174188848,0.5628414349748843,0.47119526898203146,0.541089752089187,0.42372221855976366,0.3379006519261147,0.46413378824425783,0.4318843500997531,0.34386299040785917,0.5122131712534745,0.4650879577232473,0.4642698270628714,0.4358353634399392,0.47668566936952006,0.49697872020143813,0.48390916021265945,0.3643907815283826,0.5082696949065921,0.5525491453386461,0.48667164837883276,0.5220831367777335,0.4379218069125465,0.409364972709309,0.4072903492596225,0.5215790619638875,0.272288889017204,0.43620469547002166,0.5003324438320471,0.632269326955821,0.4274169741862678,0.42539003558550276,0.3895912603377387,0.520027341515714,0.49566121050410306,0.4956664010735522,0.3797904025498072,0.35637854550741666,0.4793000565542129,0.6061220650615348,0.4131724540735469,0.47290416829442455,0.4028614558307694,0.4506654904267865,0.4538104267463059,0.46699058670322324,0.3435552603217636,0.6073801885685595,0.3471338712890914,0.4982425113985211,0.49638576297069026,0.4904687055681872,0.48167080269886425,0.4060796410425219,0.4153421886932175,0.4467561434096302,0.4861496790585241,0.29553786197478366,0.5520299307945228,0.48919661670146836,0.5207858968161053,0.4553252577448919,0.35255528553172344,0.3850562560218753,0.5393801864004508,0.43835085546744945,0.41644220683427585,0.5004641603189938,0.549028925142307,0.3965393523288661,0.3581333158232457,0.37151510355139633,0.5327058149336162,0.3973661897213102,0.500251185776951,0.37085485789391404,0.43823279238807633,0.5768875804972329,0.49169470702800405,0.492822307914507,0.4102851099631684,0.3877518512119999,0.5268530594892306,0.39226008904939175,0.4731657014247944,0.3939439072632044,0.45670501673247793,0.4829302238366281,0.5360247950958923,0.4403622444986103,0.5618528598071983,0.4395956050082612,0.45204002633222184,0.5051854221580592,0.49053776453867104,0.4279376143250555,0.3911688292021806,0.5315681757166962,0.4537834540743853,0.39221581796454186,0.48935257359099077,0.4842493359783297,0.4717100193198762,0.5437142513385921,0.5628201271538039,0.5001874766356782,0.33890985859664446,0.3353178340348572,0.39451146988979485,0.4724848081238492,0.4973408209708319,0.5055139633098299,0.3762099523313255,0.3221385243365897,0.4754874794055879,0.5148253689291136,0.4924447640124836,0.4992268164722048,0.3778084905357749,0.521534372149376,0.48550220950976414,0.4355087458572082,0.4112383414627797,0.3571437761599821,0.3690739988314981,0.4855514820654524,0.5082703754020058,0.3708211245558127,0.31799810990422667,0.4622641464256482,0.3442740889305988,0.47265968162884414,0.5685970323835491,0.40922609669856835,0.543929187708139,0.4331887524470945,0.43394627275091135,0.4376290680528699,0.43913027964508505,0.5347865469490503,0.4960093722102651,0.5523260651423643,0.38573495876572106,0.48858598972276346,0.4768827904795548,0.3936656374321112,0.4591282393267083,0.45908766548421964,0.5378725849328471,0.4783223677712675,0.47009691996780345,0.5848861240089677,0.499740227460198,0.4533189894239913,0.4507217537072929,0.48697669643721714,0.3633024636644572,0.492305738281813,0.37385830065007497,0.4250915034982587,0.38374781866551977,0.5577589953042948,0.4437141290304661,0.4550718180582351,0.5695201558077764,0.2821740702193636,0.46103029764662734,0.3129752216456377,0.4469368092273608,0.4422611760712018,0.6049384467315314,0.4945130072055929,0.46560559385682504,0.3734214378269945,0.5684415799536715,0.4773506232804503,0.6090995044223185,0.4014164327028704,0.5430189005477787,0.45668341196566925,0.314663491885587,0.4195726074303507,0.4782727636224444,0.5032838309291652,0.42719887294854486,0.4926980806894726,0.5585828581747803,0.3336537088417983,0.37876672559922664,0.4341297936811172,0.49112244057915627,0.30974011411451824,0.5005500698534002,0.4833071765808307,0.25096881765598456,0.32782960283401885,0.5826015203475685,0.5143163797504897,0.46468239364255787,0.5151178385532277,0.4943939375857881,0.5977441507640886,0.549702398585289,0.5033125771139321,0.4705775072770982,0.4119790525753621,0.34870141019506673,0.5673134182556127,0.48597669565843993,0.40191184878996317,0.5637504487741128,0.42048359572262856,0.6828877007651835,0.47663383626836275,0.2696215586587259,0.471778367898913,0.3804347581846035,0.40636151174394625,0.4287928936274941,0.4718068831365855,0.5217105969247698,0.4303424542948001,0.5361269485905384,0.528986901035202,0.410674388943516,0.37950587656730905,0.3493323511979377,0.4047786012533607,0.4343791852385075,0.5196353803359459,0.5466198988593889,0.4038997210500907,0.5235306344868963,0.40289028521256776,0.48225180500112147,0.408253686704477,0.5727760868072684,0.5212640458331763,0.42166557716368586,0.41471441413046406,0.4881525884691371,0.39897659249922274,0.4428666071077331,0.5397689504552846,0.4618171737717829,0.3704692623020263,0.507935625290129,0.42399562857205947,0.6063737757568223,0.40288759507146,0.5987425155175417,0.49285392246926657,0.4460599565891825,0.411956653154095,0.5364140653286359,0.5186582566576242,0.33384388193141395,0.44155020125004607,0.4166313264561694,0.4815152573790152,0.5382863778820239,0.5267119533399981,0.5521222908086421,0.5875056979449749,0.5324263968275161,0.3323399551839282,0.4975538746663396,0.5640162393901738,0.48945753193919195,0.44028173053185343,0.5050035245581461,0.5295977506105222,0.5143871912032605,0.3845705765552078,0.5736183909183848,0.41537341465156885,0.36899977043524684,0.5889229902934783,0.4970773331012717,0.4295752761294552,0.4199870744420183,0.27764595815538645,0.4937017159564232,0.4327486104392705,0.4077481545609895,0.5701867403975512,0.5640821940887567,0.40236321908464967,0.49593594202536667,0.5257380827248354,0.3205106469338553,0.5106029485793765,0.46094973770131104,0.4300962864088726,0.4540105030889532,0.5190827354805362,0.5131369075874865,0.514375999160301,0.46462354429811453,0.34152277443176443,0.44018430724549323,0.47856566065489353,0.3604616584263127,0.47859364087551565,0.4791698686024288,0.4217328741188766,0.47608942159905343,0.5730366778937788,0.4391936637945761,0.4254444616537634,0.37537555657187804,0.6871651312508866,0.5435839180211804,0.47799476465603,0.4647004134253626,0.44157820023135685,0.38753331895573456,0.4303997927773912,0.412752276182454,0.4721605620599207,0.6400006987106105,0.4963511942158362,0.4353316705029404,0.33765424281138595,0.4762154129898802,0.38788971547828877,0.5979815327274299,0.45494961899872866,0.41742787708003265,0.4012546242033882,0.45005551691605716,0.33579514647660474,0.524529705257161,0.4545811282421872,0.43267257051527885,0.4611773037060579,0.4653920596286367,0.33129032237934036,0.3751411152297023,0.3578947894626689,0.41604534890835915,0.5692141906478754,0.5509133017552388,0.3844639272922453,0.43144763338722397,0.4296908943903959,0.3985734840445084,0.475167527867441,0.5732840201892426,0.4779878937356727,0.4504663688934227,0.4483081556083453,0.38814174385218947,0.48675594606012085,0.4727267695747366,0.5488398641097971,0.4170884677976736,0.4791242277766232,0.5215143329714619,0.5274397029085005,0.46691272117960503,0.3482680407956831,0.4690031972469822,0.4905697981395152,0.5548116160192037,0.5389590864239909,0.4959128279315379,0.5135974515789061,0.5238429272840669,0.5628004812149047,0.3985676846688864,0.46349055636124864,0.43679449608640253,0.27344162182622844,0.4873338768280696,0.46422798627717815,0.4442229050909288,0.6288842754763663,0.4347592037859767,0.5875783971078383,0.4723546030159692,0.531698662751075,0.42930279293291385,0.42232455906066146,0.4784466346830024,0.5500330816474329,0.4427130098410696,0.42172411263042014,0.49214020529598423,0.4649672818429396,0.3890559113287413,0.343410258191971,0.3695987472088667,0.4843321710069676,0.4904243520808917,0.4017670734725368,0.5173443017286364,0.4901795252652143,0.4132495036713457,0.521277029404669,0.482799112832059,0.43319500630395985,0.4887252317181323,0.4827648457973612,0.39754061577946587,0.4333625908205417,0.4286899047713654,0.41219117713965514,0.39007315565591777,0.5675895194124867,0.3672293055654709,0.5787739063048895,0.3730657425530887,0.3958952845075185,0.5427873812592253,0.3936719799081719,0.3458401488179343,0.5793589845452226,0.4929088572377576,0.5308338538503994,0.5263818712056898,0.5710583800001255,0.5074155391375542,0.3860694782116817,0.5602323477411287,0.6121411694101654,0.469162017656722,0.5128577667032715,0.40925373431531575,0.6027962062068883,0.5668949860188505,0.47821757268381526,0.5504788996606599,0.38611066033403746,0.42869403767132713,0.3939340797614353,0.44334055200531064,0.4277918782264067,0.3953111495009523,0.46764156671527624,0.41155642732194064,0.5752243028583476,0.5909635409832843,0.4402479292312355,0.4967325067515232,0.39170110114892287,0.4619081960947332,0.5258279192792574,0.4219917763380715,0.3478399081920578,0.40381836140165744,0.45890950354027643,0.4462559305948181,0.4164934184620574,0.3735863310623067,0.5049722396446442,0.4703710814299569,0.3288117761002742,0.3540831102065982,0.4547382927131329,0.35839544591459926,0.4495665613376417,0.5097246230172925,0.5838424516974166,0.4374390126501027,0.5053007991915484,0.5875368864017773,0.5213645097333488,0.4362610875663804,0.44661740563252766,0.5362198796441412,0.3076764793233934,0.3639184152464083,0.4783455598412548,0.5473709067516808,0.5411441659851706,0.5099479551533356,0.35342767600339015,0.4228303336617624,0.479107031448469,0.5086514112755943,0.5359724037755755,0.5060634528460234,0.4398653301994982,0.47678013818282283,0.5181180758611054,0.4554966737183634,0.3847804593085003,0.5729700949128957,0.44552723999505406,0.3055623981163276,0.4872330264290878],"value_per_10_000_usd":[84.27486289042685,99.92466800601886,74.54720456576676,69.97505112504038,216.56612971157853,49.04074925953664,89.10714800766367,118.00865203544423,167.59780555303828,379.3661631216665,102.6769192220758,84.38631108404275,109.38305481471902,34.14389923398171,123.46430084881328,72.19685753290739,80.83166986193727,236.37064832229552,122.9311229296657,72.37967161212761,214.89110963928752,88.31425422371939,52.568795025521304,90.43791166896261,55.23735206532661,49.46298595088143,64.87423468962457,65.7932468644431,53.19082638968864,162.60418265339484,125.6257838313257,88.14520279267455,173.99330378935437,210.12861136459176,79.11208602609578,67.20815082094333,120.42989253934954,70.88656241953971,91.22957713596332,60.08128376385724,101.92965635354653,138.47604514679338,194.8847302486048,155.52278468232973,104.40824528133831,51.6786763239903,442.88029442765514,107.95231867632417,99.53713380915192,386.267788488607,98.46886284812443,160.74137201144626,145.48200932675712,33.011093973015235,45.25203082098513,105.58982026180063,65.7276722267021,159.1552962643558,63.2979437898241,89.90205454635586,114.90668828170895,221.23549947443328,386.0829111546779,122.60883387422435,64.46764021148653,84.19260225497825,131.46627173260126,142.26282706543813,65.47327021902075,62.564610620777145,121.89905960716004,86.40870728744757,48.8168082040425,179.18323565994172,205.32816210233577,75.49149140018702,39.03399778421091,111.06635276169624,156.3185402873495,90.34699608499592,61.23739214442996,166.6237245282139,48.21288786616016,105.33382876973087,136.97437213884695,437.64057715928624,90.89335417826487,45.37494726379516,86.27300323522198,67.34414542298444,161.97976949217906,98.41465652329978,39.532198234029565,246.1064572620335,120.20592743429367,62.04435502157587,87.20887554983217,244.5855437820566,43.878927064457905,121.90205454774708,69.3453188378183,53.269962442964164,152.13701406178126,83.26097487788492,165.90628879158507,81.71657663000684,49.655138954766436,106.6905370760954,79.82853506838234,39.23068520711689,37.200882860927386,326.9009525460753,154.48443696280444,825.3468226385324,94.1909607746791,393.97598666026204,309.8639610266811,84.05876495536748,45.6441284811147,184.52446939356275,106.44544337096285,250.49954767549886,103.10509300553782,98.71846816949268,76.08892480624743,170.98134575175627,191.52044003565447,78.83058231066131,54.51195883364139,65.04264697064777,91.49939851734425,117.32100338392279,83.83679156047464,57.95952057382041,299.1157265510769,71.78465288732659,49.47824989308626,118.21035643791902,121.75713620430429,162.30668278749758,50.82900450553327,123.35712884413012,87.98964231902374,156.5282305661872,43.93443194683371,98.08310653691659,60.74057224474687,64.26879802062824,37.310329580152626,311.86537247815295,159.8431998761262,71.24678970389854,63.38078637471001,203.4668071624996,116.39819513763435,180.09359057179256,35.993128452680295,41.37524345735898,45.10982544907398,147.0076446764593,111.97964740848042,84.62900302971664,71.41696470970945,97.56230747677427,75.19861170724523,85.21711598388993,155.9100711639483,83.34230379499596,64.58547911987512,119.70292863036437,205.26204942553326,136.09867164739148,74.46098980557785,88.88877625482489,108.96108842515694,167.01881782174956,119.70332558349551,131.43302040192927,50.453773202753396,91.19153501998952,108.03943677904127,71.38459241858665,86.95717636151083,60.24464333133421,62.073455017393435,105.92548849573707,88.54282085213346,37.012718178992586,49.208961541541655,50.78707388317276,132.2904728811271,121.838354969289,70.26446328400625,104.92138057929188,95.0235261896529,199.5378177493606,270.386160582366,243.24493838183804,70.31649893198268,51.185834762505635,72.7122929204879,144.37062488668244,116.3237611668379,103.59306254402524,267.01012231991643,241.05479742566874,121.4923326817597,117.76131614169768,40.59070184422431,307.13973111793945,262.1275625842994,104.16498903172806,74.44486640113229,211.05522058615531,61.87298012962058,69.88206059299966,91.04946490567754,69.56806457865122,85.30016593536081,81.70359820590647,50.11369664075208,191.20780229493394,81.43105752076487,84.44637634137393,40.17044557263305,71.80266923819933,43.677214785768,139.5541181082039,79.16680067832348,106.14386274936858,416.04034983797914,83.79006184250892,72.93429250538522,122.17544128645525,182.71671177431958,56.271585390597934,89.97569162230104,128.97511883840576,292.3323974553412,79.2984909172832,200.3147935205632,89.30273121593311,82.8152361991246,101.08959925297557,64.33822312206783,74.1739930476174,58.850877071952624,47.97389656428274,134.45832502659573,67.01514427945544,112.5043865250541,119.89805294865549,96.41322986654234,78.7583269955471,229.59282004054776,173.92608462484026,315.14212472749506,81.02191235584145,95.41675151908791,265.0682974388111,106.03429951883048,33.094364011585206,254.1058547013337,102.61288798801804,115.71326853376125,64.79968651037582,100.42915176854603,68.70483992749399,115.38241584971125,63.121166692409574,66.67409623361827,98.35890851008716,46.782983466241085,86.77609642152352,85.42616905574155,364.05943285962405,123.42999068959246,120.88156842789469,125.4669236030963,83.88673700097512,73.6639674683038,51.86477319748536,149.51767306058295,98.52447502331876,336.5735680743852,261.1468053420137,111.9072645310164,88.4243773684423,109.33282178086371,58.84023059294195,48.779177742897396,78.46973752111366,72.29943084540693,61.94927554358061,88.27448544379305,99.15047705295687,47.29535819983804,264.49902029289046,42.40410763585003,46.87836372272098,93.70125364986023,233.4900062582631,255.58683162392242,63.11661773335075,244.29535710866082,40.50099083807509,218.21452715253716,90.85483129663908,30.240969002154618,63.71159672437075,70.3014699639148,340.101185406577,78.72485215690709,57.96169620112555,57.59775930204422,98.94808316909862,58.70932108119207,150.83083087328433,151.01647595301668,34.86994467782477,361.4077487000442,169.23217838249553,127.20603758269547,79.0774570887754,143.7621251468736,33.629651362851725,95.03285168750149,93.89031468765096,212.23554889544388,63.38194786183304,259.74331344160424,82.43529613479686,135.16929112546262,46.144080666432714,97.81273049666082,163.64344280814785,102.73854881042523,214.32394116291098,65.07649275146636,85.14369136617063,117.23647454439256,52.30888531886786,58.38788076492902,210.06096030770522,92.08229109685816,118.39646373209095,56.47319960504899,179.0575026352414,157.34823438344884,68.94982574813895,357.3524085540411,43.687363241363705,57.87474074031337,53.5678790143606,104.84034139181622,39.63466352914474,70.28028141961632,79.87489085407194,72.46779982745907,319.1767145757071,195.97469483805483,157.71511909638758,148.44197787056348,206.6865187752558,52.426162121413675,296.47836609174027,84.62735714401705,106.70758880856393,119.59064283169361,232.55090520065667,604.386685466807,64.4037162871083,58.045157338825966,79.87088154606197,288.42553229827587,69.74118709690809,50.55708462681378,54.330476355033724,125.20143513395654,79.44046944506988,81.12896724593517,184.5429445733951,58.594243314430955,43.825494772921346,117.01087445095756,129.51563013315078,93.01771763798,127.33972272211383,99.98870479028777,70.33365193261756,176.43118556122167,232.1334767436997,170.30167032813543,145.6682830251671,76.94581621165013,150.51126288995914,122.90433744402469,101.08559726390958,109.34568314594738,41.20499553903022,93.83968837324691,126.7106369645463,61.87741974086694,127.73280561894472,85.95759257420812,216.18587877050956,80.36398809177729,75.23624681046293,78.70906356349418,352.22793936066563,83.87346040438032,132.04487072689514,195.35395862032203,82.00847679729645,132.80557605026803,121.74335961455832,38.12802636603189,217.45931921058823,250.23076425332093,288.2657255073739,192.49979263991938,139.19900455188474,77.80630883525431,147.90440854251284,423.3973837359559,88.56752530089443,178.17607519447282,318.29030579957526,156.50700396179974,157.20405225047872,138.55843057316525,117.0099163582089,95.77957885132214,64.13729234398703,119.78830968920315,151.9964130408942,128.47640089808652,109.87973312887014,125.09548663638571,109.2562999812972,78.80445311858925,123.77892124626894,109.61145285115873,107.83702592181308,153.16725495154455,70.30752088234323,243.04589064239073,79.89865533831038,262.77723422051093,56.8311694139601,47.83755517918375,66.38744591192544,67.8701051753806,68.18873061997385,130.98755196584983,124.95007136783971,115.9192720013588,115.7526030227761,59.12372231793514,101.17562955047515,218.50317887454267,190.3277707100161,212.74770899011202,179.35895504531365,87.03024860761958,66.36927123803174,159.66236106856036,165.17576634791806,53.32359783194045,108.19649716456871,147.43982858452196,176.00706910313053,52.393564686077966,116.8778077070066,171.0882852726127,98.04208976650303,70.26328880102128,76.65608580996587,76.00944588805554,126.18207388688322,130.29254312648632,148.67410034259416,129.10308478146507,273.14272871187893,88.01383480593987,104.5705342442517,82.04518958043751,187.64545968991493,301.6039428523411,275.4070079474604,57.364375345936836,113.86306639995993,74.529949925985,132.46873460850156,121.56260605211628,119.88112089893464,84.97935704184175,34.4500238332717,68.02731107583234,110.77614513165769,81.65250083933259,1220.6991053300053,530.7973652758501,72.07951773352372,160.42637495304265,139.20800125795833,131.6226872482347,72.9885020278289,89.43222947806501,127.81698382663325,122.80976083049565,339.3061681912527,94.52433118437837,192.15180140547844,56.968097893527215,76.22735673166262,101.10556381653535,226.71833466069538,83.50214663622326,82.57952623436732,59.1714756647904,249.23451174246978,55.18939510275013,162.04825343941326,57.78725005216382,212.65996503603492,69.16893337193147,410.30900961517005,83.50529229055073,87.46561441266994,68.22386647760158,69.09202812817549,92.28218934423536,92.8648558282474,96.81269487243885,74.77945378067913,66.77637367167507,613.7388946430858,89.49557096043777,39.24413437104038,153.95292069293768,70.93324607042953,68.65035856759425,62.06534111889702,72.93677098845647,54.251050324742415,67.59388294837804,86.58107322779499,142.76176929404394,41.935089877645744,156.0288918859928,71.00289096938218,58.962998673559724,107.10728279064378,108.83689959228342,168.4525070580487,52.835127503775865,303.25963728654216,124.42819042485498,128.2415691895854,30.728511585448388,97.1771294195941,154.11974840765572,153.577762534581,40.95685653068023,176.81698379546373,245.00426277663337,53.17300403898267,99.52072538485581,175.60144773670194,71.65966508366891,215.6100053137654,97.53619503758758,159.74125711160997,330.3158786715264,39.60290147078955,126.98644852729674,118.36336675569046,158.0548881102883,185.32354611839693,51.10050114421655,68.25863287822425,199.3941853474326,62.22805730061496,225.32564612409084,138.13281547556045,73.11804590072958,36.34549419652601,232.45198862594881,116.10885965153612,88.09630311748691,66.64818317122995,56.23652985687694,133.54904564965923,89.31199780174293,163.11880423336402,79.59561897585786,311.1380927375217,99.71371877896014,80.49170280002944,54.82007974571827,132.27310381524742,57.74482045206042,275.0455514871108,106.32003428712768,194.7474619986119,92.62019816935354,96.34301449630917,49.400528801949115,243.71040551844524,67.36361687989515,65.73678691972162,72.17644697561632,73.39905448966368,59.78866679467814,67.51527823976657,125.16029798052226,216.90280103567915,101.25632216760089,78.72553284821105,58.41871824118815,85.31416066171602,85.52149616332167,70.33611153283846,60.72628359569893,132.96648385363935,43.71115609455508,86.25186744322532,200.13639766979432,96.0078926237997,155.35966297696652,72.89819500646931,84.75934465953371,94.31341638101681,130.28736899414895,210.5382565641105,110.21278906963944,204.81545976845342,95.910417881137,50.02337577921064,79.54567867031572,110.9523901931279,136.26131017555676,121.75425596644153,205.0558779993705,71.72975029650007,98.1922356193623,42.50878692939809,267.4703431298482,73.73373681370408,106.99410615807939,149.8676451359587,74.40337100448892,184.31289491666504,61.820807891855964,74.87823150367551,81.52795287043288,105.7766062314827,78.22346262629802,97.43886045157848,85.54806688885657,41.004063540890904,100.1841962300817,60.380038702272834,68.48864237609881,308.64209010586654,56.419342302187644,134.5022864787839,86.16529603881011,77.76742803822295,178.10288476910347,93.73273947666598,170.7960614978392,99.43086956056658,122.19313653156765,34.63411941574797,80.15404929476298,100.50106641443281,55.23507509084512,44.218678515611714,86.50486234846065,264.3530177340601,52.62266049485804,231.42703916928204,129.14989527876594,74.13729652850228,121.2014123026237,352.5534916926483,88.26509028751114,145.4782371504172,51.520045564269424,540.9140501449689,76.45937542876867,54.08599959747596,84.88668483361569,199.63547255731206,274.5077266869104,85.94001299378556,78.71422817156241,111.820837448348,133.29972387428623,142.14803770707985,395.8867482524335,218.1661352235744,85.52062925641563,144.73612595277558,301.52261731546105,162.1996404458673,68.10201498280036,307.16169396211336,230.1711100933977,98.05689902108546,44.49613394649232,73.08499963832242,94.00552464881571,94.84004561702568,51.246790577924266,80.34374272643272,135.12888576692964,267.66939241468265,80.47852577223652,138.29770225517908,224.0242203837812,58.31971463562879,116.78956369298517,56.90458318257613,96.04940943595756,196.86345684734246,109.44587993347118,199.7855802804203,106.79350000666125,214.73758603317003,118.87261033281709,112.11643388215376,63.67821567424001,145.16414084572952,237.82038194690145,158.53456739216605,173.46861128333748,163.5036229986123,72.61871609519085,72.6382217148412,330.310175074323,150.7094578602571,82.80593393708834,41.77491736431556,62.14473244542453,140.5152357690295,99.34019379048728,131.31975376170809,115.71926754684867,54.98482953051446,82.93596203328222,365.2067053372601,364.47165549623816,61.085682636323334,64.98263832618593,212.51882240574753,64.18441574356747,122.96178265125829,117.63524601993056,62.816301886155536,137.4906822921103,268.02271106001797,50.547986888855405,106.389416081616,132.72008033852927,79.90052780938932,77.2067492549265,173.18172335364332,87.5611498101317,115.80336862087147,555.389489454902,286.99387106488473,50.48183317409959,108.00160256647409,102.01343520317296,67.90763334481329,106.94102049317988,82.59156393987803,96.61967635092054,111.07205191166382,112.27998044806485,294.76694597188686,217.07399066600084,133.878026021646,223.31218360736062,155.0451617902224,39.561467523562364,72.27514601512857,121.09304788363872,89.36282244440679,138.10405422900178,282.0669382217052,117.13644000491942,134.88150661963783,28.422593378807367,75.81906620775511,96.09287020422713,248.65031261386335,163.0139885613942,45.3383991931524,105.1440520370646,100.69982761477354,238.89975939842523,319.09559028761646,164.37383088750275,126.23176977468054,141.33299782740787,247.28496921096485,122.5539380731268,103.91874537696351,105.15166514550545,81.62176367422906,114.71242325540186,44.80315824208037,87.6796644180047,111.6156304747819,137.6721420865426,62.04114641623581,252.18976315460242,64.72191604419795,88.53796126135703,113.74064369989134,49.11727480781693,165.21934470799113,189.44336713039408,117.5083089339028,157.35797348857787,97.58914565966904,100.48459156014813,71.96252998952696,293.40232351100775,66.36508423111317,81.60495903155255,71.25897900650702,208.11531627669095,62.02829530778044,110.0773199155069,139.1975653727729,122.673983168668,68.47526584866279,108.09655182501166,148.61029607342184,121.38126705143534,283.5694890717013,170.49921679395678,73.53675862721292,75.34613172753822,163.20866814681236,144.9121218091724,33.92408621871259,165.70740567053804,142.42686786782824,63.36366916419689,123.3383124356395,588.4590194149547,218.16138942318167,181.8911528848286,427.8305155670174,68.51731787695859,105.67762246415025,48.61095401736453,66.59171130067863,111.02718242637387,120.84297675360412,105.72568400059703,151.98297823112628,91.52509374210268,306.7925896474046,62.57228924327988,92.7221676327464,97.77378192118417,105.14481251112275,59.73613870611445,95.47577973119027,156.2000687800418,93.26215580713128,145.84875172087888,223.65194413570634,83.13251528355111,98.81332634870101,102.4514242068059,58.39019568426266,104.6305607320891,106.33405568611975,52.86445780128063,61.485261852901196,108.25492096425921,98.91933424082006,349.5043184237075,202.50758518314177,226.2325581011874,80.61369910836605,138.70775934222365,118.19381607889386,229.75262694737896,45.047867721957225,125.470089977022,56.19785989611758,123.0499305433492,135.31148600474964,101.65373883988472,88.37991755416364,47.72568596892192,275.22607538161543,103.57494723241463,103.3898160974031,158.37145539657078,58.43566011613046,91.40499920571133,72.59778033907094,79.09541533758599,182.09027683436045,57.58563599033336,111.61773996594124,57.096440665937486,38.18414774903329,162.282406003901,153.99808337691664,223.70611758383257,59.47601683390089,65.51689476985989,68.25194712758748,133.00118046569497,105.78450299891131,78.24261063633085,48.95117788750749,101.66303091462403,91.06262940672873,94.86619337552152,56.905470091970024,109.01805057123522,45.56250238653506,56.53949075155378,69.08527858330618,179.267709206044,80.38604224860333,73.4649141312114,58.556952952191416,46.92450517654745,57.51014813939933,118.8877351658044,190.7687634705222,259.05075772086246,114.75351119200272,284.36793844451984,101.95700924763386,142.91225031601078,191.4898385745661,176.31325320029708,106.07825817564817,108.98969243201157,51.049408116181006,91.78766452715095,82.95108412896313,161.8160243102153,58.307388968948075,69.0954155841792,57.898795559354106,365.23377569430704,300.3766657159259,40.85023569937586,114.0944641060013,61.34603267556489,519.3412197801753,81.25182651793399,65.0844635999834,114.8266641810836,184.97939883245462,49.54772404642986,173.4032338715687,55.492736493514634,35.19846357461073,85.12378466730355,71.79251147078098,72.42366961806687,113.88850083132952,182.99022743751735,73.77779669824002,144.72009152544098,132.4168284729692,42.670081309768634,172.9942718520986,91.21190076504088,154.53996056709084,73.81460267014727,79.83814754772386,55.588926434028295,50.45266680443908,398.038832354032,60.26964758857076,76.07762900691493,49.8375346776327,328.89260312263804,72.12375385183466,59.802236969637306,196.38738018572425,43.02419528357617,87.84864493388427,240.55413550863943,63.70508006615772,119.43322502595127,122.73071331344386,113.8924234704683,54.91421224300127,102.62464708506162,89.70951490875528,30.31655268874921,85.93579948780247,49.77511675910451,46.43849889724093,135.76548874307883,56.67819033549891,72.88117332344595,66.60369857553712,1214.5241717805077,96.1222569920747,146.400072364016,85.12499093131646,107.14580506868292,73.53072289378586,31.122551083708448,62.263112628410894,90.26325352048885,52.58728776009753,35.04545758128492,107.56433904425319,107.1409045232578,81.65037054260804,61.265799802793886,60.71564101122524,86.36265169938991,281.79419558171907,216.60522333496388,45.010497353916456,68.53208837145891,69.65155011063865,62.114756732606544,39.0270224305127,110.48682846902238,169.63238501603553,138.69866740251177,58.234006399599465,90.31850593253588,82.58050572639681,70.02878019532909,145.57816451719444,121.87324140414098,112.93420333808947,61.810437216586486,82.71401732049658,95.50025989332194,66.66420302234695,153.98562140976765,154.68681425187307,242.68861847862703,94.34144457449223,341.45982270172186,127.97961088739362,73.09572794504389,105.24451511621832,103.18597233950106,71.6115172427069,60.536355715950016,166.87525899863317,79.16905196562692,35.16723639478826,73.19600769306038,431.2737865015794,78.4724831812152,81.93685905318642,163.65860967636888,67.85747776354988,166.51030461723315,48.80753456654405,68.56070854475848,90.1326939536168,74.47871025738841,101.27550330524095,96.0300000544582,64.7728674720407,42.39968106746124,114.77741810059037,31.458105264299103,105.90731654149712,207.97900355386085,98.77354770378291,55.770160482818895,52.083165260332215,99.17483140345982,250.5558630996075,50.747291445174255,48.883609891626854,214.92733264575162,117.8144670350137,85.19566963666372,64.89461436597908,63.7565727316171,201.3062303050012,104.08156378691972,66.76005025323859,179.3897767650743,64.22047739614955,433.1092565395459,67.01511040168091,51.68947292040773,139.08327243275468,70.40221160433073,86.74751276832562,24.184682055721723,85.80410948336335,50.45581428235585,95.05355733582455,83.19943019697085,30.415941815154834,140.46005357230382,81.73392418214782,371.607822812672,131.0827479544847,171.5931922573895,186.12022844940552,166.1336236041842,79.27563651598015,40.50237347480549,99.55254852059615,92.46809315227094,85.27511332996855,118.42298333596244,86.80761307204745,89.53992653108634,144.01718458938774,45.271584511567596,242.88476971259118,128.60589978268808,119.38468190889606,106.02810923184656,94.06001090815215,96.78017515806005,163.3231191154748,96.98002062657812,61.86513455738793,33.362516087338925,83.20292030564295,55.878643861234295,83.84352930523944,86.68800314851043,321.59692998459917,39.16971789711106,90.49238890107584,93.81952712534263,54.35814317282871,101.49561741730967,76.38784142968466,118.87305327120005,97.1045351048209,58.79178351606548,195.70977562992837,59.68614189256196,125.66898270576152,112.08734164608069,146.43969440295518,124.1162924402461,254.65889774523328,83.00415874428613,87.6868709031743,95.02475666973142,114.12369395863989,163.43810558483145,129.35601236903727,156.36264587789088,426.8784419125117,94.1735703425421,115.2471199150709,79.70758812372222,124.39012041173356,73.0968822653362,111.88279528054721,221.29789647045297,86.5985230959739,75.39925127333612,136.51009131614558,119.8146655440434,90.3556202167123,72.79523318538389,127.58799463963288,193.86065938035992,81.79146189946923,61.544799701364425,67.35973226370217,259.29486468356157,106.14228994659663,47.71275888001136,71.1508973917639,62.790679226048596,70.71697246422342,55.81904859574783,227.07608589117547,483.33901299447007,137.3767242307945,56.91320824720763,86.75657211266665,218.51694229067857,66.67813290271357,106.25224375146163,352.62411848465393,65.24607067561377,99.27527331403324,73.94543024748617,79.56433618781371,91.47672157763066,152.0439159506113,47.259646527469535,49.76208974080194,103.45156901871123,86.97966040901801,121.2458555505239,65.34393288524906,116.1499500040766,134.97321149217433,281.2732905560191,106.63830160218635,129.00452206803018,156.733442182918,416.78872332407605,88.34726679438329,110.73178561895956,60.47126794088027,341.70251602390294,223.65156334799272,219.48290192200702,62.90365476042868,205.43164238203278,71.17896576438835,85.72859615414161,103.02604192966865,59.586445328544194,83.58265134809736,42.50145620831448,59.09455811703127,121.69185151658765,83.7031994944438,73.5842424718296,56.049744213845486,63.98216909845469,66.87615633412284,213.1658548198055,119.08109705351721,66.97440671540846,103.1830597026573,149.18473449027124,110.17668938929056,46.30558341409791,53.427387640173365,79.6333431324497,54.8239036564548,87.95442299580675,87.46392378790453,70.04177081812833,116.52125863680467,50.208071221942866,224.714616009312,99.53938913286687,87.84687189693224,75.51193007142393,143.3905405654282,327.6434610367421,66.61860043330933,109.36727770527581,74.55252678259991,252.1662181813421,64.12736043327192,474.5963741964117,182.51723073302344,51.40948466790605,156.66166135150598,139.84501447852247,217.59132026801768,66.05773278644172,142.9908753324525,69.410460544749,99.78169872050987,38.31508600266607,98.58919351274122,170.61156894084723,58.65303257634579,71.9547058648627,90.85655248756282,53.57102671359137,435.8282044934988,134.28973324942746,274.1454747573314,128.23432173074042,65.94400391003569,307.07227883118907,75.01780515153791,472.38015852991185,134.43880430268536,151.59238275490608,127.33504692420445,69.18324775342023,45.80359335074589,205.94086048751518,81.13237598879824,484.4775279635827,230.57992967381736,116.30585383848145,215.97055486478968,78.87569720341104,133.9486118040059,120.35126248922603,112.76948610978826,44.6681418341683,76.93756049504195,133.14039652157734,124.78275437879905,49.636220604351635,130.471838832472,41.04312984485753,66.00062332381368,48.906209863424124,62.14938953096963,98.37082394800858,110.7038136285846,102.06091862406588,85.7564844490377,44.00103065780344,94.3222215693744,88.84330185013944,67.68508000651386,282.08275425121155,55.241830888851865,83.93805757587693,72.31379933191536,89.1643730119639,66.5842735686459,90.59095025449125,39.859668638653034,82.26750291639472,74.17841396766065,145.6462031156205,47.69772050481652,174.1478262926158,61.5450605254374,70.10115919104446,39.95322385421986,79.88637632194501,273.2963140158915,72.56818322223188,121.76424536853088,80.12391142240558,121.36094790051952,84.45745532069705,162.856393135553,117.14768817905677,219.35419714613514,87.37590815423299,141.77096123217555,123.04426371388729,87.1124115082178,113.15150488717167,58.72333386205287,105.47806396336208,114.57262840522498,67.77020946664248,60.675230700883574,133.88650567659212,87.8503297740482,229.03277595311292,112.74203601941468,163.04179849261345,251.8429539573075,63.25176119383816,142.28069457115512,207.42002828235,180.3920015476864,67.01710608225461,180.26648841964402,271.9981712069978,142.1594652190111,109.6149210037155,103.2382904204175,103.94148028755902,488.17877625446937,85.11407710536912,43.82248541785375,200.64596494256352,96.85270487203876,243.31342202590164,81.48024556455985,152.19695701688866,56.09197166186643,166.93980406116916,407.06137421996294,109.92529191196279,46.296705721985816,172.35806752400504,152.8784602917559,99.19348741481647,91.91121502070415,77.38045062120283,62.389619109237316,46.752232737396426,56.26626450991311,193.6073565888825,51.96967528386915,42.98204100977372,288.05751346722786,77.37850173197124,52.08046327507707,133.18512624509648,63.78020417011608,94.07709344747411,117.52460364608481,103.3784166824159,131.16794072581885,79.20098998239021,62.60651471934034,127.87195556185569,243.53574973455744,240.63974561326813,126.7048529740077,99.96619491854685,52.0119893881209,105.1673127464272,362.02060204569557,68.67375514894317,151.162684946519,301.56122934783593,118.52087907233658,73.86108583358482,101.95738310127852,122.41045800661716,305.8927920423662,93.21203881826573,87.66324405948184,55.326428139598846,134.98763163357805,63.553214987923354,39.10233776555121,110.06723786531599,97.40398250212746,109.36040734878763,85.5299005698315,45.923250364071514,307.2952368350871,105.47556970254905,207.3631979321963,46.85076924326337,89.85339018089037,156.1342571967279,135.9399545998167,49.997583108340805,42.96993505796047,86.16361866295613,152.7502393259626,58.966460701874475,69.65115700692355,82.59801996403677,591.0137111338722,182.42574885308997,46.905529756205105,69.44238426571297,103.470425582659,86.31465885886786,86.37573556002367,75.47376212750335,74.1301994310471,81.72402613469242,55.85059316651292,50.26016466191283,60.68922002114874,139.4284030746605,91.14523139628758,105.14351781610033,157.50916787193418,168.83135749327175,130.86118300825498,67.242657590352,96.51246824818446,97.61854514842004,43.45739422789099,81.09673154247733,149.6889290397784,96.71395439198375,157.96528210389138,74.68701753026646,163.287854930195,68.79454531474506,173.56146124528314,81.77475633833839,255.66060797867954,77.28181549552167,63.333305093292964,46.04992099622314,156.608032930336,40.47481872297212,97.15921529399373,115.55772303463063,185.05206788500746,100.5055176325764,79.80663990829099,208.47445268350893,77.535605616372,220.8423942912813,138.3684052717397,79.80806523122817,196.91313775631377,76.17115393728272,248.62296509943275,89.66396443681246,189.43007557725332,76.99342642547273,207.39941954483427,86.00911355231501,245.64534682499004,171.00825723134133,146.14033231470748,70.20820743229193,103.65465917308937,47.37462855403523,76.05611196173751,115.37902261357085,71.46109413965254,180.03282783362067,40.56840626734236,129.91171655496632,341.6343877952502,91.85869278663367,74.5647582878826,221.4048092374468,71.84923442815247,153.8607201456558,57.636040705570885,218.0911471859472,95.8331558495668,89.99716718045039,87.66435059944253,70.60405689377406,88.71870560609729,51.33847748214315,98.60702169598187,473.2010300213562,142.05756041606574,110.10070392246307,57.060620880383595,111.65335188569871,152.74792712216254,81.08633945932186,113.30195575762887,83.26960011128008,105.33534625801491,66.79115997389178,130.6122737752063,63.23633302348962,59.39671003503131,72.58592496000716,78.48014646607298,44.32152100270915,110.95490719614823,46.01371613755566,44.263854046714684,631.9463149589171,53.68892078025874,87.55011829508435,76.02664200932067,103.47176062120205,164.24138866547418,89.81996965030245,141.13189948261729,150.33176688729148,75.27263339181478,141.94926009047649,113.96192384653293,81.88719736135248,108.01056775827848,56.09811730690899,115.36106764714074,93.91187324105034,103.34782801088096,102.46515251951791,96.1285916123739,36.71511953842822,135.23351470821066,85.74802501490345,141.30473722340426,59.48092750260314,96.53885373392676,85.66018782925697,107.31120512458001,105.91669957682592,133.05185236854632,129.214899232801,138.56857282969074,404.4699769483987,293.8037899877714,100.61896915176817,95.33740453362653,196.01792803687016,97.03532269172378,163.13565804239346,183.5909224506832,65.95006081321952,223.04635565925557,226.59445511249456,187.61392480104126,107.13806581049764,132.4216211367765,75.53580726452539,368.6613045333827,122.52810067398696,87.97041473791491,147.62100456770327,56.39453948990829,28.606718934397286,43.54642642817888,121.09973399181247,154.27664490990784,140.3040852677862,137.1458512822091,128.57909703080287,50.876444798994676,90.42566341149694,43.72266092258572,119.2017484240639,40.45300744510428,82.32707388278317,161.01523099658428,208.4636017169594,44.20456548216589,103.88950545138034,288.78437407788164,53.36861955663682,130.87728951003427,122.6903673992868,82.3242839371693,46.105154970390124,104.7724724380502,42.961030117257074,111.87430394324123,51.858078707191886,117.90936528692917,88.29955047678575,115.58824277671818,63.26977204571183,324.92927313989514,82.8752141589663,55.784672059022824,277.98624020837394,130.6635834174256,148.4490148768691,66.84833226757816,151.6475568912293,97.35622016481103,92.84195455171381,180.99208969816877,89.60246324828131,260.73910074366904,75.05107681863213,126.44176427107257,126.38432323115347,75.70641695967277,154.49023830806013,80.36858991641671,68.86854090347916,141.54923609461144,73.53621767183166,140.31027117817897,82.50465190588044,145.61827923928567,85.15403819108563,286.16002510551186,80.48387618590225,77.5752427395375,232.91134444290228,304.61149048741515,256.41519816254413,78.29693240217115,55.65080795523151,197.69419224404595,65.73424537477239,78.74083291478209,172.82497199367756,139.19976799878228,110.8209592425241,37.267397984996016,209.75212264981832,74.76332050977182,60.20829720443445,235.08368555996282,192.08916281130718,167.62604236926177,49.92117010372244,178.08018021974345,74.91721189100849,99.51187145022149,60.560033035735,73.6038052123748,65.8094234809191,37.25822288461359,95.95658602950006,108.1010683550346,147.86666420785522,125.4960781200014,134.25259271097508,54.84748362142413,174.53071570982303,278.70325741495503,69.78622780296988,607.7855153743739,118.72643792479555,98.09728822621975,54.44689949817062,188.92964421246677,73.48772125764442,243.92578409330443,69.81450934779309,80.52423636683828,252.93200767201222,44.3312693107768,44.82679829233839,56.017919654770374,193.19731108088084,134.67029797153535,262.9837031637386,126.63465811550248,41.66206966276419,73.36542795130033,97.94432807899823,61.087438403200544,61.01360640888759,52.701307209212544,49.17990854141613,86.00490290604651,71.92620692510792,92.68332215717449,41.98942363953816,36.80647162123138,241.2578193536734,114.54079847240301,191.90403576062548,140.36513939622156,127.09343372432183,226.2238638258914,60.39699954382477,76.54701600432988,295.3216911118496,65.38049094832151,70.41961513133204,59.935805894611875,135.1877703286793,71.89346604454879,126.06774002837074,36.67496687884653,109.03575199805165,170.37406994232356,132.90113197648373,93.69577763872715,112.77389555767023,242.26655101690142,80.69238446753876,116.44051639039215,134.52670205161283,105.99877552771213,46.36023117224786,123.91368395330406,123.3575364264822,239.61636645781908,64.02548667892364,77.11661852312746,151.18169893486964,55.960339998275494,107.24257244959118,165.15954671371125,286.6970706081866,80.99938330937437,80.13624559655794,108.02272284668314,33.346860807155174,197.5596780492123,209.27470629396564,99.64040603197213,57.02052747583336,53.45707510133818,107.25969114523438,94.85063884184024,74.29055561717495,200.2374488041673,152.14120168690008,61.05438359661101,85.37915273850157,85.79628119313222,115.76695157255809,56.168080845531314,328.4062368343337,92.2745343054988,54.34242451144139,128.14345976986797,363.75358730112725,77.0709233184945,78.17893139941914,92.4989215085302,71.83681466790676,89.02848757564013,275.07670084496266,183.30110093684414,133.25153946103833,290.4531080118712,275.1796372725091,159.57451351671915,114.72211126425525,118.3973662579802,345.1642028357891,118.19874413971021,44.312329174553184,92.83529471117068,91.44777979050886,417.72983776672027,177.9742261668192,83.54457644222371,79.69315504375633,67.68084031291106,124.69692514117652,85.05701155055922,69.48096049755036,114.45200935454633,102.83775636488055,55.855998421934444,85.82714451206111,54.299312934723574,57.04026952923799,158.94047474753313,96.79169389016523,111.68771434739102,216.03225511338417,119.39049817411706,42.76002075305095,141.95544338253745,114.78096962453246,57.41841721899229,132.82618951996267,70.75482878082887,45.097870059389464,46.93141696605474,52.226716869660486,105.21110055750447,70.87240219226057,197.72412945800107,102.3745615290482,143.7946924188492,229.663882513203,89.37636530451348,112.19529429414294,89.33660664058833,111.70341993167236,122.58278912244904,82.85505827537128,33.07126869457029,35.186425011666365,148.32430123516278,189.96440218935908,104.15240274348264,91.83559623750794,122.3077123173549,77.20071557036772,260.50835199140636,95.28409847693774,149.54745383902087,69.33495274272693,78.23737478455934,55.79419169053749,91.7767593511593,72.46151948926814,74.11497020861137,70.13502918703439,86.47201741725857,84.77438365086095,138.7730515547871,72.82527430072818,52.39709464703324,118.68393756954319,156.8675899516962,126.9173416122475,198.21519607487386,80.54127702151241,74.76433611696623,55.66165868228201,129.7918265575752,98.43500827173372,32.44583735374463,88.2649054519868,105.11709045941103,61.936639780478224,57.13699881824984,87.32705826680017,43.12115850639931,156.54020366534263,67.29333215374393,63.91299332132752,153.39600701757075,97.30565637200436,93.66072650590354,93.04715515122848,92.74334149568517,42.102824235009315,144.22374459899763,228.54623008207915,161.66325285285797,44.35316097709404,197.8965679427129,72.11974059455851,112.31878877581175,79.73091733639897,45.78576444333552,62.71036317747333,82.92545002264787,175.48600209309004,78.08853433495955,112.0753813123913,77.12360817558181,44.326476006030575,87.86482795344507,123.37811937274574,93.46569761485921,59.547265433205126,193.10842277092036,74.68484789104645,95.59147476920243,69.72560481735205,126.62023166951394,64.14140304949328,91.45436479324901,174.9070256382695,75.51336038298156,58.38267323724845,92.58152515015078,59.90797650332086,386.4296286562595,89.75611755607221,172.01480619024906,44.37485547210119,121.04232582133368,56.306978660760066,283.98470732599503,119.9742825260341,371.91998418523235,109.74143586168823,120.8437042497185,69.02063659374298,70.19808092936597,297.89346329313304,331.02402672562613,114.15113543913218,91.04888563745546,172.32131559030117,107.30053902837578,121.62110516431078,148.57696199851824,92.65185500595949,333.27358389464905,411.9703331947271,43.73471439667367,151.661305880106,58.14154426639408,235.78635909899913,96.12961096495954,47.94158604786079,80.56476453273717,180.05294630745897,67.96424505224375,93.42916622539771,44.17969446712305,34.04046437308414,83.9491521470942,145.6790513071226,484.9130417932935,60.06831215911151,322.53630464341,114.11341357166938,131.74817480143105,346.42701774983175,149.6954557782483,71.65224295042715,75.69368302239162,107.7641172547126,63.34624413588293,108.89882381591298,65.06819090492918,84.18005285050211,75.09971410742837,133.12294103300246,248.48566152510028,157.28046826319954,80.10769021231857,131.95117630582828,99.33888346141507,137.38976824112436,137.06547245092347,89.05233688176209,72.70421754291137,80.73013916366473,93.64084477052896,62.6255303543388,34.01866580378698,63.963532218387755,41.491815932694266,247.29649384491012,299.6930339482956,178.437215837705,112.9426974173985,126.72932578506595,198.90941099629848,80.82759210595624,34.24105842200345,72.38657759506593,115.60841018429231,31.814622066044688,31.35254667505598,57.148319457893614,200.53400985754178,39.74032004034952,185.48373568627966,197.09038328935523,38.29414724994616,87.75362843135353,262.4776553473124,265.5231749758584,65.64168716593416,315.5426797766833,149.5029133754971,34.86476323296012,98.48904378838758,230.51747741348447,76.6237102468026,143.68526965103715,95.15479407837675,64.4335950440986,206.02532551452143,85.73545408362345,70.03459998115983,47.85749630752686,59.64805266978818,163.3243687641503,171.04681989993114,65.51922117924597,53.526340070181575,93.1313667492235,172.69731193050728,128.47490591662176,281.77895356925404,73.81667396334456,54.599520482363445,217.15759622218582,100.259102358419,67.85376472597046,81.42858609391241,101.38517769896447,52.78339504198463,100.53067958448969,146.93473867892556,188.48359263079692,94.71375608114589,69.69927144871512,288.010936081697,71.63540072076938,297.20522126972355,69.056092182802,152.02171171935305,478.1144277038308,109.55980668657794,104.39595064556845,41.25985652912256,35.18411976126758,96.34723401637422,74.78170918595762,107.68837519184412,121.40875931592156,454.56281096608933,107.41790580539954,89.79248563787786,113.97743678152028,68.87654625847145,110.23661788737786,233.65347509230867,106.23424131704364,91.82577272834043,125.54786919128696,102.2588358154023,91.3546038905081,220.47502786535546,103.4079471054475,107.39380421803111,42.725543239853195,166.57884606696715,78.65229291301394,271.79208540102354,115.82263048712207,105.65361715960076,38.6771151030796,265.7512071606008,43.584413811906224,52.56941148487905,48.36087177535381,341.48302591923675,181.16619523242562,113.71465331762317,106.9714365830866,112.97338426736214,66.68401462619717,45.93412425620117,201.40339409401193,37.38689994835179,66.80003112584778,52.199512885008986,260.59569880068943,75.76569419406052,62.630845842773574,167.52992269300253,258.2365365660938,40.76501583507097,53.4044898791318,84.84834946790863,58.00657881993646,98.66047597885535,100.0288372616323,178.58408164723028,91.21830150927522,203.2778520470574,80.42616270625439,69.72839989545614,691.1114288586124,111.29058883977466,248.6104299999214,60.44733107484612,812.2967062730181,123.61704489614357,245.4920860933783,65.33166965779019,141.07893585069817,50.00467529366257,47.31344582517746,152.5775448986162,100.92266342701673,276.4128338031454,121.82836623665348,110.30713614721766,96.2815052728468,296.51869314426824,75.33109359027817,75.02697419654866,265.8725402362433,84.26484133187407,311.42901354649274,97.2148932679121,110.08235421300304,45.53673121985843,105.32920587598359,114.18428182939543,62.48673521634035,370.2091996446062,46.99092247170527,173.20044178705882,61.701439892677286,210.59145159825812,1022.4724635169994,36.197778984591,54.673312185809124,68.06054038873637,37.93117523265334,61.856095740536674,100.71513233187424,71.60270976138459,104.28968154923565,55.564233133697954,259.9533664685547,75.28474860062005,146.8725471650418,83.261008820492,91.51525925348041,130.72085956111982,152.93962210648135,195.41039623008166,101.58282290889387,182.50761737953934,89.15769328312109,37.707752799596896,55.29683573285109,27.338130639631498,61.26006528041994,121.61588829318747,1415.9365490301957,149.643130291564,223.56636789722933,212.3036108693058,406.4056249815281,423.51774512743185,76.49393407673428,330.1425931971589,228.61927860917768,55.313278684106585,125.13307001248386,119.87047111427903,232.4905746600396,79.87771548295329,381.2244495305381,59.603180878738534,94.82051922211761,121.38038654647326,50.910785730781534,357.86488838189837,58.93684315930193,107.99516554456454,107.57834549393364,84.01779359268946,85.30365660170506,63.18187277071388,62.23518118340644,63.207619005975474,61.03975039019383,156.7698044426805,36.143128823920456,50.071170465700966,68.3368640262297,77.20354182777747,94.80606761495486,103.92027289054806,61.03778309927799,273.2899002689603,103.34036027152948,107.34613920530744,56.252845974928405,98.01701238257341,61.76737757021038,106.34563952847002,130.00317038670178,103.57030741431787,112.35974834076188,95.71976790921923,42.89652279860438,77.0309207281327,65.38580800281021,92.6226396095598,120.83648113605527,46.388936939847,71.99459604365289,37.60765897742829,100.49710976438176,109.92945876916929,126.04588444440641,144.4224152445413,154.83535065862333,160.09270414374282,57.18875563605288,235.73183681354683,135.63912459324973,102.81157197188071,221.68500040341016,97.02955849984978,96.73559591577431,76.61716226509209,403.48729341494226,58.81881479128405,92.48076707754323,191.97142655313266,79.06522003953741,249.85329932464242,44.67904993987833,91.06547844039635,63.64704795385124,65.30456232684124,56.457310185218475,146.36987872656564,87.97072802439394,48.73457669195761,39.708038963395936,145.92807189480018,36.90646932428563,81.16004970415567,89.3686225534304,70.86642829906182,52.42986775430924,128.0501875845792,118.87565007421645,131.48983508485097,130.33932282510472,104.35424976808439,102.81240932665065,110.89252478019166,208.82985644480368,118.36123765771582,101.48044062770222,88.66655631710603,1037.3440475299951,56.14373363534886,149.31875510193044,100.61644576089192,105.28672098009996,41.67938527947878,73.81282733320899,133.69220764238148,200.5441294577765,188.3503782488115,115.5781445419415,91.84930736536559,107.317258210678,75.39674817935354,44.818442151839044,67.63929061135475,36.26200595649717,90.65968315302868,49.065971754305444,92.45435590020809,58.230628508627774,157.1986237161358,68.80354609004634,160.98240462054744,35.66183532500233,52.50124346931919,229.3786167047235,283.21943788009827,51.743326891909255,158.55085508978954,117.96653919667534,62.83980562508111,86.48089276464673,55.84507042462038,67.48035436859443,64.7788181184575,110.48468234945945,39.98740807910449,101.97151898157213,93.6579674529104,79.9429003320741,95.54790895986565,52.858214309593514,134.32859641443355,104.13112637150789,137.1464252417543,88.13691518600179,215.16165206085248,82.52130582414472,101.07821644958881,183.3618287806758,94.8005879356859,82.50602673184571,123.10587010766424,186.5292811607408,292.058002523319,222.2077845061566,47.67537472646336,31.090550737065147,58.498975926765524,50.52343094136188,70.40913594844238,50.92558931308981,80.6786521786007,125.90356188593381,168.25714000263818,162.52424721265402,66.97053738368876,351.4477169740429,83.30279712118961,37.92775479407617,189.64995381186947,114.24525802273149,49.31381888933963,133.59633067863376,56.018717731099194,101.10278658331559,256.1508823105148,129.3910896880157,45.60019062708469,150.65605104722442,60.29975965343276,164.78040816399658,170.54672841131733,61.154318033656494,39.68972833910131,72.07759134915266,121.98422556163976,167.21559439179015,52.59702406642536,376.5395702083664,47.2351175596143,68.72433671096697,189.4663008637182,92.78266052522511,78.63704375900805,222.92510718418433,80.53253845504229,108.81910578861587,178.71126026037766,175.02368972232816,78.90363081483935,65.12862012685514,86.43657848341202,109.74251028398194,32.81408726008023,90.92168524882788,58.9003201722599,56.87264610866564,102.05464765033977,72.4451854520006,81.51831523694582,145.053284096333,93.0287492609049,73.11296018625823,114.95255364278245,34.288405209362956,217.18391281608785,86.47984357589195,120.727652016002,153.1907990435266,66.21228329092156,84.63691735862736,163.34389308734387,160.41190636159115,66.86378621780901,180.75605916395176,155.42869494799697,98.77600152253225,88.04974637748083,92.04050563124176,60.52096790996215,117.2003129308948,163.63015190792999,116.09496073117111,35.45642737839328,135.01498542324072,246.6128468318965,67.2878406272912,89.87985801441961,115.95110749069875,91.31840365179187,211.54626641295508,145.70679794011403,98.4154930127987,287.11943447770267,127.43635398067772,55.182317424809334,92.91667995720387,241.66551064565883,151.03107399266847,44.3674312769154,114.04419812240178,82.50887180540171,638.5818666695134,59.80379277025676,93.47595804581694,84.52587643886974,147.76900861655895,86.31686644055651,52.11083076396135,44.21736719649428,98.51963901155786,297.37546556007965,59.87389386709217,58.74329976854169,74.54180566476029,561.9219925976909,193.48778858665992,102.42977528253995,60.75679828624411,44.18496144517402,69.14335924994971,343.7954573461818,233.62370919732268,83.26712907463657,55.49509187460331,56.59770837700651,60.776588015524865,84.55327233689513,179.16515953729248,180.47767935426484,182.3085468590848,98.03800238088832,118.93867589219066,87.34336669270036,57.234811826446304,56.380020841194224,148.04845388493237,148.53822502472968,236.2098393554239,51.72090663474809,119.08002823903009,74.45559696080878,70.49255739239501,143.60902181942254,47.742215228300594,75.68205279097972,53.10796771279371,255.22081893470732,141.76229385173988,282.9647790352302,98.61453172942902,129.01068694113667,244.04325030471762,107.34220156803882,324.8781145919026,60.035372477190016,60.41598908166098,206.44358954610556,164.59890689348055,87.99917855408398,113.49608778042432,66.8305087117045,31.557158344548565,116.01908879030378,82.35168229820938,60.23457313613242,216.3673044098219,71.1744923707754,160.60058610810202,81.63327524966027,49.99570910348492,129.61935715207537,82.45205017547956,70.30093640321788,127.73121994818689,119.24630255325391,132.14786381285518,46.79364815113526,256.3619671055928,106.7407711450189,811.3178830445015,351.60674828400084,64.28466459002748,96.60841974827224,53.58703292357326,57.96959008281683,132.86533168212458,132.55381851330603,191.40953713622707,192.17554190834528,79.95431918791961,139.20175547622702,308.3096963354244,113.68937295367722,62.908976266937856,61.72931683178116,39.90862555891022,56.57162017508549,102.65325963517722,39.543022542973034,71.60897711809585,69.37202883454643,66.48576852319158,235.2202233136656,56.1558800153669,135.90072625000101,110.98630136341423,55.370405300956335,123.79907953251703,131.2457085612029,79.75273373468897,69.58174834867944,118.8683910086244,52.04268691192779,69.64553845004218,194.60061747827524,89.13596667804094,100.75663412917312,60.32003598824899,258.658184960637,190.13937392267488,106.85415715421159,84.3233661509983,77.04569065537567,71.85882136652089,88.56159571079056,57.98602159658143,38.291386716612955,476.02908749173184,84.83116022031041,55.961794834851084,195.59478503603822,35.23267064469717,174.2535563865806,75.93348566274858,37.161282138876906,115.24706691546132,92.7055369442729,321.7565702780693,88.72528733743354,137.23624734135117,108.83199025506694,55.11840234385887,88.0538050562179,433.5413917107349,70.33973420253419,127.15112764776961,118.46274193287994,104.24734999151926,67.06026169129356,190.40527684285905,353.05756807210827,102.64249522465818,99.91067668642785,93.98542218325451,275.6133217306213,127.8779080925521,325.373785826849,98.81362166159421,106.7637405302984,102.38017943167057,224.43733317154764,87.78089073082546,304.18469143607444,82.71393773193664,101.64817943000635,107.89538144021809,166.44599322401655,102.81222819747909,100.84644155119864,44.05899407964594,35.236032476073134,211.15382852051962,100.61680517809388,67.06084816213689,91.87667313540959,51.780974494314336,50.76685066800799,116.17492487445911,66.56150063656847,73.52431292688696,79.10500335382322,48.4547522064513,150.17919468104319,112.00646858325717,91.15339071329778,727.8940199241212,54.94608575173052,81.3181080597112,116.90212134569713,239.33136506621105,234.577107850661,107.61589651539532,32.86933899964619,64.67032607523664,135.39553981262503,69.33775372064811,48.347825820246186,61.909045293394335,149.3274043850405,216.84121106403003,76.96654571245136,64.23227421818233,438.89468409790885,84.33908021815876,80.34100130744592,115.97854570473997,140.0558463707251,93.51100955636917,41.80644629157372,123.30995711894622,103.84725539678796,117.34631190197958,99.99623282772944,106.73526823567089,131.4596930402893,172.84055602377788,39.80474826844322,65.30574379193379,144.14776723899396,79.5137227704067,251.65656295816106,87.48643514084891,125.34737140480439,65.86569508334284,86.68432254880746,64.043699313929,99.23380710541103,96.93722200493487,53.53520307993072,55.62997148827993,42.111333747673704,95.90213307806945,99.3368429732178,391.83605591977164,108.15751150104263,68.59318490378614,262.65567689221973,136.02196201954658,235.2493558295307,116.04036138215922,101.91606523409615,68.47011036850375,113.18142808869237,43.13527809786509,106.14407831292601,318.8789563586788,190.65358159689467,103.99751815360766,56.2072783073653,105.24708158224423,23.29784413324359,199.58454233039183,107.91976576279228,61.426991180787866,28.55336494991577,87.39311666058445,165.7684786673709,103.21106336702162,149.54832716929852,114.18790514354484,64.26277742943358,99.28994264241287,147.58821999864546,303.80443765662613,228.58777892511566,73.67219139939431,500.5979493880049,50.831590648493815,187.40071503400713,44.255038322592775,387.1544865228648,185.351152125418,38.84413333718433,76.91046057381024,151.52439789388,133.5610980392721,100.26396288118471,22.67410039724223,80.25508177777101,53.87474102922307,290.3618331206064,117.83809466369253,78.98601918028046,78.46220039585755,68.47756602654665,63.00080687656432,99.80151637432664,63.60853596491259,53.38569402721312,170.88229296805602,68.83090337925452,118.59254264388031,56.93065709041298,91.0101338486676,46.90097835559476,99.64403338531098,79.27062158426835,166.60515359857698,71.34513121328978,487.2381412207345,217.1040205004252,161.8467509681014,52.425871488402684,64.70714378244341,59.56685662098172,174.84048174842263,343.9222530617404,73.7189906775329,50.91071582083073,103.26349621191632,125.87092092171162,93.82500814068385,88.34698694794757,112.93375341671852,196.9811928920995,52.957051404760875,79.72608521300641,128.27793107599322,108.31250996387759,81.65513742502715,53.59312024202736,43.44283325477188,93.40969830861515,167.2196836578321,107.36309816561027,61.64970543331466,494.8358448244706,362.70622717862693,95.50667544877028,47.605215265728425,92.99337665860781,146.75026469410423,34.111283103771086,72.99804646972036,75.47499623911233,109.2852137522911,41.16984681196247,112.63166274259183,145.16838612926196,128.47876756934136,77.00293799012236,53.15619912272798,235.95505797326012,58.388556131669105,72.02689802830449,43.47321941181799,70.51905047824373,56.24044250991455,51.92766170127807,201.89343758269106,88.40710801943477,267.1413344187996,123.1030913261474,70.2213385504719,377.40816118521207,57.50016328209184,118.00464466955029,117.86741934267064,132.8723908942985,98.60374870750672,73.04709832222669,191.42035616724246,79.61546634357012,187.48152033830075,126.86898066131667,68.37169488345728,269.328052262397,56.38466776230825,60.63387557016978,110.05352698819578,165.32585883041907,206.99086951096444,207.1348363958101,133.24570616504738,151.708283137166,71.55578558609896,122.1649358717208,46.583451496775545,81.87002197321641,75.93206985584523,268.6007074691683,124.70979071167305,157.87162735783394,89.86192845014564,153.54121051858155,167.3245269331318,78.84102595613295,358.68927573041225,57.17413530483847,160.51309833285796,71.65522452894326,126.37354742320863,298.756246422002,51.28161614782253,45.50606622316644,69.07258443583355,34.285025807266656,75.94243015977166,72.39409723923397,125.78493236083204,63.96791279801046,70.56417833276971,63.451227722950065,40.90872406704069,185.71179925064064,198.52892983493507,222.95827721902782,109.75442610339196,59.258019221915646,76.89312623119008,130.16178629018034,141.02699534866352,64.1655481223148,53.6858265228002,36.15777628053809,52.994611046905185,46.2660002636282,103.58285171362813,74.45695500562988,69.49325490857477,215.50230595230872,74.75647826648074,143.73984763558,245.2505945842744,235.9516610616054,147.62820500409802,194.18684700509914,173.94700745608841,75.77716976990219,98.95662904893204,222.03584597216357,98.24773186251713,254.96816041531878,33.610203160146035,84.37930734444484,130.56936541041563,41.01046921842951,131.89152670572025,110.06936732303687,289.7440467478479,270.33802615951066,60.53722464314249,54.65772994255419,74.42726124432421,114.85715937243165,127.62021407799352,127.3717748525658,69.50430133085558,302.4576478515177,117.48393928778243,148.61956635872943,133.34893548997383,72.91605036191346,62.134849233680676,108.90535535649039,98.66782117981963,99.33370753059178,48.539524568312096,163.52787937088428,61.834326075690974,107.44103689029536,265.8653655654767,199.85975876883015,76.61756397633594,77.99060699050501,131.0628687058518,78.13473507465066,251.43155211223922,146.5112609490668,165.2768834337789,104.08169644082025,118.50542842984596,311.9614207904402,83.74293625026459,80.35582819327182,362.4717573793936,122.52978378542706,144.32178458395896,247.24480851109908,77.29840281708786,133.92272363098564,224.97679286033497,52.202523211126,228.10662832457533,57.00156027754869,119.60766092251669,58.85750982873423,60.22054510413842,133.05024966500923,181.71599189656055,127.23152299347177,186.227071961229,71.01622257734259,94.33072181076744,64.24678290013433,198.64064044449918,74.91343313319499,40.09374393438513,70.86916287916748,62.517685255529265,63.30892246992755,69.55548990038788,249.42057430515874,39.477486668543484,148.18351074601765,98.19385020543444,156.2149196792646,134.7409660813346,225.9030729941931,54.10661140853094,78.80053198642258,105.63265310447078,51.9134356379151,112.32677859419664,100.65541974577022,135.38113816862298,56.27019865664776,66.82523800592816,67.04173265298577,166.90698756206257,42.13455374931822,75.04906254146988,216.41790785573173,111.5186888417191,71.58027322651068,55.039111197698034,163.22231623238378,82.76184582365184,99.37961539493675,183.6400508701642,103.03726913025426,247.65198830835322,63.333590924205936,93.93062798811061,56.53044660922295,53.78142597099674,336.2225691582613,122.21300767827285,124.61450910894615,72.13345910227625,186.5826213491586,53.28597393077996,51.275438225419975,83.67890731385809,268.02648888073026,94.70392074798588,90.54548989896702,86.27399147529412,134.77703161879722,69.92759611652177,135.861931169809,81.30807986876074,98.60598322194083,296.34652891286134,516.9315227505793],"multiples_of_cash":[14.133833817344122,3.3177933665496564,4.797466396736484,14.423213234380617,6.549028985063651,11.501470699816606,4.8600225769136784,12.23121470978921,22.800366668834187,6.4914406491499,5.354858301644619,4.497315661937513,5.429243505590872,2.6425688130883485,18.43126236279043,7.55742261625711,19.713078906945334,14.997607956986839,9.241994327623665,12.14661499897374,6.5134750891428554,10.55118813151032,4.366240611079013,2.9231838546590074,6.842987632455591,5.1771895372619,2.210419730631996,3.202524225055175,6.854461056563029,22.022356864330117,3.2892084479702213,3.651270179356113,2.8190794670456802,3.4651076569041237,3.4473366034126225,3.3314299930552864,4.9622356210402705,14.100843904613056,6.970399925555012,9.3447054014141,9.587155086945018,6.4887189292355245,8.223342270981886,3.4845804223709136,5.695213187206564,5.175263567978514,4.792900352053093,5.215000175841124,21.15098672474257,2.93789426828877,4.6366609773690195,4.5444009270381365,3.4919202691357305,1.975349306625318,4.789232105389977,3.4303983941062866,6.485655777923112,12.068933695996957,23.750440484058558,4.913394978985335,4.335509417917787,2.658613565645407,15.32899599897096,2.483836853324136,18.286492698629885,7.595493161088709,32.589258358706466,17.639572617942655,2.631690734917572,6.685414229649438,4.191911155601389,10.381945316300056,3.1918753486952536,7.44500208691873,5.008903323751582,8.789010505519599,4.336184079912649,5.541604690964496,25.03444753408219,5.137766972860442,1.8049393906810505,4.753686334358224,1.51867651841895,4.327843399945159,9.666587911215132,5.449800981340011,2.5792140746453134,8.236396163839117,7.112185773333842,16.946438118059795,16.455129001461433,5.63998579458011,19.990792885201426,5.993268556630243,2.5683738476143994,5.57946230145134,6.5537853186391155,6.242613401792374,16.41566965470621,54.91244303311181,5.490124448854404,6.012597328557748,3.5391709924927333,6.395952846310317,2.8563490872623274,5.2512921296902935,16.110543605147086,12.347015929193219,6.1356807803160125,2.1722376421772385,15.188130435513566,23.994123777673384,5.745430780716694,3.2910738238640476,23.497394966789294,7.368192933755315,3.7913762248908975,7.149758939554532,7.219613223639355,13.13358435727096,8.086452968895296,3.2283757268928377,5.534823894818412,1.32258111875477,2.6214689147830277,8.583222548235796,18.986316426635007,15.648898066510888,1.6629777159788082,3.2961245259614484,6.219783589056671,6.850011518311833,10.286691537072322,2.325100668694211,8.875797575690617,51.358167852714644,18.872256828807622,10.878277890860868,4.446464515199328,4.926576485682553,11.214693225796278,4.047304955455209,10.476318308393882,5.786243532382017,9.827374555498446,9.663471193944327,30.359955946053354,3.88650854021217,1.9772864190865411,5.214032471770526,7.6338390671953364,3.966469589563049,3.2270515149603805,4.680559144838094,8.241707017101126,7.863830490308411,3.9593326295624345,15.030283223039442,5.26481639396546,5.866015582993713,3.405805768013442,11.190215515610547,11.964359651212256,19.350595634042634,4.156614069811755,19.527483132097498,2.9622584826627376,10.63558993552781,7.365954478075752,2.6686394237749047,16.38354834576771,27.15372636285985,2.007060162771163,5.5669833935643664,5.193862680521207,7.800887226696722,4.90158540237439,3.175678225448285,2.0477968300158182,22.8108608776532,2.8908571120013598,14.071512603261363,2.944384999688611,4.054184719465124,3.2697691034418015,6.063321185115485,10.420090781174103,3.584022613417829,6.792854529072353,12.947964352872823,11.147455489850545,3.665419787343259,5.445556591696981,12.179253134753358,5.300721940189653,1.957885942664404,4.89728871559352,9.108690552397064,3.2751365447724643,6.158481332631663,17.789244899846345,2.491568542765776,2.3651694534776544,6.047084440949911,5.42324774954571,10.584749726358123,9.327653301503608,2.473312945945932,10.402200498710732,11.157533246761755,5.520105130873837,7.215106227888025,18.381778737609622,21.157949092927808,23.94767048822032,2.634611822597024,12.696363473154161,12.413724761703026,37.76858425395685,5.485330986499016,10.62681804366622,10.923389295777005,16.714190233439783,16.180164992229,2.8132252223441734,2.162702408480744,2.891457419042743,11.783123460423285,6.629231553461475,9.39027122507553,11.328580275609477,6.778191493291609,20.356664137521257,4.692502815414727,2.6202711775480796,3.779888093752119,5.005366053726355,3.5592461376706357,6.914137725628838,8.512499881836836,19.445593374013384,10.926345475783368,3.5898926767478465,8.726665212599743,9.384835931166117,8.898954565202533,3.110260375874821,9.332850002544516,3.244227208218475,19.141612247287576,7.523635395009987,13.77407967485129,12.820466318392617,2.0686085324353614,5.1929125726034915,4.374011995117088,7.05948000273097,38.737114279092275,5.101185768212699,12.322781733195747,2.171404573693614,2.1142770265445052,5.514237057567471,9.11700956792526,10.646427339497011,2.3210763095913407,11.417979726132343,2.3902968210784885,7.721058861419634,3.426589287857944,5.412791406210391,13.28213322386606,5.724248475016031,4.056801182642245,4.692829799645835,5.856394411699632,12.535440411455362,8.375415291376582,5.540509153644892,10.939818605021843,2.8078512330948295,5.233018199741584,9.342432594930441,9.117188879287506,2.8512707015906376,1.7803388457725764,4.945969808660874,7.02862572350172,7.3752638486990945,2.7828379417365725,2.408513593360027,13.006315132658457,2.6096156398222417,7.607263675649916,10.98095420666953,3.3477182755530603,7.683683374913177,7.154506094031519,42.33607445883145,5.243564483902245,4.038088888628492,11.621422688651212,10.45447040122884,1.845950749056711,10.682814111841948,6.160473230795773,9.713931025881553,1.369146037782623,2.2746257313354374,4.183855909011018,5.51667973094539,2.1078544384237574,11.841831027585169,7.76715250512491,5.792316417049307,13.56362140730968,5.4762938561810515,5.667558531190244,1.1218704198536535,2.0414348450716346,4.088445113672903,7.641294525406426,10.254143709788401,4.239239643617526,7.744901165212453,4.678334435411255,5.672147825872918,4.856317413189398,3.0579729088353798,2.529576425058897,5.393754236191305,3.7497064402490135,7.747453261204389,3.723878878058129,14.108302865961587,20.49266142036279,6.271506811498467,15.604084563886376,8.612006011889118,6.619143386064365,10.498079448125024,18.036484260748512,2.6242989455826993,3.1362661514097225,3.279258514171606,3.201069151686762,5.263673317262392,2.3401642202475714,13.787441132590324,3.2119587627100468,2.96479416232676,10.405360861782464,4.920638493308768,8.588239469228217,8.249104824200577,7.814796552439193,4.763838449774204,13.89501085472423,1.667158465703475,24.803376961488198,1.794491896887487,2.217883528494251,8.527971675879085,25.981131162169813,1.3181376891100123,3.1894828674108577,9.075108454942928,2.1675160824134996,11.04104246544651,4.649523545998258,2.1358787431159443,4.117640494229135,8.377693012959297,8.639765299643019,3.8190787180128423,1.3205784935557587,5.973212527018914,6.5248871986324275,9.17258890071452,5.842563124241806,7.459315884400132,14.325351575591316,6.3228170612831045,2.5077092837388792,12.799406639806726,11.044393033026013,6.254377148005735,23.690961534999843,5.854662052226651,6.064807996864863,11.705353478355057,21.743642386924826,36.9386345961267,7.131483420696726,3.838085675316434,7.453478632590804,8.83863436020889,1.2114431936466517,2.98582240254344,1.816123545670575,2.4823940597313117,51.60199195976737,7.022987538757829,7.868115790055328,7.351152335122456,6.0705771441732725,8.668765843553711,5.575682772248606,14.718463894866801,10.217112180167687,6.875181019689041,5.688627921651506,1.6193739699825114,4.242003439587828,9.311988289207726,3.5601230120805325,7.509311023267753,7.8710149561349425,3.7012098716141524,9.116356196691216,11.8461700463024,9.56943904071822,9.345297146265542,5.5653871696193855,4.819279757401686,9.617724737534877,3.4191335795113096,6.085327464740082,7.796902719352359,6.679035287712586,8.79642702310343,7.57011877979739,4.958160842660215,5.543673005520033,8.677831634051776,3.1944171881034644,2.5729661765918226,3.7872671290813766,3.504532094170458,3.7201404543268537,7.759808571317506,33.77373434432673,9.484437159322724,4.524400778705684,5.961560828380307,2.5997652952288686,12.912373522387833,8.236862464574244,24.505826895802947,6.289606085670284,9.001812880692105,7.18791876354319,1.8702073293668748,3.415684593909283,7.325153236370472,2.6726846600284593,3.037116119834578,7.858212950388006,7.08038276886741,11.58290772400859,4.415322341294774,22.555392238415624,5.589821469167178,5.763509099709001,7.547089338871321,12.856037940634085,5.487523800336905,8.149237483770525,2.6423025208640687,4.0142971259283975,3.4325109400277953,5.626538876735942,13.980507489566648,4.945620612586503,3.9552688469771335,5.189586616939293,2.8328347637442675,11.976794548639255,42.90640270607761,14.445081597945666,11.758077197649834,4.654852590419913,8.264251116341264,9.34045087648233,4.640601321254833,7.661002437406744,5.557831161006134,8.075606772423908,4.8387641437541165,2.9988339802563266,1.2532806678268325,5.9528426334890145,9.790671165585977,3.3535152650360844,18.659497700870592,3.8807620221773154,2.896523246658472,1.4432925897795168,23.005363336048326,7.811855530892632,8.050538151071734,7.613446770717656,4.261267416472593,4.597251728150997,8.074201738769275,7.900885940231128,15.104985969708908,5.761450923595092,2.4568145810166415,2.774029042704761,22.29336467215353,5.261797611062667,9.520725283876944,6.927791034035566,4.2790624490209135,8.212471078663132,7.673089982029612,9.926681268085998,16.574276676675094,4.819353727323495,10.572318248901334,5.397690438959665,4.5632635352891215,23.572960174925697,3.5292452650868067,6.29843338308487,2.677573694427759,4.217821376901136,4.163569976173606,3.4029521984667044,5.705178399659311,12.22083024356941,5.5362498793579995,2.4377700688988577,6.518809768692127,10.275078039926317,17.63102362446856,8.87635947000539,3.4261940157902866,8.758919421020634,3.9402153536822415,24.676653663544815,12.88309938260026,4.010463735576114,4.826889940166738,8.0786406423624,2.874936296366858,3.852631049134811,8.837253100784306,2.8549458104166225,8.59925329415463,10.096741827591876,7.924450378471917,4.517544229123122,11.888964061922277,5.723309639356778,10.197018041667889,7.86965291932837,5.986287004856399,6.476837019936758,3.600481392841173,5.400357870361815,9.314583199415724,21.8462776328475,7.20300481572076,9.386094631079821,6.699487730886676,3.6304876472461283,37.75350946964186,4.103720179251954,4.858400598314408,6.032203986775784,7.873035829643154,8.892835489481287,18.937331039763738,5.566549582077698,5.377338352586716,10.53173089320211,8.881372278085115,11.132634962223051,3.789131324523375,3.7478913501639903,2.9255825886365106,3.3841378303508027,42.33281487295373,4.930016090598503,11.574305855041354,8.035146916515053,7.313567193630913,3.885020793376397,10.071718454294675,9.395804541470916,3.2437983181650436,29.561836244340405,3.7285014487237884,34.07293484910291,12.72272781539574,2.2050282975147497,2.981801104233258,5.5188966652759985,12.732656560627804,4.841098300117036,33.9902295590229,35.00560710125642,2.9333537121170092,2.3958297234071644,5.893476227058,5.646593321937241,7.986116240058678,12.775441212995126,1.4514261133276372,3.5513059813069385,3.065031402022797,3.683214450506493,6.498700292781436,6.543720906404247,18.464873295178307,7.1227761758196095,11.866122629353619,2.762968253108738,14.225907095058973,5.801175841490415,9.11931549697416,4.183563287352793,8.557170223959444,6.1151733463801365,10.293500094999763,24.682415465328713,14.861686757053416,10.931839438223617,7.177256187761965,6.384141315245905,2.777356221464826,11.682788875078723,2.8792053888022027,8.607692774834224,7.589412873351415,35.14344811829317,5.466411077725437,2.9493776542250676,14.758776233447948,5.902891486966985,7.407550698646252,2.5933315566334336,9.56431195415214,3.562963264599835,9.655980890480048,3.1754942925417255,5.577393769346791,2.4654853550007014,8.79359904982841,8.242150467918915,3.3841618270157645,2.4404461581586303,4.674434032518831,4.725142533583532,6.649655183830475,9.181827971950819,10.147053866374664,5.635646293263822,10.232440014789928,8.626140758485942,13.553754781278457,15.978922202115987,2.1781336721909024,12.460516155531566,5.863608427288093,4.7202713601761,5.555279462014086,2.5574426582208205,2.6441689415503937,13.02853142655765,6.082121617013287,1.404684076891671,2.8570256853814,3.6861177171558097,13.858328451438284,6.4973897664108815,2.1515241626087764,11.035513675344292,3.6720392999156735,9.656928283113784,2.475106549863496,6.701073843386683,2.59707824314729,1.9669387025753537,7.414491874875609,11.195411393199132,1.940243792374622,3.5774498049183725,1.9682233478587954,5.937782858488609,27.383828582693567,9.14066537637532,10.004586998543878,3.683596467633242,3.4745271877524346,5.993859662404765,7.983742182668669,3.9156383736957046,2.7453809303233925,8.831426478690226,6.980491998206303,10.929116396886682,4.767176639345226,3.819799313611667,10.718079933690078,4.774508142258901,7.552587624990431,14.178396181080817,6.706845503720416,2.961637537614115,3.494876655841782,2.3561287775577497,5.858323687624689,16.16312736914719,5.486095538670849,3.33526765895595,8.900416113795554,11.107888123988324,5.409052321623369,5.487535809472033,1.5076144341292896,5.1686737375557215,8.891055251462612,1.6135139068176987,10.847356750784328,11.362042679350017,12.41330251112348,6.759714714047219,3.69213475654563,5.943033730571757,3.3001355264761454,58.20692722973536,2.7154459875578287,3.573987596740157,28.30639553651925,3.917202121579753,1.5641958688233684,3.5554215918912475,8.615146529430788,3.4696113695720077,2.724063606663721,2.2823535183912034,5.04828255082749,4.833722418635851,7.67363809031749,3.0563271234666747,2.6115149972548886,19.666495033456513,3.1073840177089824,1.682981815752787,7.817378002200239,8.400854935961341,5.79010772053591,10.852266292786945,3.656892144873446,7.980242852729008,2.841276646568876,8.983940877923548,2.5131532342619316,2.3497487157243335,2.25251591574791,8.822040760514323,6.411877014021823,5.733014414572901,8.931091398443431,10.226470411759038,6.663016563775047,2.1728100752359323,3.252397233253538,3.3951946471513095,22.03335298769372,2.672355073783348,4.481231939853195,11.334492050225881,3.5454182614169865,13.204332365139766,5.563667803755566,4.632283583177825,2.587766930407044,4.346759726592032,3.867652289758536,4.046481056401641,5.028256040684407,7.954014425667657,4.032929375306585,10.85788924019885,2.8545058193134194,11.315580424545354,9.078575115705847,4.582638613597834,4.739110720054175,4.8633254428217745,7.6810714440279275,2.184698546007494,2.49995860650189,4.121708945245848,3.3414679322377907,13.839356368583928,7.253352983648454,4.981379871938306,4.925757211256069,15.84595269569039,16.538097012049967,3.7479146525606892,7.741790968309882,7.535969934518049,2.1734767782529283,6.495803211212904,3.035159242636661,9.482132313227467,29.74962756447595,4.196564031526807,10.212584772596736,7.953730883596768,3.5139208590772877,7.543890871989822,3.7128080064479345,24.06757141214004,9.469089036570631,6.049710290361687,9.744459610139057,8.117233154253237,3.59912413700468,8.039718733989393,3.4319946082907027,8.714696726963695,9.35082768198461,9.121311862760953,12.14517933616864,24.579272914727813,5.443259593323184,2.75527777262796,11.742823608050184,5.252273992545908,8.187238681875632,9.029386997306574,10.010649442116112,6.60554331353425,13.446181678861402,7.180712090102447,2.358482351662258,3.3632197723839234,2.732634144257503,7.713456124280648,2.2740404717346347,3.151086261296598,6.1031039539511704,19.317067501060706,6.140886659466457,7.850830019948572,3.5256538064104137,9.565761966594014,4.017572630519687,26.869873349154258,1.852042604599348,1.8906368455741516,7.028614257183015,8.960854384221552,5.755195574351489,8.829664320192487,5.7729809576317885,31.29442552750912,2.893132932683228,6.25649200348772,13.953635312342035,9.171849376870304,6.829991703233506,19.69869639955432,3.1965142838059544,2.2180440404906783,9.935755448085798,3.9111640732791333,10.890428402288588,2.260210759070019,21.92191763738968,4.144667405920249,4.503754300558274,4.7877556599507916,3.3318509404890837,8.013045927812867,2.4667846319953557,3.0466454578452353,16.295158416736122,1.8854902620369736,9.871990638137852,5.905029426961541,7.165547426065121,5.282214725289546,9.54372792165467,6.278626777684043,6.880121901139016,12.934899680794027,12.312715278286568,3.453136831242227,13.922297257425972,2.756832279360765,5.943189612892011,3.8530426872663623,3.247580594972592,7.981662477998326,3.5925213477144258,15.364698972573626,30.43619468398303,6.4249438520465185,6.6888161243482065,16.597955562208902,22.84931903734578,10.575773811020557,8.43355454249099,1.4888548032844588,6.893291205295699,18.679077604283716,8.177363704841317,73.01342005209715,2.019786185715846,6.6891381160547905,1.5174814290292518,4.901843250399076,1.4338165914048615,8.07892475036751,3.0330348606182005,4.447723390547144,7.810290054860564,2.346856685113978,3.1397586529729518,7.950123844220554,3.857526008415979,3.9622415720968,4.383355670766726,3.469609733875688,5.7512173948320875,5.258396559444252,4.340602770902472,8.453155638154936,3.319270490527227,10.005520290737342,2.9781148852933077,3.755689194368856,3.9088610532101358,3.695316121096875,6.0086725600818705,5.020165057447749,7.461659655617787,12.564849479685744,9.777685044264016,2.588337356761607,2.873409610652118,12.246242858515243,28.688584988685164,2.9169810840990964,2.887460467859265,4.121132466255424,4.133769701893364,9.470020767868533,10.614180351931767,24.03275283818362,4.769043285407427,4.778819786489896,6.075081325915572,3.7438561155286667,15.013283906515092,11.056017152140203,3.7976727434663236,8.52290462661397,6.820478335448819,11.842575704574884,7.744515127838725,6.775478755907467,7.634271368137559,8.890017171615858,7.375487901773637,6.3526024451690395,11.80592328270034,4.797020168080869,4.822526862774177,8.812106152857028,2.9714277843256487,5.5856016996403435,11.403448088594686,12.33712088376745,3.1119233763342624,13.026450309840623,8.533845846779922,4.682493912718396,3.0444354221767433,4.945083759775672,1.8557866323191932,1.8646268130566825,4.3586671664707755,5.112353979599403,7.650537412802641,4.359529562340314,6.716639404516122,2.661496404183664,4.688996564013339,6.827037288176522,4.518619766359816,14.926922545596684,5.973167432875355,13.516336451387085,1.4053463297925308,5.019101836341513,10.876010452972464,10.05252245168764,3.4531823430414765,9.58056092485638,2.6291557942857744,9.72629691901211,6.65916862128904,4.550209061645396,2.918135245391852,17.37922725305748,9.32903473752059,1.9654147208498338,9.415041409273993,26.572553067191485,4.390299300645189,1.7765116163404608,9.895963777271557,18.260964855485014,2.0869847604342295,5.266681204038163,2.7280562872306113,10.263353533227493,3.329099614081943,5.559920403169398,14.57457611473124,11.807843343378003,11.834305079093916,4.981557899387402,5.061921440055349,3.157185472523593,9.788674887671167,4.6093346735108485,2.8390943765609555,6.400608660438726,3.793137759016061,2.572379859316329,3.920738945629226,9.5657285121468,10.009554745028991,5.052791818323041,4.827367968406893,8.315229367054876,6.6577764065906235,5.073979501965732,3.4697212711673053,14.743555062936574,6.373345166883943,8.414034212024951,3.7723307454466326,8.441183513686488,2.7513098208794187,5.077444423751841,5.551741114907121,4.157307304561669,6.384860856831866,11.055549092764492,4.283495389164178,11.683108059679844,5.3125038671606495,6.152804985121407,16.678735660707606,4.492072775033689,10.832320184468884,5.646854834950193,4.092115113523442,3.2633626285260373,18.776680612452722,8.57592329516255,5.894447437095647,8.581618239559955,6.5431027572680724,6.098298200915411,8.33608158737762,2.9346315557358036,3.5955318729719545,7.403682725616169,8.86140048647317,13.258718837549099,3.935532980753834,3.2529578286028236,5.557810740203622,3.7510775894435073,4.833457909858361,15.000423031022201,7.438505858315949,5.350944358829545,1.7736693826580292,3.700970103936379,4.046333465865281,6.4150019405727035,11.108116849305455,15.92946394242755,10.921655865202213,8.101855412631334,4.562849773449108,2.8238633356115126,6.092611710837959,10.690975514704446,1.7215784250169621,9.262869425370383,3.9735599060379965,3.2346037134883203,1.3291761861560891,73.73195821959322,10.273567600070002,3.9966411422789028,4.920101630028181,2.9331698428186432,27.360412895159403,7.147923438840322,6.829181895580701,12.21152888982165,3.9178877931161673,8.602731949004331,6.053931716030413,3.3048756091674294,4.367678224745201,8.393115163071172,3.514404004331722,2.952268232931532,4.535559760819809,14.615777887996352,6.890699526221041,28.153980103854032,51.358977796414436,10.459011927512325,7.173289666884601,2.6534588932135836,1.5518422603660453,7.507311952791744,8.012613043333465,2.099454558787806,5.337653768457623,7.298347195981285,18.76893076404192,25.030927755703985,6.4087027219089,4.758179676326749,3.822264628045641,7.367828746968313,6.687000959979872,7.204649158663599,12.537774601552755,4.77480429522552,2.4328641958261397,4.215140747749944,7.4571925864684845,7.580576433678434,5.713531439955381,3.541732810638432,2.2643471999929408,3.407152422818712,8.311111538206264,21.402590320861165,9.703839581671462,54.99936798617443,4.308847317691637,4.232709322116785,2.794302914126188,4.777530013878409,9.350057091723222,13.232578332824819,16.944492707950758,8.223760208442052,6.246063023085531,5.166810240830272,5.488736869255532,3.67831307539085,4.413105172921824,7.175508797080202,9.423601760694385,13.583352997810282,2.6834774685436322,5.038123098861287,9.208457598155293,5.947974025832373,5.2063244209857,3.8215575499912933,8.773972793409419,9.041619351707908,4.216278202939197,10.165001451685214,13.617746293843284,6.919762128753243,3.071127983544934,3.309346500405867,2.9321077493457404,17.19041505932617,3.5429536749182033,9.44953429093806,22.51378901602546,2.673618737248878,2.23489765053076,17.367420454654788,5.113747604235122,9.537916070039172,1.9138197386665565,3.5837337480582665,2.2356136310884986,5.119877392833588,5.846365477862682,3.3053052736679702,8.441166617033703,9.989784077362174,7.038839028243229,9.347548879319074,7.07846579754137,1.8717020722097613,6.083625083930553,16.759242816308387,7.589153908921703,9.827191336282942,15.413674443934992,6.683773967036363,9.06201066582538,10.64716531274494,8.175608956363357,4.703603661291609,2.0159710613036697,3.7630655614468056,6.645228962164258,7.191537679705265,16.1567939433817,4.7978798306564086,10.458682708247967,6.222420679234898,6.180988615335114,4.848483559267107,3.5320296575076875,10.548648164243641,4.447817722037003,5.208433639014453,7.7295518361674285,13.734964768423161,11.734067207269655,2.7183711180229313,10.955887183834884,3.7997991418362456,5.313353422835921,9.072989564486651,3.2647643773899127,21.532217281965835,4.747424894582047,8.13283356496788,15.495279477111161,4.864976141266952,2.9575000773592732,14.806399248171372,7.505843902970479,7.445100913328387,3.04079205040224,2.4119554679804844,2.9841110889708786,16.681758987236453,4.647341339840765,21.35944579803322,32.58039053313032,4.5729053640980055,10.313352490036566,14.369271052385823,11.872937122503242,1.675456820768546,21.48013676880068,3.931449107945339,7.3945400942949435,10.000827437624476,6.044027818420839,3.4203059404026837,12.668835170678333,3.411584028314927,25.160433392388313,2.1164762187949138,5.662872492893632,6.778118037102984,3.7510405261510233,8.267707734212689,3.8461829423557337,26.13581709922987,4.630456816902233,5.747635386723082,10.519963752896212,3.058722962804739,5.303820163455695,6.710410622470024,8.459896701757701,8.600108726210282,5.647130719918422,6.041010308004402,11.370589234991138,2.655525544929429,13.12589099777068,3.2645099875755754,7.768433533724207,3.4251060418081973,4.551111083356858,5.072963135649864,28.57260317789726,8.012974976822727,4.673674898304571,5.700345087756585,6.398414124630545,4.6119180915866735,13.074491541106482,10.45642449083433,6.3601867261736755,5.647250769280528,6.035721922685723,2.010573947546688,9.265010614624407,3.0912533139741694,12.863282772704133,3.096926030959412,3.8846554705185627,9.303455257216845,6.923316024215093,8.073314337965618,2.682142123667433,8.222074422132051,2.356775171202921,4.307874279835732,11.027736327572947,7.807708105689365,9.805805915099429,5.5919633024187485,13.441849593924605,4.4015278287580175,9.502527894284283,6.477895270519126,1.983725674983865,5.877803990959956,2.2761928543822445,3.3569943910225803,7.153309360566603,3.3269355786038624,6.310652886003569,9.649909953971783,6.208908515626202,1.444394485710848,12.718805410849333,11.982808743137252,6.990099421971413,3.9989524791368405,5.506788338273686,3.9092007071795902,3.5959416715193773,4.333954303416485,2.55585962499465,8.284326604342231,5.501828505519033,9.151623009780616,7.73819195778756,1.6771925121365685,3.88943465708802,19.003857823057714,5.761935493892262,2.3704870183427924,4.6487563199242885,12.29603572467826,8.1829482854871,2.9384867805844523,10.291429729257326,15.125093525926472,3.6451707172907346,3.745429035878393,4.823271434774403,9.07823807202355,40.70793004194108,9.917599672870528,9.581610823055525,4.8756411237164,6.418973709894338,7.278353754758601,4.946220336654708,6.648401257362431,4.396111598833839,5.715751356432043,3.152447459814337,7.1115441685112275,4.0648564686718505,21.998138250885695,10.775795290113912,12.145577145375029,4.207217774632926,8.137924715163487,5.435869257860986,6.788563884428938,4.8183579644036385,10.132066875365485,5.897495043151646,7.87082028022115,2.7508288443666165,6.183160916438338,4.907851020530897,3.5537124209895974,1.9369186365815385,5.059598464033996,7.047983674027817,4.278507297175958,8.668774437348791,5.8536554221933,3.4136196505628282,2.57609717156208,7.69263481256473,11.337564582486657,8.18810972560878,9.474820697463874,7.0933974113469835,14.428460697883958,6.330883111793998,5.52477153497411,2.9037747519479358,14.660243116058016,32.135754391777304,4.439793441425635,6.188970907187636,13.365089458055396,8.810685389724126,3.1623891740762384,5.969713554641685,2.2407425167894397,4.254861259307049,15.78366640200376,4.532497518228902,6.268097809266828,8.71908623391099,7.949706113561754,7.583614676857725,8.237497111396074,4.982434363449027,9.976072694447469,5.587373722026667,43.95532736369035,4.7561350221144325,14.240831153251984,28.71067507411883,6.733924453758457,16.03120126413872,23.356174665321173,6.9505660160864595,5.86334085216891,9.519512225454106,14.096403450701892,5.6072017352235335,5.7120129724040485,3.427500879695396,5.700183012091412,8.80260827447613,9.44166044113361,3.8100088066867452,3.2861478004053404,3.0210567691834407,6.871658125760646,5.9094121825249895,4.4441138075512505,8.675916640015835,40.32798623003907,5.371014138629881,2.1071323830597573,12.789882697435177,32.754357770501876,2.7615554502706514,5.375993130131319,3.029232749850363,4.539907331792213,12.822189660004222,14.260645217111279,4.4328529252075795,4.368941111524736,5.23292781251854,2.0929907279433224,2.880540692135792,1.256349301013347,4.292892826747721,9.202458732365258,4.740474948849379,15.120002437221002,7.818067765458397,9.3200864373338,4.184499042427113,5.2855899439559035,5.316740618780571,2.5879164217135413,21.899651578803994,5.6774318836635995,23.156993336408796,6.145350869236571,2.5885663308629163,3.125869986333677,3.025521721104208,7.0652939270027595,3.728385651148732,8.592291594117054,2.227694479351639,1.5093959927798735,12.180117294122317,45.78485096410153,1.9728210115832046,9.038779627381455,7.274398186590489,9.096035847363012,14.639301353223628,14.160400136577389,5.8928884266207415,14.15570112345182,7.43068426247764,11.235526872982906,23.23429270342419,5.599076242518593,7.787225592322017,4.261597343946051,1.8184644494853783,2.909959765235638,5.636075511491316,6.9108068397376785,19.202756952058817,12.20674781528303,1.9766802147819484,2.9485915073935423,1.660349034192676,3.8271259159259654,5.0161401281481615,4.869853293420774,30.955339607723356,4.780614557829505,7.05691098443032,9.222306926506274,2.7911477439409254,2.56511122125655,3.5804244111962187,3.7455402959788966,15.866181080987717,11.970321409883141,2.284572978909598,8.645336070430096,15.525927003935875,13.534026526973872,5.179315884830463,8.626349884409288,36.06300756278671,3.8403446566169923,5.406053744712658,5.603229114210847,6.812527677456092,8.72657884888218,5.001228513698506,4.84149490654192,4.652536526101015,7.577098265584053,3.6309834718703193,26.011446669324965,11.739123070114223,10.995509970659374,3.572161989557645,12.33599709668656,20.24451511994198,6.411307912208388,38.63827675973434,2.898782066235621,5.3800035448341905,9.820772139251488,5.3000866034612635,11.824407035289457,9.419469814185577,3.2936340936729303,6.2976205632781435,1.8874851776274275,4.706704535830951,9.852051718518723,5.738846958668958,9.280364793066854,4.889423305785181,14.007325936685401,4.490011083536057,4.429805193548415,14.157127102185974,19.875491111099922,3.691386892725135,1.0731224189988324,2.6077648416123598,4.3568284117619305,7.244242944408819,20.110931776451203,9.128744193495738,20.08492212037614,11.483253638277292,3.273940917132288,4.600589930345682,6.732262026887543,2.318775906205239,3.745191046531015,6.0361615832377495,4.778484355107423,15.396348501805269,5.004277142685845,2.550763371476931,4.780280462365996,23.755580500841383,11.006988092624413,3.4579868551460358,7.937367561268726,23.75489780094098,12.617631605049548,4.30550455903562,3.9592498345432166,4.180816144325942,9.523435873433726,2.9604051975213816,8.76714040847496,12.599059381479425,5.5891247760259395,3.412017127942052,5.877327993257923,3.7329842046731563,2.48407069409157,11.244820063005305,8.848788690733109,11.605998378832677,3.533550243185356,2.6800490431565005,2.4156863314765338,14.955050518730829,9.799858233249587,3.40229170460758,5.971137509880094,7.8019909409691595,6.11270488715769,5.419313138550062,4.087463428847596,5.523343030223658,3.5460626050098085,14.943536032885024,2.6023380667552636,6.064173235492518,21.63330016291782,8.715755216220904,10.826427560496866,4.71726150708785,2.9514679008749005,4.29076815919627,7.419667927647934,6.911100394311088,8.843644103905214,2.5484627705475935,3.9199512489858335,7.034613154952557,3.1490587405100543,27.717723645563165,4.816868000316453,1.954755160858909,45.41785512388125,9.798427943732966,5.2104743763781975,3.048035557872061,10.721050264096721,22.415956554372777,7.82482321367155,4.824248194310862,6.129960365787188,6.889880914653831,10.920073973516942,3.0847767526519654,4.278476253112122,2.807007798782841,3.5271149906214823,4.157453995360599,5.826792139798175,3.9916735163529022,3.072751516323815,10.561057444269796,31.95417612700627,12.890134435459624,8.502876378323553,4.012860665134718,5.0385535585012144,2.881676760719157,7.145836875488823,2.935555539988,3.307017464268371,10.608677171974882,2.311559067618292,31.79701732209089,2.7382170840166253,6.664859701235934,2.975382405274443,4.717431210610904,9.847424820974586,7.819034234888781,4.992833711927837,7.3517477200589845,6.202134227125539,14.066001030382326,4.560230373217223,5.228885007456306,2.2525911294098084,22.840313297950544,8.102741965710266,4.6254424242123235,3.419831849961294,12.25273109410159,4.76848602035836,3.2386460045689374,7.360540979080928,5.613728837329959,4.264791375121063,5.707261889089433,8.078969462495643,5.551621890124755,4.613924402840155,11.724827051322226,2.8346332263358,2.4855900420874644,5.147513057116785,4.6768619625821275,4.746812564492719,1.8274565156856393,3.696586420093935,14.28359267155517,2.3714614278498423,2.7778324986885674,16.468410297721327,6.3077829281922,5.554956287462555,2.4204116933192603,22.757022684053304,5.352059674668741,5.894283750757532,5.5875255368289505,9.92916642813599,8.208268404491447,7.79792166806434,8.398135553424252,8.543735855481334,4.944929037074646,2.767669460854898,23.59736719987622,3.61955212901325,6.144535162663978,27.316298647814712,10.601833560328807,2.5843119996526225,6.370909512497818,16.933411862764157,9.848871954198414,2.8222402972417604,4.023810114649748,24.751927593631876,5.090195871967055,8.61790770628742,3.345590169192769,10.22488752899601,16.15802242666399,6.4534489344617825,11.998699409818542,17.955887053767135,5.354284238464072,10.59426580436814,5.966479145003644,8.122976018373672,6.860936507083071,16.4216008166377,10.099516478297833,26.76127816176343,3.2912179054704334,17.344751290061406,20.604887088357703,5.1742118662569405,3.4507984344205065,5.806237502466615,5.0339067051803115,33.16985809591332,2.473035163268457,2.730501320002345,3.2303886626093443,3.2444580178573657,19.107233592722096,1.0750586592213602,8.836899607078317,5.396085754333239,26.584053527699677,2.948767454437733,9.415600735117529,8.465136395460432,6.353140370646997,2.9048674063023037,6.7456362291046315,6.150141934555486,17.603586702299015,6.401929260039087,3.4446637615058218,7.213931992289414,28.92936908067359,15.51673622918734,4.680846935881813,3.1929167388848896,5.853873730120198,4.790052002283288,26.58192343950769,3.317685458252321,5.203638369632992,8.4672585232114,2.3750612702118348,5.462019482860255,9.910525078433889,2.9732203304104243,6.1504951462155075,3.8078023394195726,4.938587884257979,3.9313697936285696,4.960109479072378,4.199379798591266,4.792466016477614,6.218357751505122,19.10964768218469,4.527316878878848,4.229995810864437,6.92371912629257,4.856567025292994,7.497524322278298,2.336143104151262,2.6410311696640814,4.6183317573957705,3.0684761008403276,3.990372904964292,2.208812099901085,6.0356861776710895,2.8881926438871615,11.182733430068385,10.062240171409236,9.524015763571732,7.5210924020892325,7.710621774952776,2.88382265896772,3.0817117394076914,7.61122341819831,7.338186425479643,3.425497490023474,2.57932039074349,3.764183762645401,2.3209211221603168,21.804566472932592,4.962370479339832,9.98106861766291,9.571074155325517,9.129665627971892,4.911126966894855,5.337574443349893,4.243025706740972,4.922629323384732,8.812976722650497,4.690082123127399,8.26646325877589,4.988320566837698,18.451038187422814,4.143246821619731,8.773682389623785,3.9037829887557676,7.197499223080732,17.316777347694952,5.652146071248634,21.72093825551037,6.078401312262938,25.36735812388814,6.990785825212318,8.441958745184172,5.712553301759521,3.876116591288485,11.459211303672141,7.0369730740276495,3.36585949144265,2.283018893689894,6.618512110208298,8.490960935498935,2.8676315446699907,4.258512020274816,4.774955028454875,9.098571279331386,9.372456664646805,15.573326017847162,14.674674502516003,6.11969437860793,4.331176270689444,2.1280475748531247,3.9853785645078585,2.9152697265052856,2.813485583603788,3.5496252875230927,6.8986334526562425,1.8765625414978147,5.868846252147359,8.54520565497529,11.2644323956614,1.8553796052944824,11.605578120204347,7.788067948789987,10.121165326065789,6.209079125812448,30.513083815894213,8.081530285943403,6.099716022481693,2.787686460330679,4.940340271574556,8.612646145853935,12.32927918782364,4.909541937939913,5.950165306967057,2.8265255750584535,4.1713702702339015,13.599259947446024,9.218407881078573,4.136930473521104,10.837456594041388,3.4995837989877083,3.1867469962075643,11.132811049156697,3.992521052020093,6.138882909435526,11.557976071197272,4.4569468884600045,3.612171657929825,1.8171586110049667,2.8816028778453577,5.125828151829296,19.46091782570883,3.2971588114968693,10.178843363729536,9.891062663075912,4.048395980049722,24.890909014013463,2.8412302071865914,7.003285629327005,6.606652957285362,12.659883409155508,13.095656015550329,10.090888550639209,15.478083655316164,9.191199990333786,2.2810668940137764,4.894324365534546,5.855549628421212,5.682280745049453,3.913417976953592,1.9954275608633603,14.063793300797283,11.90058650244321,19.59738137301356,4.864851363383281,2.787541822020311,7.963161383276221,2.8596975833999703,9.433946544406963,5.114153671405038,2.6385300544852224,7.571657270058904,3.5046503853551907,15.245222532319843,3.0590429020598484,7.563820276591237,1.5789689726313036,16.78071000400091,11.492640393207058,4.091781894501854,8.971051152196168,4.444779161612309,5.494827387294911,40.24985109304662,2.4315876701270014,10.383844779995133,12.121390113060007,11.575118299103584,5.488882779424054,5.412599067406742,9.681484930841869,3.454023685920044,12.088256977108134,21.658972440901312,6.500943301707322,3.8005195337341084,20.992343287567582,3.105761316409828,1.7020766125408158,3.705517888997014,4.151438216398488,4.526381431345212,2.4694843072316677,16.309786538994988,4.988409792566874,30.022653993449882,2.6259683829154654,4.3692499919706895,14.468608065777346,5.753434528727858,10.997281018155713,3.7197159815323677,12.925805952914237,12.975669951951746,10.627130127738893,8.336670263638203,27.326082002135344,6.705768963923253,3.2192731777978696,64.6800587032891,8.689669714344722,3.2612518194380584,5.243684137785002,8.849608269359136,3.00660936396603,8.151793075940484,5.206557341330135,13.243423401387727,8.238896550226327,4.432765217565228,3.877035715946209,16.298423097383992,19.29357792971127,4.784608861474307,4.939561144436866,18.740710668221865,4.843009848957747,9.864022926530318,12.224713804442596,5.500252882723698,4.216773926928136,14.379521580275288,8.04274832230138,5.568087721535775,16.4739815212418,4.955330487780523,4.644333990227635,8.41811824649228,3.5912638927435654,7.677703435910262,8.70571258832991,28.439693493072575,7.52118311938782,1.6115894516941025,7.721507193112536,3.4190692839291037,9.780441492943426,21.905956604148617,8.35695041880801,12.549976130686547,5.810547194229823,16.167003620472144,3.814328182237687,4.605635931652547,9.250914827851549,23.40284332953999,4.951138952843467,3.2217396122812083,5.188032086259664,11.952426133109245,6.082283430671168,11.854731294385104,6.3787041029757345,18.86201441391718,4.951252533714415,6.065971123727731,3.450757524251183,12.02341305749006,4.081146135232343,2.8124471022124276,7.08528999428549,8.715639174730503,6.2456753754825245,6.049775581093905,4.843343308536101,8.18706165263709,5.465688408299325,6.854323868214708,8.47854563777889,5.2013577335872085,6.053990071785836,12.63983224544868,20.69342562801719,4.989040213438527,6.830561668108013,3.659148757478224,7.949962410104931,20.21864535124203,3.8289671786692834,4.438626291435729,12.626296428001194,7.83720654997254,1.7035763313178671,11.475619269618413,4.6340934809421634,9.753155334651712,2.6819736298973935,7.206928273091044,4.658774342075184,4.026482483198033,3.618347976749773,3.8309231537231723,2.4207020023408212,12.437969512232664,4.012749499216197,14.137386000701937,30.452628790767193,4.32449771016575,17.02909836623077,12.304956433793302,4.897177437360566,13.092587120373178,35.17269496894865,2.7096270350788574,7.147989228765047,5.691837963730862,13.46809768586286,3.4718539770590944,3.765587883709634,10.32572668384025,15.026064268985522,7.5320187545496164,13.070142276557673,8.426942807311216,6.918853063273947,1.4843479935457164,2.962086601804908,1.3980501206325961,17.048372963387628,10.524804561858215,22.62958056151324,5.553766523821141,11.149739403373985,2.627436743507905,4.393831928594269,18.90131263804931,3.8230358315716413,11.933541207093276,17.356654567780687,4.36925822820981,11.803436110273948,7.604243554377354,11.120690475672298,4.580852786403764,8.527255573689434,3.4149216198919454,2.978534121559131,2.943746106885676,3.8654186090118925,9.700402635823524,4.773942918727618,3.202468824344888,9.842676655862933,7.533771677173688,5.262063862346106,21.33710795220558,10.45326212160415,9.837642659615586,38.39994096126473,2.018351268042775,5.588987586462893,8.715337039553864,5.225377034122032,3.135790246780401,8.225185403952018,4.817873232309043,15.770257755264302,6.654600739445256,14.853810229968216,8.474156177540713,2.2269235616423084,13.910363351478352,2.8845903161626603,7.482072141373815,5.690318292536028,4.03231657972093,8.68897292806708,4.624736678615348,5.424364855755797,9.31470420381214,10.424620996361796,4.814997223657248,4.931613837601197,4.960549401661537,9.986972549063003,4.080272969410712,2.686470167227246,5.550949164622556,6.4491638828591356,4.799585256357071,2.5254433421981215,12.985712324478957,3.5285335093386223,7.0546441371201025,3.0571034500105463,5.417411239638769,4.066723193860671,17.372868367679374,24.536633842999812,1.471350694388021,1.9414885459501754,2.8533681406330462,4.076430274387424,3.0078313813671973,6.9828984998024195,3.677554263582013,3.916727466659071,5.718097814483841,2.4750097073949404,4.727321093349534,44.46506807944953,10.181911390299515,3.9279663033879135,45.57725599384912,14.925414669441267,9.072089698103712,5.46027626907042,6.506280566142784,2.0197645231540315,7.027258346452343,4.865001951660929,6.592548691108878,9.32595999486523,5.01845731423842,5.87670332084266,5.9725576518773495,6.653699360168202,7.612989597333053,7.056808360260933,1.9354012754876087,5.249169234539822,3.8603070565734026,13.449196016198956,10.969672276442772,13.954270625228821,2.7800211894371563,5.127669280112428,3.6007606588547567,5.779184474464913,2.6364056916312766,3.022607326379447,3.15300695389133,6.722644222852518,4.053079993815042,5.479661232522481,12.901309450978397,7.402601197577133,4.139034626009871,6.536257457248427,3.5163784809518703,8.947766203092034,3.5326566995935,6.418940029530785,7.157665348076784,8.060881971562246,7.987477265886472,5.714118529724213,5.448371810694675,4.303633411349421,7.375669458497018,10.694389675468923,13.36598766845607,4.885956724631928,18.715022239029533,6.1136305564962035,4.895306019319514,3.373829893312827,5.1454974033336685,6.5498423410332025,20.48895793211335,4.090698086196808,3.966542848693639,14.562507176453177,5.653650940249463,3.582776827893029,16.34987222337807,2.6685252367184926,7.329399649363645,7.505596410461027,4.012927489592947,3.5504905756379785,6.263315148115945,9.933838595393029,5.523385103727484,8.340729684022726,4.97503896377984,13.789132674024668,4.26614514591035,6.672931313210663,10.114977802479677,1.923753881547425,5.845518638049336,10.990100871555306,7.408870994488772,1.3635664708926212,3.1371929804972654,8.110463229570263,39.602520314245496,4.587379529385614,11.003413387540318,6.0448459639657015,8.053427653915492,9.298699854434973,3.5929788871000894,5.173707411104244,22.290176794191986,5.163243048953457,5.352533428237144,2.672785358999046,3.2462235863288162,2.49301967276515,6.740165244140969,5.911130671871279,10.468393533322205,20.99518269293048,3.245522284494501,10.905277652749955,7.190851235342211,3.0901289538212984,20.954477045237926,4.572863093482823,6.881667922731319,10.15958227785032,10.643350728499385,1.5648335248006746,4.761205552251187,13.086779684085407,3.6919381371849895,5.973760885689225,8.163200667636666,4.6769276057911755,7.715535023421185,17.450471376211524,3.5218287238996795,6.00731551115663,5.601437623232315,3.2331696579886025,2.9490167604001827,5.116493547565165,5.938595860166258,4.4940510569379075,4.769159472700266,42.855780478884675,8.251411297637539,6.498641715514638,4.3244325235968635,3.559329821334207,3.482133973478263,4.533342061778918,5.075149953641745,8.624603853714916,7.788652858471663,8.750090753698464,7.449535860885943,28.296206292429474,11.691845691361676,4.05161567085054,9.807588445955947,2.906801114751852,10.721921029364536,5.231573321705304,11.027717356315765,6.646497295631445,2.1242694434395375,6.817531311446646,4.851720110278542,4.345596980972385,4.469672493143605,3.852328696086582,4.054087523245693,6.316980448233377,20.147876783623808,5.627973936476824,4.7472738535049865,7.832386527847425,6.0349741166643005,5.228551121977059,7.377634842642759,11.328812849336904,9.00677416858758,7.260225510796815,4.096385241456159,8.43236575842532,10.714262604855278,23.434181407167745,12.343123772225054,4.575258417232308,33.950236319839505,2.85699013538953,7.454988888589254,14.056262778404982,2.712590063813877,15.565418043062111,2.9679856684809773,2.465062479523306,4.668904138710873,4.151978620580666,35.17149771923618,2.433223522211325,4.175014046096034,21.475646097906765,31.027219624368357,16.953841579065493,5.251612052592184,2.1468091462581516,7.608088913700072,6.026438300564863,7.854697742712682,1.8868763114277567,2.475555666982776,6.9166802773791245,8.702543710052245,10.0080187217111,4.331098237467056,26.74682940715233,4.893054805077887,15.21697761876095,14.236169707870065,9.237963076425988,2.1050103781638767,6.075027115081695,2.92368642235066,5.143919402440164,2.827788029012353,89.00942122244118,2.776657608338116,2.9700698606744713,7.041927935712469,3.383614172617088,2.6479028693457725,4.9137544013474885,4.149669342007873,6.85090109434683,9.77439582517878,2.7197702770153964,3.139020052525844,6.866882685892199,59.78593037368901,2.746294683014195,5.9987972059524495,4.486444138780198,4.325419873362863,6.555742933893774,5.613437984616005,1.3690399804966593,11.802228730943318,11.129185840636701,2.303405207296437,12.099680019601164,7.288744715089155,5.406913220070434,9.42497154492761,4.727379751291854,3.825062404718375,3.5810273785525073,3.5146568454904505,3.7107463199755033,3.238338144941494,3.941989847205761,13.80522070771972,10.738460996584848,12.15132642471054,6.539209125022655,5.498362390627563,6.962627837255935,6.797653833521169,1.0069986038134329,16.147808876326557,2.667932515693432,3.621016143506446,22.46387499892567,5.532118562442532,13.156861609491793,4.528552954894653,7.2259046291830735,8.73933981912439,4.231804037803218,7.3394470546441415,5.09535923526954,7.398605003425559,11.633398843890722,7.806782727172686,6.623921045208063,11.013026829444343,9.231785469641867,12.34124037306563,3.6012775022770307,3.8903590753575332,4.998632229746986,5.912645252380533,6.968517679954747,7.765469868270724,9.749629261049488,2.4882050226262455,4.535992824187325,8.23568488023751,10.278062643881134,5.425955926628109,10.240508038230775,3.792622210049006,8.122712962888743,23.51735177158285,10.761030745572238,3.208222390435024,6.998576082977265,6.152886294539121,4.418052698644751,13.54933122258348,7.254468049354261,4.144800339441669,19.065302937918204,12.014267083503018,3.097450449518344,3.972488528779462,7.836827543805226,4.083967816960608,1.504270225508722,4.685028250264218,14.664357474775572,9.893304086874679,6.319949764862243,10.946749960480636,1.5678905096932727,13.194355040910503,9.308050581053827,6.067541229838733,5.842453188363727,6.194281712169143,5.762190871082911,22.80482762247648,4.6748512415626,8.091145499009166,5.363915568414403,9.427017399699345,4.4901489256044025,20.87210126562138,6.349560963082574,5.637906360164371,5.563307060894429,4.3093009510343725,6.3999356392498035,8.698624134594493,11.110586827596473,5.3465947812273775,9.254754531847171,6.273258757844199,3.7102860773675213,3.261360742262428,3.817382888436666,3.3233218671719276,2.744275541965241,7.467811357578619,26.21172137593123,2.813101213197831,3.573581839321115,6.465990943962945,41.20472862161196,22.899595774783773,4.086750724011676,6.216907078893631,7.45693320454267,5.935080518933287,9.41755486482487,10.176672038534296,41.18873767788479,7.979752375856933,3.307113569297269,2.4059988201687124,9.169948433550452,9.785080719289276,2.9664371742183455,11.31732836370711,3.3695946299227555,4.4571259887542425,18.81467858770396,4.932711395334334,3.678077534165552,6.420639099914942,23.27695347404888,2.848476005897378,4.893695481421629,7.977126526516701,3.2816097454122892,5.0534601146534674,3.728835865363836,6.733219227396454,11.573802826322561,4.443158069254072,6.329802019329329,3.6218583019947266,3.5771599874805755,13.438638490860676,5.88742510611235,3.9929733607222646,1.736265341353536,78.13261888212743,6.057245973144661,5.070220082259512,1.8680205389734283,4.354684336088082,10.289816915784154,21.064494476169614,1.5490198561433812,2.7338526725991357,11.341981744292717,17.255515467507788,3.514199212410171,2.2476180355584194,3.764111701434938,7.402909226315127,8.951305999933087,4.562285370613834,8.555566811849328,10.255778282847078,11.40191876516467,5.251958121790899,14.619496653739853,4.340313744236993,3.342237798964574,3.5164405663757035,5.7742272218105555,5.2412173063168215,2.1833554253752703,2.193687851988041,5.762105130256503,3.3028705722652307,3.6028936848062534,4.8452127985909295,7.610043701026567,12.621221346315076,22.344846041943054,9.639483659047466,3.9450451676670535,3.7890981787399487,8.098936682416886,2.6376244594920006,6.499161642270248,7.25762006059406,5.694095232427524,23.720715839672962,9.098732817455694,4.908238436337341,7.370003567373905,4.285222425649748,5.244074306093991,19.425228679517357,13.16613502813969,12.534852819982172,11.360286499630288,13.091402917700126,6.47057416411894,5.862883796612248,13.12939311389805,3.1494344634147953,22.52621909972523,2.3944847539499636,16.665873099837636,8.020088614325056,27.31542000816682,7.505755937986864,10.482658226300604,6.195203429545447,2.674076950580379,3.944303611897092,5.440021821980985,3.675140815258024,3.125370032277736,4.238979074621925,9.440802343974365,2.6486934623948755,2.913909477472736,4.4554255990697555,5.634372254495863,8.001467895059326,23.506659041678947,5.399184277433779,9.88787162293918,6.110419499134868,3.497199294566984,13.584862092830713,6.174752023823426,8.698930045391945,3.862980477153633,4.307027671158132,3.853201341460505,4.390773598514129,3.541607092082386,5.261297428866887,4.0005940536930265,18.657255125397754,2.3821464386552096,9.065996391826134,2.628271700782301,8.211284729689348,2.239305140001658,6.171201381531021,15.345217695734588,5.552564750524402,4.604530267284975,5.28216068538931,4.680178122604958,7.361247851521295,2.479342660543562,7.199966088189328,4.858069425079219,4.921759949656241,3.8044546501687946,30.179873769475346,6.605578467470522,9.028646366183969,6.761484119150317,1.774918114666458,12.954296879441769,9.105961308407593,10.657307343325787,4.903732760031579,5.170313423370174,4.446790695769783,3.6473520471662555,7.592588369513171,6.85277803481781,7.882884950489062,5.151876292161859,17.483126561043733,16.56846142655643,12.571181291139858,3.042428829173798,1.7072593854107287,5.963463643492364,10.026948085207447,2.840077020400315,4.571909185877653,4.1352907340851655,20.021746972463554,4.743926639704248,7.0979341908973295,5.358781471885384,12.912166255270902,3.825835775415482,4.086228611486595,3.751788830376256,2.635037915604745,14.583540289738103,31.659241189588027,2.0652639190968745,15.6057238016413,7.154586745462008,4.211433549210321,5.219473346150982,12.579168732007096,4.538854288987929,13.810138030873013,15.752206289627116,10.35051028849142,4.561691557042855,22.035992151564866,2.3421106226929735,30.466874576838904,6.5724483686621396,2.9009630067934165,4.957608317695228,5.604239229598303,3.7271699426240215,18.45883744997469,5.454332771368274,4.269153250603499,3.8261287184634423,3.8499227265457785,3.424470177763029,4.184907468378657,5.7623027026675055,4.710368225963329,2.0832766584943037,2.9794910411279267,10.954212729267734,13.114329685275612,3.2054143213033512,14.383420502220524,16.623994480105974,3.098828495970421,7.933819222883801,13.622283106696514,3.9238196328030033,2.040217112963285,17.49636597941079,4.221613156539961,3.808619355875496,4.165301998555683,7.681937392829488,2.881992025896624,3.4628315268860086,15.074798382390147,6.997416796884479,3.0724333177342866,3.666545887995411,4.915635488704498,7.555592304577077,2.8063358382321804,9.001865245463703,13.23260907947673,4.286483516499122,2.2096095390447283,29.235104755817808,2.7193780820557407,7.3651393845130455,6.220661099886221,8.633393770937948,10.678890286048219,25.963567224049854,17.099114377920852,11.989606152147104,2.301704424307334,10.201023449889435,2.6462523900871755,2.6972138500831444,2.350074599739584,2.868466537839571,25.034726900898885,2.7608369696577753,27.977061852372586,4.882800254954652,7.061006826255265,3.9138802536888613,4.632798036693705,6.27499890374589,6.313226618317771,3.2883027104418168,14.7215797779585,13.036488905143038,12.313061945619978,4.729408391234497,3.4628903201254766,5.384859867605033,3.0862597941154495,10.698258794597042,6.630974696222044,11.841694761995928,11.43149163471247,14.577276294425962,10.615015804149188,1.3748466684851879,1.4398829497366634,4.577820673469017,2.180388040323275,2.861107275858613,17.595764176496502,4.19052955097819,2.419500553479449,5.335403178751886,15.87259908293613,2.8653542736970192,1.8080276640663975,6.074452454346332,3.4082578841627993,5.268147386438143,5.046288666755827,4.156877401498757,4.287138506827067,4.945362792056807,6.0494491575136635,4.010477505725029,3.1698167271121562,7.22325798443178,6.8334254226791815,2.0488640946740024,4.249102123209653,8.111236004259668,18.43356531213011,20.730810362627004,6.3374612524880645,19.713035330253984,8.2562833200822,8.12202739742432,8.540234483680527,1.7226490723170331,5.642269220848347,4.138369276323139,26.866532406962573,6.85429860197092,13.858277494132023,5.315976151346201,4.273123924444868,4.962891688149211,3.188168022669182,5.575768007192483,2.490609130815168,7.110266932780986,2.9799547317470454,9.61585009876356,4.242537658666737,17.22305889534505,6.139718138077581,6.224985673092176,3.66232811800374,7.0327422857333515,5.883468525717401,2.9127426736123385,5.979045951793583,14.266821851554212,2.2479480877434415,6.129065042961367,3.38198099329295,14.071143489677528,43.3791774214527,12.472381137847698,5.9186298320325905,6.084396092290145,2.188250244337966,2.300214076865275,2.745458203127056,2.358397696025436,3.2310631772282816,4.4446699851832605,6.03858552026842,3.499288523038873,2.3406573206741936,10.362101375394596,2.742922989376488,3.6148221684671222,12.256994924961974,6.180643424863008,5.715808202243607,4.7469414276877595,4.9764388794137915,26.942795633646707,6.894657489841227,3.478841950456673,9.735073427240637,13.320535406288242,7.128439004557877,3.6481418816016227,3.609196099733099,1.9516579551344595,10.995481504984262,2.12720523383485,4.133496823345701,2.7522739336016455,4.9185754740455225,4.105580046309616,3.0658350138525843,11.013645930273935,5.988403925382164,23.677648961965726,14.858811017924042,30.895950878444303,31.748259019161505,4.586351448269754,3.515066351830151,4.257720689238083,5.188246210568646,3.092668072031562,4.804781053755034,6.5412717195651835,2.2801421263667017,6.578436692392873,21.56232918237141,12.77966411466562,10.839023250503296,4.443644791427204,12.997783754695847,6.032261354704335,17.010335081711215,12.062386663357675,2.5071366186810926,7.845676823494202,7.547515576913607,10.029645687404157,5.57263358964172,2.7700304569507956,5.711782675141119,2.885343989907495,14.696030575010269,6.634089395744601,4.40540811226121,1.933556763557006,14.241350380292893,17.41784569597977,4.730132922761558,6.47247524388012,16.215397603046743,14.959315750535058,5.910612471773069,12.923612286843255,4.187791892221572,8.746019841711014,2.2501824034451614,23.593771636716077,5.103859025029446,10.241050459578673,22.332833317747706,27.585872881156767,3.64425899314849,3.487460846321237,6.414103186540114,6.597920719432637,5.117482951577021,9.31934114231424,5.8536101730483985,3.4385936452405983,10.643697593224335,1.4216716661762836,9.208459499524182,7.798745422025266,5.940752880471706,4.661676422954185]},"errors":null,"dependency_graph":null,"sensitivity":null,"node_id_to_name":null,"result_node_id":null}}