From d8ebfe33f2d5e41b4cc388a154a6efca0046d434 Mon Sep 17 00:00:00 2001 From: Abhishek Shivakumar Date: Tue, 17 Dec 2024 21:47:43 +0000 Subject: [PATCH 1/9] Added policies and targets constraints --- stock_models/ASEAN/power_sector_targets.csv | 26 ++ tz_pypsa/constraints.py | 473 +++++++++++++++----- 2 files changed, 380 insertions(+), 119 deletions(-) create mode 100644 stock_models/ASEAN/power_sector_targets.csv diff --git a/stock_models/ASEAN/power_sector_targets.csv b/stock_models/ASEAN/power_sector_targets.csv new file mode 100644 index 0000000..c90b571 --- /dev/null +++ b/stock_models/ASEAN/power_sector_targets.csv @@ -0,0 +1,26 @@ +target_type,carrier,nodes,absolute,value,unit,sense,year,years_onwards,constraint,description +capacity,"hydro, biomass, biogas, geothermal, solar",MYS,False,40,%,>=,2035,onwards,"[hydro, biomass, biogas, geothermal, solar] capacity in [MYS] >= 40% (2035 onwards)",RE capacity share target +generation,"hydro, solar, on-wind, off-wind, biomass, geothermal, ocean",PHL,False,35,%,>=,2030,onwards,"[hydro, solar, on-wind, off-wind, biomass, geothermal, ocean] generation in [PHL] >= 35% (2030 onwards)",RE generation share target +capacity,"hydro, biomass, biogas, solar, on-wind, off-wind",THA,False,36,%,>=,2037,onwards,"[hydro, biomass, biogas, solar, on-wind, off-wind] capacity in [THA] >= 36% (2037 onwards)",RE capacity share target +capacity,solar,BRN,False,30,%,>=,2035,onwards,[solar] capacity in [BRN] >= 30% (2035 onwards),RE capacity share target +capacity,hydro,KHM,True,1558,MW,>=,2030,onwards,[hydro] capacity in [KHM] >= 1558MW (2030 onwards),Hydro capacity target +capacity,hydro,KHM,True,2973,MW,>=,2040,onwards,[hydro] capacity in [KHM] >= 2973MW (2040 onwards),Hydro capacity target +capacity,solar,KHM,True,1005,MW,>=,2030,onwards,[solar] capacity in [KHM] >= 1005MW (2030 onwards),Solar capacity target +capacity,solar,KHM,True,3155,MW,>=,2040,onwards,[solar] capacity in [KHM] >= 3155MW (2040 onwards),Solar capacity target +capacity,coal,KHM,True,2266,MW,<=,2030,onwards,[coal] capacity in [KHM] <= 2266MW (2030 onwards),Coal phase-out target +capacity,gas,KHM,True,900,MW,==,2040,only,[gas] capacity in [KHM] == 900MW (2040 only),Gas capacity target +capacity,hydro,LAO,True,13000,MW,>=,2030,onwards,[hydro] capacity in [LAO] >= 13000MW (2030 onwards),Hydro capacity target +capacity,"solar, on-wind, off-wind",MMR,True,2000,MW,>=,2030,onwards,"[solar, on-wind, off-wind] capacity in [MMR] >= 2000MW (2030 onwards)",RE capacity target +capacity,coal,MMR,True,3620,MW,==,2030,only,[coal] capacity in [MMR] == 3620MW (2030 only),Coal capacity target +capacity,solar,SGP,True,1600,MW,>=,2030,only,[solar] capacity in [SGP] >= 1600MW (2030 only),Solar capacity target +emissions,CO2eq,SGP,True,60000000,tCO2eq,<=,2030,only,[CO2eq] emissions in [SGP] <= 60MtCO2eq (2030 only),Emissions target +emissions,CO2eq,SGP,True,0,tCO2eq,<=,2050,only,[CO2eq] emissions in [SGP] <= 6MtCO2eq (2050 only),Emissions target +capacity,coal,VNM,True,30127,MW,<=,2030,onwards,[coal] capacity in [VNM] <= 30127MW (2030 onwards),Coal phase-out target +capacity,on-wind,VNM,True,21880,MW,>=,2030,onwards,[on-wind] capacity in [VNM] >= 21880MW (2030 onwards),Onshore wind capacity target +capacity,off-wind,VNM,True,6000,MW,>=,2030,onwards,[off-wind] capacity in [VNM] >= 6000MW (2030 onwards),Offshore wind capacity target +capacity,on-wind,VNM,True,60050,MW,>=,2050,onwards,[on-wind] capacity in [VNM] >= 60050MW (2050 onwards),Onshore wind capacity target +capacity,off-wind,VNM,True,70000,MW,>=,2050,onwards,[off-wind] capacity in [VNM] >= 70000MW (2050 onwards),Offshore wind capacity target +capacity,solar,VNM,True,155000,MW,>=,2050,onwards,[solar] capacity in [VNM] >= 155000MW (2050 onwards),Solar capacity target +generation,"hydro, geothermal, bioenergy, solar, on-wind, off-wind",IDN,False,31,%,>=,2030,onwards,"[hydro, geothermal, bioenergy, solar, on-wind, off-wind] generation in [IDN] >= 31% (2030 onwards)",RE generation share target +generation,coal,IDN,False,30,%,<=,2025,onwards,[coal] generation in [IDN] <= 30% (2025 onwards),Coal generation share target +emissions,CO2eq,IDN,True,290000000,tCO2eq,<=,2030,onwards,[CO2eq] emissions in [IDN] <= 290MtCO2eq (2030 onwards),Emissions peak target \ No newline at end of file diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 96afe59..7777493 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -211,139 +211,374 @@ def constr_min_annual_generation( ) -# def constr_annual_matching( -# network : pypsa.Network, -# lhs_generators : list, -# rhs_min_generation : float, -# sign : str = '>=', -# name : str = None, -# ): -# ''' - -# ################################### -# ANNUAL MATCHING CONSTRAINT -# ################################### - -# Description: -# ----------------------------------- -# This constraint ensures that the total annual generation of a set of generators is greater than or equal to a certain value. -# It is particularly useful for setting renewable generation targets. For example, one can use this constraint to ensure that -# a certain proportion of demand is met by renewable generation. +def constr_policy_targets( + network : pypsa.Network, +): + ''' + ########################################### + CONSTRAINTS FROM TARGETS AND POLICIES SHEET + ########################################### + + Description: + ----------------------------------- + This constraint creates custom constraints based on user-defined policies and targets. -# Example user story: -# ----------------------------------- -# "I want to ensure that my demand is met by renewable generation across the year." + Example user story: + ----------------------------------- + "I want to ensure total solar generation is 30% at given bus in a specific year." -# Inputs: -# ----------------------------------- + Inputs: + ----------------------------------- + + network : pypsa.Network + + Returns: + ----------------------------------- + + None -# network : pypsa.Network + ''' + lp_model = network.optimize.create_model() + + master_targets = pd.read_csv('stock_models/ASEAN/power_sector_targets.csv') + indices = [] + + # ----- constr: absolute capacity targets ----- # + # This block sets absolute capacity targets. For example: + # - CAP_SOLAR[VNM, 2035] >= 100 MW -# lhs_generators : list -# A list of generators to apply the constraint to (e.g., all renewable generators). + for investment_period in network.investment_periods: -# rhs_min_generation : float -# The minimum total annual generation of the set of generators (e.g., 100 = 100MW). + targets_cap_abs = ( + master_targets + #.query(" year >= @investment_period ") + .query(" absolute == True ") + .query(" target_type == 'capacity' ") + # .query(" ~carrier.str.contains(',') ") + ) + + indices += targets_cap_abs.index.to_list() + + for _, row in targets_cap_abs.iterrows(): + for generator_year in network.investment_periods: + if generator_year >= row['year']: + generators_investment_years = ( + network + .generators + .loc[ + ( network.generators.bus.str.contains(row['nodes']) ) & + ( network.generators.carrier.str.contains('|'.join(row['carrier'].split(','))) ) & + ( network.generators.build_year <= generator_year) & + ( network.generators.build_year > network.investment_periods[0]) + #( network.generators.p_nom_extendable == True) + ] + .index + .tolist() + ) + + total_capacity_investment_years = ( + lp_model + .variables['Generator-p_nom'] + .sel( + { + "Generator-ext" : generators_investment_years + } + ) + .sum() + .sum() + ) + + total_capacity_base_year = ( + network.generators + .p_nom + .loc[ + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.carrier.str.contains('|'.join(row['carrier'].split(',')))) & + (network.generators.build_year == network.investment_periods[0]) + ] + .sum() + ) + + # set constraint + lp_model.add_constraints( + lhs = (total_capacity_investment_years + + total_capacity_base_year + ), + sign = row['sense'], + rhs = row['value'], + name=str(generator_year) + str(row['year']) + '_' + row['target_type'] + '_' + row['nodes'] + '_' + row['description'].replace(' ', '_').lower(), + ) + + # ----- constr: capacity share targets ----- # + # This block sets capacity share targets. For example: + # - CAP_SOLAR[VNM, 2035] >= 35% of total capacity + + for investment_period in network.investment_periods: + + targets_cap_pct = ( + master_targets + #.query(" year >= @investment_period ") + .query(" absolute == False ") + .query(" target_type == 'capacity' ") + # .query(" ~carrier.str.contains(',') ") + ) + + indices += targets_cap_pct.index.to_list() + + for _, row in targets_cap_pct.iterrows(): + for generator_year in network.investment_periods: + if generator_year >= row['year']: + target_generators = ( + network + .generators + .loc[ + ( network.generators.bus.str.contains( row['nodes'] ) ) & + ( network.generators.carrier.str.contains('|'.join(row['carrier'].split(','))) ) & + ( network.generators.build_year <= generator_year) & + ( network.generators.build_year > network.investment_periods[0]) + # ( network.generators.p_nom_extendable == True) + ] + .index + .tolist() + ) -# sign : str -# The sign of the constraint. Default is '>='. + all_generators = ( + network + .generators + .loc[ + ( network.generators.bus.str.contains( row['nodes'] ) ) & + ( network.generators.build_year <= generator_year) & + ( network.generators.build_year > network.investment_periods[0]) + # ( network.generators.p_nom_extendable == True) + ] + .index + .tolist() + ) + + target_capacity_base_year = ( + network.generators + .p_nom + .loc[ + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.carrier.str.contains('|'.join(row['carrier'].split(',')))) & + (network.generators.build_year == network.investment_periods[0]) + ] + .sum() + ) + + all_capacity_base_year = ( + network.generators + .p_nom + .loc[ + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.build_year == network.investment_periods[0]) + ] + .sum() + ) -# name : str -# The name of the constraint. Default is None. + target_capacity = (lp_model.variables['Generator-p_nom'].sel({'Generator-ext': target_generators}).sum() + + target_capacity_base_year + ) + total_capacity = (lp_model.variables['Generator-p_nom'].sel({'Generator-ext': all_generators}).sum() + + all_capacity_base_year + ) + + # set constraint + lp_model.add_constraints( + lhs = target_capacity - ((row['value']/100)*total_capacity), + sign = row['sense'], + rhs = 0, + name=str(generator_year) + str(row['year']) + '_' + row['target_type'] + '_' + row['nodes'] + '_' + row['description'].replace(' ', '_').lower(), + ) + + # ----- constr: generation share targets ----- # + # This block sets generation share targets. For example: + # - %_SOLAR[VNM, 2035] >= 20% of total generation + + for investment_period in network.investment_periods: + + targets = ( + master_targets + #.query(" year >= @investment_period ") + .query(" absolute == False ") + .query(" target_type == 'generation' ") + # .query(" ~carrier.str.contains(',') ") + ) -# Returns: -# ----------------------------------- - -# None - -# ''' - -# # get total annual renewable generation (additional) -# lp_model = network.optimize.create_model() - -# lhs_total_generation = ( -# lp_model -# .variables['Generator-p'] -# .sel(Generator=lhs_generators) -# .sum() -# ) - -# lp_model.add_constraints( -# lhs = lhs_total_generation, -# sign = sign, -# rhs = rhs_min_generation, -# name = name, -# ) - - -# def constr_hourly_matching( -# lp_model, -# lhs_generators : list, -# lhs_storages : list, -# rhs_load : float, -# sign : str = '>=', -# cfe_score : float = 1., -# name : str = None, -# ): -# ''' + indices += targets.index.to_list() + + for _, row in targets.iterrows(): + for generator_year in network.investment_periods: + if generator_year >= row['year']: + + target_generators = ( + network + .generators + .loc[ + (network.generators.carrier.str.contains('|'.join(row['carrier'].split(',')))) & + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.build_year <= generator_year) + ] + .index + .tolist() + ) + + all_generators = ( + network + .generators + .loc[ + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.build_year <= generator_year) + ] + .index + .tolist() + ) + + target_generation = lp_model.variables['Generator-p'].sel(period=generator_year, + Generator=target_generators).sum() + total_generation = lp_model.variables['Generator-p'].sel(period=generator_year, + Generator=all_generators).sum() + + # set constraint + lp_model.add_constraints( + lhs = target_generation - ((row['value']/100)*total_generation), + sign = row['sense'], + rhs = 0, + name=str(generator_year) + str(row['year']) + '_' + row['target_type'] + '_' + row['nodes'] + '_' + row['description'].replace(' ', '_').lower(), + ) + + # ----- constr: absolute emissions targets ----- # + + emissions = network.carriers.co2_emissions[lambda ds: ds != 0] + + for investment_period in network.investment_periods: + + targets = ( + master_targets + #.query(" year >= @investment_period ") + .query(" absolute == True ") + .query(" target_type == 'emissions' ") + ) + + indices += targets.index.to_list() + + for _, row in targets.iterrows(): + for generator_year in network.investment_periods: + if generator_year >= row['year']: + + target_generators = ( + network + .generators + .loc[ + (network.generators.carrier.isin(emissions.index)) & + (network.generators.bus.str.contains(row['nodes'])) & + (network.generators.build_year <= generator_year) + ] + ) + + generator_efficiency = network.generators.efficiency + + emission_factor = (target_generators.carrier.map(emissions) / generator_efficiency).dropna() + + target_generators_list = target_generators.index.to_list() + total_emissions = ((lp_model.variables['Generator-p'].sel(period=generator_year, + Generator=target_generators_list) + * emission_factor) + .sum() + ) + + # set constraint + lp_model.add_constraints( + lhs = total_emissions, + sign = row['sense'], + rhs = row['value'], + name=str(generator_year) + str(row['year']) + '_' + row['target_type'] + '_' + row['nodes'] + '_' + row['description'].replace(' ', '_').lower(), + ) + +def constr_max_annual_utilisation( + network : pypsa.Network, + max_utilisation_rate : float = 0.85, + carriers : list = None, + model_frequency : int = 1, +): + ''' -# ################################### -# HOURLY MATCHING (CFE) CONSTRAINT -# ################################### - -# Description: -# ----------------------------------- -# This constraint ensures that the total hourly generation of a set of generators is greater than or equal to a certain value. -# It is particularly useful for setting renewable generation targets under a 24/7 CFE procurement strategy. For example, one can -# use this constraint to ensure that a certain load is met by renewable generation in each hour of the year. + ################################### + SELF-SUFFICIENCY CONSTRAINT + ################################### + + Description: + ----------------------------------- + This constraint ensures that each bus in the network is self-sufficient to a certain degree. That is, + it generates at least a certain percentage of its own electricity demand. In other words, it constraints + the maximum amount of electricity that can be imported to a bus. -# Example user story: -# ----------------------------------- -# "I want to ensure that my demand is met by renewable generation in each hour of the year." + Example user story: + ----------------------------------- + "I want to ensure each region is at least 50% self-sufficient across the year. This prevents any region + from being too dependent on imports and ensures that each region has a certain level of energy security." -# Inputs: -# ----------------------------------- + Inputs: + ----------------------------------- -# network : pypsa.Network + network : pypsa.Network -# lhs_generators : list -# A list of generators to apply the constraint to (e.g., all renewable generators). - -# rhs_min_generation : float -# The minimum total annual generation of the set of generators (e.g., 0.5 = 50%). + max_utilisation_rate : float + The maximum annual utilisation rate of a technology type in the network. Default is 0.85 (i.e., 85% max utlisation rate annually). -# sign : str -# The sign of the constraint. Default is '>='. - -# name : str -# The name of the constraint. Default is None. + carriers : list + A list of carriers to apply the constraint to. Default is None, which does not apply the constraint to any carriers in the network. -# Returns: -# ----------------------------------- + model_frequency : int + Integer representing the model frequency in hours. Default is 1. + + Returns: + ----------------------------------- -# None + None + + ''' + + # ----- constr: coal and gas max utilisation rates ----- # + + lp_model = network.optimize.create_model() -# ''' - -# # get hourly dispatch from clean generators -# lhs_total_hourly_generation = ( -# lp_model -# .variables['Generator-p'] -# .sel(Generator=lhs_generators) -# ) - -# # get hourly dispatch from storage -# lhs_total_hourly_storage_discharge = ( -# lp_model -# .variables['StorageUnit-p_dispatch'] -# .sel(StorageUnit=lhs_storages) -# ) - -# lhs_dispatch = lhs_total_hourly_generation + lhs_total_hourly_storage_discharge - -# lp_model.add_constraints( -# lhs = lhs_dispatch, -# sign = sign, -# rhs = cfe_score * rhs_load, -# #name = name, -# ) \ No newline at end of file + for generator_year in network.investment_periods: + target_generators = ( + network + .generators + .loc[ + (network.generators.carrier.str.contains('|'.join(carriers))) & + (network.generators.build_year <= generator_year) + ] + .index + .tolist()) + + for each_generator in target_generators: + + # The generation by coal plant in the generation year + target_generation = ( + lp_model.variables['Generator-p'] + .sel( + period=generator_year, + Generator=each_generator + ) + .sum() + ) + + if str(network.investment_periods[0]) in each_generator: + target_capacity = network.generators.loc[each_generator].p_nom + else: + target_capacity = ( + lp_model.variables['Generator-p_nom'] + .sel({'Generator-ext': each_generator}) + .sum() + ) + + # set constraint + lp_model.add_constraints( + lhs = target_generation, + sign = '<=', + rhs = max_utilisation_rate * target_capacity * 8760 / model_frequency, + name=str(generator_year) + str(each_generator) + '_max_utilisation_rate', + ) \ No newline at end of file From 3588c630bab0ebe3c8fde0dd55cff76db73163c1 Mon Sep 17 00:00:00 2001 From: Abhishek Shivakumar Date: Wed, 18 Dec 2024 11:04:20 +0000 Subject: [PATCH 2/9] Updated constraints --- tz_pypsa/constraints.py | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 7777493..3a957d4 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -6,6 +6,7 @@ def constr_bus_self_sufficiency( network : pypsa.Network, + lp_model, min_self_sufficiency : float = 0.5, buses : list = None, ): @@ -45,7 +46,7 @@ def constr_bus_self_sufficiency( ''' # get total renewable generation - lp_model = network.optimize.create_model() + #lp_model = network.optimize.create_model() if not buses: buses = network.buses.index @@ -79,6 +80,7 @@ def constr_bus_self_sufficiency( def constr_cumulative_p_nom( network : pypsa.Network, + lp_model, ): ''' ################################### @@ -97,6 +99,8 @@ def constr_cumulative_p_nom( ----------------------------------- network : pypsa.Network + + lp_model : linopy model with variables and constraints Returns: ----------------------------------- @@ -105,7 +109,7 @@ def constr_cumulative_p_nom( ''' - lp_model = network.optimize.create_model() + #lp_model = network.optimize.create_model() x = np.inf y = network.investment_periods[1:].to_list() @@ -154,6 +158,7 @@ def constr_cumulative_p_nom( def constr_min_annual_generation( network : pypsa.Network, + lp_model, lhs_generator : str, rhs_min_generation : float, sign : str = '>=', @@ -176,6 +181,8 @@ def constr_min_annual_generation( ----------------------------------- network : pypsa.Network + + lp_model : linopy model with variables and constraints lhs_generator : str The generator to apply the constraint to. @@ -195,7 +202,7 @@ def constr_min_annual_generation( None ''' - lp_model = network.optimize.create_model() + #lp_model = network.optimize.create_model() lhs_total_generation = lp_model['Generator-p'].sel(Generator=lhs_generator).sum() @@ -213,6 +220,7 @@ def constr_min_annual_generation( def constr_policy_targets( network : pypsa.Network, + lp_model, ): ''' ########################################### @@ -231,6 +239,8 @@ def constr_policy_targets( ----------------------------------- network : pypsa.Network + + lp_model : linopy model with variables and constraints Returns: ----------------------------------- @@ -238,7 +248,7 @@ def constr_policy_targets( None ''' - lp_model = network.optimize.create_model() + # lp_model = network.optimize.create_model() master_targets = pd.read_csv('stock_models/ASEAN/power_sector_targets.csv') indices = [] @@ -497,6 +507,7 @@ def constr_policy_targets( def constr_max_annual_utilisation( network : pypsa.Network, + lp_model, max_utilisation_rate : float = 0.85, carriers : list = None, model_frequency : int = 1, @@ -522,6 +533,8 @@ def constr_max_annual_utilisation( ----------------------------------- network : pypsa.Network + + lp_model : linopy model with variables and constraints max_utilisation_rate : float The maximum annual utilisation rate of a technology type in the network. Default is 0.85 (i.e., 85% max utlisation rate annually). @@ -541,7 +554,7 @@ def constr_max_annual_utilisation( # ----- constr: coal and gas max utilisation rates ----- # - lp_model = network.optimize.create_model() + # lp_model = network.optimize.create_model() for generator_year in network.investment_periods: target_generators = ( From 625db6d74cd6e5e61a97a26b9a2ffe02e65d7f82 Mon Sep 17 00:00:00 2001 From: Abhishek Shivakumar Date: Fri, 20 Dec 2024 08:44:08 +0000 Subject: [PATCH 3/9] Update policy target constraints to include nodes --- tz_pypsa/constraints.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 3a957d4..8924903 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -221,6 +221,7 @@ def constr_min_annual_generation( def constr_policy_targets( network : pypsa.Network, lp_model, + stock_model : str ): ''' ########################################### @@ -241,6 +242,8 @@ def constr_policy_targets( network : pypsa.Network lp_model : linopy model with variables and constraints + + stock_model : PyPSA model for a selected country / region Returns: ----------------------------------- @@ -250,13 +253,15 @@ def constr_policy_targets( ''' # lp_model = network.optimize.create_model() - master_targets = pd.read_csv('stock_models/ASEAN/power_sector_targets.csv') + master_targets = pd.read_csv('stock_models/' + stock_model + '/power_sector_targets.csv') indices = [] # ----- constr: absolute capacity targets ----- # # This block sets absolute capacity targets. For example: # - CAP_SOLAR[VNM, 2035] >= 100 MW + countries = [i[:3] for i in network.buses.index.to_list()] + for investment_period in network.investment_periods: targets_cap_abs = ( @@ -264,7 +269,7 @@ def constr_policy_targets( #.query(" year >= @investment_period ") .query(" absolute == True ") .query(" target_type == 'capacity' ") - # .query(" ~carrier.str.contains(',') ") + .query(" nodes.str.contains('|'.join(@countries)) ") ) indices += targets_cap_abs.index.to_list() @@ -330,7 +335,7 @@ def constr_policy_targets( #.query(" year >= @investment_period ") .query(" absolute == False ") .query(" target_type == 'capacity' ") - # .query(" ~carrier.str.contains(',') ") + .query(" nodes.str.contains('|'.join(@countries)) ") ) indices += targets_cap_pct.index.to_list() @@ -412,7 +417,7 @@ def constr_policy_targets( #.query(" year >= @investment_period ") .query(" absolute == False ") .query(" target_type == 'generation' ") - # .query(" ~carrier.str.contains(',') ") + .query(" nodes.str.contains('|'.join(@countries)) ") ) indices += targets.index.to_list() @@ -468,6 +473,7 @@ def constr_policy_targets( #.query(" year >= @investment_period ") .query(" absolute == True ") .query(" target_type == 'emissions' ") + .query(" nodes.str.contains('|'.join(@countries)) ") ) indices += targets.index.to_list() @@ -505,6 +511,7 @@ def constr_policy_targets( name=str(generator_year) + str(row['year']) + '_' + row['target_type'] + '_' + row['nodes'] + '_' + row['description'].replace(' ', '_').lower(), ) + def constr_max_annual_utilisation( network : pypsa.Network, lp_model, From d74e98e3f8b53183cc4156f7754484876df8fa87 Mon Sep 17 00:00:00 2001 From: Handriyanti Date: Mon, 6 Jan 2025 17:24:52 +0100 Subject: [PATCH 4/9] update constr_max_annual_utilisation description --- tz_pypsa/constraints.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 8924903..8b80825 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -522,19 +522,17 @@ def constr_max_annual_utilisation( ''' ################################### - SELF-SUFFICIENCY CONSTRAINT + MAXIMUM ANNUAL UTILISATION CONSTRAINT ################################### Description: ----------------------------------- - This constraint ensures that each bus in the network is self-sufficient to a certain degree. That is, - it generates at least a certain percentage of its own electricity demand. In other words, it constraints - the maximum amount of electricity that can be imported to a bus. + This constraint ensures that the total annual utilisation rate of a technology or carrier + equals to a certain percentage value. Example user story: ----------------------------------- - "I want to ensure each region is at least 50% self-sufficient across the year. This prevents any region - from being too dependent on imports and ensures that each region has a certain level of energy security." + "I want to ensure that coal utilisation rate is only 85% annually, not 100%" Inputs: ----------------------------------- From a02445a1d2c18d4c1c255b5e3b9b03bee2c7e75b Mon Sep 17 00:00:00 2001 From: djwels Date: Fri, 17 Jan 2025 15:30:39 +0000 Subject: [PATCH 5/9] Refactored loads from TWh to MWh --- stock_models/Japan/loads-p_set.csv | 17520 +++++++++++++-------------- 1 file changed, 8760 insertions(+), 8760 deletions(-) diff --git a/stock_models/Japan/loads-p_set.csv b/stock_models/Japan/loads-p_set.csv index f152bcb..39479b5 100644 --- a/stock_models/Japan/loads-p_set.csv +++ b/stock_models/Japan/loads-p_set.csv @@ -1,8761 +1,8761 @@ ,JPN04,JPN07,JPN01,JPN05,JPN06,JPN09,JPN08,JPN02,JPN03 -0,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -1,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -2,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -3,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -4,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -5,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -6,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -7,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -8,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -9,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -10,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -11,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -12,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -13,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -14,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -15,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -16,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -17,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -18,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -19,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -20,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -21,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -22,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -23,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -24,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -25,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -26,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -27,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -28,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -29,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -30,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -31,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -32,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -33,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -34,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -35,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -36,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -37,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -38,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -39,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -40,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -41,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -42,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -43,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -44,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -45,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -46,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -47,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.023 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.01,0.005,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.023 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.007,0.023 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.01,0.005,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.007,0.023 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.005,0.002,0.002,0.011,0.006,0.002,0.006,0.022 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.023 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.01,0.005,0.002,0.002,0.011,0.006,0.002,0.006,0.022 -,0.01,0.004,0.002,0.002,0.011,0.006,0.002,0.006,0.021 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.01,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.022 -,0.011,0.005,0.002,0.002,0.011,0.007,0.002,0.006,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.011,0.005,0.002,0.002,0.012,0.007,0.002,0.007,0.023 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.025 -,0.011,0.005,0.003,0.002,0.012,0.007,0.002,0.007,0.024 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.025 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.012,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.054 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.054 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.016,0.054 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.026,0.012,0.006,0.006,0.028,0.016,0.005,0.016,0.055 -,0.026,0.012,0.006,0.006,0.028,0.017,0.005,0.016,0.055 -,0.026,0.011,0.006,0.006,0.028,0.016,0.005,0.016,0.054 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.026,0.011,0.006,0.006,0.028,0.016,0.005,0.016,0.054 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.026,0.012,0.006,0.006,0.028,0.016,0.005,0.016,0.055 -,0.026,0.012,0.006,0.006,0.028,0.017,0.005,0.016,0.055 -,0.026,0.011,0.006,0.006,0.028,0.016,0.005,0.016,0.055 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.054 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.006,0.027,0.016,0.005,0.015,0.054 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.007,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.025 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.025,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.052 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.025,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.024,0.011,0.006,0.005,0.026,0.015,0.005,0.015,0.052 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.025,0.011,0.006,0.005,0.027,0.016,0.005,0.015,0.053 -,0.024,0.011,0.006,0.005,0.026,0.016,0.005,0.015,0.052 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.024,0.011,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.05 -,0.024,0.011,0.005,0.005,0.026,0.015,0.005,0.015,0.051 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.05 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.007,0.026 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.005,0.003,0.003,0.013,0.008,0.002,0.008,0.026 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.011,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.004,0.004,0.021,0.013,0.004,0.012,0.042 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.047 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.023,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.023,0.01,0.005,0.005,0.025,0.015,0.005,0.014,0.049 -,0.022,0.01,0.005,0.005,0.024,0.014,0.005,0.014,0.048 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.014,0.047 -,0.022,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.044 -,0.021,0.01,0.005,0.005,0.023,0.014,0.004,0.013,0.046 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.021,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.037 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.022,0.01,0.005,0.005,0.024,0.014,0.004,0.013,0.047 -,0.021,0.009,0.005,0.005,0.023,0.014,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.021,0.013,0.004,0.012,0.042 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.013,0.043 -,0.021,0.009,0.005,0.005,0.023,0.013,0.004,0.013,0.045 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.02,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.042 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.012,0.04 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.004,0.003,0.017,0.01,0.003,0.009,0.033 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.021,0.009,0.005,0.005,0.022,0.013,0.004,0.013,0.044 -,0.02,0.009,0.005,0.004,0.022,0.013,0.004,0.012,0.043 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.009,0.004,0.004,0.021,0.012,0.004,0.012,0.041 -,0.019,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.04 -,0.018,0.008,0.004,0.004,0.02,0.012,0.004,0.011,0.039 -,0.018,0.008,0.004,0.004,0.019,0.011,0.004,0.011,0.038 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.035 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.017,0.008,0.004,0.004,0.019,0.011,0.003,0.011,0.037 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.008,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.017,0.007,0.004,0.004,0.018,0.011,0.003,0.01,0.036 -,0.016,0.007,0.004,0.004,0.018,0.01,0.003,0.01,0.035 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.015,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.004,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.013,0.006,0.003,0.003,0.014,0.009,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.012,0.006,0.003,0.003,0.013,0.008,0.003,0.008,0.027 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.027 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.016,0.009,0.003,0.009,0.031 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.03 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.014,0.008,0.003,0.008,0.028 -,0.013,0.006,0.003,0.003,0.015,0.009,0.003,0.008,0.029 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.034 -,0.016,0.007,0.004,0.003,0.017,0.01,0.003,0.01,0.033 -,0.015,0.007,0.003,0.003,0.016,0.01,0.003,0.009,0.033 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.032 -,0.014,0.006,0.003,0.003,0.015,0.009,0.003,0.009,0.031 -,0.015,0.007,0.003,0.003,0.016,0.009,0.003,0.009,0.031 \ No newline at end of file +0,14000,6000,3000,3000,15000,9000,3000,9000,30000 +1,14000,6000,3000,3000,15000,9000,3000,8000,29000 +2,13000,6000,3000,3000,14000,9000,3000,8000,28000 +3,13000,6000,3000,3000,14000,8000,3000,8000,28000 +4,13000,6000,3000,3000,14000,8000,3000,8000,27000 +5,12000,6000,3000,3000,13000,8000,3000,8000,26000 +6,12000,6000,3000,3000,13000,8000,3000,8000,27000 +7,13000,6000,3000,3000,14000,8000,3000,8000,28000 +8,14000,6000,3000,3000,15000,9000,3000,8000,29000 +9,13000,6000,3000,3000,15000,9000,3000,8000,29000 +10,13000,6000,3000,3000,14000,8000,3000,8000,27000 +11,12000,6000,3000,3000,13000,8000,3000,8000,26000 +12,12000,5000,3000,3000,13000,8000,2000,7000,26000 +13,12000,5000,3000,3000,13000,7000,2000,7000,25000 +14,12000,5000,3000,3000,13000,7000,2000,7000,25000 +15,12000,5000,3000,3000,13000,8000,2000,7000,25000 +16,13000,6000,3000,3000,14000,8000,3000,8000,27000 +17,14000,6000,3000,3000,15000,9000,3000,9000,30000 +18,15000,6000,3000,3000,16000,9000,3000,9000,31000 +19,15000,6000,3000,3000,16000,9000,3000,9000,31000 +20,15000,6000,3000,3000,16000,9000,3000,9000,31000 +21,14000,6000,3000,3000,15000,9000,3000,9000,31000 +22,14000,6000,3000,3000,15000,9000,3000,8000,29000 +23,13000,6000,3000,3000,14000,9000,3000,8000,29000 +24,13000,6000,3000,3000,14000,8000,3000,8000,27000 +25,12000,6000,3000,3000,13000,8000,3000,8000,26000 +26,12000,6000,3000,3000,13000,8000,3000,8000,27000 +27,12000,6000,3000,3000,13000,8000,3000,8000,26000 +28,12000,5000,3000,3000,13000,8000,2000,7000,26000 +29,12000,5000,3000,3000,13000,8000,2000,7000,26000 +30,12000,6000,3000,3000,13000,8000,3000,8000,26000 +31,13000,6000,3000,3000,14000,8000,3000,8000,28000 +32,14000,6000,3000,3000,15000,9000,3000,9000,30000 +33,14000,6000,3000,3000,15000,9000,3000,9000,30000 +34,13000,6000,3000,3000,14000,8000,3000,8000,28000 +35,13000,6000,3000,3000,14000,8000,3000,8000,27000 +36,12000,6000,3000,3000,13000,8000,3000,8000,27000 +37,12000,5000,3000,3000,13000,8000,2000,7000,26000 +38,12000,5000,3000,3000,13000,8000,2000,7000,26000 +39,12000,5000,3000,3000,13000,8000,2000,8000,26000 +40,13000,6000,3000,3000,14000,8000,3000,8000,28000 +41,15000,7000,3000,3000,16000,9000,3000,9000,31000 +42,15000,7000,3000,3000,16000,9000,3000,9000,32000 +43,15000,7000,3000,3000,16000,9000,3000,9000,32000 +44,15000,7000,3000,3000,16000,9000,3000,9000,32000 +45,15000,6000,3000,3000,16000,9000,3000,9000,31000 +46,14000,6000,3000,3000,15000,9000,3000,8000,29000 +47,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,12000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,11000,7000,2000,6000,23000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,2000,2000,11000,7000,2000,6000,22000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,11000,7000,2000,6000,22000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,11000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,10000,5000,2000,2000,11000,6000,2000,6000,21000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,11000,7000,2000,6000,23000 +,11000,5000,2000,2000,11000,7000,2000,7000,23000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,10000,5000,2000,2000,11000,6000,2000,6000,21000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,3000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,12000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,11000,7000,2000,7000,23000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,5000,2000,2000,11000,6000,2000,6000,22000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,11000,7000,2000,6000,22000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,3000,2000,12000,7000,2000,7000,23000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,10000,5000,2000,2000,11000,6000,2000,6000,22000 +,10000,4000,2000,2000,11000,6000,2000,6000,21000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,10000,5000,2000,2000,11000,7000,2000,6000,22000 +,11000,5000,2000,2000,11000,7000,2000,6000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,11000,5000,2000,2000,12000,7000,2000,7000,23000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,12000,7000,2000,7000,25000 +,11000,5000,3000,2000,12000,7000,2000,7000,24000 +,12000,5000,3000,3000,12000,7000,2000,7000,25000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,12000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,6000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,6000,27000,16000,5000,15000,54000 +,25000,11000,6000,6000,27000,16000,5000,15000,54000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,6000,27000,16000,5000,16000,54000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,26000,12000,6000,6000,28000,16000,5000,16000,55000 +,26000,12000,6000,6000,28000,17000,5000,16000,55000 +,26000,11000,6000,6000,28000,16000,5000,16000,54000 +,25000,11000,6000,6000,27000,16000,5000,15000,53000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,26000,11000,6000,6000,28000,16000,5000,16000,54000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,26000,12000,6000,6000,28000,16000,5000,16000,55000 +,26000,12000,6000,6000,28000,17000,5000,16000,55000 +,26000,11000,6000,6000,28000,16000,5000,16000,55000 +,25000,11000,6000,6000,27000,16000,5000,15000,54000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,6000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,6000,27000,16000,5000,15000,54000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,7000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,7000,25000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,14000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,25000,11000,6000,5000,26000,16000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,52000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,25000,11000,6000,5000,26000,16000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,10000,5000,5000,25000,15000,5000,14000,50000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,24000,11000,6000,5000,26000,15000,5000,15000,52000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,25000,11000,6000,5000,27000,16000,5000,15000,53000 +,24000,11000,6000,5000,26000,16000,5000,15000,52000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,24000,11000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,24000,11000,5000,5000,26000,15000,5000,15000,50000 +,24000,11000,5000,5000,26000,15000,5000,15000,51000 +,23000,10000,5000,5000,25000,15000,5000,14000,50000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,7000,26000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,5000,3000,3000,13000,8000,2000,8000,26000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,18000,11000,3000,11000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,35000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,4000,4000,21000,13000,4000,12000,42000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,5000,14000,47000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,23000,10000,5000,5000,24000,14000,5000,14000,48000 +,23000,10000,5000,5000,25000,15000,5000,14000,49000 +,22000,10000,5000,5000,24000,14000,5000,14000,48000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,22000,10000,5000,5000,24000,14000,4000,14000,47000 +,22000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,37000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,10000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,44000 +,21000,10000,5000,5000,23000,14000,4000,13000,46000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,19000,8000,4000,4000,21000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,4000,11000,37000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,22000,10000,5000,5000,24000,14000,4000,13000,47000 +,21000,9000,5000,5000,23000,14000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,21000,13000,4000,12000,42000 +,20000,9000,5000,4000,22000,13000,4000,13000,43000 +,21000,9000,5000,5000,23000,13000,4000,13000,45000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,20000,9000,4000,4000,21000,12000,4000,12000,42000 +,19000,8000,4000,4000,20000,12000,4000,12000,40000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,4000,3000,17000,10000,3000,9000,33000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,19000,8000,4000,4000,20000,12000,4000,11000,39000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,21000,9000,5000,5000,22000,13000,4000,13000,44000 +,20000,9000,5000,4000,22000,13000,4000,12000,43000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,9000,4000,4000,21000,12000,4000,12000,41000 +,19000,8000,4000,4000,20000,12000,4000,11000,40000 +,18000,8000,4000,4000,20000,12000,4000,11000,39000 +,18000,8000,4000,4000,19000,11000,4000,11000,38000 +,17000,7000,4000,4000,18000,11000,3000,10000,35000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,17000,8000,4000,4000,19000,11000,3000,11000,37000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,8000,4000,4000,18000,11000,3000,10000,36000 +,17000,7000,4000,4000,18000,11000,3000,10000,36000 +,16000,7000,4000,4000,18000,10000,3000,10000,35000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,15000,6000,3000,3000,16000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,4000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,13000,6000,3000,3000,14000,9000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,12000,6000,3000,3000,13000,8000,3000,8000,27000 +,13000,6000,3000,3000,14000,8000,3000,8000,27000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,16000,9000,3000,9000,31000 +,14000,6000,3000,3000,15000,9000,3000,9000,30000 +,14000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,14000,8000,3000,8000,28000 +,13000,6000,3000,3000,15000,9000,3000,8000,29000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,34000 +,16000,7000,4000,3000,17000,10000,3000,10000,33000 +,15000,7000,3000,3000,16000,10000,3000,9000,33000 +,15000,7000,3000,3000,16000,9000,3000,9000,32000 +,14000,6000,3000,3000,15000,9000,3000,9000,31000 +,15000,7000,3000,3000,16000,9000,3000,9000,31000 From c8d620c51b55c5893e4dc29825eedd689acb45f7 Mon Sep 17 00:00:00 2001 From: djwels Date: Tue, 21 Jan 2025 18:24:09 +0000 Subject: [PATCH 6/9] Added type to generators so CFE techs can be picked up --- stock_models/Japan/generators.csv | 164 +++++++++++++-------------- stock_models/Japan/storage_units.csv | 20 ++-- 2 files changed, 92 insertions(+), 92 deletions(-) diff --git a/stock_models/Japan/generators.csv b/stock_models/Japan/generators.csv index e386c1b..334e8e4 100644 --- a/stock_models/Japan/generators.csv +++ b/stock_models/Japan/generators.csv @@ -1,82 +1,82 @@ -name,bus,p_nom,p_nom_extendable,carrier,marginal_cost,capital_cost,build_year,lifetime,efficiency -JPN01-Coal,JPN01,2586,FALSE,Coal,1,10,2030,25,0.4 -JPN01-LNG,JPN01,697,FALSE,LNG,1,10,2030,25,0.4 -JPN01-Oil,JPN01,1988,FALSE,Oil,1,10,2030,25,0.4 -JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,10,2030,25,0.4 -JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN01-Wind,JPN01,1619,FALSE,Wind,1,10,2030,25,0.4 -JPN01-Solar,JPN01,2722,FALSE,Solar,1,10,2030,25,0.4 -JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,10,2030,25,0.4 -JPN01-Biomass,JPN01,458,FALSE,Biomass,1,10,2030,25,0.4 -JPN02-Coal,JPN02,4784,FALSE,Coal,1,10,2030,25,0.4 -JPN02-LNG,JPN02,5181,FALSE,LNG,1,10,2030,25,0.4 -JPN02-Oil,JPN02,491,FALSE,Oil,1,10,2030,25,0.4 -JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,10,2030,25,0.4 -JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN02-Wind,JPN02,3168,FALSE,Wind,1,10,2030,25,0.4 -JPN02-Solar,JPN02,6080,FALSE,Solar,1,10,2030,25,0.4 -JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,10,2030,25,0.4 -JPN02-Biomass,JPN02,625,FALSE,Biomass,1,10,2030,25,0.4 -JPN03-Coal,JPN03,8070,FALSE,Coal,1,10,2030,25,0.4 -JPN03-LNG,JPN03,33867,FALSE,LNG,1,10,2030,25,0.4 -JPN03-Oil,JPN03,5807,FALSE,Oil,1,10,2030,25,0.4 -JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,10,2030,25,0.4 -JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN03-Wind,JPN03,865,FALSE,Wind,1,10,2030,25,0.4 -JPN03-Solar,JPN03,22718,FALSE,Solar,1,10,2030,25,0.4 -JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,10,2030,25,0.4 -JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,10,2030,25,0.4 -JPN04-Coal,JPN04,5382,FALSE,Coal,1,10,2030,25,0.4 -JPN04-LNG,JPN04,17237,FALSE,LNG,1,10,2030,25,0.4 -JPN04-Oil,JPN04,1817,FALSE,Oil,1,10,2030,25,0.4 -JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,10,2030,25,0.4 -JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN04-Wind,JPN04,893,FALSE,Wind,1,10,2030,25,0.4 -JPN04-Solar,JPN04,13681,FALSE,Solar,1,10,2030,25,0.4 -JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,10,2030,25,0.4 -JPN04-Biomass,JPN04,572,FALSE,Biomass,1,10,2030,25,0.4 -JPN05-Coal,JPN05,4815,FALSE,Coal,1,10,2030,25,0.4 -JPN05-LNG,JPN05,1595,FALSE,LNG,1,10,2030,25,0.4 -JPN05-Oil,JPN05,1177,FALSE,Oil,1,10,2030,25,0.4 -JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,10,2030,25,0.4 -JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN05-Wind,JPN05,661,FALSE,Wind,1,10,2030,25,0.4 -JPN05-Solar,JPN05,2674,FALSE,Solar,1,10,2030,25,0.4 -JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,10,2030,25,0.4 -JPN05-Biomass,JPN05,136,FALSE,Biomass,1,10,2030,25,0.4 -JPN06-Coal,JPN06,4402,FALSE,Coal,1,10,2030,25,0.4 -JPN06-LNG,JPN06,9772,FALSE,LNG,1,10,2030,25,0.4 -JPN06-Oil,JPN06,3120,FALSE,Oil,1,10,2030,25,0.4 -JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,10,2030,25,0.4 -JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN06-Wind,JPN06,457,FALSE,Wind,1,10,2030,25,0.4 -JPN06-Solar,JPN06,7605,FALSE,Solar,1,10,2030,25,0.4 -JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,10,2030,25,0.4 -JPN06-Biomass,JPN06,568,FALSE,Biomass,1,10,2030,25,0.4 -JPN07-Coal,JPN07,5622,FALSE,Coal,1,10,2030,25,0.4 -JPN07-LNG,JPN07,2578,FALSE,LNG,1,10,2030,25,0.4 -JPN07-Oil,JPN07,2109,FALSE,Oil,1,10,2030,25,0.4 -JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,10,2030,25,0.4 -JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN07-Wind,JPN07,802,FALSE,Wind,1,10,2030,25,0.4 -JPN07-Solar,JPN07,8447,FALSE,Solar,1,10,2030,25,0.4 -JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,10,2030,25,0.4 -JPN07-Biomass,JPN07,899,FALSE,Biomass,1,10,2030,25,0.4 -JPN08-Coal,JPN08,3851,FALSE,Coal,1,10,2030,25,0.4 -JPN08-LNG,JPN08,942,FALSE,LNG,1,10,2030,25,0.4 -JPN08-Oil,JPN08,1480,FALSE,Oil,1,10,2030,25,0.4 -JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,10,2030,25,0.4 -JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN08-Wind,JPN08,627,FALSE,Wind,1,10,2030,25,0.4 -JPN08-Solar,JPN08,3940,FALSE,Solar,1,10,2030,25,0.4 -JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,10,2030,25,0.4 -JPN08-Biomass,JPN08,349,FALSE,Biomass,1,10,2030,25,0.4 -JPN09-Coal,JPN09,7246,FALSE,Coal,1,10,2030,25,0.4 -JPN09-LNG,JPN09,4440,FALSE,LNG,1,10,2030,25,0.4 -JPN09-Oil,JPN09,1373,FALSE,Oil,1,10,2030,25,0.4 -JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,10,2030,25,0.4 -JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,10,2030,25,0.4 -JPN09-Wind,JPN09,1482,FALSE,Wind,1,10,2030,25,0.4 -JPN09-Solar,JPN09,14409,FALSE,Solar,1,10,2030,25,0.4 -JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,10,2030,25,0.4 -JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,10,2030,25,0.4 \ No newline at end of file +name,bus,p_nom,p_nom_extendable,carrier,marginal_cost,capital_cost,build_year,lifetime,efficiency,type +JPN01-Coal,JPN01,2586,FALSE,Coal,1,10,2030,25,0.4,JPN01-Coal +JPN01-LNG,JPN01,697,FALSE,LNG,1,10,2030,25,0.4,JPN01-LNG +JPN01-Oil,JPN01,1988,FALSE,Oil,1,10,2030,25,0.4,JPN01-Oil +JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,10,2030,25,0.4,JPN01-Nuclear +JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,10,2030,25,0.4,JPN01-HydroConventional +JPN01-Wind,JPN01,1619,FALSE,Wind,1,10,2030,25,0.4,JPN01-Wind +JPN01-Solar,JPN01,2722,FALSE,Solar,1,10,2030,25,0.4,JPN01-Solar +JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,10,2030,25,0.4,JPN01-Geothermal +JPN01-Biomass,JPN01,458,FALSE,Biomass,1,10,2030,25,0.4,JPN01-Biomass +JPN02-Coal,JPN02,4784,FALSE,Coal,1,10,2030,25,0.4,JPN02-Coal +JPN02-LNG,JPN02,5181,FALSE,LNG,1,10,2030,25,0.4,JPN02-LNG +JPN02-Oil,JPN02,491,FALSE,Oil,1,10,2030,25,0.4,JPN02-Oil +JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,10,2030,25,0.4,JPN02-Nuclear +JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,10,2030,25,0.4,JPN02-HydroConventional +JPN02-Wind,JPN02,3168,FALSE,Wind,1,10,2030,25,0.4,JPN02-Wind +JPN02-Solar,JPN02,6080,FALSE,Solar,1,10,2030,25,0.4,JPN02-Solar +JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,10,2030,25,0.4,JPN02-Geothermal +JPN02-Biomass,JPN02,625,FALSE,Biomass,1,10,2030,25,0.4,JPN02-Biomass +JPN03-Coal,JPN03,8070,FALSE,Coal,1,10,2030,25,0.4,JPN03-Coal +JPN03-LNG,JPN03,33867,FALSE,LNG,1,10,2030,25,0.4,JPN03-LNG +JPN03-Oil,JPN03,5807,FALSE,Oil,1,10,2030,25,0.4,JPN03-Oil +JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,10,2030,25,0.4,JPN03-Nuclear +JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,10,2030,25,0.4,JPN03-HydroConventional +JPN03-Wind,JPN03,865,FALSE,Wind,1,10,2030,25,0.4,JPN03-Wind +JPN03-Solar,JPN03,22718,FALSE,Solar,1,10,2030,25,0.4,JPN03-Solar +JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,10,2030,25,0.4,JPN03-Geothermal +JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,10,2030,25,0.4,JPN03-Biomass +JPN04-Coal,JPN04,5382,FALSE,Coal,1,10,2030,25,0.4,JPN04-Coal +JPN04-LNG,JPN04,17237,FALSE,LNG,1,10,2030,25,0.4,JPN04-LNG +JPN04-Oil,JPN04,1817,FALSE,Oil,1,10,2030,25,0.4,JPN04-Oil +JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,10,2030,25,0.4,JPN04-Nuclear +JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,10,2030,25,0.4,JPN04-HydroConventional +JPN04-Wind,JPN04,893,FALSE,Wind,1,10,2030,25,0.4,JPN04-Wind +JPN04-Solar,JPN04,13681,FALSE,Solar,1,10,2030,25,0.4,JPN04-Solar +JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,10,2030,25,0.4,JPN04-Geothermal +JPN04-Biomass,JPN04,572,FALSE,Biomass,1,10,2030,25,0.4,JPN04-Biomass +JPN05-Coal,JPN05,4815,FALSE,Coal,1,10,2030,25,0.4,JPN05-Coal +JPN05-LNG,JPN05,1595,FALSE,LNG,1,10,2030,25,0.4,JPN05-LNG +JPN05-Oil,JPN05,1177,FALSE,Oil,1,10,2030,25,0.4,JPN05-Oil +JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,10,2030,25,0.4,JPN05-Nuclear +JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,10,2030,25,0.4,JPN05-HydroConventional +JPN05-Wind,JPN05,661,FALSE,Wind,1,10,2030,25,0.4,JPN05-Wind +JPN05-Solar,JPN05,2674,FALSE,Solar,1,10,2030,25,0.4,JPN05-Solar +JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,10,2030,25,0.4,JPN05-Geothermal +JPN05-Biomass,JPN05,136,FALSE,Biomass,1,10,2030,25,0.4,JPN05-Biomass +JPN06-Coal,JPN06,4402,FALSE,Coal,1,10,2030,25,0.4,JPN06-Coal +JPN06-LNG,JPN06,9772,FALSE,LNG,1,10,2030,25,0.4,JPN06-LNG +JPN06-Oil,JPN06,3120,FALSE,Oil,1,10,2030,25,0.4,JPN06-Oil +JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,10,2030,25,0.4,JPN06-Nuclear +JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,10,2030,25,0.4,JPN06-HydroConventional +JPN06-Wind,JPN06,457,FALSE,Wind,1,10,2030,25,0.4,JPN06-Wind +JPN06-Solar,JPN06,7605,FALSE,Solar,1,10,2030,25,0.4,JPN06-Solar +JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,10,2030,25,0.4,JPN06-Geothermal +JPN06-Biomass,JPN06,568,FALSE,Biomass,1,10,2030,25,0.4,JPN06-Biomass +JPN07-Coal,JPN07,5622,FALSE,Coal,1,10,2030,25,0.4,JPN07-Coal +JPN07-LNG,JPN07,2578,FALSE,LNG,1,10,2030,25,0.4,JPN07-LNG +JPN07-Oil,JPN07,2109,FALSE,Oil,1,10,2030,25,0.4,JPN07-Oil +JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,10,2030,25,0.4,JPN07-Nuclear +JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,10,2030,25,0.4,JPN07-HydroConventional +JPN07-Wind,JPN07,802,FALSE,Wind,1,10,2030,25,0.4,JPN07-Wind +JPN07-Solar,JPN07,8447,FALSE,Solar,1,10,2030,25,0.4,JPN07-Solar +JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,10,2030,25,0.4,JPN07-Geothermal +JPN07-Biomass,JPN07,899,FALSE,Biomass,1,10,2030,25,0.4,JPN07-Biomass +JPN08-Coal,JPN08,3851,FALSE,Coal,1,10,2030,25,0.4,JPN08-Coal +JPN08-LNG,JPN08,942,FALSE,LNG,1,10,2030,25,0.4,JPN08-LNG +JPN08-Oil,JPN08,1480,FALSE,Oil,1,10,2030,25,0.4,JPN08-Oil +JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,10,2030,25,0.4,JPN08-Nuclear +JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,10,2030,25,0.4,JPN08-HydroConventional +JPN08-Wind,JPN08,627,FALSE,Wind,1,10,2030,25,0.4,JPN08-Wind +JPN08-Solar,JPN08,3940,FALSE,Solar,1,10,2030,25,0.4,JPN08-Solar +JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,10,2030,25,0.4,JPN08-Geothermal +JPN08-Biomass,JPN08,349,FALSE,Biomass,1,10,2030,25,0.4,JPN08-Biomass +JPN09-Coal,JPN09,7246,FALSE,Coal,1,10,2030,25,0.4,JPN09-Coal +JPN09-LNG,JPN09,4440,FALSE,LNG,1,10,2030,25,0.4,JPN09-LNG +JPN09-Oil,JPN09,1373,FALSE,Oil,1,10,2030,25,0.4,JPN09-Oil +JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,10,2030,25,0.4,JPN09-Nuclear +JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,10,2030,25,0.4,JPN09-HydroConventional +JPN09-Wind,JPN09,1482,FALSE,Wind,1,10,2030,25,0.4,JPN09-Wind +JPN09-Solar,JPN09,14409,FALSE,Solar,1,10,2030,25,0.4,JPN09-Solar +JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,10,2030,25,0.4,JPN09-Geothermal +JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,10,2030,25,0.4,JPN09-Biomass diff --git a/stock_models/Japan/storage_units.csv b/stock_models/Japan/storage_units.csv index 87a8e9e..5f894b6 100644 --- a/stock_models/Japan/storage_units.csv +++ b/stock_models/Japan/storage_units.csv @@ -1,10 +1,10 @@ -name,bus,p_nom,p_nom_extendable,carrier,capital_cost,build_year,lifetime,cyclic_state_of_charge,max_hours,efficiency_store,efficiency_dispatch,standing_loss -JPN01-Batteries-2030,JPN01,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN02-Batteries-2030,JPN02,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN03-Batteries-2030,JPN03,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN04-Batteries-2030,JPN04,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN05-Batteries-2030,JPN05,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN06-Batteries-2030,JPN06,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN07-Batteries-2030,JPN07,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN08-Batteries-2030,JPN08,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 -JPN09-Batteries-2030,JPN09,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01 \ No newline at end of file +name,bus,p_nom,p_nom_extendable,carrier,capital_cost,build_year,lifetime,cyclic_state_of_charge,max_hours,efficiency_store,efficiency_dispatch,standing_loss,type +JPN01-Batteries-2030,JPN01,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN01-Batteries-2030 +JPN02-Batteries-2030,JPN02,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN02-Batteries-2030 +JPN03-Batteries-2030,JPN03,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN03-Batteries-2030 +JPN04-Batteries-2030,JPN04,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN04-Batteries-2030 +JPN05-Batteries-2030,JPN05,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN05-Batteries-2030 +JPN06-Batteries-2030,JPN06,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN06-Batteries-2030 +JPN07-Batteries-2030,JPN07,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN07-Batteries-2030 +JPN08-Batteries-2030,JPN08,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN08-Batteries-2030 +JPN09-Batteries-2030,JPN09,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN09-Batteries-2030 From 79148cc06e7575e6cce7c7b302d9328156880242 Mon Sep 17 00:00:00 2001 From: djwels Date: Wed, 12 Feb 2025 10:56:59 +0000 Subject: [PATCH 7/9] Added hydrogen into stock model --- stock_models/Japan/buses.csv | 20 +-- stock_models/Japan/carriers.csv | 48 +++--- stock_models/Japan/generators.csv | 171 ++++++++++++---------- stock_models/Japan/investment_periods.csv | 4 +- stock_models/Japan/links.csv | 40 ++--- stock_models/Japan/loads-p_set.csv | 1 + stock_models/Japan/storage_units.csv | 9 ++ tz_pypsa/constraints.py | 35 ++++- tz_pypsa/model.py | 6 +- 9 files changed, 194 insertions(+), 140 deletions(-) diff --git a/stock_models/Japan/buses.csv b/stock_models/Japan/buses.csv index a720361..f138637 100644 --- a/stock_models/Japan/buses.csv +++ b/stock_models/Japan/buses.csv @@ -1,10 +1,10 @@ -name,long_name,y,x -JPN01,Hokkaido,42.98035309,142.4272861 -JPN02,Tohoku,38.44914886,140.3148359 -JPN03,Tokyo,35.67942081,139.6927529 -JPN04,Chubu,35.15354403,136.8837366 -JPN05,Hokuriku,36.5642752,136.6438165 -JPN06,Kansai,34.80832504,135.5933724 -JPN07,Chugoku,34.4209556,132.475615 -JPN08,Shikoku,33.72568741,133.4371583 -JPN09,Kyushu,32.76967313,131.1444977 \ No newline at end of file +name,long_name,y,x,bus_self_sufficiency +JPN01,Hokkaido,42.98035309,142.4272861,0.1 +JPN02,Tohoku,38.44914886,140.3148359,0.1 +JPN03,Tokyo,35.67942081,139.6927529,0.1 +JPN04,Chubu,35.15354403,136.8837366,0.1 +JPN05,Hokuriku,36.5642752,136.6438165,0.1 +JPN06,Kansai,34.80832504,135.5933724,0.1 +JPN07,Chugoku,34.4209556,132.475615,0.1 +JPN08,Shikoku,33.72568741,133.4371583,0.1 +JPN09,Kyushu,32.76967313,131.1444977,0.1 diff --git a/stock_models/Japan/carriers.csv b/stock_models/Japan/carriers.csv index 48afff4..dae4827 100644 --- a/stock_models/Japan/carriers.csv +++ b/stock_models/Japan/carriers.csv @@ -1,24 +1,24 @@ -name,co2_emissions,color,nice_name -AC,0.,red,AC -Coal,0.5,#322f34,Coal -Gas,0.5,#bababa,Gas -LNG,0.5,#bababa,LNG -Oil,0.5,#5d407c,Oil -GasCCS,0.5,#d9d9d9,Gas CCS -Ammonia,0.5,#d9a88b,Ammonia/coal -Hydrogen,0.5,#f3f3f3,Hydrogen/gas -Nuclear,0,#ee9dda,Nuclear -Biomass,-999,#e25329,Biomass -Geothermal,0,#f75726,Geothermal -HydroConventional,0,#8292e8,Hydro conventional -Solar,0,#ffe19b,Solar -SolarGrid,0,#ffe19b,Solar grid-scale -Wind,0,#66dad0,Wind -OffshoreWind,0,#66dad0,Offshore wind -OnshoreWind,0,#99e6df,Onshore wind -PumpedHydro,-999,#a5d1f9,Pumped hydro -battery,-999,#c3e0fb,Battery -Batteries,-999,#c3e0fb,Battery storage -Batteries,-999,#c3e0fb,Battery storage -Transmission,-999,#ba63da,Transmission -Other,-999,#ba63da,Other \ No newline at end of file +name,co2_emissions,color,nice_name,max_annual_utilisation +AC,0,red,AC,0.9 +Coal,0.5,#322f34,Coal,0.4 +Gas,0.5,#bababa,Gas,0.9 +LNG,0.5,#bababa,LNG,0.9 +Oil,0.5,#5d407c,Oil,0.9 +GasCCS,0.5,#d9d9d9,Gas CCS,0.9 +Ammonia,0.5,#d9a88b,Ammonia/coal,0.9 +Hydrogen,0,#f3f3f3,Hydrogen,0.9 +Nuclear,0,#ee9dda,Nuclear,0.9 +Biomass,-999,#e25329,Biomass,0.9 +Geothermal,0,#f75726,Geothermal,0.9 +HydroConventional,0,#8292e8,Hydro conventional,0.9 +Solar,0,#ffe19b,Solar,0.9 +SolarGrid,0,#ffe19b,Solar grid-scale,0.9 +Wind,0,#66dad0,Wind,0.9 +OffshoreWind,0,#66dad0,Offshore wind,0.9 +OnshoreWind,0,#99e6df,Onshore wind,0.9 +PumpedHydro,-999,#a5d1f9,Pumped hydro,1 +battery,-999,#c3e0fb,Battery,1 +Batteries,-999,#c3e0fb,Battery storage,1 +Transmission,-999,#ba63da,Transmission,0.9 +Other,-999,#ba63da,Other,0.9 +Hydrogen Storage,0,#f3f3f3,Hydrogen storage,1 diff --git a/stock_models/Japan/generators.csv b/stock_models/Japan/generators.csv index 334e8e4..6886f23 100644 --- a/stock_models/Japan/generators.csv +++ b/stock_models/Japan/generators.csv @@ -1,82 +1,91 @@ name,bus,p_nom,p_nom_extendable,carrier,marginal_cost,capital_cost,build_year,lifetime,efficiency,type -JPN01-Coal,JPN01,2586,FALSE,Coal,1,10,2030,25,0.4,JPN01-Coal -JPN01-LNG,JPN01,697,FALSE,LNG,1,10,2030,25,0.4,JPN01-LNG -JPN01-Oil,JPN01,1988,FALSE,Oil,1,10,2030,25,0.4,JPN01-Oil -JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,10,2030,25,0.4,JPN01-Nuclear -JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,10,2030,25,0.4,JPN01-HydroConventional -JPN01-Wind,JPN01,1619,FALSE,Wind,1,10,2030,25,0.4,JPN01-Wind -JPN01-Solar,JPN01,2722,FALSE,Solar,1,10,2030,25,0.4,JPN01-Solar -JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,10,2030,25,0.4,JPN01-Geothermal -JPN01-Biomass,JPN01,458,FALSE,Biomass,1,10,2030,25,0.4,JPN01-Biomass -JPN02-Coal,JPN02,4784,FALSE,Coal,1,10,2030,25,0.4,JPN02-Coal -JPN02-LNG,JPN02,5181,FALSE,LNG,1,10,2030,25,0.4,JPN02-LNG -JPN02-Oil,JPN02,491,FALSE,Oil,1,10,2030,25,0.4,JPN02-Oil -JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,10,2030,25,0.4,JPN02-Nuclear -JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,10,2030,25,0.4,JPN02-HydroConventional -JPN02-Wind,JPN02,3168,FALSE,Wind,1,10,2030,25,0.4,JPN02-Wind -JPN02-Solar,JPN02,6080,FALSE,Solar,1,10,2030,25,0.4,JPN02-Solar -JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,10,2030,25,0.4,JPN02-Geothermal -JPN02-Biomass,JPN02,625,FALSE,Biomass,1,10,2030,25,0.4,JPN02-Biomass -JPN03-Coal,JPN03,8070,FALSE,Coal,1,10,2030,25,0.4,JPN03-Coal -JPN03-LNG,JPN03,33867,FALSE,LNG,1,10,2030,25,0.4,JPN03-LNG -JPN03-Oil,JPN03,5807,FALSE,Oil,1,10,2030,25,0.4,JPN03-Oil -JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,10,2030,25,0.4,JPN03-Nuclear -JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,10,2030,25,0.4,JPN03-HydroConventional -JPN03-Wind,JPN03,865,FALSE,Wind,1,10,2030,25,0.4,JPN03-Wind -JPN03-Solar,JPN03,22718,FALSE,Solar,1,10,2030,25,0.4,JPN03-Solar -JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,10,2030,25,0.4,JPN03-Geothermal -JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,10,2030,25,0.4,JPN03-Biomass -JPN04-Coal,JPN04,5382,FALSE,Coal,1,10,2030,25,0.4,JPN04-Coal -JPN04-LNG,JPN04,17237,FALSE,LNG,1,10,2030,25,0.4,JPN04-LNG -JPN04-Oil,JPN04,1817,FALSE,Oil,1,10,2030,25,0.4,JPN04-Oil -JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,10,2030,25,0.4,JPN04-Nuclear -JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,10,2030,25,0.4,JPN04-HydroConventional -JPN04-Wind,JPN04,893,FALSE,Wind,1,10,2030,25,0.4,JPN04-Wind -JPN04-Solar,JPN04,13681,FALSE,Solar,1,10,2030,25,0.4,JPN04-Solar -JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,10,2030,25,0.4,JPN04-Geothermal -JPN04-Biomass,JPN04,572,FALSE,Biomass,1,10,2030,25,0.4,JPN04-Biomass -JPN05-Coal,JPN05,4815,FALSE,Coal,1,10,2030,25,0.4,JPN05-Coal -JPN05-LNG,JPN05,1595,FALSE,LNG,1,10,2030,25,0.4,JPN05-LNG -JPN05-Oil,JPN05,1177,FALSE,Oil,1,10,2030,25,0.4,JPN05-Oil -JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,10,2030,25,0.4,JPN05-Nuclear -JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,10,2030,25,0.4,JPN05-HydroConventional -JPN05-Wind,JPN05,661,FALSE,Wind,1,10,2030,25,0.4,JPN05-Wind -JPN05-Solar,JPN05,2674,FALSE,Solar,1,10,2030,25,0.4,JPN05-Solar -JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,10,2030,25,0.4,JPN05-Geothermal -JPN05-Biomass,JPN05,136,FALSE,Biomass,1,10,2030,25,0.4,JPN05-Biomass -JPN06-Coal,JPN06,4402,FALSE,Coal,1,10,2030,25,0.4,JPN06-Coal -JPN06-LNG,JPN06,9772,FALSE,LNG,1,10,2030,25,0.4,JPN06-LNG -JPN06-Oil,JPN06,3120,FALSE,Oil,1,10,2030,25,0.4,JPN06-Oil -JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,10,2030,25,0.4,JPN06-Nuclear -JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,10,2030,25,0.4,JPN06-HydroConventional -JPN06-Wind,JPN06,457,FALSE,Wind,1,10,2030,25,0.4,JPN06-Wind -JPN06-Solar,JPN06,7605,FALSE,Solar,1,10,2030,25,0.4,JPN06-Solar -JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,10,2030,25,0.4,JPN06-Geothermal -JPN06-Biomass,JPN06,568,FALSE,Biomass,1,10,2030,25,0.4,JPN06-Biomass -JPN07-Coal,JPN07,5622,FALSE,Coal,1,10,2030,25,0.4,JPN07-Coal -JPN07-LNG,JPN07,2578,FALSE,LNG,1,10,2030,25,0.4,JPN07-LNG -JPN07-Oil,JPN07,2109,FALSE,Oil,1,10,2030,25,0.4,JPN07-Oil -JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,10,2030,25,0.4,JPN07-Nuclear -JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,10,2030,25,0.4,JPN07-HydroConventional -JPN07-Wind,JPN07,802,FALSE,Wind,1,10,2030,25,0.4,JPN07-Wind -JPN07-Solar,JPN07,8447,FALSE,Solar,1,10,2030,25,0.4,JPN07-Solar -JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,10,2030,25,0.4,JPN07-Geothermal -JPN07-Biomass,JPN07,899,FALSE,Biomass,1,10,2030,25,0.4,JPN07-Biomass -JPN08-Coal,JPN08,3851,FALSE,Coal,1,10,2030,25,0.4,JPN08-Coal -JPN08-LNG,JPN08,942,FALSE,LNG,1,10,2030,25,0.4,JPN08-LNG -JPN08-Oil,JPN08,1480,FALSE,Oil,1,10,2030,25,0.4,JPN08-Oil -JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,10,2030,25,0.4,JPN08-Nuclear -JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,10,2030,25,0.4,JPN08-HydroConventional -JPN08-Wind,JPN08,627,FALSE,Wind,1,10,2030,25,0.4,JPN08-Wind -JPN08-Solar,JPN08,3940,FALSE,Solar,1,10,2030,25,0.4,JPN08-Solar -JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,10,2030,25,0.4,JPN08-Geothermal -JPN08-Biomass,JPN08,349,FALSE,Biomass,1,10,2030,25,0.4,JPN08-Biomass -JPN09-Coal,JPN09,7246,FALSE,Coal,1,10,2030,25,0.4,JPN09-Coal -JPN09-LNG,JPN09,4440,FALSE,LNG,1,10,2030,25,0.4,JPN09-LNG -JPN09-Oil,JPN09,1373,FALSE,Oil,1,10,2030,25,0.4,JPN09-Oil -JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,10,2030,25,0.4,JPN09-Nuclear -JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,10,2030,25,0.4,JPN09-HydroConventional -JPN09-Wind,JPN09,1482,FALSE,Wind,1,10,2030,25,0.4,JPN09-Wind -JPN09-Solar,JPN09,14409,FALSE,Solar,1,10,2030,25,0.4,JPN09-Solar -JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,10,2030,25,0.4,JPN09-Geothermal -JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,10,2030,25,0.4,JPN09-Biomass +JPN01-Coal,JPN01,2586,FALSE,Coal,1,2500,2030,25,0.35,JPN01-Coal +JPN01-LNG,JPN01,697,FALSE,LNG,1,1500,2030,25,0.6,JPN01-LNG +JPN01-Oil,JPN01,1988,FALSE,Oil,1,900,2030,25,0.3,JPN01-Oil +JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,8000,2030,25,0.8,JPN01-Nuclear +JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,4000,2030,25,1,JPN01-HydroConventional +JPN01-Wind,JPN01,1619,FALSE,Wind,1,2000,2030,25,1,JPN01-Wind +JPN01-Solar,JPN01,2722,FALSE,Solar,1,1200,2030,25,1,JPN01-Solar +JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,4000,2030,25,1,JPN01-Geothermal +JPN01-Biomass,JPN01,458,FALSE,Biomass,1,2000,2030,25,0.3,JPN01-Biomass +JPN02-Coal,JPN02,4784,FALSE,Coal,1,2500,2030,25,0.35,JPN02-Coal +JPN02-LNG,JPN02,5181,FALSE,LNG,1,1500,2030,25,0.6,JPN02-LNG +JPN02-Oil,JPN02,491,FALSE,Oil,1,900,2030,25,0.3,JPN02-Oil +JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,8000,2030,25,0.8,JPN02-Nuclear +JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,4000,2030,25,1,JPN02-HydroConventional +JPN02-Wind,JPN02,3168,FALSE,Wind,1,2000,2030,25,1,JPN02-Wind +JPN02-Solar,JPN02,6080,FALSE,Solar,1,1200,2030,25,1,JPN02-Solar +JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,4000,2030,25,1,JPN02-Geothermal +JPN02-Biomass,JPN02,625,FALSE,Biomass,1,2000,2030,25,0.3,JPN02-Biomass +JPN03-Coal,JPN03,8070,FALSE,Coal,1,2500,2030,25,0.35,JPN03-Coal +JPN03-LNG,JPN03,33867,FALSE,LNG,1,1500,2030,25,0.6,JPN03-LNG +JPN03-Oil,JPN03,5807,FALSE,Oil,1,900,2030,25,0.3,JPN03-Oil +JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,8000,2030,25,0.8,JPN03-Nuclear +JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,4000,2030,25,1,JPN03-HydroConventional +JPN03-Wind,JPN03,865,FALSE,Wind,1,2000,2030,25,1,JPN03-Wind +JPN03-Solar,JPN03,22718,FALSE,Solar,1,1200,2030,25,1,JPN03-Solar +JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,4000,2030,25,1,JPN03-Geothermal +JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,2000,2030,25,0.3,JPN03-Biomass +JPN04-Coal,JPN04,5382,FALSE,Coal,1,2500,2030,25,0.35,JPN04-Coal +JPN04-LNG,JPN04,17237,FALSE,LNG,1,1500,2030,25,0.6,JPN04-LNG +JPN04-Oil,JPN04,1817,FALSE,Oil,1,900,2030,25,0.3,JPN04-Oil +JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,8000,2030,25,0.8,JPN04-Nuclear +JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,4000,2030,25,1,JPN04-HydroConventional +JPN04-Wind,JPN04,893,FALSE,Wind,1,2000,2030,25,1,JPN04-Wind +JPN04-Solar,JPN04,13681,FALSE,Solar,1,1200,2030,25,1,JPN04-Solar +JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,4000,2030,25,1,JPN04-Geothermal +JPN04-Biomass,JPN04,572,FALSE,Biomass,1,2000,2030,25,0.3,JPN04-Biomass +JPN05-Coal,JPN05,4815,FALSE,Coal,1,2500,2030,25,0.35,JPN05-Coal +JPN05-LNG,JPN05,1595,FALSE,LNG,1,1500,2030,25,0.6,JPN05-LNG +JPN05-Oil,JPN05,1177,FALSE,Oil,1,900,2030,25,0.3,JPN05-Oil +JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,8000,2030,25,0.8,JPN05-Nuclear +JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,4000,2030,25,1,JPN05-HydroConventional +JPN05-Wind,JPN05,661,FALSE,Wind,1,2000,2030,25,1,JPN05-Wind +JPN05-Solar,JPN05,2674,FALSE,Solar,1,1200,2030,25,1,JPN05-Solar +JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,4000,2030,25,1,JPN05-Geothermal +JPN05-Biomass,JPN05,136,FALSE,Biomass,1,2000,2030,25,0.3,JPN05-Biomass +JPN06-Coal,JPN06,4402,FALSE,Coal,1,2500,2030,25,0.35,JPN06-Coal +JPN06-LNG,JPN06,9772,FALSE,LNG,1,1500,2030,25,0.6,JPN06-LNG +JPN06-Oil,JPN06,3120,FALSE,Oil,1,900,2030,25,0.3,JPN06-Oil +JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,8000,2030,25,0.8,JPN06-Nuclear +JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,4000,2030,25,1,JPN06-HydroConventional +JPN06-Wind,JPN06,457,FALSE,Wind,1,2000,2030,25,1,JPN06-Wind +JPN06-Solar,JPN06,7605,FALSE,Solar,1,1200,2030,25,1,JPN06-Solar +JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,4000,2030,25,1,JPN06-Geothermal +JPN06-Biomass,JPN06,568,FALSE,Biomass,1,2000,2030,25,0.3,JPN06-Biomass +JPN07-Coal,JPN07,5622,FALSE,Coal,1,2500,2030,25,0.35,JPN07-Coal +JPN07-LNG,JPN07,2578,FALSE,LNG,1,1500,2030,25,0.6,JPN07-LNG +JPN07-Oil,JPN07,2109,FALSE,Oil,1,900,2030,25,0.3,JPN07-Oil +JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,8000,2030,25,0.8,JPN07-Nuclear +JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,4000,2030,25,1,JPN07-HydroConventional +JPN07-Wind,JPN07,802,FALSE,Wind,1,2000,2030,25,1,JPN07-Wind +JPN07-Solar,JPN07,8447,FALSE,Solar,1,1200,2030,25,1,JPN07-Solar +JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,4000,2030,25,1,JPN07-Geothermal +JPN07-Biomass,JPN07,899,FALSE,Biomass,1,2000,2030,25,0.3,JPN07-Biomass +JPN08-Coal,JPN08,3851,FALSE,Coal,1,2500,2030,25,0.35,JPN08-Coal +JPN08-LNG,JPN08,942,FALSE,LNG,1,1500,2030,25,0.6,JPN08-LNG +JPN08-Oil,JPN08,1480,FALSE,Oil,1,900,2030,25,0.3,JPN08-Oil +JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,8000,2030,25,0.8,JPN08-Nuclear +JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,4000,2030,25,1,JPN08-HydroConventional +JPN08-Wind,JPN08,627,FALSE,Wind,1,2000,2030,25,1,JPN08-Wind +JPN08-Solar,JPN08,3940,FALSE,Solar,1,1200,2030,25,1,JPN08-Solar +JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,4000,2030,25,1,JPN08-Geothermal +JPN08-Biomass,JPN08,349,FALSE,Biomass,1,2000,2030,25,0.3,JPN08-Biomass +JPN09-Coal,JPN09,7246,FALSE,Coal,1,2500,2030,25,0.35,JPN09-Coal +JPN09-LNG,JPN09,4440,FALSE,LNG,1,1500,2030,25,0.6,JPN09-LNG +JPN09-Oil,JPN09,1373,FALSE,Oil,1,900,2030,25,0.3,JPN09-Oil +JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,8000,2030,25,0.8,JPN09-Nuclear +JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,4000,2030,25,1,JPN09-HydroConventional +JPN09-Wind,JPN09,1482,FALSE,Wind,1,2000,2030,25,1,JPN09-Wind +JPN09-Solar,JPN09,14409,FALSE,Solar,1,1200,2030,25,1,JPN09-Solar +JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,4000,2030,25,1,JPN09-Geothermal +JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,2000,2030,25,0.3,JPN09-Biomass +JPN01-Hydrogen,JPN01,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN01-Hydrogen +JPN02-Hydrogen,JPN02,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN02-Hydrogen +JPN03-Hydrogen,JPN03,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN03-Hydrogen +JPN04-Hydrogen,JPN04,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN04-Hydrogen +JPN05-Hydrogen,JPN05,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN05-Hydrogen +JPN06-Hydrogen,JPN06,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN06-Hydrogen +JPN07-Hydrogen,JPN07,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN07-Hydrogen +JPN08-Hydrogen,JPN08,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN08-Hydrogen +JPN09-Hydrogen,JPN09,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN09-Hydrogen diff --git a/stock_models/Japan/investment_periods.csv b/stock_models/Japan/investment_periods.csv index 6317b1f..9f1d08e 100644 --- a/stock_models/Japan/investment_periods.csv +++ b/stock_models/Japan/investment_periods.csv @@ -1,2 +1,2 @@ -,objective,years -2030,1,1 \ No newline at end of file +,objective,years +2030,1,1 diff --git a/stock_models/Japan/links.csv b/stock_models/Japan/links.csv index fec4cd6..c6163f2 100644 --- a/stock_models/Japan/links.csv +++ b/stock_models/Japan/links.csv @@ -1,21 +1,21 @@ name,bus0,bus1,carrier,efficiency,build_year,lifetime,p_nom,p_nom_extendable,p_nom_min,capital_cost,length -JPN02-JPN01-2030,JPN02,JPN01,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN01-JPN02-2030,JPN01,JPN02,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN03-JPN02-2030,JPN03,JPN02,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN02-JPN03-2030,JPN02,JPN03,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN04-JPN03-2030,JPN04,JPN03,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN03-JPN04-2030,JPN03,JPN04,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN04-JPN05-2030,JPN04,JPN05,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN05-JPN06-2030,JPN05,JPN06,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN04-JPN06-2030,JPN04,JPN06,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN05-JPN04-2030,JPN05,JPN04,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN06-JPN05-2030,JPN06,JPN05,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN06-JPN04-2030,JPN06,JPN04,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN07-JPN06-2030,JPN07,JPN06,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN06-JPN07-2030,JPN06,JPN07,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN08-JPN06-2030,JPN08,JPN06,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN06-JPN08-2030,JPN06,JPN08,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN08-JPN07-2030,JPN08,JPN07,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN07-JPN08-2030,JPN07,JPN08,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN09-JPN07-2030,JPN09,JPN07,transmission,0.97,2030,50,0,TRUE,0,999,1000 -JPN07-JPN09-2030,JPN07,JPN09,transmission,0.97,2030,50,0,TRUE,0,999,1000 \ No newline at end of file +JPN02-JPN01-2030,JPN02,JPN01,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN01-JPN02-2030,JPN01,JPN02,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN03-JPN02-2030,JPN03,JPN02,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN02-JPN03-2030,JPN02,JPN03,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN04-JPN03-2030,JPN04,JPN03,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN03-JPN04-2030,JPN03,JPN04,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN04-JPN05-2030,JPN04,JPN05,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN05-JPN06-2030,JPN05,JPN06,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN04-JPN06-2030,JPN04,JPN06,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN05-JPN04-2030,JPN05,JPN04,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN06-JPN05-2030,JPN06,JPN05,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN06-JPN04-2030,JPN06,JPN04,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN07-JPN06-2030,JPN07,JPN06,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN06-JPN07-2030,JPN06,JPN07,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN08-JPN06-2030,JPN08,JPN06,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN06-JPN08-2030,JPN06,JPN08,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN08-JPN07-2030,JPN08,JPN07,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN07-JPN08-2030,JPN07,JPN08,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN09-JPN07-2030,JPN09,JPN07,Transmission,0.97,2030,50,0,TRUE,0,999,1000 +JPN07-JPN09-2030,JPN07,JPN09,Transmission,0.97,2030,50,0,TRUE,0,999,1000 diff --git a/stock_models/Japan/loads-p_set.csv b/stock_models/Japan/loads-p_set.csv index 39479b5..dc6428a 100644 --- a/stock_models/Japan/loads-p_set.csv +++ b/stock_models/Japan/loads-p_set.csv @@ -8759,3 +8759,4 @@ ,15000,7000,3000,3000,16000,9000,3000,9000,32000 ,14000,6000,3000,3000,15000,9000,3000,9000,31000 ,15000,7000,3000,3000,16000,9000,3000,9000,31000 + diff --git a/stock_models/Japan/storage_units.csv b/stock_models/Japan/storage_units.csv index 5f894b6..7eed56a 100644 --- a/stock_models/Japan/storage_units.csv +++ b/stock_models/Japan/storage_units.csv @@ -8,3 +8,12 @@ JPN06-Batteries-2030,JPN06,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JP JPN07-Batteries-2030,JPN07,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN07-Batteries-2030 JPN08-Batteries-2030,JPN08,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN08-Batteries-2030 JPN09-Batteries-2030,JPN09,0,TRUE,Batteries,999,2030,15,TRUE,6,0.95,0.95,0.01,JPN09-Batteries-2030 +JPN01-Hydrogen-2030,JPN01,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN01-Hydrogen-2030 +JPN02-Hydrogen-2030,JPN02,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN02-Hydrogen-2030 +JPN03-Hydrogen-2030,JPN03,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN03-Hydrogen-2030 +JPN04-Hydrogen-2030,JPN04,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN04-Hydrogen-2030 +JPN05-Hydrogen-2030,JPN05,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN05-Hydrogen-2030 +JPN06-Hydrogen-2030,JPN06,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN06-Hydrogen-2030 +JPN07-Hydrogen-2030,JPN07,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN07-Hydrogen-2030 +JPN08-Hydrogen-2030,JPN08,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN08-Hydrogen-2030 +JPN09-Hydrogen-2030,JPN09,0,TRUE,Hydrogen,23757,2030,22,TRUE,168,0.95,0.95,0.01,JPN09-Hydrogen-2030 diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 8b80825..1f4a621 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -571,6 +571,7 @@ def constr_max_annual_utilisation( ] .index .tolist()) + print(target_generators) for each_generator in target_generators: @@ -599,4 +600,36 @@ def constr_max_annual_utilisation( sign = '<=', rhs = max_utilisation_rate * target_capacity * 8760 / model_frequency, name=str(generator_year) + str(each_generator) + '_max_utilisation_rate', - ) \ No newline at end of file + ) + +def constr_cogeneration( + network : pypsa.Network, + lp_model, + generators : list=None, + carriers : list = None, + model_frequency : int = 1, + ): + + for generator_year in network.investment_periods: + target_generators = ( + network + .generators + .loc[ + (network.generators.str.contains('cofiring')) & + (network.generators.build_year <= generator_year) + ] + .index + .tolist()) + print(target_generators) + + for each_generator in target_generators: + + # The generation by coal plant in the generation year + target_generation = ( + lp_model.variables['Generator-p'] + .sel( + period=generator_year, + Generator=each_generator + ) + .sum() + ) diff --git a/tz_pypsa/model.py b/tz_pypsa/model.py index a85a679..38cddcf 100644 --- a/tz_pypsa/model.py +++ b/tz_pypsa/model.py @@ -344,6 +344,7 @@ def load_csv_from_dir( path_to_dir, backstop : bool = False, **kwargs, + ) -> pypsa.Network: ''' @@ -356,7 +357,7 @@ def load_csv_from_dir( Directory from which we load the model. This directory should contain csv files. File names are strictly enforced. backstop : bool (optional) If True, the model will include backstop technologies (default is False). - + Returns ---------- @@ -374,7 +375,8 @@ def load_csv_from_dir( network = pypsa.Network() - network.import_from_csv_folder(path_to_dir) + network.import_from_csv_folder( + path_to_dir) # --- add backstop --- # if backstop: From 544a97c99a97a44cdf90989889a13055d2f47146 Mon Sep 17 00:00:00 2001 From: djwels Date: Sat, 15 Feb 2025 16:26:53 +0000 Subject: [PATCH 8/9] Added constraints for cofiring no fixed share --- stock_models/Japan/generators.csv | 2 ++ tz_pypsa/constraints.py | 57 +++++++++++++++++-------------- 2 files changed, 33 insertions(+), 26 deletions(-) diff --git a/stock_models/Japan/generators.csv b/stock_models/Japan/generators.csv index 6886f23..189f5c2 100644 --- a/stock_models/Japan/generators.csv +++ b/stock_models/Japan/generators.csv @@ -89,3 +89,5 @@ JPN06-Hydrogen,JPN06,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN06-Hydrogen JPN07-Hydrogen,JPN07,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN07-Hydrogen JPN08-Hydrogen,JPN08,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN08-Hydrogen JPN09-Hydrogen,JPN09,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN09-Hydrogen +JPN01-Coal-Biomass-Cofiring-Unit1,JPN01,1000,FALSE,Coal,0.01,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit1 +JPN01-Coal-Biomass-Cofiring-Unit2,JPN01,1000,FALSE,Biomass,0.1,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit2 diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index 1f4a621..a8e1124 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -602,34 +602,39 @@ def constr_max_annual_utilisation( name=str(generator_year) + str(each_generator) + '_max_utilisation_rate', ) -def constr_cogeneration( +def constr_max_cofiring_set_generation( network : pypsa.Network, lp_model, - generators : list=None, - carriers : list = None, - model_frequency : int = 1, - ): - - for generator_year in network.investment_periods: - target_generators = ( - network - .generators - .loc[ - (network.generators.str.contains('cofiring')) & - (network.generators.build_year <= generator_year) - ] - .index - .tolist()) - print(target_generators) + generator_1 : str, + generator_2: str, + rhs_max_generation_1 : float = 0.5, # split of capacity between two generators + rhs_max_generation_2 : float = 0.5, # split of capacity between two generators + sign : str = '<=', +): + + if str(network.investment_periods[0]) in generator_1: + target_generator_capacity_1 = network.generators.loc[generator_1].p_nom + else: + target_generator_capacity_1 = ( + network.generators.loc[generator_1].p_nom + ) - for each_generator in target_generators: + if str(network.investment_periods[0]) in generator_2: + target_generator_capacity_2 = network.generators.loc[generator_2].p_nom + else: + target_generator_capacity_2 = ( + network.generators.loc[generator_2].p_nom + ) - # The generation by coal plant in the generation year - target_generation = ( - lp_model.variables['Generator-p'] - .sel( - period=generator_year, - Generator=each_generator - ) - .sum() + lhs_total_generation = lp_model.variables['Generator-p'].sel(Generator=generator_1) + lp_model.variables['Generator-p'].sel(Generator=generator_2) + + rhs_combined_capacity = ( + ((target_generator_capacity_1) * (rhs_max_generation_1)) + ((target_generator_capacity_2) * (rhs_max_generation_2)) ) + + lp_model.add_constraints( + lhs = lhs_total_generation, + sign = sign, + rhs = rhs_combined_capacity, + name = str(generator_1) + str(generator_2) + '_max_generation_cofiring', + ) \ No newline at end of file From a91452081c4a6068edeb53e506ee7955e1fd245e Mon Sep 17 00:00:00 2001 From: djwels Date: Tue, 25 Feb 2025 11:34:02 +0000 Subject: [PATCH 9/9] Endogenous cofiring generation split --- stock_models/Japan/carriers.csv | 49 +- stock_models/Japan/generators.csv | 187 +- stock_models/Japan/loads-p_set.csv | 17523 +++++++++++++-------------- tz_pypsa/constraints.py | 8 +- 4 files changed, 8884 insertions(+), 8883 deletions(-) diff --git a/stock_models/Japan/carriers.csv b/stock_models/Japan/carriers.csv index dae4827..edad51c 100644 --- a/stock_models/Japan/carriers.csv +++ b/stock_models/Japan/carriers.csv @@ -1,24 +1,25 @@ -name,co2_emissions,color,nice_name,max_annual_utilisation -AC,0,red,AC,0.9 -Coal,0.5,#322f34,Coal,0.4 -Gas,0.5,#bababa,Gas,0.9 -LNG,0.5,#bababa,LNG,0.9 -Oil,0.5,#5d407c,Oil,0.9 -GasCCS,0.5,#d9d9d9,Gas CCS,0.9 -Ammonia,0.5,#d9a88b,Ammonia/coal,0.9 -Hydrogen,0,#f3f3f3,Hydrogen,0.9 -Nuclear,0,#ee9dda,Nuclear,0.9 -Biomass,-999,#e25329,Biomass,0.9 -Geothermal,0,#f75726,Geothermal,0.9 -HydroConventional,0,#8292e8,Hydro conventional,0.9 -Solar,0,#ffe19b,Solar,0.9 -SolarGrid,0,#ffe19b,Solar grid-scale,0.9 -Wind,0,#66dad0,Wind,0.9 -OffshoreWind,0,#66dad0,Offshore wind,0.9 -OnshoreWind,0,#99e6df,Onshore wind,0.9 -PumpedHydro,-999,#a5d1f9,Pumped hydro,1 -battery,-999,#c3e0fb,Battery,1 -Batteries,-999,#c3e0fb,Battery storage,1 -Transmission,-999,#ba63da,Transmission,0.9 -Other,-999,#ba63da,Other,0.9 -Hydrogen Storage,0,#f3f3f3,Hydrogen storage,1 +name,co2_emissions,color,nice_name,max_annual_utilisation,carbon_free_score +AC,0,red,AC,0.9,1 +Coal,0.5,#322f34,Coal,0.4,0 +Gas,0.5,#bababa,Gas,0.9,0 +LNG,0.5,#bababa,LNG,0.9,0 +Oil,0.5,#5d407c,Oil,0.9,0 +GasCCS,0.5,#d9d9d9,Gas CCS,0.9,0.9 +Ammonia,0.5,#d9a88b,Ammonia/coal,0.9,0.3 +Hydrogen,0,#f3f3f3,Hydrogen,0.9,1 +Nuclear,0,#ee9dda,Nuclear,0.9,1 +Biomass,-999,#e25329,Biomass,0.9,1 +Geothermal,0,#f75726,Geothermal,0.9,1 +HydroConventional,0,#8292e8,Hydro conventional,0.9,1 +Solar,0,#ffe19b,Solar,0.9,1 +SolarGrid,0,#ffe19b,Solar grid-scale,0.9,1 +Wind,0,#66dad0,Wind,0.9,1 +OffshoreWind,0,#66dad0,Offshore wind,0.9,1 +OnshoreWind,0,#99e6df,Onshore wind,0.9,1 +PumpedHydro,-999,#a5d1f9,Pumped hydro,1,1 +battery,-999,#c3e0fb,Battery,1,1 +Batteries,-999,#c3e0fb,Battery storage,1,1 +Transmission,-999,#ba63da,Transmission,0.9,1 +Other,-999,#ba63da,Other,0.9,1 +Hydrogen Storage,0,#f3f3f3,Hydrogen storage,1,1 +HydrogenGasBlend10,0.45,#f3f3f3,Hydrogen/Gas,1,0.1 diff --git a/stock_models/Japan/generators.csv b/stock_models/Japan/generators.csv index 189f5c2..2965a20 100644 --- a/stock_models/Japan/generators.csv +++ b/stock_models/Japan/generators.csv @@ -1,93 +1,94 @@ -name,bus,p_nom,p_nom_extendable,carrier,marginal_cost,capital_cost,build_year,lifetime,efficiency,type -JPN01-Coal,JPN01,2586,FALSE,Coal,1,2500,2030,25,0.35,JPN01-Coal -JPN01-LNG,JPN01,697,FALSE,LNG,1,1500,2030,25,0.6,JPN01-LNG -JPN01-Oil,JPN01,1988,FALSE,Oil,1,900,2030,25,0.3,JPN01-Oil -JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,8000,2030,25,0.8,JPN01-Nuclear -JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,4000,2030,25,1,JPN01-HydroConventional -JPN01-Wind,JPN01,1619,FALSE,Wind,1,2000,2030,25,1,JPN01-Wind -JPN01-Solar,JPN01,2722,FALSE,Solar,1,1200,2030,25,1,JPN01-Solar -JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,4000,2030,25,1,JPN01-Geothermal -JPN01-Biomass,JPN01,458,FALSE,Biomass,1,2000,2030,25,0.3,JPN01-Biomass -JPN02-Coal,JPN02,4784,FALSE,Coal,1,2500,2030,25,0.35,JPN02-Coal -JPN02-LNG,JPN02,5181,FALSE,LNG,1,1500,2030,25,0.6,JPN02-LNG -JPN02-Oil,JPN02,491,FALSE,Oil,1,900,2030,25,0.3,JPN02-Oil -JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,8000,2030,25,0.8,JPN02-Nuclear -JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,4000,2030,25,1,JPN02-HydroConventional -JPN02-Wind,JPN02,3168,FALSE,Wind,1,2000,2030,25,1,JPN02-Wind -JPN02-Solar,JPN02,6080,FALSE,Solar,1,1200,2030,25,1,JPN02-Solar -JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,4000,2030,25,1,JPN02-Geothermal -JPN02-Biomass,JPN02,625,FALSE,Biomass,1,2000,2030,25,0.3,JPN02-Biomass -JPN03-Coal,JPN03,8070,FALSE,Coal,1,2500,2030,25,0.35,JPN03-Coal -JPN03-LNG,JPN03,33867,FALSE,LNG,1,1500,2030,25,0.6,JPN03-LNG -JPN03-Oil,JPN03,5807,FALSE,Oil,1,900,2030,25,0.3,JPN03-Oil -JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,8000,2030,25,0.8,JPN03-Nuclear -JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,4000,2030,25,1,JPN03-HydroConventional -JPN03-Wind,JPN03,865,FALSE,Wind,1,2000,2030,25,1,JPN03-Wind -JPN03-Solar,JPN03,22718,FALSE,Solar,1,1200,2030,25,1,JPN03-Solar -JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,4000,2030,25,1,JPN03-Geothermal -JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,2000,2030,25,0.3,JPN03-Biomass -JPN04-Coal,JPN04,5382,FALSE,Coal,1,2500,2030,25,0.35,JPN04-Coal -JPN04-LNG,JPN04,17237,FALSE,LNG,1,1500,2030,25,0.6,JPN04-LNG -JPN04-Oil,JPN04,1817,FALSE,Oil,1,900,2030,25,0.3,JPN04-Oil -JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,8000,2030,25,0.8,JPN04-Nuclear -JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,4000,2030,25,1,JPN04-HydroConventional -JPN04-Wind,JPN04,893,FALSE,Wind,1,2000,2030,25,1,JPN04-Wind -JPN04-Solar,JPN04,13681,FALSE,Solar,1,1200,2030,25,1,JPN04-Solar -JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,4000,2030,25,1,JPN04-Geothermal -JPN04-Biomass,JPN04,572,FALSE,Biomass,1,2000,2030,25,0.3,JPN04-Biomass -JPN05-Coal,JPN05,4815,FALSE,Coal,1,2500,2030,25,0.35,JPN05-Coal -JPN05-LNG,JPN05,1595,FALSE,LNG,1,1500,2030,25,0.6,JPN05-LNG -JPN05-Oil,JPN05,1177,FALSE,Oil,1,900,2030,25,0.3,JPN05-Oil -JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,8000,2030,25,0.8,JPN05-Nuclear -JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,4000,2030,25,1,JPN05-HydroConventional -JPN05-Wind,JPN05,661,FALSE,Wind,1,2000,2030,25,1,JPN05-Wind -JPN05-Solar,JPN05,2674,FALSE,Solar,1,1200,2030,25,1,JPN05-Solar -JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,4000,2030,25,1,JPN05-Geothermal -JPN05-Biomass,JPN05,136,FALSE,Biomass,1,2000,2030,25,0.3,JPN05-Biomass -JPN06-Coal,JPN06,4402,FALSE,Coal,1,2500,2030,25,0.35,JPN06-Coal -JPN06-LNG,JPN06,9772,FALSE,LNG,1,1500,2030,25,0.6,JPN06-LNG -JPN06-Oil,JPN06,3120,FALSE,Oil,1,900,2030,25,0.3,JPN06-Oil -JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,8000,2030,25,0.8,JPN06-Nuclear -JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,4000,2030,25,1,JPN06-HydroConventional -JPN06-Wind,JPN06,457,FALSE,Wind,1,2000,2030,25,1,JPN06-Wind -JPN06-Solar,JPN06,7605,FALSE,Solar,1,1200,2030,25,1,JPN06-Solar -JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,4000,2030,25,1,JPN06-Geothermal -JPN06-Biomass,JPN06,568,FALSE,Biomass,1,2000,2030,25,0.3,JPN06-Biomass -JPN07-Coal,JPN07,5622,FALSE,Coal,1,2500,2030,25,0.35,JPN07-Coal -JPN07-LNG,JPN07,2578,FALSE,LNG,1,1500,2030,25,0.6,JPN07-LNG -JPN07-Oil,JPN07,2109,FALSE,Oil,1,900,2030,25,0.3,JPN07-Oil -JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,8000,2030,25,0.8,JPN07-Nuclear -JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,4000,2030,25,1,JPN07-HydroConventional -JPN07-Wind,JPN07,802,FALSE,Wind,1,2000,2030,25,1,JPN07-Wind -JPN07-Solar,JPN07,8447,FALSE,Solar,1,1200,2030,25,1,JPN07-Solar -JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,4000,2030,25,1,JPN07-Geothermal -JPN07-Biomass,JPN07,899,FALSE,Biomass,1,2000,2030,25,0.3,JPN07-Biomass -JPN08-Coal,JPN08,3851,FALSE,Coal,1,2500,2030,25,0.35,JPN08-Coal -JPN08-LNG,JPN08,942,FALSE,LNG,1,1500,2030,25,0.6,JPN08-LNG -JPN08-Oil,JPN08,1480,FALSE,Oil,1,900,2030,25,0.3,JPN08-Oil -JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,8000,2030,25,0.8,JPN08-Nuclear -JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,4000,2030,25,1,JPN08-HydroConventional -JPN08-Wind,JPN08,627,FALSE,Wind,1,2000,2030,25,1,JPN08-Wind -JPN08-Solar,JPN08,3940,FALSE,Solar,1,1200,2030,25,1,JPN08-Solar -JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,4000,2030,25,1,JPN08-Geothermal -JPN08-Biomass,JPN08,349,FALSE,Biomass,1,2000,2030,25,0.3,JPN08-Biomass -JPN09-Coal,JPN09,7246,FALSE,Coal,1,2500,2030,25,0.35,JPN09-Coal -JPN09-LNG,JPN09,4440,FALSE,LNG,1,1500,2030,25,0.6,JPN09-LNG -JPN09-Oil,JPN09,1373,FALSE,Oil,1,900,2030,25,0.3,JPN09-Oil -JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,8000,2030,25,0.8,JPN09-Nuclear -JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,4000,2030,25,1,JPN09-HydroConventional -JPN09-Wind,JPN09,1482,FALSE,Wind,1,2000,2030,25,1,JPN09-Wind -JPN09-Solar,JPN09,14409,FALSE,Solar,1,1200,2030,25,1,JPN09-Solar -JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,4000,2030,25,1,JPN09-Geothermal -JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,2000,2030,25,0.3,JPN09-Biomass -JPN01-Hydrogen,JPN01,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN01-Hydrogen -JPN02-Hydrogen,JPN02,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN02-Hydrogen -JPN03-Hydrogen,JPN03,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN03-Hydrogen -JPN04-Hydrogen,JPN04,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN04-Hydrogen -JPN05-Hydrogen,JPN05,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN05-Hydrogen -JPN06-Hydrogen,JPN06,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN06-Hydrogen -JPN07-Hydrogen,JPN07,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN07-Hydrogen -JPN08-Hydrogen,JPN08,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN08-Hydrogen -JPN09-Hydrogen,JPN09,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN09-Hydrogen -JPN01-Coal-Biomass-Cofiring-Unit1,JPN01,1000,FALSE,Coal,0.01,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit1 -JPN01-Coal-Biomass-Cofiring-Unit2,JPN01,1000,FALSE,Biomass,0.1,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit2 +name,bus,p_nom,p_nom_extendable,carrier,marginal_cost,capital_cost,build_year,lifetime,efficiency,type,carbon_free_score +JPN01-Coal,JPN01,2586,FALSE,Coal,1,2500,2030,25,0.35,JPN01-Coal,0 +JPN01-LNG,JPN01,697,FALSE,LNG,1,1500,2030,25,0.6,JPN01-LNG,0 +JPN01-Oil,JPN01,1988,FALSE,Oil,1,900,2030,25,0.3,JPN01-Oil,0 +JPN01-Nuclear,JPN01,2070,FALSE,Nuclear,1,8000,2030,25,0.8,JPN01-Nuclear,1 +JPN01-HydroConventional,JPN01,1260,FALSE,HydroConventional,1,4000,2030,25,1,JPN01-HydroConventional,1 +JPN01-Wind,JPN01,1619,FALSE,Wind,1,2000,2030,25,1,JPN01-Wind,1 +JPN01-Solar,JPN01,2722,FALSE,Solar,1,1200,2030,25,1,JPN01-Solar,1 +JPN01-Geothermal,JPN01,38,FALSE,Geothermal,1,4000,2030,25,1,JPN01-Geothermal,1 +JPN01-Biomass,JPN01,458,FALSE,Biomass,1,2000,2030,25,0.3,JPN01-Biomass,1 +JPN02-Coal,JPN02,4784,FALSE,Coal,1,2500,2030,25,0.35,JPN02-Coal,0 +JPN02-LNG,JPN02,5181,FALSE,LNG,1,1500,2030,25,0.6,JPN02-LNG,0 +JPN02-Oil,JPN02,491,FALSE,Oil,1,900,2030,25,0.3,JPN02-Oil,0 +JPN02-Nuclear,JPN02,1650,FALSE,Nuclear,1,8000,2030,25,0.8,JPN02-Nuclear,1 +JPN02-HydroConventional,JPN02,1966,FALSE,HydroConventional,1,4000,2030,25,1,JPN02-HydroConventional,1 +JPN02-Wind,JPN02,3168,FALSE,Wind,1,2000,2030,25,1,JPN02-Wind,1 +JPN02-Solar,JPN02,6080,FALSE,Solar,1,1200,2030,25,1,JPN02-Solar,1 +JPN02-Geothermal,JPN02,52,FALSE,Geothermal,1,4000,2030,25,1,JPN02-Geothermal,1 +JPN02-Biomass,JPN02,625,FALSE,Biomass,1,2000,2030,25,0.3,JPN02-Biomass,1 +JPN03-Coal,JPN03,8070,FALSE,Coal,1,2500,2030,25,0.35,JPN03-Coal,0 +JPN03-LNG,JPN03,33867,FALSE,LNG,1,1500,2030,25,0.6,JPN03-LNG,0 +JPN03-Oil,JPN03,5807,FALSE,Oil,1,900,2030,25,0.3,JPN03-Oil,0 +JPN03-Nuclear,JPN03,9312,FALSE,Nuclear,1,8000,2030,25,0.8,JPN03-Nuclear,1 +JPN03-HydroConventional,JPN03,4183,FALSE,HydroConventional,1,4000,2030,25,1,JPN03-HydroConventional,1 +JPN03-Wind,JPN03,865,FALSE,Wind,1,2000,2030,25,1,JPN03-Wind,1 +JPN03-Solar,JPN03,22718,FALSE,Solar,1,1200,2030,25,1,JPN03-Solar,1 +JPN03-Geothermal,JPN03,98,FALSE,Geothermal,1,4000,2030,25,1,JPN03-Geothermal,1 +JPN03-Biomass,JPN03,1187,FALSE,Biomass,1,2000,2030,25,0.3,JPN03-Biomass,1 +JPN04-Coal,JPN04,5382,FALSE,Coal,1,2500,2030,25,0.35,JPN04-Coal,0 +JPN04-LNG,JPN04,17237,FALSE,LNG,1,1500,2030,25,0.6,JPN04-LNG,0 +JPN04-Oil,JPN04,1817,FALSE,Oil,1,900,2030,25,0.3,JPN04-Oil,0 +JPN04-Nuclear,JPN04,3617,FALSE,Nuclear,1,8000,2030,25,0.8,JPN04-Nuclear,1 +JPN04-HydroConventional,JPN04,3071,FALSE,HydroConventional,1,4000,2030,25,1,JPN04-HydroConventional,1 +JPN04-Wind,JPN04,893,FALSE,Wind,1,2000,2030,25,1,JPN04-Wind,1 +JPN04-Solar,JPN04,13681,FALSE,Solar,1,1200,2030,25,1,JPN04-Solar,1 +JPN04-Geothermal,JPN04,47,FALSE,Geothermal,1,4000,2030,25,1,JPN04-Geothermal,1 +JPN04-Biomass,JPN04,572,FALSE,Biomass,1,2000,2030,25,0.3,JPN04-Biomass,1 +JPN05-Coal,JPN05,4815,FALSE,Coal,1,2500,2030,25,0.35,JPN05-Coal,0 +JPN05-LNG,JPN05,1595,FALSE,LNG,1,1500,2030,25,0.6,JPN05-LNG,0 +JPN05-Oil,JPN05,1177,FALSE,Oil,1,900,2030,25,0.3,JPN05-Oil,0 +JPN05-Nuclear,JPN05,2906,FALSE,Nuclear,1,8000,2030,25,0.8,JPN05-Nuclear,1 +JPN05-HydroConventional,JPN05,4297,FALSE,HydroConventional,1,4000,2030,25,1,JPN05-HydroConventional,1 +JPN05-Wind,JPN05,661,FALSE,Wind,1,2000,2030,25,1,JPN05-Wind,1 +JPN05-Solar,JPN05,2674,FALSE,Solar,1,1200,2030,25,1,JPN05-Solar,1 +JPN05-Geothermal,JPN05,11,FALSE,Geothermal,1,4000,2030,25,1,JPN05-Geothermal,1 +JPN05-Biomass,JPN05,136,FALSE,Biomass,1,2000,2030,25,0.3,JPN05-Biomass,1 +JPN06-Coal,JPN06,4402,FALSE,Coal,1,2500,2030,25,0.35,JPN06-Coal,0 +JPN06-LNG,JPN06,9772,FALSE,LNG,1,1500,2030,25,0.6,JPN06-LNG,0 +JPN06-Oil,JPN06,3120,FALSE,Oil,1,900,2030,25,0.3,JPN06-Oil,0 +JPN06-Nuclear,JPN06,6578,FALSE,Nuclear,1,8000,2030,25,0.8,JPN06-Nuclear,1 +JPN06-HydroConventional,JPN06,3414,FALSE,HydroConventional,1,4000,2030,25,1,JPN06-HydroConventional,1 +JPN06-Wind,JPN06,457,FALSE,Wind,1,2000,2030,25,1,JPN06-Wind,1 +JPN06-Solar,JPN06,7605,FALSE,Solar,1,1200,2030,25,1,JPN06-Solar,1 +JPN06-Geothermal,JPN06,47,FALSE,Geothermal,1,4000,2030,25,1,JPN06-Geothermal,1 +JPN06-Biomass,JPN06,568,FALSE,Biomass,1,2000,2030,25,0.3,JPN06-Biomass,1 +JPN07-Coal,JPN07,5622,FALSE,Coal,1,2500,2030,25,0.35,JPN07-Coal,0 +JPN07-LNG,JPN07,2578,FALSE,LNG,1,1500,2030,25,0.6,JPN07-LNG,0 +JPN07-Oil,JPN07,2109,FALSE,Oil,1,900,2030,25,0.3,JPN07-Oil,0 +JPN07-Nuclear,JPN07,820,FALSE,Nuclear,1,8000,2030,25,0.8,JPN07-Nuclear,1 +JPN07-HydroConventional,JPN07,988,FALSE,HydroConventional,1,4000,2030,25,1,JPN07-HydroConventional,1 +JPN07-Wind,JPN07,802,FALSE,Wind,1,2000,2030,25,1,JPN07-Wind,1 +JPN07-Solar,JPN07,8447,FALSE,Solar,1,1200,2030,25,1,JPN07-Solar,1 +JPN07-Geothermal,JPN07,74,FALSE,Geothermal,1,4000,2030,25,1,JPN07-Geothermal,1 +JPN07-Biomass,JPN07,899,FALSE,Biomass,1,2000,2030,25,0.3,JPN07-Biomass,1 +JPN08-Coal,JPN08,3851,FALSE,Coal,1,2500,2030,25,0.35,JPN08-Coal,0 +JPN08-LNG,JPN08,942,FALSE,LNG,1,1500,2030,25,0.6,JPN08-LNG,0 +JPN08-Oil,JPN08,1480,FALSE,Oil,1,900,2030,25,0.3,JPN08-Oil,0 +JPN08-Nuclear,JPN08,890,FALSE,Nuclear,1,8000,2030,25,0.8,JPN08-Nuclear,1 +JPN08-HydroConventional,JPN08,859,FALSE,HydroConventional,1,4000,2030,25,1,JPN08-HydroConventional,1 +JPN08-Wind,JPN08,627,FALSE,Wind,1,2000,2030,25,1,JPN08-Wind,1 +JPN08-Solar,JPN08,3940,FALSE,Solar,1,1200,2030,25,1,JPN08-Solar,1 +JPN08-Geothermal,JPN08,29,FALSE,Geothermal,1,4000,2030,25,1,JPN08-Geothermal,1 +JPN08-Biomass,JPN08,349,FALSE,Biomass,1,2000,2030,25,0.3,JPN08-Biomass,1 +JPN09-Coal,JPN09,7246,FALSE,Coal,1,2500,2030,25,0.35,JPN09-Coal,0 +JPN09-LNG,JPN09,4440,FALSE,LNG,1,1500,2030,25,0.6,JPN09-LNG,0 +JPN09-Oil,JPN09,1373,FALSE,Oil,1,900,2030,25,0.3,JPN09-Oil,0 +JPN09-Nuclear,JPN09,4140,FALSE,Nuclear,1,8000,2030,25,0.8,JPN09-Nuclear,1 +JPN09-HydroConventional,JPN09,1840,FALSE,HydroConventional,1,4000,2030,25,1,JPN09-HydroConventional,1 +JPN09-Wind,JPN09,1482,FALSE,Wind,1,2000,2030,25,1,JPN09-Wind,1 +JPN09-Solar,JPN09,14409,FALSE,Solar,1,1200,2030,25,1,JPN09-Solar,1 +JPN09-Geothermal,JPN09,84,FALSE,Geothermal,1,4000,2030,25,1,JPN09-Geothermal,1 +JPN09-Biomass,JPN09,1024,FALSE,Biomass,1,2000,2030,25,0.3,JPN09-Biomass,1 +JPN01-Hydrogen,JPN01,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN01-Hydrogen,1 +JPN02-Hydrogen,JPN02,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN02-Hydrogen,1 +JPN03-Hydrogen,JPN03,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN03-Hydrogen,1 +JPN04-Hydrogen,JPN04,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN04-Hydrogen,1 +JPN05-Hydrogen,JPN05,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN05-Hydrogen,1 +JPN06-Hydrogen,JPN06,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN06-Hydrogen,1 +JPN07-Hydrogen,JPN07,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN07-Hydrogen,1 +JPN08-Hydrogen,JPN08,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN08-Hydrogen,1 +JPN09-Hydrogen,JPN09,0,FALSE,Hydrogen,1,2000,2030,25,0.46,JPN09-Hydrogen,1 +JPN01-Coal-Biomass-Cofiring-Unit1,JPN01,1000,FALSE,Coal,0.01,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit1,0 +JPN01-Coal-Biomass-Cofiring-Unit2,JPN01,1000,FALSE,Biomass,0.1,2000,2030,25,1,JPN01-Coal-Biomass-Cofiring-Unit2,9 +JPN01-Gas-Hydrogen-Cofiring-Unit1,JPN01,697,FALSE,HydrogenGasBlend10,1,1500,2030,25,0.6,JPN01-Gas-Hydrogen-Cofiring-Unit1,0.1 diff --git a/stock_models/Japan/loads-p_set.csv b/stock_models/Japan/loads-p_set.csv index dc6428a..0f4ad1e 100644 --- a/stock_models/Japan/loads-p_set.csv +++ b/stock_models/Japan/loads-p_set.csv @@ -1,8762 +1,8761 @@ -,JPN04,JPN07,JPN01,JPN05,JPN06,JPN09,JPN08,JPN02,JPN03 -0,14000,6000,3000,3000,15000,9000,3000,9000,30000 -1,14000,6000,3000,3000,15000,9000,3000,8000,29000 -2,13000,6000,3000,3000,14000,9000,3000,8000,28000 -3,13000,6000,3000,3000,14000,8000,3000,8000,28000 -4,13000,6000,3000,3000,14000,8000,3000,8000,27000 -5,12000,6000,3000,3000,13000,8000,3000,8000,26000 -6,12000,6000,3000,3000,13000,8000,3000,8000,27000 -7,13000,6000,3000,3000,14000,8000,3000,8000,28000 -8,14000,6000,3000,3000,15000,9000,3000,8000,29000 -9,13000,6000,3000,3000,15000,9000,3000,8000,29000 -10,13000,6000,3000,3000,14000,8000,3000,8000,27000 -11,12000,6000,3000,3000,13000,8000,3000,8000,26000 -12,12000,5000,3000,3000,13000,8000,2000,7000,26000 -13,12000,5000,3000,3000,13000,7000,2000,7000,25000 -14,12000,5000,3000,3000,13000,7000,2000,7000,25000 -15,12000,5000,3000,3000,13000,8000,2000,7000,25000 -16,13000,6000,3000,3000,14000,8000,3000,8000,27000 -17,14000,6000,3000,3000,15000,9000,3000,9000,30000 -18,15000,6000,3000,3000,16000,9000,3000,9000,31000 -19,15000,6000,3000,3000,16000,9000,3000,9000,31000 -20,15000,6000,3000,3000,16000,9000,3000,9000,31000 -21,14000,6000,3000,3000,15000,9000,3000,9000,31000 -22,14000,6000,3000,3000,15000,9000,3000,8000,29000 -23,13000,6000,3000,3000,14000,9000,3000,8000,29000 -24,13000,6000,3000,3000,14000,8000,3000,8000,27000 -25,12000,6000,3000,3000,13000,8000,3000,8000,26000 -26,12000,6000,3000,3000,13000,8000,3000,8000,27000 -27,12000,6000,3000,3000,13000,8000,3000,8000,26000 -28,12000,5000,3000,3000,13000,8000,2000,7000,26000 -29,12000,5000,3000,3000,13000,8000,2000,7000,26000 -30,12000,6000,3000,3000,13000,8000,3000,8000,26000 -31,13000,6000,3000,3000,14000,8000,3000,8000,28000 -32,14000,6000,3000,3000,15000,9000,3000,9000,30000 -33,14000,6000,3000,3000,15000,9000,3000,9000,30000 -34,13000,6000,3000,3000,14000,8000,3000,8000,28000 -35,13000,6000,3000,3000,14000,8000,3000,8000,27000 -36,12000,6000,3000,3000,13000,8000,3000,8000,27000 -37,12000,5000,3000,3000,13000,8000,2000,7000,26000 -38,12000,5000,3000,3000,13000,8000,2000,7000,26000 -39,12000,5000,3000,3000,13000,8000,2000,8000,26000 -40,13000,6000,3000,3000,14000,8000,3000,8000,28000 -41,15000,7000,3000,3000,16000,9000,3000,9000,31000 -42,15000,7000,3000,3000,16000,9000,3000,9000,32000 -43,15000,7000,3000,3000,16000,9000,3000,9000,32000 -44,15000,7000,3000,3000,16000,9000,3000,9000,32000 -45,15000,6000,3000,3000,16000,9000,3000,9000,31000 -46,14000,6000,3000,3000,15000,9000,3000,8000,29000 -47,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,12000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,11000,7000,2000,6000,23000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,2000,2000,11000,7000,2000,6000,22000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,11000,7000,2000,6000,22000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,11000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,10000,5000,2000,2000,11000,6000,2000,6000,21000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,11000,7000,2000,6000,23000 -,11000,5000,2000,2000,11000,7000,2000,7000,23000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,10000,5000,2000,2000,11000,6000,2000,6000,21000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,3000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,12000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,11000,7000,2000,7000,23000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,5000,2000,2000,11000,6000,2000,6000,22000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,11000,7000,2000,6000,22000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,3000,2000,12000,7000,2000,7000,23000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,10000,5000,2000,2000,11000,6000,2000,6000,22000 -,10000,4000,2000,2000,11000,6000,2000,6000,21000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,10000,5000,2000,2000,11000,7000,2000,6000,22000 -,11000,5000,2000,2000,11000,7000,2000,6000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,11000,5000,2000,2000,12000,7000,2000,7000,23000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,12000,7000,2000,7000,25000 -,11000,5000,3000,2000,12000,7000,2000,7000,24000 -,12000,5000,3000,3000,12000,7000,2000,7000,25000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,12000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,6000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,6000,27000,16000,5000,15000,54000 -,25000,11000,6000,6000,27000,16000,5000,15000,54000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,6000,27000,16000,5000,16000,54000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,26000,12000,6000,6000,28000,16000,5000,16000,55000 -,26000,12000,6000,6000,28000,17000,5000,16000,55000 -,26000,11000,6000,6000,28000,16000,5000,16000,54000 -,25000,11000,6000,6000,27000,16000,5000,15000,53000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,26000,11000,6000,6000,28000,16000,5000,16000,54000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,26000,12000,6000,6000,28000,16000,5000,16000,55000 -,26000,12000,6000,6000,28000,17000,5000,16000,55000 -,26000,11000,6000,6000,28000,16000,5000,16000,55000 -,25000,11000,6000,6000,27000,16000,5000,15000,54000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,6000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,6000,27000,16000,5000,15000,54000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,7000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,7000,25000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,14000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,25000,11000,6000,5000,26000,16000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,52000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,25000,11000,6000,5000,26000,16000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,10000,5000,5000,25000,15000,5000,14000,50000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,24000,11000,6000,5000,26000,15000,5000,15000,52000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,25000,11000,6000,5000,27000,16000,5000,15000,53000 -,24000,11000,6000,5000,26000,16000,5000,15000,52000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,24000,11000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,24000,11000,5000,5000,26000,15000,5000,15000,50000 -,24000,11000,5000,5000,26000,15000,5000,15000,51000 -,23000,10000,5000,5000,25000,15000,5000,14000,50000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,7000,26000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,5000,3000,3000,13000,8000,2000,8000,26000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,18000,11000,3000,11000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,35000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,4000,4000,21000,13000,4000,12000,42000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,5000,14000,47000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,23000,10000,5000,5000,24000,14000,5000,14000,48000 -,23000,10000,5000,5000,25000,15000,5000,14000,49000 -,22000,10000,5000,5000,24000,14000,5000,14000,48000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,22000,10000,5000,5000,24000,14000,4000,14000,47000 -,22000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,37000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,10000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,44000 -,21000,10000,5000,5000,23000,14000,4000,13000,46000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,19000,8000,4000,4000,21000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,4000,11000,37000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,22000,10000,5000,5000,24000,14000,4000,13000,47000 -,21000,9000,5000,5000,23000,14000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,21000,13000,4000,12000,42000 -,20000,9000,5000,4000,22000,13000,4000,13000,43000 -,21000,9000,5000,5000,23000,13000,4000,13000,45000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,20000,9000,4000,4000,21000,12000,4000,12000,42000 -,19000,8000,4000,4000,20000,12000,4000,12000,40000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,4000,3000,17000,10000,3000,9000,33000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,19000,8000,4000,4000,20000,12000,4000,11000,39000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,21000,9000,5000,5000,22000,13000,4000,13000,44000 -,20000,9000,5000,4000,22000,13000,4000,12000,43000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,9000,4000,4000,21000,12000,4000,12000,41000 -,19000,8000,4000,4000,20000,12000,4000,11000,40000 -,18000,8000,4000,4000,20000,12000,4000,11000,39000 -,18000,8000,4000,4000,19000,11000,4000,11000,38000 -,17000,7000,4000,4000,18000,11000,3000,10000,35000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,17000,8000,4000,4000,19000,11000,3000,11000,37000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,8000,4000,4000,18000,11000,3000,10000,36000 -,17000,7000,4000,4000,18000,11000,3000,10000,36000 -,16000,7000,4000,4000,18000,10000,3000,10000,35000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,15000,6000,3000,3000,16000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,4000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,13000,6000,3000,3000,14000,9000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,12000,6000,3000,3000,13000,8000,3000,8000,27000 -,13000,6000,3000,3000,14000,8000,3000,8000,27000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,16000,9000,3000,9000,31000 -,14000,6000,3000,3000,15000,9000,3000,9000,30000 -,14000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,14000,8000,3000,8000,28000 -,13000,6000,3000,3000,15000,9000,3000,8000,29000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,34000 -,16000,7000,4000,3000,17000,10000,3000,10000,33000 -,15000,7000,3000,3000,16000,10000,3000,9000,33000 -,15000,7000,3000,3000,16000,9000,3000,9000,32000 -,14000,6000,3000,3000,15000,9000,3000,9000,31000 -,15000,7000,3000,3000,16000,9000,3000,9000,31000 - +,JPN01,JPN02,JPN03,JPN04,JPN05,JPN06,JPN07,JPN08,JPN09 +0,3453,8347,28310,10867,2684,13253,7462,3485,10416 +1,3673,9060,30250,11674,2839,14085,7718,3601,10909 +2,3752,9627,33130,12982,3078,15639,8042,3768,11584 +3,3703,9534,33880,13098,3096,16038,8237,3868,12092 +4,3605,9343,33540,12963,3023,15890,8060,3780,11902 +5,3564,9096,32930,12751,2948,15610,7862,3667,11589 +6,3540,8922,32060,12457,2876,15190,7548,3478,11120 +7,3491,8719,30920,12035,2859,14556,7083,3236,10516 +8,3723,9064,30520,12211,3005,14392,6860,3162,10022 +9,3701,8825,28700,11764,2961,13769,6033,2800,9407 +10,3795,8883,27210,11436,2978,13281,5941,2840,9300 +11,3910,9032,26360,11320,3081,13233,6103,2960,9508 +12,4046,9169,25750,11184,3137,13080,6287,3040,9656 +13,4063,9191,25480,10922,3077,12653,6213,3020,9589 +14,3965,9069,25790,10686,2875,12152,5996,2880,9273 +15,3790,8743,26890,10633,2620,12154,5804,2650,8852 +16,3531,8527,28520,11108,2530,12764,5924,2650,9052 +17,3503,8671,29080,11633,2569,13635,6084,2820,9305 +18,3308,8512,27890,11257,2575,13618,5697,2640,8546 +19,3274,8306,26340,10477,2542,13111,5079,2420,8022 +20,3212,8020,25020,10247,2491,12631,4784,2340,7675 +21,3243,7882,24240,9955,2499,12351,4736,2310,7414 +22,3176,7927,23540,9716,2469,12126,4666,2240,7069 +23,3331,7824,23470,9691,2453,12037,4758,2190,6978 +24,3481,8029,24260,9982,2475,12120,4914,2290,7190 +25,3605,8623,26200,10734,2584,12814,5264,2440,7796 +26,3783,9306,29100,11890,2755,14146,5885,2780,8885 +27,3823,9402,29970,12090,2776,14604,6140,2910,9434 +28,3815,9353,30160,12125,2761,14568,6178,2920,9505 +29,3833,9341,30200,12133,2753,14538,6146,2900,9512 +30,3935,9328,29820,11946,2714,14408,6022,2840,9368 +31,3827,9025,28540,11378,2694,13855,5703,2690,9080 +32,3922,9136,27320,11065,2725,13342,5539,2650,8833 +33,3905,8926,25600,10423,2652,12482,5465,2580,8433 +34,3996,9080,24610,10155,2710,12067,5514,2640,8367 +35,4164,9329,24300,10279,2889,12282,5740,2820,8719 +36,4217,9520,24210,10421,3008,12334,6002,2940,9129 +37,4256,9604,24200,10391,2988,12135,6004,2950,9123 +38,4195,9550,24800,10375,2844,11835,5847,2850,8953 +39,4094,9397,26370,10548,2680,11996,5712,2680,8712 +40,3912,9364,28420,11093,2606,12842,5909,2700,8971 +41,3899,9671,29400,11813,2700,14188,6195,3020,9288 +42,3788,9516,28660,11644,2779,14643,5918,2970,8792 +43,3615,9334,27580,11243,2720,14379,5442,2800,8099 +44,3498,9136,26700,10733,2639,14009,5193,2620,7833 +45,3457,9166,26220,10737,2619,13634,4920,2510,7632 +46,3435,9058,26010,10565,2560,13172,4746,2410,7389 +47,3587,9006,26240,10469,2564,13094,4775,2350,7243 +48,3820,9402,27290,10688,2611,13290,5077,2390,7373 +49,3900,9939,29280,11322,2738,13904,5469,2570,8143 +50,4072,10574,31780,12644,2985,15260,6113,2890,9190 +51,4114,10665,32600,12967,3028,15722,6452,3020,9856 +52,4053,10476,32750,13025,3024,15724,6505,3000,9928 +53,4049,10230,32620,13015,2995,15707,6395,2970,9906 +54,4025,9930,31880,12805,2927,15374,6268,2870,9758 +55,3912,9528,30420,12182,2907,14671,5997,2710,9437 +56,4064,9508,28950,11929,2977,14184,5790,2690,9156 +57,4062,9295,26930,11404,2934,13386,5759,2640,8799 +58,4150,9415,25710,11205,2994,13023,5783,2730,8808 +59,4271,9552,25270,11307,3160,13204,6102,2920,9179 +60,4358,9748,25000,11343,3231,13170,6354,3020,9525 +61,4406,9860,25020,11170,3188,12870,6306,3010,9532 +62,4327,9808,25630,11056,3059,12587,6150,2920,9355 +63,4215,9728,27450,11371,2910,12875,6072,2760,9191 +64,4085,9605,29830,12124,2837,13772,6363,2800,9662 +65,4053,9961,30850,12808,2941,14791,6570,3090,9864 +66,3921,10005,30020,12572,2978,14899,6147,3010,9205 +67,3764,9786,28760,11916,2800,14511,5638,2850,8665 +68,3719,9603,27710,11501,2604,14149,5408,2770,8508 +69,3647,9364,27030,11101,2614,13943,5197,2630,8446 +70,3640,9281,26380,10931,2579,13581,5045,2510,8035 +71,3738,9100,26270,10923,2567,13278,5079,2430,7797 +72,3902,9373,27310,11201,2685,13474,5355,2490,7815 +73,4074,9939,29650,11890,2890,14234,5885,2700,8665 +74,4257,10705,32860,13310,3104,15769,6556,3090,9865 +75,4264,10741,33990,13637,3152,16344,6915,3240,10643 +76,4212,10563,34090,13639,3105,16312,6876,3220,10727 +77,4183,10329,33920,13549,3058,16158,6851,3190,10677 +78,4147,9908,32860,13159,2951,15709,6634,3060,10434 +79,3990,9332,31090,12371,2883,14833,6182,2860,9950 +80,4111,9314,29540,11998,2941,14299,5930,2820,9546 +81,4061,9067,27400,11349,2889,13412,5885,2780,9103 +82,4185,9348,26320,11109,2958,12959,5938,2850,9070 +83,4345,9598,25930,11219,3129,13156,6185,3000,9409 +84,4462,9805,25760,11235,3223,13211,6465,3100,9810 +85,4511,9958,25970,11113,3196,12979,6452,3100,9854 +86,4444,10102,27310,11176,3115,12923,6419,3040,9711 +87,4394,10353,30550,11878,3121,13768,6617,3050,10070 +88,4257,10535,33810,12931,3226,15175,7062,3220,10870 +89,4330,11164,35530,14139,3403,16566,7476,3500,11320 +90,4308,11325,34930,14339,3549,16906,7133,3350,10447 +91,4205,11137,33520,13947,3459,16817,6719,3190,9751 +92,4069,10995,32390,13817,3290,16612,6376,3140,9635 +93,3942,10920,31750,13588,3306,16353,6262,3060,9474 +94,3918,10772,31550,13567,3373,16145,6095,3050,9221 +95,4002,10582,31200,13385,3424,16041,6134,3000,8912 +96,4280,10740,32170,13416,3446,16047,6465,3050,9156 +97,4375,11221,34380,14251,3555,16796,6818,3200,9870 +98,4575,11728,37100,15321,3725,18093,7413,3460,10924 +99,4568,11728,37790,15512,3691,18406,7658,3560,11619 +100,4446,11466,37640,15354,3594,18198,7578,3520,11579 +101,4386,11090,37090,15014,3491,17794,7381,3420,11433 +102,4282,10569,35580,14322,3379,17020,7080,3240,10970 +103,4058,9861,33430,13291,3249,15812,6631,3010,10343 +104,4177,9766,31210,12832,3298,14942,6423,2910,9860 +105,4111,9499,28630,12217,3258,13942,6246,2850,9412 +106,4231,9659,27380,12050,3332,13590,6243,2910,9411 +107,4377,9982,26940,12176,3482,13733,6523,3090,9786 +108,4481,10150,26750,12258,3579,13796,6762,3180,10138 +109,4502,10305,27110,12176,3575,13689,6880,3220,10262 +110,4460,10638,29060,12565,3546,13979,6935,3220,10454 +111,4461,11069,33350,13759,3640,15492,7341,3350,11011 +112,4384,11398,37590,15450,3794,17564,7954,3580,11934 +113,4446,12267,40210,17163,4152,19638,8507,4010,12633 +114,4426,12594,40500,17454,4334,20558,8426,3990,12135 +115,4370,12449,39290,16918,4282,20259,7883,3790,11349 +116,4323,12298,38260,16390,4142,19930,7716,3660,10969 +117,4259,11862,36740,15613,3925,19061,7123,3450,10440 +118,4247,11984,36840,15715,3983,19231,7309,3460,10331 +119,4289,11768,36700,15587,3979,18989,7338,3400,10200 +120,4411,11950,37490,15826,3956,18968,7449,3430,10375 +121,4517,12414,39670,16497,4049,19497,7719,3570,10934 +122,4582,12630,41380,17206,4079,19983,7922,3750,11691 +123,4525,12439,41590,17142,4065,19915,8176,3840,12236 +124,4387,12022,41070,16687,3930,19500,7958,3730,12062 +125,4306,11603,40090,16251,3810,18977,7710,3600,11745 +126,4182,11108,38410,15554,3677,18222,7456,3410,11264 +127,4025,10418,36040,14451,3545,17255,7038,3160,10659 +128,4151,10268,33680,14078,3553,16318,6794,3070,10156 +129,4104,9966,31060,13244,3478,15318,6653,2990,9620 +130,4191,10177,29860,13075,3572,14772,6595,3050,9561 +131,4298,10401,29280,13159,3696,14924,6913,3230,9924 +132,4360,10575,29180,13174,3787,14915,7169,3330,10269 +133,4384,10708,29560,13074,3749,14856,7233,3340,10387 +134,4368,10997,31660,13567,3719,15081,7302,3330,10607 +135,4403,11375,36220,14859,3793,16493,7697,3450,11163 +136,4309,11629,40610,16352,3907,18510,8253,3670,12019 +137,4419,12455,44170,18220,4226,20758,8943,4230,12694 +138,4346,12757,44800,18634,4296,21560,9013,4240,12433 +139,4158,12481,42770,17980,4132,20855,8493,4000,11695 +140,4204,12187,41410,17313,4069,20379,8205,3920,11395 +141,4026,11658,39460,16242,3858,19367,7709,3650,11060 +142,4035,11807,39510,16552,3936,19589,7947,3720,11405 +143,4129,11652,38980,16306,3921,19464,7901,3710,11294 +144,4297,11669,38740,16324,3894,19239,7880,3740,11264 +145,4492,12189,40700,17046,3983,19746,8051,3770,11460 +146,4514,12289,42160,17430,3989,20182,8342,3890,12053 +147,4423,12111,41900,17192,3948,19994,8389,3930,12335 +148,4290,11735,40870,16696,3813,19488,8197,3810,12008 +149,4170,11332,39480,16185,3706,18946,7978,3690,11546 +150,4028,10802,37510,15564,3585,18336,7631,3520,11065 +151,3856,10252,35450,14695,3513,17427,7265,3290,10428 +152,3955,10164,33140,14293,3489,16689,7038,3220,9880 +153,3917,9825,30510,13647,3374,15696,6913,3150,9215 +154,4045,9980,29100,13400,3445,15234,6975,3210,9115 +155,4195,10218,28510,13480,3584,15366,7216,3360,9464 +156,4327,10403,28120,13476,3662,15338,7459,3450,9833 +157,4357,10481,28110,13285,3593,15012,7449,3450,9949 +158,4300,10600,28890,13424,3461,14928,7287,3370,9863 +159,4274,10682,31280,14157,3364,15601,7408,3310,9871 +160,4166,10760,34320,15331,3377,16910,7723,3420,10398 +161,4311,11533,37120,16716,3611,18999,8410,3850,11034 +162,4245,11711,37550,17004,3744,19664,8683,3930,10935 +163,4018,11391,36080,16507,3671,19151,8503,3810,10565 +164,3828,11151,34890,15742,3590,18693,8299,3630,10319 +165,3602,10695,33610,14715,3434,18130,7907,3550,10158 +166,3617,10679,33250,14650,3454,18399,7813,3520,10101 +167,3756,10515,32940,14384,3446,18469,7701,3560,9895 +168,4041,10371,33300,14393,3458,18324,7779,3590,10000 +169,4209,10964,34730,14964,3493,18539,7913,3630,10386 +170,4332,11262,37220,15940,3577,18982,8130,3770,11134 +171,4317,11193,37810,16002,3548,18946,8101,3800,11511 +172,4219,10917,37620,15752,3467,18562,7980,3690,11272 +173,4106,10635,36960,15539,3376,18033,7723,3570,10951 +174,4032,10229,35580,14967,3288,17347,7414,3390,10593 +175,3894,9822,33860,14121,3205,16522,7107,3160,10143 +176,4040,9750,32140,13741,3200,15679,6765,3060,9746 +177,4029,9517,30120,13056,3137,14653,6632,2970,9285 +178,4181,9674,28910,12837,3225,14256,6635,3020,9268 +179,4300,9912,28370,12965,3392,14299,6886,3180,9748 +180,4451,10099,28090,13028,3490,14242,7111,3330,10122 +181,4498,10171,28080,12873,3433,14007,7119,3350,10229 +182,4369,10115,28660,12855,3237,13675,6929,3260,10059 +183,4309,9939,30470,12964,3060,13959,6841,3100,9915 +184,4077,9836,32850,13676,2970,14840,6940,3100,10220 +185,4010,10137,34360,14559,3053,15969,7237,3300,10404 +186,3888,10281,33980,14402,3082,16635,7001,3170,9591 +187,3682,10000,32510,13693,2991,16313,6479,3020,8904 +188,3526,9861,31360,13129,2898,15787,6084,2890,8852 +189,3405,9615,30740,12597,2839,15514,5957,2820,8629 +190,3393,9331,30060,12389,2780,15092,5836,2740,8323 +191,3460,9320,29740,12306,2740,14975,5770,2680,8030 +192,3741,9318,30290,12542,2783,15135,6049,2740,8083 +193,3998,9992,32200,13144,2905,15704,6432,2920,8869 +194,4205,10620,35280,14599,3142,17036,7012,3260,9922 +195,4230,10705,36160,14825,3194,17477,7373,3440,10728 +196,4171,10528,35960,14756,3157,17393,7392,3430,10811 +197,4118,10282,35140,14573,3100,17199,7284,3380,10674 +198,4046,9935,33900,14135,3017,16643,7082,3260,10331 +199,3856,9460,31890,13331,2993,15712,6689,3060,9951 +200,3964,9416,30190,13042,2992,15112,6608,3010,9497 +201,3904,9190,28140,12401,2932,14353,6468,2980,9110 +202,4029,9355,27200,12327,3033,14048,6588,3070,9152 +203,4177,9698,26880,12475,3225,14280,6871,3260,9594 +204,4299,9884,26910,12706,3373,14335,7160,3370,9948 +205,4389,9985,27210,12857,3360,14148,7172,3370,10090 +206,4301,10072,28190,13183,3255,14025,7071,3290,10049 +207,4234,10134,30540,14163,3131,14655,7125,3240,10184 +208,4051,10148,33470,15741,3134,15835,7467,3340,10740 +209,4134,10798,35570,17561,3302,17419,8057,3650,11159 +210,4084,11045,35610,17970,3490,18250,7997,3530,10458 +211,3886,10702,34390,17342,3478,18063,7366,3330,9699 +212,3688,10558,33160,16786,3475,17625,6987,3210,9616 +213,3596,10394,31930,15881,3395,16938,6732,3100,9276 +214,3749,10260,31770,16133,3425,16695,6860,3090,9036 +215,3937,10112,31540,16156,3413,16397,6807,3040,8603 +216,4103,10165,31960,16103,3395,16264,6942,3060,8829 +217,4211,10797,33630,16780,3483,16837,7132,3160,9501 +218,4403,11174,36320,17388,3595,18011,7570,3440,10424 +219,4452,11154,37020,17355,3585,18253,7706,3570,10951 +220,4341,10889,36660,16981,3499,18019,7572,3490,10772 +221,4295,10546,35960,16643,3402,17619,7344,3380,10508 +222,4263,10153,34530,16055,3295,16891,7015,3200,10044 +223,4070,9703,32360,15222,3222,15722,6536,2960,9420 +224,4129,9740,30320,14749,3245,14893,6221,2870,8888 +225,4072,9636,28100,13851,3252,13804,6030,2790,8436 +226,4241,9886,27010,13613,3390,13616,6089,2860,8466 +227,4411,10172,26870,13826,3611,14083,6459,3020,8935 +228,4530,10405,26950,14053,3746,14429,6868,3190,9456 +229,4583,10671,27650,14181,3769,14607,6993,3290,9721 +230,4562,11032,29730,14923,3724,14996,7114,3340,9923 +231,4636,11573,34220,16447,3803,16498,7587,3460,10430 +232,4548,11859,38070,18133,3918,18500,7973,3600,11112 +233,4779,12923,40840,20337,4314,20547,8761,4060,11518 +234,4867,13449,42020,20899,4568,21579,8726,4050,10987 +235,4773,13348,41660,20333,4521,21284,8271,3900,10442 +236,4688,13254,40990,19905,4462,21071,8052,3780,10202 +237,4454,12540,39370,18771,4236,20135,7368,3560,9736 +238,4518,12861,39980,19517,4362,20593,7508,3670,9734 +239,4623,12896,39890,19387,4311,20308,7476,3570,9579 +240,4773,13091,40600,19396,4273,20241,7699,3570,9731 +241,4842,13412,42570,19798,4354,20748,8029,3730,10441 +242,4854,13501,44360,20197,4351,21280,8331,3900,11014 +243,4792,13247,44340,20027,4296,21186,8596,4010,11632 +244,4621,12755,43400,19352,4137,20557,8378,3930,11463 +245,4517,12226,42190,18910,3994,19968,8162,3820,11239 +246,4415,11612,40200,18403,3857,19311,7875,3630,10877 +247,4136,10760,37730,17339,3772,18258,7353,3370,10370 +248,4174,10535,35170,16875,3780,17374,7120,3310,9870 +249,4086,10127,32390,15965,3717,16326,6999,3270,9420 +250,4230,10332,31100,15611,3816,15922,7112,3350,9455 +251,4380,10561,30590,15689,3983,16066,7375,3510,9929 +252,4483,10697,30410,15626,4060,16119,7733,3630,10372 +253,4508,10783,30830,15566,4035,15996,7864,3630,10563 +254,4506,11130,32970,16061,4028,16356,7936,3660,10798 +255,4604,11592,37770,17872,4141,18189,8474,3850,11448 +256,4555,11746,41850,19607,4195,20296,9042,4070,12247 +257,4814,12687,44710,21653,4384,22158,9541,4400,12598 +258,4827,12922,45030,21941,4395,22909,9114,4190,11739 +259,4656,12540,43060,20860,4202,21893,8311,3930,10844 +260,4487,12143,41340,19970,4035,21042,7883,3800,10463 +261,4202,11494,39110,18479,3752,19591,7200,3570,9870 +262,4258,11728,39240,18832,3832,19768,7371,3600,9891 +263,4215,11608,38700,18617,3814,19372,7352,3520,9771 +264,4348,11491,39020,18470,3803,19401,7544,3530,9851 +265,4531,11994,40740,18875,3902,20166,7912,3700,10354 +266,4580,12084,42590,19470,4021,20956,8163,3850,10911 +267,4501,11933,42860,19490,4059,21010,8355,3980,11493 +268,4371,11567,42160,19100,3982,20653,8167,3900,11344 +269,4194,11149,41220,18697,3904,20142,7970,3780,11035 +270,4058,10623,39390,18159,3784,19490,7730,3580,10597 +271,3836,9962,37180,17262,3711,18427,7265,3330,10101 +272,3926,9818,34790,16760,3745,17588,7049,3250,9563 +273,3824,9535,32100,16037,3653,16550,6893,3170,9105 +274,3947,9769,30770,15738,3746,16118,6983,3250,9102 +275,4079,10055,30260,15706,3935,16210,7286,3430,9598 +276,4207,10262,30090,15730,4005,16209,7588,3550,10057 +277,4266,10439,30500,15625,3966,16024,7678,3560,10219 +278,4230,10823,32780,16195,3919,16341,7763,3570,10407 +279,4276,11203,37610,17953,4027,18181,8152,3740,10792 +280,4265,11320,41390,19692,4083,20194,8631,3910,11353 +281,4417,12153,43970,21697,4278,21971,9299,4280,11889 +282,4262,12407,44510,21992,4315,22541,9029,4150,11902 +283,4102,11996,43330,20796,4111,21732,8394,3940,11282 +284,3993,11848,41660,19809,3979,20831,7985,3850,11027 +285,3733,11093,39420,18170,3647,19378,7328,3630,10500 +286,3787,11263,39120,18467,3718,19508,7506,3700,10509 +287,3793,11182,38270,18279,3680,19063,7525,3670,10505 +288,4022,11001,38270,18071,3651,18754,7676,3700,10439 +289,4299,11399,39790,18430,3720,19242,7843,3740,10762 +290,4420,11659,41830,19003,3837,19955,8063,3800,11101 +291,4386,11555,42250,19030,3865,20087,8182,3840,11354 +292,4265,11218,41390,18574,3752,19599,7879,3710,10982 +293,4136,10863,40450,18126,3664,19016,7693,3570,10565 +294,4018,10390,38540,17513,3537,18391,7318,3360,10057 +295,3820,9880,36250,16730,3485,17345,6921,3110,9497 +296,3859,9729,33910,16178,3473,16424,6690,3000,9060 +297,3795,9495,31330,15430,3401,15427,6546,2890,8563 +298,3929,9718,30180,15121,3524,15009,6569,2950,8487 +299,4106,10042,29730,15202,3723,15328,6931,3140,8908 +300,4222,10293,29620,15239,3837,15482,7226,3300,9386 +301,4288,10521,30060,15192,3841,15418,7344,3350,9523 +302,4266,10905,32180,15705,3799,15647,7492,3340,9522 +303,4294,11377,36880,17303,3860,17126,7680,3410,9661 +304,4213,11411,40600,18855,3882,18746,7976,3490,10182 +305,4371,12184,42960,20649,4047,20433,8461,3820,10795 +306,4345,12321,43160,20868,4065,21072,8707,3880,11212 +307,4325,11892,41450,19925,3975,20616,8356,3790,11066 +308,4363,11542,40340,19144,3916,20200,8408,3760,10920 +309,4177,10820,38990,17758,3665,19068,7989,3460,10453 +310,4316,11051,40170,18276,3772,19479,8349,3690,10696 +311,4259,10934,38430,18199,3783,19327,8257,3700,10618 +312,4214,10739,38000,18210,3761,19108,8190,3700,10496 +313,4349,11219,39320,18667,3798,19421,8240,3770,10665 +314,4317,11249,40370,18473,3767,19405,8225,3730,10803 +315,4194,11024,39950,18099,3714,18993,8144,3690,10787 +316,4077,10653,38660,17469,3569,18376,7780,3540,10343 +317,3921,10231,37320,16989,3424,17660,7447,3380,9902 +318,3757,9694,35260,16388,3294,16834,7032,3180,9430 +319,3548,9227,33300,15652,3239,16049,6552,2960,8973 +320,3616,9011,31090,14984,3152,15140,6306,2880,8620 +321,3574,8614,28580,14107,3035,14352,6086,2750,8156 +322,3707,8789,27380,13648,3077,13978,6048,2800,8096 +323,3821,9112,27030,13667,3269,14225,6368,2960,8512 +324,3903,9373,26930,13653,3412,14371,6621,3120,8925 +325,3956,9488,26960,13384,3375,13984,6614,3120,8973 +326,3879,9477,27410,13040,3197,13501,6357,2970,8565 +327,3796,9246,28830,13086,2961,13577,6179,2820,8174 +328,3784,9201,30940,13796,2914,14648,6308,2910,8424 +329,4168,9847,33990,14803,3056,16430,6899,3230,8983 +330,4316,10170,35940,15442,3165,17554,7188,3320,9312 +331,4240,10000,35840,15461,3161,17576,6967,3300,9259 +332,4169,9932,36000,15221,3121,17358,6778,3280,9225 +333,4051,9574,35400,14665,3052,16838,6345,3180,8932 +334,4039,9598,34900,14663,3072,16715,6492,3120,9101 +335,3999,9560,34230,14382,3053,16388,6444,3110,9008 +336,4012,9504,33870,14120,3038,16109,6434,3100,8891 +337,4090,9800,34790,14451,3080,16316,6530,3100,9078 +338,4182,10021,36050,14846,3150,16619,6780,3200,9424 +339,4179,9939,36030,14821,3141,16596,6788,3210,9565 +340,4087,9617,35320,14462,3075,16195,6580,3110,9269 +341,4015,9282,34280,14002,2997,15717,6352,2990,8984 +342,3895,8854,32590,13325,2873,15033,6095,2820,8607 +343,3741,8464,30850,12686,2811,14249,5770,2670,8264 +344,3870,8371,29050,12328,2762,13675,5609,2630,7967 +345,3846,8152,26920,11606,2679,12869,5523,2560,7684 +346,3987,8365,25780,11474,2772,12576,5561,2620,7583 +347,4140,8700,25400,11690,3028,12933,5946,2800,8065 +348,4228,9006,25240,11829,3207,13186,6298,2980,8570 +349,4280,9135,25040,11819,3233,13038,6306,2990,8673 +350,4204,9113,25210,11614,3068,12421,6101,2830,8348 +351,4085,8851,26150,11600,2830,12364,5830,2610,7870 +352,3907,8754,28030,12016,2742,13084,5911,2600,7919 +353,4015,9116,30730,12643,2852,14321,6199,2820,8230 +354,4049,9416,31890,12677,2968,14951,6179,2870,8435 +355,3944,9297,32160,12414,2960,14852,6039,2840,8507 +356,3901,9179,32080,12083,2945,14859,5943,2790,8585 +357,3840,9143,32410,11907,2957,14950,5753,2870,8573 +358,3758,8953,32470,11708,2930,14802,5849,2830,8397 +359,3727,8863,32350,11996,2901,14648,5821,2810,8425 +360,3918,9073,32760,12329,2907,14709,5975,2840,8567 +361,4080,9626,34180,13028,2995,15030,6190,2890,8775 +362,4295,10196,35740,13953,3173,16120,6773,3120,9510 +363,4305,10252,36160,14186,3223,16536,6966,3200,9854 +364,4258,10022,35550,14085,3158,16339,6751,3130,9663 +365,4214,9731,34600,13682,3071,15984,6581,3010,9395 +366,4157,9299,32960,13258,2941,15265,6216,2850,8973 +367,4062,8695,30800,12490,2855,14370,5764,2680,8526 +368,4278,8616,28760,12119,2831,13619,5513,2620,8099 +369,4226,8446,26520,11496,2771,12788,5366,2540,7707 +370,4363,8684,25560,11477,2876,12569,5448,2600,7659 +371,4495,9062,25360,11762,3113,13039,5805,2800,8245 +372,4638,9385,25470,12045,3293,13322,6250,3000,8788 +373,4681,9687,26170,12198,3368,13395,6416,3070,9171 +374,4686,10078,27920,12630,3362,13542,6525,3040,9339 +375,4751,10556,31790,14058,3423,14641,6799,3060,9782 +376,4698,10775,36500,15890,3549,16481,7113,3250,10463 +377,4985,11892,41450,18296,3932,18909,7824,3740,11322 +378,5135,12374,44140,19459,4198,20254,8026,3930,11708 +379,5001,12243,44440,19343,4187,20306,7800,3810,11135 +380,4775,12180,44260,18994,4201,20004,7741,3740,11001 +381,4462,11657,42630,17725,4006,18925,7300,3520,10615 +382,4524,12035,43140,18320,4107,19386,7580,3620,10635 +383,4592,12003,42860,18123,4124,19152,7687,3620,10768 +384,4779,12015,42800,17947,4130,19136,7821,3630,10929 +385,4817,12436,43790,18461,4200,19706,7950,3750,11409 +386,4883,12715,44420,18888,4186,20272,8032,3810,11854 +387,4853,12575,43820,18761,4164,20322,8168,3840,12187 +388,4681,12159,42560,18103,4021,19735,7876,3720,11875 +389,4589,11707,41180,17664,3875,19088,7746,3590,11429 +390,4499,11119,39130,17165,3724,18385,7462,3380,10909 +391,4299,10404,36710,16274,3659,17423,7023,3160,10244 +392,4385,10259,34260,15824,3628,16447,6770,3070,9669 +393,4349,9923,31530,14953,3549,15459,6657,2980,9079 +394,4517,10130,30290,14700,3628,14963,6611,3060,9036 +395,4629,10372,29910,14860,3825,15278,7008,3270,9536 +396,4751,10532,29810,15041,3920,15471,7361,3460,10025 +397,4806,10649,30380,15022,3901,15413,7489,3510,10317 +398,4789,11020,32400,15535,3872,15665,7740,3540,10580 +399,4849,11523,37000,17024,3943,17240,8230,3650,11205 +400,4796,11682,40980,18540,4022,19123,8547,3780,11797 +401,4969,12635,44840,20655,4307,21103,9226,4110,12223 +402,5016,12890,46360,21280,4450,21672,8934,3970,11965 +403,4909,12709,45610,20605,4367,20958,8415,3830,11549 +404,4748,12533,44730,19988,4208,20483,8200,3800,11614 +405,4469,12061,42580,18503,3856,19308,7569,3710,11002 +406,4549,12311,42220,18986,3956,19612,7988,3720,11354 +407,4556,12186,41600,18781,3881,19397,7996,3660,11278 +408,4689,12056,41780,18500,3852,19315,8094,3730,11375 +409,4742,12327,43120,18856,3969,19854,8307,3810,11797 +410,4809,12605,44830,19480,4076,20524,8485,3910,12159 +411,4757,12511,44620,19365,4105,20533,8649,3950,12472 +412,4634,12109,43530,18654,3970,19862,8323,3810,12150 +413,4492,11757,42110,18232,3874,19186,8120,3680,11674 +414,4384,11213,39920,17422,3767,18447,7714,3470,11128 +415,4157,10530,37330,16524,3710,17431,7214,3210,10431 +416,4227,10366,34510,15898,3710,16488,6898,3090,9836 +417,4165,10009,31440,14976,3621,15469,6709,2960,9220 +418,4330,10164,29910,14721,3706,15027,6765,3000,9107 +419,4489,10455,29370,14731,3880,15240,7054,3180,9564 +420,4657,10687,29070,14829,3985,15453,7371,3330,10066 +421,4691,10880,29440,14809,3900,15311,7442,3390,10299 +422,4653,11285,31350,15237,3852,15577,7407,3390,10638 +423,4720,11799,35620,16639,3929,16931,7767,3470,11084 +424,4725,11942,39600,18047,4001,18728,8134,3600,11804 +425,5031,12872,43370,20146,4324,21009,8840,4020,12415 +426,4995,13126,44300,20758,4523,21760,8868,3970,12702 +427,4781,12673,42700,20132,4464,21013,8377,3880,12299 +428,4614,12570,41530,19537,4402,20644,8227,3780,12038 +429,4482,11907,39920,17961,4143,19648,7928,3600,11727 +430,4561,12070,40160,18343,4182,20291,8148,3750,12069 +431,4549,12013,39270,18395,4152,19899,7967,3700,11710 +432,4772,12076,38730,18335,4116,19779,8125,3720,11581 +433,4877,12469,39880,18810,4168,20236,8359,3810,11996 +434,4910,12653,41510,19293,4194,20576,8496,3860,12509 +435,4835,12523,41560,19185,4164,20507,8677,3930,13013 +436,4688,12061,40660,18573,4027,19963,8378,3810,12701 +437,4563,11675,39490,18084,3926,19349,8165,3690,12254 +438,4441,11132,37460,17572,3840,18603,7821,3470,11802 +439,4220,10434,35030,16653,3732,17602,7366,3220,11036 +440,4292,10300,32450,16100,3725,16696,7094,3100,10387 +441,4253,9993,29800,15191,3629,15730,6907,3020,9770 +442,4420,10197,28680,14919,3728,15341,7032,3070,9645 +443,4630,10541,28490,14974,3881,15594,7316,3290,10095 +444,4764,10752,28660,15049,3999,15706,7488,3460,10472 +445,4819,10917,29290,15055,3999,15725,7538,3510,10649 +446,4807,11342,31360,15608,3988,16026,7543,3560,10948 +447,4864,11953,35700,17079,4116,17662,7990,3670,11505 +448,4778,12005,39510,18590,4129,19418,8499,3820,12214 +449,4870,12762,42400,20624,4345,20995,9106,4150,12891 +450,4743,13022,43530,20846,4427,21572,8997,4090,13106 +451,4646,12625,42680,19958,4278,20997,8591,3880,12706 +452,4561,12291,41600,19245,4154,20639,8519,3850,12248 +453,4281,11562,40240,17794,3928,19324,8153,3640,11756 +454,4376,11600,40930,18387,4048,19623,8380,3760,11953 +455,4431,11398,40940,18313,4078,19344,8372,3720,11860 +456,4590,11287,41010,18178,4062,19283,8500,3750,11865 +457,4753,11752,42370,18568,4133,19678,8556,3880,12199 +458,4839,12203,43520,19115,4130,20374,8747,3940,12542 +459,4772,12131,43220,19095,4117,20552,8815,4040,13049 +460,4612,11812,41950,18569,3953,20065,8528,3920,12731 +461,4467,11347,40550,18070,3812,19427,8222,3790,12272 +462,4363,10810,38540,17453,3684,18838,7882,3590,11722 +463,4188,10168,35840,16616,3618,17788,7385,3300,10934 +464,4293,10046,33160,16084,3567,16915,7116,3190,10267 +465,4203,9723,30310,15239,3501,15901,6883,3090,9555 +466,4343,9907,29000,15073,3591,15429,6954,3120,9465 +467,4522,10189,28580,15106,3763,15714,7204,3280,9878 +468,4627,10396,28520,15147,3884,15858,7438,3440,10325 +469,4712,10581,29030,15194,3845,15769,7483,3480,10490 +470,4724,10915,31020,15569,3798,16077,7608,3520,10786 +471,4709,11394,35150,17201,3878,17640,8074,3640,11443 +472,4611,11494,38850,18828,3906,19582,8485,3780,12067 +473,4690,12325,41590,20795,4166,21384,8947,4180,12596 +474,4583,12479,42020,21063,4290,21894,8710,4140,12428 +475,4229,12140,40670,20031,4166,21097,8209,3860,11994 +476,3868,11865,39430,19181,4148,20692,8046,3770,11760 +477,3581,11218,37100,17702,3973,19487,7736,3590,11376 +478,3800,11357,37280,18189,4038,19935,8054,3700,11615 +479,4026,11322,36770,18170,4067,19682,8003,3670,11420 +480,4372,11400,36760,17903,4034,19652,7976,3750,11285 +481,4553,11770,38040,18381,4055,20084,8274,3820,11653 +482,4619,11835,39600,18718,4039,20368,8353,3870,12166 +483,4516,11706,39760,18591,4031,20309,8459,3940,12705 +484,4423,11408,38860,18032,3911,19778,8194,3840,12456 +485,4392,11087,37670,17686,3787,19197,7987,3710,12100 +486,4383,10699,36050,17059,3717,18549,7682,3530,11563 +487,4204,10258,34310,16377,3737,17721,7395,3290,10952 +488,4222,10218,32220,15919,3747,16917,7178,3190,10433 +489,4188,9956,29870,15104,3633,15959,6968,3080,9777 +490,4334,10142,28690,14777,3665,15535,6951,3160,9751 +491,4419,10408,28420,14871,3819,15698,7253,3380,10178 +492,4540,10564,28380,14737,3909,15788,7556,3510,10564 +493,4554,10586,28550,14482,3827,15502,7578,3530,10700 +494,4494,10626,29390,14351,3691,15188,7384,3460,10668 +495,4408,10716,31670,14782,3600,15778,7393,3410,10822 +496,4316,10704,34210,15684,3618,17013,7770,3540,11400 +497,4524,11305,36070,16691,3878,18552,8190,3790,11707 +498,4591,11559,36710,16756,3971,19060,7754,3590,10914 +499,4482,11301,36060,16179,3874,18594,7226,3400,10288 +500,4321,11050,35490,15668,3725,18276,7040,3360,10004 +501,4158,10803,34550,15167,3526,17620,6737,3230,9701 +502,4078,10836,34180,14951,3480,17546,6675,3170,9431 +503,4140,10769,33610,14512,3377,17382,6521,3080,9251 +504,4332,10819,33870,14704,3356,17370,6650,3090,9231 +505,4376,11078,35680,15259,3454,17827,6991,3280,9847 +506,4562,11829,38270,16412,3631,18876,7350,3520,10790 +507,4545,11776,39100,16725,3723,19365,7718,3700,11572 +508,4448,11501,38860,16552,3682,19220,7683,3660,11559 +509,4349,11113,38240,16342,3626,18917,7579,3590,11384 +510,4258,10662,36860,15831,3509,18304,7354,3440,10999 +511,4104,10082,34940,14881,3451,17323,6915,3230,10610 +512,4225,10065,33140,14581,3476,16731,6801,3210,10235 +513,4242,9843,30850,13981,3425,15944,6765,3200,9778 +514,4397,9998,29660,13703,3487,15394,6830,3270,9761 +515,4551,10236,29130,13576,3593,15455,6978,3450,10092 +516,4643,10363,28710,13571,3656,15464,7215,3530,10385 +517,4724,10400,28510,13402,3570,15109,7287,3490,10368 +518,4647,10390,29030,13279,3403,14840,7125,3380,10121 +519,4500,10330,30900,13785,3257,15318,7123,3260,10026 +520,4312,10260,33550,14469,3243,16373,7401,3360,10425 +521,4266,10509,36120,15169,3370,17480,7556,3490,10663 +522,4211,10764,36760,15036,3500,17621,7275,3350,10580 +523,4161,10432,36150,14371,3419,17262,7058,3220,10443 +524,4078,10326,35160,13700,3246,17039,6686,3100,10396 +525,3965,10249,34310,13554,3134,16602,6701,3170,10380 +526,3913,9972,33120,13191,3032,16168,6568,3140,10268 +527,3891,9867,32450,12918,2957,15831,6414,3110,10199 +528,4079,9973,32540,13087,2970,15935,6604,3110,10470 +529,4149,10494,34250,13748,3085,16510,6899,3250,10927 +530,4408,11338,37720,15378,3358,17981,7463,3510,11745 +531,4447,11472,38960,15842,3485,18618,7800,3650,12100 +532,4398,11308,38640,15715,3461,18592,7626,3600,11928 +533,4349,11034,37750,15428,3379,18273,7576,3500,11567 +534,4323,10599,36150,14789,3237,17479,7278,3310,11011 +535,4170,9935,33630,13897,3144,16282,6713,3050,10243 +536,4263,9936,31600,13348,3160,15401,6511,2970,9641 +537,4156,9660,29250,12651,3141,14426,6389,2910,9139 +538,4293,9895,28200,12540,3250,14035,6491,2970,9132 +539,4452,10182,27850,12731,3463,14274,6827,3180,9503 +540,4588,10421,27690,12869,3559,14540,7125,3350,9867 +541,4675,10650,28160,13025,3571,14515,7185,3410,10046 +542,4658,11144,30310,13721,3552,14927,7323,3480,10273 +543,4777,11814,35040,15462,3650,16675,7907,3640,10914 +544,4706,12099,40020,17521,3786,19029,8443,3850,11783 +545,4848,13164,45310,20140,4170,21716,9323,4340,12385 +546,4903,13659,48030,21262,4383,23256,9569,4520,12181 +547,4743,13424,47820,20915,4171,23016,9308,4390,11877 +548,4667,13170,46720,20300,4042,22592,9069,4330,11731 +549,4534,12508,44490,18884,3814,21466,8506,4150,11229 +550,4681,12805,45090,19648,3901,21829,8657,4310,11245 +551,4720,12732,44510,19428,3882,21493,8604,4280,11188 +552,4777,12640,44340,19300,3845,21404,8457,4230,11240 +553,4879,12869,45440,19703,3940,21537,8491,4240,11614 +554,4978,13063,46160,19846,3970,21590,8580,4250,11988 +555,4899,12955,45510,19501,3969,21320,8730,4270,12447 +556,4722,12476,44130,18799,3801,20622,8420,4120,12123 +557,4678,11984,42710,18207,3680,19796,8194,3950,11687 +558,4596,11374,40500,17547,3557,19112,7857,3700,11118 +559,4413,10607,37850,16605,3506,17955,7280,3440,10494 +560,4474,10445,35000,15955,3447,16942,6939,3330,9931 +561,4417,10096,31980,15020,3360,15715,6756,3190,9328 +562,4521,10294,30510,14654,3471,15358,6770,3210,9234 +563,4619,10571,30030,14723,3679,15506,7090,3380,9666 +564,4716,10736,29830,14793,3825,15585,7346,3510,10112 +565,4768,10911,30170,14813,3824,15476,7479,3560,10313 +566,4759,11322,32160,15375,3790,15799,7571,3570,10577 +567,4873,11840,36530,16694,3861,17323,8069,3730,11148 +568,4858,11979,40890,18216,3874,19032,8486,3860,11999 +569,5091,12961,45050,20276,4256,20950,9329,4310,13056 +570,5190,13458,47390,21104,4617,22185,9651,4490,13464 +571,5054,13358,45350,20619,4742,22033,9557,4420,13391 +572,4932,13407,43470,20045,4718,22034,9366,4470,13490 +573,4765,13067,41480,18958,4690,21236,9024,4280,13550 +574,4902,13633,40570,20188,4821,21886,9279,4470,14158 +575,4943,13689,40510,20363,4993,21829,9390,4610,14248 +576,5019,13801,40360,20278,4998,21741,9646,4740,14474 +577,5012,13970,42250,20855,4943,22691,10003,4850,14943 +578,5146,14402,45320,21428,4883,23558,10169,4870,15301 +579,5106,14269,46140,21547,4857,23668,10299,5000,15568 +580,4949,13972,45900,21264,4739,23227,10015,4900,15259 +581,4876,13516,45670,20804,4611,22616,9706,4730,14759 +582,4802,12968,44450,20160,4455,21845,9245,4460,14071 +583,4546,12217,42210,19241,4355,20645,8604,4110,13186 +584,4664,12106,39620,18617,4396,19721,8394,4050,12588 +585,4637,11801,36650,17639,4303,18400,8171,3950,11987 +586,4760,11990,35040,17155,4394,17737,8095,3960,11809 +587,4963,12299,34190,17008,4568,17656,8278,4040,11999 +588,5107,12432,33710,16888,4608,17564,8350,4040,12165 +589,5159,12589,34190,16810,4591,17406,8345,4010,12264 +590,5177,13132,36600,17526,4618,17780,8573,4050,12438 +591,5222,13739,42070,19393,4658,19669,9121,4330,13205 +592,5200,13743,46490,21183,4723,21662,9672,4580,14205 +593,5525,14692,49960,23793,5063,24049,10278,5040,15470 +594,5691,15235,51370,24644,5357,25399,10280,5050,15740 +595,5691,15146,50550,23905,5419,25242,9929,4860,15183 +596,5618,15048,49550,23425,5301,24918,9735,4770,14379 +597,5365,14601,47440,22140,5168,23684,9160,4490,13370 +598,5430,14880,47490,22714,5130,23624,9328,4490,12936 +599,5416,14678,46480,22557,5082,23271,9254,4390,12493 +600,5387,14868,46420,22261,4954,23038,9320,4360,12515 +601,5214,14820,48650,22464,4986,23324,9639,4540,13252 +602,5302,14994,51030,22752,5010,23737,9884,4710,14187 +603,5228,14831,51350,22598,4935,23669,10078,4850,15061 +604,5054,14481,50500,21948,4785,23076,9860,4730,14880 +605,4982,13975,49200,21335,4651,22399,9620,4570,14567 +606,4894,13298,46900,20457,4490,21443,9195,4330,13940 +607,4704,12418,43870,19123,4373,20109,8549,3980,13027 +608,4758,12270,40710,18520,4399,19115,8270,3910,12436 +609,4736,11907,37280,17542,4293,18125,8087,3840,11794 +610,4909,12074,35380,17109,4374,17487,8075,3860,11620 +611,5057,12210,34440,17051,4492,17452,8294,3940,11793 +612,5177,12329,34100,16830,4521,17369,8458,3970,11969 +613,5183,12459,34450,16772,4493,17237,8408,3940,11970 +614,5156,12947,37040,17366,4571,17678,8497,3970,12229 +615,5143,13449,42700,19228,4708,19716,9155,4250,13127 +616,5046,13411,46920,20958,4693,21755,9563,4480,14056 +617,5323,14315,49240,23174,4945,23983,10111,4860,14759 +618,5317,14626,49750,23866,5220,25248,10000,4770,14910 +619,5136,14306,47860,23011,5217,24807,9734,4610,14474 +620,5071,14074,46130,22203,5150,24186,9222,4490,14226 +621,4825,13351,43650,20553,4957,22900,8833,4150,13549 +622,4819,13717,43180,21026,5028,23085,8991,4270,13475 +623,4825,13465,42510,20801,5030,22806,9160,4180,13144 +624,4913,13812,42290,20692,4945,22529,8967,4050,13028 +625,4980,13990,44080,21128,5024,22874,9252,4200,13346 +626,5079,14352,45970,21719,4995,23285,9496,4360,13803 +627,5017,14155,46270,21572,4919,23395,9702,4480,14276 +628,4850,13701,45460,20881,4764,22751,9423,4360,14009 +629,4743,13285,44370,20329,4586,22023,9080,4210,13520 +630,4602,12653,42420,19577,4374,21248,8702,3950,12799 +631,4333,11797,39640,18414,4256,19889,8055,3650,11967 +632,4428,11632,36900,17722,4260,18877,7780,3560,11314 +633,4444,11357,33850,16712,4161,17519,7544,3490,10712 +634,4623,11521,32270,16273,4241,16892,7563,3530,10500 +635,4792,11775,31470,16132,4410,16754,7715,3640,10783 +636,4904,11984,31100,15957,4473,16648,7924,3690,11004 +637,4993,12095,31330,15737,4435,16446,7956,3660,11055 +638,4959,12480,33450,16227,4456,16793,8131,3640,11264 +639,4963,12992,38380,17975,4523,18577,8626,3850,11943 +640,4881,12911,43060,19536,4522,20674,9046,4100,12765 +641,5081,13725,47360,21839,4766,23446,9822,4610,13597 +642,5097,14040,48390,23044,5023,25283,10139,4810,14268 +643,4960,13643,47430,23109,5015,25540,10038,4810,14112 +644,4779,13362,47010,23222,4905,25585,9795,4750,13992 +645,4477,12795,45360,22258,4708,24628,8967,4530,13206 +646,4538,13038,46200,23103,4783,24895,9106,4540,13254 +647,4465,13087,46070,22903,4858,24165,9042,4380,13173 +648,4616,13279,45950,22362,4861,23386,9102,4350,13153 +649,4772,13550,47080,22346,4902,23316,9399,4430,13648 +650,4911,13846,47490,22102,4930,23303,9552,4500,14242 +651,4864,13571,46800,21750,4878,23140,9667,4600,14659 +652,4735,13114,45160,20915,4755,22472,9494,4470,14309 +653,4624,12656,43640,20276,4596,21749,9204,4330,13845 +654,4516,12157,41770,19441,4431,20943,8765,4100,13188 +655,4313,11611,39700,18476,4295,19798,8141,3820,12390 +656,4411,11444,37280,18014,4303,18873,7874,3760,11872 +657,4397,11076,34490,16996,4193,17913,7708,3670,11226 +658,4535,11297,32880,16364,4245,17309,7668,3690,10991 +659,4675,11588,31940,16194,4344,17144,7838,3790,11214 +660,4795,11655,31450,15978,4345,16829,7962,3800,11336 +661,4840,11678,31380,15594,4257,16396,7868,3720,11253 +662,4720,11696,32210,15512,4143,16219,7799,3610,11143 +663,4639,11778,34900,16019,4092,16976,7908,3610,11342 +664,4368,11784,37900,17040,4041,18402,8338,3790,12170 +665,4407,12231,40110,17841,4235,20616,8788,4100,12954 +666,4348,12418,40430,17841,4450,21579,8598,4030,12792 +667,4258,12152,39240,16986,4475,21177,8230,3900,12744 +668,4137,11940,38010,16454,4383,20681,8127,3800,12600 +669,4023,11640,36560,15656,4265,19889,7776,3660,12214 +670,3973,11553,35760,15352,4114,19550,7676,3680,11873 +671,3999,11358,35240,15402,3984,19159,7579,3640,11650 +672,4169,11619,35500,15520,3891,19090,7639,3690,11819 +673,4295,11866,37280,16219,3893,19500,8016,3860,12268 +674,4550,12677,40220,17433,4067,20484,8491,4110,13046 +675,4547,12716,41350,17809,4168,20923,8803,4280,13743 +676,4503,12552,41230,17710,4194,20687,8715,4200,13562 +677,4497,12220,40720,17424,4131,20339,8517,4090,13240 +678,4428,11800,39290,16736,4005,19723,8150,3890,12747 +679,4249,11261,37350,15848,3920,18746,7737,3640,12067 +680,4398,11316,35600,15481,3962,18183,7649,3610,11620 +681,4400,11061,33280,14727,3859,17277,7477,3560,11061 +682,4532,11167,31760,14399,3869,16713,7420,3600,10891 +683,4695,11382,31090,14357,3998,16549,7582,3680,11014 +684,4797,11534,30490,14125,4039,16248,7640,3680,11098 +685,4833,11555,30360,13900,3970,15815,7595,3590,10947 +686,4727,11488,31210,13902,3865,15487,7367,3430,10613 +687,4582,11450,33490,14299,3759,16029,7317,3340,10479 +688,4317,11286,36020,15176,3705,17182,7654,3470,10968 +689,4237,11457,37250,15762,3819,18582,7980,3740,11763 +690,4223,11427,37350,15443,3985,19249,7784,3680,12127 +691,4069,11111,36370,14717,4025,18811,7477,3550,11789 +692,3911,10912,35330,13977,3851,18387,7333,3410,11295 +693,3750,10717,34360,13992,3766,17994,7157,3370,11019 +694,3664,10491,33320,13674,3681,17450,6962,3310,10760 +695,3626,10321,32790,13751,3640,17081,6873,3210,10512 +696,3828,10703,33050,14009,3587,17049,6919,3280,10464 +697,4093,11145,34900,14678,3697,17599,7165,3460,10987 +698,4453,12202,38660,16381,3930,19144,7852,3750,11921 +699,4532,12269,40290,16916,4036,20086,8348,3950,12632 +700,4480,12029,40430,16902,4000,20114,8334,3920,12589 +701,4458,11764,39990,16820,3955,19838,8173,3850,12309 +702,4401,11325,38660,16239,3855,19224,7951,3660,11748 +703,4242,10645,36070,15292,3788,17862,7358,3390,10944 +704,4354,10679,34090,14886,3831,16987,7269,3310,10381 +705,4355,10441,31690,14273,3806,16056,7120,3270,9851 +706,4530,10725,30460,14078,3872,15563,7201,3330,9774 +707,4710,10995,30070,14104,3993,15703,7403,3470,10106 +708,4809,11222,29970,14150,4044,15662,7672,3530,10386 +709,4878,11501,30700,14293,4013,15550,7837,3530,10482 +710,4879,12058,33390,15063,4034,16039,7836,3550,10751 +711,4987,12635,38820,17200,4184,18173,8493,3780,11551 +712,4930,12573,43330,19287,4298,20539,8988,4050,12492 +713,4968,13296,45850,21297,4714,22967,9546,4580,13117 +714,4919,13516,46550,22197,4996,23879,9455,4560,12760 +715,4723,13059,45010,21623,5084,23509,9111,4350,12218 +716,4580,12789,43560,21171,5041,22913,8930,4240,11835 +717,4314,12198,41230,19833,4889,21652,8475,4000,11281 +718,4379,12755,41420,20588,4885,21973,8777,4000,11263 +719,4456,12737,40930,20633,4828,21770,8641,3920,10954 +720,4639,13076,40850,20805,4762,21767,8607,3860,10983 +721,4744,13348,42190,21137,4755,22133,8813,3970,11693 +722,4854,13706,44200,21485,4693,22704,9022,4150,12409 +723,4822,13531,44830,21434,4671,22921,9260,4310,13278 +724,4675,13165,44140,20854,4521,22375,9163,4220,13214 +725,4576,12750,43210,20300,4408,21684,8960,4090,12977 +726,4449,12178,41430,19535,4241,20950,8528,3860,12481 +727,4236,11542,39130,18535,4166,19686,7995,3570,11801 +728,4303,11386,36590,18019,4179,18700,7856,3510,11308 +729,4281,11026,33690,17043,4048,17518,7667,3460,10768 +730,4436,11240,32170,16644,4134,16942,7674,3520,10722 +731,4584,11523,31530,16568,4285,16956,7877,3670,11069 +732,4735,11697,31210,16464,4349,16913,7949,3720,11305 +733,4799,11969,31480,16299,4364,16787,8029,3720,11450 +734,4786,12412,33750,16883,4333,17215,8211,3750,11697 +735,4840,12981,38810,18823,4464,19180,8802,4030,12605 +736,4784,12966,43090,20397,4519,21190,9328,4260,13579 +737,4787,13706,45530,22364,4822,23043,9635,4570,13851 +738,4706,13883,45980,22761,5088,23884,9232,4410,12995 +739,4565,13558,44750,21954,5053,23442,8646,4160,12188 +740,4510,13190,43820,21049,4940,22919,8314,4030,11856 +741,4300,12337,41550,19636,4616,21636,7923,3770,11181 +742,4349,12613,41630,20064,4594,21851,8182,3800,11066 +743,4389,12475,40910,19990,4478,21211,8086,3700,10753 +744,4573,12571,41430,19740,4312,20689,8001,3650,10597 +745,4676,12861,43010,20271,4288,20986,8366,3830,11070 +746,4809,13313,44600,20811,4342,21643,8571,3980,11869 +747,4745,13255,44710,21000,4407,22097,8895,4180,12736 +748,4603,12944,43730,20481,4301,21861,8749,4120,12713 +749,4484,12560,42690,20057,4186,21375,8552,4010,12429 +750,4354,12039,40750,19402,4005,20601,8234,3820,11954 +751,4153,11278,38420,18389,3905,19393,7672,3550,11282 +752,4216,11124,35990,17633,3928,18512,7496,3500,10798 +753,4204,10755,33250,16966,3833,17339,7388,3450,10263 +754,4379,11010,31940,16539,3941,16790,7412,3500,10215 +755,4529,11250,31430,16347,4070,16872,7602,3620,10538 +756,4674,11407,31230,16220,4130,16811,7773,3660,10768 +757,4728,11528,31810,16148,4069,16652,7815,3650,10841 +758,4724,11964,34250,16727,4065,17069,7913,3650,10989 +759,4795,12634,39170,18577,4114,18997,8440,3870,11623 +760,4775,12546,42980,20154,4155,21007,8975,4070,12300 +761,4875,13162,44810,22013,4426,23241,9449,4400,12661 +762,4791,13311,45120,22691,4576,23607,9706,4480,12401 +763,4658,12961,44080,22028,4531,22948,9394,4310,11539 +764,4650,12636,42560,21338,4550,22346,9285,4100,11088 +765,4531,12015,40020,19724,4331,21087,8607,3840,10524 +766,4789,12222,40280,20192,4372,21628,8556,3880,10643 +767,4960,12237,39540,20040,4322,21476,8430,3790,10369 +768,5038,12204,39130,20103,4265,21407,8232,3750,10278 +769,4872,12433,40150,20624,4332,21567,8332,3790,10552 +770,4901,12648,41680,20655,4322,21572,8561,3880,10985 +771,4834,12486,41910,20340,4293,21364,8802,4000,11594 +772,4680,12155,41030,19780,4123,20717,8484,3880,11430 +773,4585,11753,39880,19179,4015,19978,8297,3730,11033 +774,4531,11316,37970,18399,3864,19135,7934,3500,10583 +775,4274,10621,35780,17308,3790,17996,7385,3210,10041 +776,4327,10522,33290,16507,3800,16856,7044,3070,9507 +777,4316,10292,30540,15673,3744,15767,6821,2970,9009 +778,4466,10521,29430,15287,3889,15242,6944,3010,9010 +779,4635,10793,28960,15254,4053,15481,7164,3190,9464 +780,4784,11029,28930,15268,4147,15615,7442,3330,9857 +781,4832,11236,29490,15296,4098,15660,7625,3380,10077 +782,4787,11675,31600,15912,4068,16063,7804,3440,10261 +783,4790,12257,35960,17380,4156,17727,8235,3560,10720 +784,4713,12303,39900,18754,4241,19499,8574,3690,11322 +785,4893,13191,42790,20859,4501,21752,9111,4070,11686 +786,4905,13559,44100,21685,4717,22812,9163,4150,11485 +787,4663,13217,43350,21189,4628,22329,8819,4060,10908 +788,4556,12989,42960,20602,4536,21954,8588,4000,10843 +789,4425,12274,41370,19115,4316,20966,8075,3720,10349 +790,4559,12649,42240,19677,4393,21516,8415,3830,10382 +791,4648,12601,41710,19607,4263,21506,8465,3750,10237 +792,4783,12777,41200,19411,4217,21511,8444,3670,10305 +793,4841,12992,42730,19847,4284,21876,8685,3760,10897 +794,4973,13433,44550,20383,4337,22090,8840,3870,11399 +795,4948,13272,44620,20468,4362,22028,9009,4030,12039 +796,4787,12872,43570,19832,4235,21352,8754,3930,11930 +797,4695,12473,42200,19309,4125,20666,8566,3810,11580 +798,4623,11868,40180,18533,4003,19911,8203,3590,11134 +799,4396,11202,37480,17580,3892,18641,7664,3310,10534 +800,4453,11110,34800,16897,3892,17695,7412,3210,10000 +801,4416,10725,31980,15938,3816,16559,7306,3180,9506 +802,4555,10932,30510,15542,3899,16085,7393,3240,9566 +803,4657,11172,30040,15564,4067,16176,7639,3420,10054 +804,4762,11367,29840,15451,4146,16183,7849,3520,10427 +805,4822,11500,30270,15376,4105,16108,7872,3540,10613 +806,4832,11862,32410,15842,4106,16477,7925,3580,10735 +807,4852,12367,37010,17459,4192,18298,8582,3750,11278 +808,4827,12388,40920,18921,4235,20147,8941,3910,11983 +809,4993,13177,44420,20935,4531,22410,9571,4290,12582 +810,4974,13464,46030,21644,4739,23339,9546,4240,12975 +811,4853,13113,45560,20763,4694,22905,9026,4110,12438 +812,4768,12916,44710,20240,4630,22308,8665,4080,12245 +813,4511,12284,43260,18924,4399,21092,8193,3920,11466 +814,4598,12585,43920,19514,4453,21581,8349,4090,11142 +815,4583,12607,43380,19347,4385,21344,8107,3980,10767 +816,4661,12644,42850,19053,4302,21044,8177,3880,10523 +817,4698,12786,43770,19293,4300,20914,8285,3840,10979 +818,4788,12965,44570,19521,4273,21099,8302,3850,11445 +819,4697,12786,44130,19464,4277,21247,8610,4010,12091 +820,4560,12464,42860,18958,4178,20811,8447,3940,11992 +821,4443,12050,41480,18535,4065,20433,8303,3840,11692 +822,4339,11565,39470,18115,3931,19806,8019,3660,11243 +823,4082,10920,37170,17325,3875,18902,7520,3410,10666 +824,4171,10823,34730,16850,3918,18108,7301,3350,10204 +825,4159,10576,32020,15856,3811,17184,7186,3290,9772 +826,4291,10670,30540,15566,3869,16607,7245,3360,9694 +827,4447,10866,29750,15482,3964,16610,7490,3500,10040 +828,4547,10983,29390,15311,3978,16479,7597,3560,10357 +829,4593,11040,29350,15058,3890,16079,7568,3510,10452 +830,4513,11130,30100,14895,3734,15908,7391,3440,10348 +831,4410,11220,32250,15409,3646,16689,7446,3430,10422 +832,4300,11095,35030,16234,3636,17905,7852,3550,10897 +833,4332,11473,37580,17030,3757,19276,8196,3890,11169 +834,4263,11470,37760,16809,3852,19426,8080,3750,10799 +835,4185,11075,36290,15826,3844,18809,7766,3520,10207 +836,4107,10795,34790,15121,3738,18107,7402,3400,10224 +837,4018,10446,33660,14391,3628,17453,6905,3270,9680 +838,4107,10389,32810,14201,3634,17219,6671,3360,9415 +839,4084,10295,32320,13830,3617,16799,6694,3280,8865 +840,4170,10401,32240,13753,3582,16794,6690,3210,8873 +841,4167,10730,33140,14404,3633,17182,6982,3260,9401 +842,4428,11324,35680,15343,3727,18085,7382,3420,10236 +843,4433,11413,36780,15880,3753,18655,7772,3600,11089 +844,4364,11200,36560,15696,3664,18485,7729,3560,11146 +845,4276,10949,35950,15406,3577,18120,7608,3460,10926 +846,4188,10628,34830,14942,3449,17497,7318,3310,10676 +847,4016,10184,33200,14112,3393,16635,6950,3110,10284 +848,4140,10240,31480,13686,3458,16072,6807,3080,9964 +849,4161,9923,29490,13126,3367,15308,6845,3040,9514 +850,4293,10120,28370,12976,3456,14969,6933,3140,9617 +851,4428,10329,27920,13218,3616,15112,7214,3330,10023 +852,4534,10505,27670,13295,3668,15091,7496,3440,10320 +853,4559,10552,27710,13182,3639,14811,7437,3430,10402 +854,4480,10525,28430,13139,3516,14468,7274,3320,10187 +855,4340,10473,30280,13420,3365,14801,7287,3190,10090 +856,4097,10227,32090,13977,3286,15722,7502,3250,10386 +857,3964,10265,32590,14373,3320,16710,7576,3320,10272 +858,3861,10241,32730,14139,3354,17004,7055,3180,9740 +859,3798,9891,32260,13665,3306,16435,6478,3040,9233 +860,3774,9763,31440,13140,3244,15911,6176,2950,9106 +861,3689,9500,30650,12657,3130,15550,5972,2910,8924 +862,3593,9307,29870,12439,3018,15098,5787,2850,8596 +863,3591,9106,29380,12141,2898,14768,5757,2770,8099 +864,3750,9129,29600,12273,2873,14807,5967,2720,8146 +865,3895,9582,31250,12874,2995,15445,6480,2880,8830 +866,4252,10638,34660,14268,3262,16990,7131,3210,9854 +867,4312,10949,36380,15149,3442,18021,7800,3500,10913 +868,4292,10848,36330,15229,3468,18120,7779,3520,11019 +869,4237,10632,35790,15133,3440,18011,7677,3470,10941 +870,4179,10212,34360,14751,3353,17453,7472,3330,10599 +871,4027,9589,32200,13879,3282,16425,6880,3090,10025 +872,4134,9579,30320,13694,3339,15810,6772,3080,9653 +873,4087,9451,28460,13270,3352,15059,6696,3080,9329 +874,4203,9686,27620,13260,3461,14893,6813,3190,9370 +875,4364,10008,27550,13441,3643,15109,7133,3350,9818 +876,4478,10283,27670,13671,3730,15177,7393,3440,10135 +877,4524,10522,28300,13809,3736,15142,7513,3440,10342 +878,4574,10988,30540,14547,3725,15643,7622,3470,10589 +879,4548,11527,35310,16499,3852,17665,8175,3690,11307 +880,4489,11612,39050,18536,3978,19685,8759,3890,12174 +881,4569,12486,41180,20606,4247,21553,9361,4320,12835 +882,4390,12810,41790,21016,4373,22257,9360,4390,13091 +883,4173,12486,40400,19998,4243,21541,8903,4300,12557 +884,4069,12219,39260,19287,4120,20906,8447,4210,12415 +885,3854,11435,37080,17799,3842,19579,8044,4000,11881 +886,4070,11619,37460,18332,3882,20130,8229,3970,12028 +887,4153,11432,37270,18112,3816,19940,8190,3930,11940 +888,4273,11299,37080,17994,3750,19886,8200,3880,11958 +889,4411,11536,38060,18347,3823,20329,8363,3930,12317 +890,4556,11953,39530,18733,3898,20616,8624,4020,12566 +891,4507,11953,39840,18701,3949,20684,8675,4080,12791 +892,4381,11570,39000,18068,3844,20070,8469,3930,12460 +893,4235,11218,37870,17584,3739,19400,8196,3750,11918 +894,4088,10643,36040,16995,3590,18624,7874,3520,11273 +895,3858,9981,33990,16143,3565,17461,7386,3250,10569 +896,3958,9817,31670,15618,3564,16430,7054,3120,9959 +897,3915,9581,29140,14774,3498,15347,6713,3000,9326 +898,4042,9788,28140,14481,3592,14972,6865,3050,9343 +899,4164,10092,27810,14487,3778,15173,7161,3240,9653 +900,4321,10283,27760,14566,3887,15315,7282,3380,10056 +901,4398,10501,28320,14597,3860,15236,7481,3440,10187 +902,4423,10853,30070,15050,3821,15560,7581,3460,10328 +903,4483,11368,33870,16322,3895,17004,8016,3570,10746 +904,4490,11385,37440,17497,3950,18597,8429,3720,11390 +905,4560,12204,40260,19466,4134,20900,9042,4210,12032 +906,4456,12422,41000,20068,4213,21820,9190,4280,12401 +907,4323,12005,40150,19395,4113,21106,8860,4150,12084 +908,4270,11810,39910,18753,4023,20437,8736,4160,11882 +909,4053,11143,37150,17310,3773,19360,8097,3980,11387 +910,4071,11245,37150,17990,3859,20014,8268,4030,11619 +911,4128,11075,37020,17915,3842,19754,8189,4000,11469 +912,4267,11053,36490,17679,3781,19677,8193,3990,11305 +913,4412,11295,37110,17987,3858,19846,8257,3990,11464 +914,4624,11664,38510,18201,3881,19888,8394,3990,11752 +915,4609,11549,38530,17967,3888,19789,8525,4020,12014 +916,4464,11207,37390,17359,3772,19132,8232,3870,11704 +917,4326,10822,36140,16873,3683,18457,8006,3700,11257 +918,4233,10311,34340,16216,3553,17758,7707,3460,10740 +919,4013,9709,32440,15491,3505,16669,7246,3160,10169 +920,4109,9569,30200,14916,3487,15764,6923,3030,9675 +921,4083,9335,27790,14199,3405,14733,6745,2920,9199 +922,4246,9603,26790,13964,3517,14459,6831,2960,9165 +923,4399,9941,26620,14117,3724,14739,7067,3150,9619 +924,4520,10195,26670,14243,3863,15051,7422,3300,10068 +925,4596,10377,27180,14327,3855,15118,7527,3350,10305 +926,4597,10813,28800,14798,3863,15358,7671,3390,10473 +927,4664,11271,32190,15973,3887,16705,8199,3500,10956 +928,4637,11231,35330,17263,3927,18144,8562,3630,11540 +929,4744,11970,38320,18938,4129,20005,8926,3960,11466 +930,4725,12218,39440,19243,4272,21059,8672,3850,10803 +931,4542,12008,38940,18617,4223,20942,8119,3740,10446 +932,4463,11740,38750,18281,4199,20435,7839,3720,10444 +933,4205,11219,37580,17071,4009,19319,7302,3540,10149 +934,4331,11536,38450,17774,4133,19731,7400,3600,10035 +935,4329,11393,38520,17633,4124,19407,7380,3500,9624 +936,4418,11395,38550,17492,4057,19255,7388,3460,9508 +937,4491,11650,39360,17715,4073,19476,7637,3540,10022 +938,4675,12032,40090,18024,4071,19867,7748,3550,10535 +939,4610,12028,40010,18266,4086,20219,8066,3720,11318 +940,4497,11659,39240,17780,3963,19752,7901,3650,11303 +941,4396,11317,38090,17384,3857,19198,7700,3540,11045 +942,4310,10851,36240,16942,3718,18551,7451,3360,10680 +943,4077,10142,34300,16072,3637,17539,7049,3120,10205 +944,4168,10084,32090,15663,3640,16682,6738,3030,9711 +945,4158,9903,29730,14923,3578,15676,6634,2980,9268 +946,4348,10089,28680,14625,3690,15357,6787,3060,9326 +947,4551,10395,28480,14775,3877,15582,7108,3250,9792 +948,4657,10654,28520,14815,3955,15652,7364,3380,10205 +949,4752,10820,29000,14840,3943,15605,7370,3450,10344 +950,4756,11242,31090,15237,3912,15940,7364,3470,10581 +951,4832,11784,35280,16746,4000,17542,7810,3630,11064 +952,4801,11778,38370,18214,4029,19274,8258,3790,11578 +953,4986,12590,40320,20009,4268,20964,8660,4160,11668 +954,5009,13094,41520,20463,4371,21684,8503,4090,11287 +955,4985,12904,40840,19852,4257,21434,8164,3940,10635 +956,4968,12627,40190,19301,4195,21034,8013,3880,10469 +957,4733,12103,38310,17836,3924,19680,7382,3650,10270 +958,4831,12347,38980,18538,3967,20143,7540,3780,10662 +959,4846,12230,38850,18154,3966,19840,7397,3710,10724 +960,4917,12274,38660,17957,3902,19665,7516,3660,10852 +961,4825,12579,40110,18259,4003,20060,7820,3730,11151 +962,4987,12972,42030,18658,4094,20662,8020,3770,11505 +963,4981,12850,42970,18952,4188,21151,8248,3910,11902 +964,4802,12452,42280,18454,4068,20764,8054,3810,11620 +965,4696,11967,41190,18057,3956,20205,7827,3670,11194 +966,4566,11465,39520,17432,3811,19612,7449,3460,10629 +967,4305,10752,37270,16658,3735,18373,6997,3190,10084 +968,4370,10689,34960,16105,3719,17398,6719,3070,9516 +969,4365,10445,32330,15172,3645,16291,6417,2950,8935 +970,4536,10652,31100,14754,3752,15760,6438,3000,8951 +971,4677,10899,30450,14718,3897,15862,6763,3170,9373 +972,4769,11045,30070,14691,3968,15868,7088,3320,9788 +973,4831,11189,30240,14527,3925,15769,7319,3370,9954 +974,4784,11581,32140,14988,3888,15887,7521,3410,9984 +975,4798,12178,36730,16383,3977,17466,7812,3520,10260 +976,4773,12189,41670,18124,4061,19625,8253,3700,10889 +977,5028,13154,46850,20624,4363,22124,8998,4130,11563 +978,5143,13569,50440,22067,4610,23478,9296,4190,12015 +979,5089,13568,51690,21949,4668,23270,9065,4070,11787 +980,5093,13459,51790,21623,4556,22855,8905,3970,11621 +981,4890,13027,50260,20499,4374,21399,8434,3750,11011 +982,4885,13408,50580,21096,4477,21678,8642,3900,11092 +983,4767,13321,50090,20931,4504,21582,8487,3910,10999 +984,4723,13168,49550,20548,4415,21480,8373,3960,10971 +985,4650,13261,49650,20396,4411,21472,8443,3980,11068 +986,4766,13264,49490,19916,4332,21019,8342,3890,11257 +987,4703,13063,48450,19352,4247,20587,8320,3890,11486 +988,4552,12657,46510,18439,4073,19785,7974,3740,11243 +989,4446,12205,44460,17786,3909,19075,7720,3590,10846 +990,4290,11673,41930,17181,3752,18308,7385,3390,10363 +991,4034,11037,39080,16389,3656,17331,7114,3150,9922 +992,4135,10892,35990,15588,3644,16422,6715,3050,9430 +993,4177,10462,33000,14585,3512,15295,6505,2920,8914 +994,4291,10499,31150,14122,3584,14806,6501,2950,8820 +995,4447,10653,30380,14148,3719,14925,6715,3140,9233 +996,4559,10754,29700,14123,3770,14982,6941,3280,9700 +997,4591,10685,29320,14015,3712,14751,7038,3310,9849 +998,4455,10665,29710,13822,3556,14376,6870,3250,9727 +999,4306,10566,31350,14010,3421,14523,6864,3110,9575 +1000,4270,10293,32850,14310,3324,15222,6972,3120,9696 +1001,4453,10467,33360,14794,3309,16158,7001,3160,9788 +1002,4351,10460,33290,14730,3269,16539,6655,3140,9567 +1003,4168,10139,32290,14253,3172,16068,6247,3170,9153 +1004,4011,9864,31240,13816,3056,15941,6112,3180,8807 +1005,3888,9481,30290,13208,2966,15306,5880,3060,8826 +1006,3827,9303,29680,12847,2978,14966,6083,3000,8857 +1007,3757,9154,29360,12647,2931,14874,6177,2920,8813 +1008,3823,9085,29480,12530,2895,14864,5994,2800,9106 +1009,3895,9366,30800,12895,2971,15365,6147,2900,9255 +1010,4187,10227,33720,14009,3163,16420,6670,3140,9963 +1011,4239,10515,35310,14455,3279,17009,7008,3300,10388 +1012,4131,10388,35180,14353,3262,16886,6912,3240,10282 +1013,3982,10216,34570,14072,3215,16707,6791,3160,10022 +1014,3900,9859,33380,13503,3121,16082,6533,3010,9615 +1015,3764,9395,31460,12798,3053,15136,6093,2800,9078 +1016,3927,9438,29690,12490,3082,14646,5833,2750,8734 +1017,3828,9267,27630,11860,3056,13667,5747,2680,8295 +1018,3968,9473,26600,11674,3139,13406,5876,2750,8344 +1019,4108,9733,26200,11948,3324,13762,6187,2970,8799 +1020,4214,9943,26050,12081,3429,13956,6445,3140,9266 +1021,4279,10039,26000,12021,3422,13835,6472,3180,9448 +1022,4201,10024,26570,11937,3293,13577,6374,3080,9220 +1023,4157,10001,27880,11919,3149,13683,6294,2910,8902 +1024,4038,9737,29550,12117,3046,14203,6379,2880,8975 +1025,4108,9924,31160,12537,3010,15148,6339,2990,8700 +1026,4107,9762,31720,12661,2973,15322,5865,2900,8324 +1027,3960,9628,30790,12236,2867,15029,5515,2830,8039 +1028,3765,9366,30060,11945,2816,14748,5346,2780,7973 +1029,3571,9014,29440,11804,2766,14451,5243,2760,7991 +1030,3362,8963,28700,11395,2713,14009,5118,2690,7826 +1031,3401,8789,28350,11429,2652,13535,5254,2610,7850 +1032,3573,8698,28540,11357,2641,13485,5453,2640,8056 +1033,3708,8988,28780,11865,2741,14037,5543,2620,8452 +1034,4028,9898,31590,13042,2981,15209,6114,2880,9209 +1035,4072,10114,32960,13603,3122,16075,6542,3060,9700 +1036,4021,9943,32740,13589,3103,15930,6531,3030,9623 +1037,3991,9773,32070,13391,3026,15657,6408,2950,9346 +1038,3947,9375,30770,12871,2922,15091,6191,2780,8941 +1039,3782,8827,28850,12141,2846,14167,5775,2580,8445 +1040,3898,8849,27140,11871,2871,13415,5505,2520,8066 +1041,3865,8660,25330,11153,2823,12668,5463,2460,7616 +1042,4033,8913,24620,11135,2953,12578,5440,2530,7695 +1043,4171,9288,24530,11461,3172,13023,5771,2740,8221 +1044,4301,9512,24650,11837,3359,13405,6200,2920,8712 +1045,4393,9765,25310,12010,3401,13423,6361,2970,8900 +1046,4410,10157,26840,12408,3420,13568,6347,2950,8891 +1047,4412,10575,30310,13632,3463,14701,6610,2990,9052 +1048,4393,10863,34540,15409,3554,16664,7029,3230,9715 +1049,4608,11911,39380,17881,3933,19141,7749,3750,10460 +1050,4475,12435,42330,19180,4164,20465,8105,3880,10835 +1051,4269,12278,42720,19080,4149,20433,8058,3860,10872 +1052,4129,12194,42720,18720,4109,20290,7970,3930,10765 +1053,4029,11644,41370,17571,3919,19217,7612,3740,10447 +1054,4160,12027,42220,18308,4063,19903,7833,3840,10816 +1055,4233,11954,41930,18340,4095,19931,7832,3800,10773 +1056,4311,11913,41760,18252,4064,19716,7774,3710,10735 +1057,4350,12149,42300,18577,4097,19818,7935,3770,11106 +1058,4513,12277,42750,18521,4064,19801,7938,3740,11325 +1059,4490,12062,42170,18243,4041,19784,8028,3770,11547 +1060,4400,11612,40690,17476,3887,19155,7726,3630,11189 +1061,4306,11251,39090,16907,3756,18491,7442,3490,10799 +1062,4195,10743,37040,16478,3614,17871,7128,3300,10231 +1063,3995,10218,34760,15667,3579,16885,6698,3050,9728 +1064,4020,10116,32320,15207,3564,16005,6485,2960,9220 +1065,4008,9901,29800,14392,3519,14925,6220,2860,8698 +1066,4146,10113,28650,14090,3649,14618,6233,2930,8689 +1067,4312,10442,28480,14329,3833,14963,6536,3100,9075 +1068,4425,10624,28590,14514,3986,15271,6918,3280,9575 +1069,4500,10780,29120,14606,3949,15217,7088,3360,9828 +1070,4492,11121,31030,15067,3941,15481,7270,3430,10101 +1071,4566,11727,35200,16329,4014,16958,7669,3550,10572 +1072,4469,11693,38470,17744,4108,18585,8018,3680,10992 +1073,4518,12451,41530,19664,4417,20705,8436,4070,10958 +1074,4446,12990,43120,20371,4696,21860,8395,4090,10782 +1075,4216,12864,42570,19812,4650,21590,8138,3960,10451 +1076,4118,12674,41800,19424,4538,21134,8001,3860,10357 +1077,3993,12260,39890,18176,4271,19995,7501,3640,10199 +1078,4180,12574,40370,18906,4399,20642,7785,3820,10021 +1079,4327,12548,39760,18953,4373,20452,7734,3730,10041 +1080,4529,12634,39950,18795,4377,20243,7799,3730,9891 +1081,4524,12863,41800,19170,4482,20662,8059,3790,10423 +1082,4660,13265,43610,19580,4533,21071,8149,3830,10901 +1083,4674,13219,44330,19886,4562,21526,8491,4000,11557 +1084,4532,12785,43410,19395,4400,21102,8289,3910,11486 +1085,4436,12471,42160,18939,4307,20538,8058,3790,11141 +1086,4340,11857,40240,18240,4192,19731,7732,3600,10720 +1087,4135,11283,37930,17262,4091,18587,7333,3320,10237 +1088,4208,11108,35300,16760,4077,17605,7087,3230,9686 +1089,4182,10895,32440,15917,3979,16603,6933,3160,9141 +1090,4349,11103,31130,15635,4035,16210,7014,3230,9170 +1091,4497,11297,30720,15616,4194,16291,7289,3390,9628 +1092,4647,11363,30480,15510,4252,16315,7562,3500,10072 +1093,4716,11490,30810,15380,4238,16218,7520,3500,10275 +1094,4742,11925,32830,15891,4235,16508,7570,3510,10483 +1095,4791,12510,37400,17590,4373,18252,8145,3710,11040 +1096,4769,12491,40980,19136,4465,20307,8449,3920,11656 +1097,4900,13213,44310,21261,4781,22652,9035,4280,11805 +1098,4903,13588,46160,21985,5047,23655,9087,4290,11622 +1099,4722,13313,45150,21405,5045,23114,8874,4140,11324 +1100,4597,12972,44200,20429,4898,22588,8630,4090,11119 +1101,4402,12374,41740,19191,4665,21402,8051,3850,10884 +1102,4470,12614,41880,19770,4705,21824,8320,3910,10942 +1103,4484,12721,40930,19553,4663,21497,8274,3820,10621 +1104,4514,12867,40690,19333,4684,21612,8406,3800,10542 +1105,4546,13005,42490,19753,4685,22000,8610,3930,10937 +1106,4753,13382,44550,20152,4632,22329,8753,4050,11624 +1107,4783,13413,45710,20553,4626,22644,9001,4230,12324 +1108,4666,13039,45070,20158,4509,22191,8729,4140,12324 +1109,4613,12613,43970,19694,4395,21559,8482,4010,11951 +1110,4525,12091,42020,19157,4239,20739,8071,3780,11500 +1111,4277,11386,39280,18106,4091,19378,7496,3490,10855 +1112,4345,11179,36560,17481,4085,18295,7147,3410,10333 +1113,4326,10862,33720,16509,3971,17147,6907,3330,9622 +1114,4496,11085,32290,16162,4037,16520,6941,3380,9536 +1115,4646,11270,31750,16096,4170,16613,7212,3520,9960 +1116,4778,11529,31490,15913,4244,16515,7434,3570,10513 +1117,4772,11640,31880,15773,4211,16255,7435,3530,10675 +1118,4742,12120,34240,16217,4202,16447,7523,3500,10965 +1119,4737,12647,39120,17902,4335,18138,7993,3710,11684 +1120,4666,12575,42140,19306,4400,20385,8500,3960,12280 +1121,4799,13109,43750,21002,4665,22691,9076,4310,11999 +1122,4771,13306,44560,21544,4853,23781,9018,4260,11469 +1123,4617,12871,43540,20730,4794,23327,8541,4070,11022 +1124,4449,12688,42340,20044,4688,22778,8226,3920,10920 +1125,4188,12011,39980,18550,4426,21618,7580,3720,10556 +1126,4264,12222,39830,18999,4472,22088,7754,3770,10566 +1127,4230,12106,38920,18736,4442,21802,7495,3660,9967 +1128,4295,11989,38660,18381,4349,21567,7473,3580,9787 +1129,4407,12205,40200,18759,4351,21819,7860,3710,10271 +1130,4644,12673,42390,19263,4325,22044,8128,3860,10848 +1131,4612,12699,43520,19773,4348,22409,8607,4110,11754 +1132,4444,12345,42920,19463,4228,21851,8527,4060,11778 +1133,4329,11968,41760,19124,4092,21261,8306,3960,11572 +1134,4176,11399,39940,18695,3932,20586,8092,3780,11167 +1135,3911,10733,37300,17664,3826,19379,7640,3490,10656 +1136,3987,10634,34750,17151,3859,18555,7400,3440,10011 +1137,3941,10283,32020,16208,3776,17450,7191,3370,9698 +1138,4089,10433,30810,15924,3872,16892,7234,3430,9718 +1139,4243,10649,30330,15918,4023,16917,7595,3570,10126 +1140,4390,10805,30250,15784,4081,16839,7751,3630,10524 +1141,4426,10959,30730,15645,4021,16814,7876,3630,10668 +1142,4433,11422,32970,16163,4011,17149,7943,3660,10873 +1143,4449,11950,37720,17874,4141,19044,8478,3880,11494 +1144,4461,11819,41000,19451,4196,20777,8829,4060,12105 +1145,4619,12450,43380,21002,4367,22358,9137,4320,12181 +1146,4607,12578,43750,21259,4476,22847,9133,4240,12167 +1147,4530,12243,42650,20151,4382,22156,8313,4110,11679 +1148,4427,12039,40810,19460,4258,21186,8046,3980,11119 +1149,4174,11350,38620,17972,3947,20032,7384,3770,10584 +1150,4210,11440,38500,18299,3998,20139,7752,3830,10722 +1151,4148,11225,37710,17955,3904,19669,7771,3690,10443 +1152,4176,10961,37200,17574,3804,19528,7760,3690,10432 +1153,4229,11080,38100,17739,3811,19676,7847,3710,10632 +1154,4404,11463,39610,17976,3823,19905,7855,3680,10942 +1155,4407,11494,40610,18351,3897,20238,8039,3830,11408 +1156,4257,11186,39950,17936,3814,19780,7855,3750,11153 +1157,4090,10902,39020,17640,3725,19218,7587,3630,10804 +1158,3939,10353,37440,17137,3655,18500,7272,3440,10333 +1159,3769,9773,35580,16368,3587,17559,6918,3220,9801 +1160,3840,9615,33560,15860,3587,16802,6560,3120,9274 +1161,3826,9277,31250,15091,3534,15736,6273,3000,8670 +1162,3932,9452,30000,14711,3614,15293,6286,2990,8576 +1163,4034,9672,29380,14742,3746,15395,6567,3140,8952 +1164,4149,9795,29060,14618,3797,15388,6777,3260,9361 +1165,4223,9867,29090,14364,3721,15153,6790,3260,9452 +1166,4149,9907,29860,14098,3546,14818,6612,3190,9215 +1167,4045,9916,32040,14391,3440,15256,6556,3060,9036 +1168,3871,9686,33760,14862,3399,16264,6775,3090,9293 +1169,3837,9984,34840,15592,3496,17782,7266,3400,9605 +1170,3781,10128,35100,15444,3591,18332,7407,3400,9660 +1171,3726,9932,33980,14961,3519,18193,7235,3260,9396 +1172,3729,9798,32810,14605,3424,18079,7098,3210,9381 +1173,3610,9355,31530,14058,3344,17727,6838,3110,9269 +1174,3581,9287,31350,14114,3342,17786,6878,3100,9156 +1175,3528,9082,30640,14214,3313,17568,6826,3020,8946 +1176,3502,8955,30460,14327,3277,17589,6849,3040,8949 +1177,3576,9204,30670,14664,3338,17708,6968,3120,9179 +1178,3862,9777,32770,15172,3397,17835,7047,3230,9462 +1179,3950,9866,33990,15279,3389,17983,7144,3310,9633 +1180,3867,9629,33620,14964,3307,17621,6950,3240,9408 +1181,3750,9382,32930,14530,3199,17101,6688,3110,9099 +1182,3660,8956,31500,13911,3070,16381,6344,2940,8664 +1183,3510,8582,29950,13023,2982,15398,6015,2750,8310 +1184,3647,8544,28420,12681,2961,14665,5792,2690,8001 +1185,3673,8316,26470,12008,2881,13705,5662,2610,7615 +1186,3877,8552,25490,11826,2964,13365,5674,2660,7569 +1187,3954,8839,25270,11993,3152,13556,5935,2840,8052 +1188,4035,9055,25200,12061,3290,13664,6175,2960,8403 +1189,4077,9182,25170,11884,3271,13366,6176,2960,8498 +1190,4000,9178,25540,11692,3094,12792,5869,2800,8055 +1191,3827,8978,26460,11644,2848,12689,5633,2570,7568 +1192,3721,8801,27850,12042,2740,13565,5845,2590,7657 +1193,3812,9283,29670,12657,2838,14999,6185,2850,8056 +1194,3903,9513,30980,13215,2958,15973,6457,2910,8448 +1195,3889,9390,30890,13110,2956,16119,6402,2920,8631 +1196,3808,9396,30280,13023,2958,16101,6394,2950,8584 +1197,3627,9296,29590,12706,2949,16060,6158,2910,8606 +1198,3553,9092,28350,12652,2904,15878,5797,2880,8329 +1199,3486,8959,27730,12596,2875,15369,5534,2770,7964 +1200,3563,8872,27910,12604,2851,15295,5676,2710,7819 +1201,3623,9170,28320,12901,2951,15441,5916,2790,8197 +1202,3964,9921,30810,13907,3113,16294,6397,2990,9056 +1203,4083,10042,32030,14330,3223,16913,6817,3160,9776 +1204,4039,9854,31910,14248,3189,16756,6768,3150,9723 +1205,4006,9542,31190,14035,3108,16428,6646,3060,9530 +1206,4003,9140,29940,13458,3003,15823,6486,2930,9119 +1207,3888,8574,28210,12672,2920,14801,5957,2740,8639 +1208,3985,8502,26630,12236,2915,14169,5717,2670,8242 +1209,3980,8368,24940,11596,2831,13309,5656,2610,7862 +1210,4108,8706,24310,11532,2986,13165,5808,2690,7927 +1211,4194,9173,24350,11796,3223,13551,6142,2910,8462 +1212,4312,9531,24690,12140,3396,13829,6459,3070,8962 +1213,4380,9850,25490,12389,3462,13959,6629,3130,9203 +1214,4373,10317,27350,13052,3449,14188,6721,3140,9517 +1215,4357,10882,30810,14493,3551,15701,7125,3230,10055 +1216,4424,11020,33480,16174,3652,17559,7533,3400,10612 +1217,4591,11992,35940,18456,3924,19657,7837,3750,10545 +1218,4643,12485,37560,19370,4126,20626,7860,3840,10353 +1219,4473,12378,37370,19140,4143,20320,7615,3850,10285 +1220,4405,12171,36630,18581,4100,20073,7444,3760,10436 +1221,4119,11781,34610,17449,3954,19052,7100,3550,9834 +1222,4083,12014,35010,18023,4089,19502,7369,3600,9978 +1223,4137,11917,34560,18109,4111,19148,7181,3450,9650 +1224,4336,12087,34430,17784,4092,18856,7165,3370,9423 +1225,4377,12294,35510,18284,4167,19117,7536,3470,9889 +1226,4564,12839,37070,18506,4213,19574,7793,3560,10513 +1227,4537,12886,37630,18958,4286,20149,8198,3760,11342 +1228,4383,12490,37140,18473,4237,19856,8017,3720,11302 +1229,4283,12071,36430,18003,4107,19380,7795,3590,10921 +1230,4223,11405,35170,17448,3929,18728,7463,3410,10550 +1231,4023,10848,33600,16594,3836,17827,7059,3160,9923 +1232,4090,10790,31660,16087,3826,16979,6737,3060,9352 +1233,4025,10472,29480,15368,3763,15953,6625,3000,8745 +1234,4168,10659,28570,15092,3857,15716,6874,3080,8789 +1235,4284,10880,28310,15210,4017,15886,7237,3270,9274 +1236,4425,10933,28380,15197,4156,15973,7429,3400,9810 +1237,4510,11116,28780,15169,4158,15854,7544,3430,10119 +1238,4539,11531,30940,15632,4160,16208,7708,3480,10411 +1239,4598,12122,35150,17246,4277,17842,8182,3630,10978 +1240,4554,12006,37740,18904,4322,19608,8575,3790,11515 +1241,4724,12883,39750,20776,4607,21743,8923,4030,11589 +1242,4800,13277,41190,21459,4914,22682,8924,4060,11334 +1243,4639,13281,41110,20933,4883,22467,8636,4030,11333 +1244,4500,13138,40620,20374,4792,22009,8378,3940,11242 +1245,4210,12436,38610,19031,4584,20774,7944,3760,10996 +1246,4246,12646,39000,19735,4621,21395,8181,3860,10941 +1247,4206,12605,38480,19462,4651,21045,8039,3800,10758 +1248,4202,12628,38380,19321,4571,20829,8048,3790,10522 +1249,4307,12773,40010,19648,4520,21159,8353,3890,10981 +1250,4556,13158,42270,19949,4461,21597,8504,3990,11474 +1251,4653,13148,43540,20456,4481,22189,8853,4170,12102 +1252,4505,12755,42970,19905,4357,21793,8684,4090,12101 +1253,4430,12290,42000,19471,4250,21139,8466,3950,11731 +1254,4365,11697,40180,18644,4115,20276,8159,3740,11281 +1255,4178,11006,37690,17689,3978,19001,7638,3470,10646 +1256,4260,10852,35120,17057,3983,17990,7399,3390,10057 +1257,4197,10517,32360,16239,3882,16894,7302,3350,9525 +1258,4299,10705,30960,15827,3952,16301,7261,3390,9528 +1259,4423,10928,30440,15849,4095,16292,7515,3540,9949 +1260,4543,11027,30250,15696,4152,16164,7700,3600,10348 +1261,4629,11191,30650,15587,4119,15948,7749,3600,10490 +1262,4713,11644,32940,16028,4105,16140,7738,3600,10699 +1263,4698,12101,37520,17715,4200,17800,8231,3780,11346 +1264,4590,11968,40030,19217,4263,19820,8715,3960,11911 +1265,4731,12705,41370,20983,4550,22009,8971,4220,11789 +1266,4704,13120,42220,21336,4692,22802,8659,4130,11384 +1267,4582,12718,41460,20605,4523,22028,8100,3970,11002 +1268,4423,12399,40440,20041,4363,21208,7754,3910,10833 +1269,4118,11677,38090,18433,4016,20073,7173,3650,10436 +1270,4153,11892,38130,18696,4024,20247,7333,3690,10434 +1271,4114,11810,37300,18255,3980,19650,7143,3570,10092 +1272,4141,11708,36890,17911,3868,19086,7133,3520,10136 +1273,4219,11855,38060,18055,3897,19255,7643,3640,10577 +1274,4430,12190,39740,18285,3946,19757,7814,3740,10944 +1275,4416,12199,40650,18685,4037,20357,8250,3940,11526 +1276,4291,11846,39860,18255,3972,20026,8096,3890,11364 +1277,4169,11442,38710,17905,3902,19486,7840,3770,11004 +1278,4068,10959,36860,17373,3797,18872,7573,3570,10542 +1279,3885,10434,34820,16589,3720,17898,7184,3300,9990 +1280,4025,10397,32630,16088,3762,17117,7026,3220,9424 +1281,3988,10104,30230,15290,3687,16105,6797,3130,8799 +1282,4092,10289,28910,14963,3743,15637,6787,3160,8762 +1283,4225,10449,28420,14891,3862,15648,7009,3310,9162 +1284,4310,10544,28120,14842,3917,15583,7264,3410,9609 +1285,4311,10585,28100,14610,3851,15283,7226,3390,9770 +1286,4282,10691,28790,14569,3717,14909,7147,3310,9656 +1287,4149,10753,30810,15398,3642,15401,7183,3220,9517 +1288,3971,10773,33700,16574,3666,16732,7449,3330,9885 +1289,4078,11452,36940,18352,3859,18738,7815,3670,10476 +1290,4169,11626,38040,19133,3999,19741,7772,3710,10738 +1291,4122,11221,37080,18796,3915,19403,7381,3570,10533 +1292,4050,10970,35650,18422,3824,18840,6905,3450,10216 +1293,3888,10460,33460,17240,3661,17742,6577,3330,9772 +1294,3922,10426,33010,17436,3616,17708,6666,3380,9586 +1295,3924,10135,32190,17037,3478,17209,6740,3250,9455 +1296,3972,9997,31640,16641,3399,16811,6775,3210,9422 +1297,3926,10038,32370,16677,3483,16991,7019,3240,9706 +1298,4172,10748,34300,17200,3573,17691,7344,3380,10209 +1299,4245,10989,35960,17745,3660,18515,7722,3570,10820 +1300,4146,10763,35780,17516,3585,18401,7558,3540,10741 +1301,4043,10609,35290,17173,3525,18038,7361,3470,10489 +1302,3912,10103,34050,16693,3455,17416,7052,3320,10027 +1303,3708,9489,32140,15902,3352,16331,6652,3090,9415 +1304,3782,9440,30310,15461,3337,15662,6404,3000,8872 +1305,3757,9186,28200,14667,3264,14798,6227,2920,8335 +1306,3905,9381,27270,14479,3389,14465,6402,2980,8399 +1307,4086,9662,27080,14577,3600,14722,6778,3150,8874 +1308,4237,9857,27110,14641,3720,14840,7013,3300,9338 +1309,4333,10036,27490,14630,3721,14776,7190,3340,9585 +1310,4330,10357,29150,15003,3669,14892,7273,3350,9610 +1311,4365,10806,32590,16230,3696,16121,7542,3420,9952 +1312,4277,10762,35840,17346,3726,17908,7873,3580,10562 +1313,4416,11683,39340,19300,3951,20256,8354,4020,11226 +1314,4377,11860,40860,20029,4094,21660,8516,4190,11517 +1315,4303,11578,39960,19598,4023,21690,8149,4200,11203 +1316,4171,11333,38960,19332,3961,21611,7860,4170,10996 +1317,3991,10805,37000,18355,3715,20695,7381,3960,10529 +1318,4138,10893,37730,19235,3787,21228,7648,4010,10786 +1319,4199,10820,37390,19361,3770,20988,7461,3880,10577 +1320,4137,10661,37200,19111,3715,20681,7305,3760,10426 +1321,4127,10801,37870,19229,3705,20547,7488,3740,10586 +1322,4307,11043,38710,18968,3679,20271,7482,3710,10746 +1323,4309,10945,38690,18792,3693,20199,7690,3830,11243 +1324,4187,10616,37570,18142,3580,19548,7454,3730,11092 +1325,4075,10254,36240,17629,3476,18782,7294,3610,10816 +1326,3929,9773,34440,17038,3359,17967,7023,3420,10373 +1327,3712,9296,32550,16185,3313,17035,6749,3190,9890 +1328,3779,9118,30270,15541,3294,16074,6478,3060,9488 +1329,3732,8879,28160,14639,3193,14989,6357,2920,9025 +1330,3902,9037,27030,14199,3309,14590,6392,2960,8906 +1331,4101,9330,26710,14092,3516,14782,6641,3150,9343 +1332,4206,9509,26750,13964,3639,14925,6970,3320,9767 +1333,4249,9676,26920,13873,3626,14783,7032,3380,9914 +1334,4163,9785,27670,13755,3492,14576,6843,3330,9905 +1335,4130,9712,29200,14024,3349,15082,6805,3260,9963 +1336,3992,9595,30080,14513,3296,15953,7041,3340,10132 +1337,4136,10143,31400,15260,3439,17193,7151,3510,10133 +1338,4018,10445,32280,15359,3485,17934,6927,3500,9993 +1339,3856,10254,32460,15024,3454,17776,6710,3410,9760 +1340,3763,9992,32410,14492,3452,17480,6407,3330,9890 +1341,3567,9895,31340,14002,3388,16755,6120,3170,9444 +1342,3591,9918,31370,14035,3316,16792,6276,3140,9299 +1343,3682,9802,31410,13801,3248,16577,6343,3020,8996 +1344,3800,9789,31990,13688,3205,16434,6465,3090,8837 +1345,3789,10017,33680,14143,3276,16890,6758,3230,9381 +1346,4078,10688,35930,15022,3426,17769,7061,3380,9955 +1347,4197,10957,36960,15890,3549,18844,7335,3540,10596 +1348,4069,10820,36660,15907,3591,18778,7319,3510,10598 +1349,3958,10619,36130,15686,3596,18508,7187,3440,10391 +1350,3871,10281,34780,15281,3499,17938,6933,3280,10014 +1351,3761,9734,33070,14440,3442,17117,6590,3080,9584 +1352,3864,9696,31380,14168,3475,16526,6476,3060,9205 +1353,3840,9532,29250,13501,3397,15642,6526,3040,8778 +1354,4022,9708,28100,13281,3451,15176,6503,3120,8760 +1355,4155,9968,27740,13461,3563,15266,6704,3310,9188 +1356,4230,10060,27500,13397,3664,15179,6935,3420,9570 +1357,4297,10112,27440,13123,3599,14861,6991,3400,9688 +1358,4275,10098,28120,13004,3459,14434,6772,3280,9533 +1359,4194,9994,29590,13290,3311,14648,6664,3140,9317 +1360,4018,9789,30450,13841,3279,15646,6769,3180,9422 +1361,3999,9972,31050,14252,3439,16825,6704,3150,9257 +1362,3966,10043,31740,14071,3511,17647,6532,3090,8813 +1363,3965,9933,31760,13883,3394,17251,6255,3080,8968 +1364,3944,9822,31270,13542,3262,16905,5964,2980,8858 +1365,3792,9646,30420,12973,3175,16550,5818,2980,8702 +1366,3738,9428,29480,12644,3075,16558,5782,2910,8453 +1367,3785,9401,28770,12506,3020,16273,5570,2740,8081 +1368,3911,9533,28900,12662,3062,16197,5562,2670,8012 +1369,3869,9803,30740,13168,3179,16596,6073,2830,8182 +1370,4199,10702,34110,14450,3415,17700,6767,3160,9256 +1371,4331,11052,36580,15459,3511,18819,7315,3450,10275 +1372,4221,10856,36750,15531,3484,18779,7412,3500,10488 +1373,4175,10600,36220,15374,3399,18541,7334,3450,10433 +1374,4123,10119,34780,14881,3272,17838,7124,3320,10109 +1375,3927,9426,32490,13968,3163,16728,6656,3090,9649 +1376,4043,9372,30440,13510,3209,15964,6431,3080,9166 +1377,3990,9190,28300,12965,3174,15079,6384,3060,8831 +1378,4111,9412,27390,12846,3272,14642,6510,3150,9031 +1379,4232,9627,27140,12968,3456,14870,6932,3330,9510 +1380,4374,9830,27120,13070,3564,14956,7178,3410,9979 +1381,4437,10058,27660,13291,3583,14815,7190,3430,10211 +1382,4480,10489,29830,13970,3592,15195,7267,3470,10496 +1383,4531,10981,34320,15899,3755,17116,7901,3680,11335 +1384,4440,10972,36860,17699,3811,18981,8276,3850,11922 +1385,4563,11652,38710,19390,3984,20492,8301,4020,11496 +1386,4618,11941,39670,19878,4074,21192,7995,3970,11010 +1387,4390,11649,38840,19264,3989,20664,7431,3830,10848 +1388,4145,11472,37890,18591,3907,20220,7184,3760,10855 +1389,3899,10878,35730,17040,3670,18946,6700,3540,10221 +1390,3947,10950,35730,17474,3738,19078,6829,3590,10188 +1391,3879,10687,34850,17210,3664,18549,6666,3470,9923 +1392,3819,10430,34460,16888,3559,18023,6599,3370,9595 +1393,3898,10507,35410,16971,3592,18235,6962,3470,9758 +1394,4131,10908,37010,17024,3629,18671,7243,3550,10189 +1395,4170,11056,38260,17575,3760,19443,7693,3760,10958 +1396,4052,10820,37550,17191,3675,19233,7594,3730,11125 +1397,3918,10488,36470,16917,3625,18734,7417,3640,10921 +1398,3766,10055,34700,16470,3567,18224,7187,3460,10590 +1399,3565,9500,32690,15739,3511,17101,6802,3240,10095 +1400,3638,9457,30550,15298,3545,16331,6618,3180,9653 +1401,3604,9276,28260,14633,3488,15310,6475,3140,9186 +1402,3735,9520,27270,14353,3601,14984,6606,3210,9233 +1403,3852,9783,27140,14525,3760,15292,6925,3400,9745 +1404,3980,10011,27230,14591,3838,15443,7214,3500,10122 +1405,4062,10240,27860,14539,3829,15383,7382,3510,10310 +1406,4055,10610,29760,15043,3804,15552,7482,3530,10534 +1407,4053,11046,33410,16434,3866,17138,7928,3690,11196 +1408,3855,10837,35080,17632,3837,18499,8276,3790,11573 +1409,3995,11750,36490,18921,3862,19875,8235,3910,11026 +1410,4032,11945,37220,19204,3888,20330,7785,3820,10489 +1411,4012,11539,36260,18286,3794,19705,7237,3710,10317 +1412,3924,11241,35330,17514,3702,19183,6980,3620,10245 +1413,3694,10594,33310,16216,3477,17905,6471,3340,9675 +1414,3721,10725,33440,16693,3551,18011,6584,3400,9743 +1415,3705,10432,32850,16438,3460,17541,6413,3300,9533 +1416,3655,10035,32300,16074,3365,17051,6388,3180,9245 +1417,3757,9794,33010,16093,3372,17250,6697,3220,9412 +1418,3930,10177,34110,16142,3360,17652,6878,3250,9621 +1419,3977,10329,35190,16627,3451,18308,7276,3430,10234 +1420,3881,10174,34580,16329,3398,17952,7204,3390,10296 +1421,3725,9870,33680,16006,3319,17454,7048,3330,10038 +1422,3551,9408,32100,15590,3243,16853,6822,3170,9719 +1423,3371,8930,30500,14899,3157,15977,6342,2960,9241 +1424,3434,8749,28730,14426,3122,15250,6083,2880,8816 +1425,3342,8534,26520,13751,3056,14330,6042,2810,8249 +1426,3458,8746,25620,13489,3184,14097,6167,2880,8302 +1427,3613,8941,25550,13735,3387,14476,6523,3080,8767 +1428,3727,9087,25690,13898,3530,14719,6774,3230,9269 +1429,3809,9238,26160,13979,3554,14694,6896,3290,9480 +1430,3806,9568,27570,14347,3486,14850,6899,3310,9536 +1431,3891,9917,30380,15524,3479,16115,7199,3390,9818 +1432,3883,9862,32680,16522,3429,17323,7451,3450,9981 +1433,3987,10643,34720,17778,3566,18543,7571,3670,9934 +1434,4099,10821,35670,18171,3646,18742,7489,3690,9684 +1435,4068,10697,34920,17834,3530,18234,7156,3570,9425 +1436,4003,10654,34360,17193,3478,17836,6989,3490,9446 +1437,3781,10177,33050,15880,3271,16893,6597,3330,9222 +1438,3789,10160,33310,16387,3362,17116,6843,3370,9527 +1439,3810,9772,32740,16257,3357,16895,6865,3300,9651 +1440,3830,9602,32800,16053,3324,16627,6973,3190,9756 +1441,3901,9612,33660,16095,3346,16763,7061,3240,10090 +1442,4022,9947,34150,16113,3335,16890,7148,3190,10236 +1443,4035,10024,34570,16472,3369,17378,7248,3300,10514 +1444,3925,9844,33820,15981,3300,16968,7023,3230,10329 +1445,3777,9538,32730,15526,3208,16335,6856,3110,9973 +1446,3617,9073,31140,14997,3105,15601,6577,2940,9564 +1447,3431,8600,29420,14331,3098,14937,6213,2750,9056 +1448,3525,8456,27570,13883,3066,14255,5937,2690,8604 +1449,3519,8249,25440,13078,2967,13404,5722,2620,8167 +1450,3756,8491,24600,12810,3086,13202,5886,2670,8108 +1451,3871,8821,24560,12991,3344,13610,6154,2850,8606 +1452,3933,9134,24780,13174,3505,13870,6484,3060,9095 +1453,3969,9376,25080,13230,3540,13837,6609,3100,9420 +1454,4006,9674,26140,13444,3496,13763,6659,3090,9594 +1455,4008,9882,28460,14298,3486,14685,6951,3110,9992 +1456,3945,10048,30730,15348,3513,16254,7269,3210,10272 +1457,4003,10969,32610,17208,3837,18300,7693,3580,10163 +1458,3948,11463,33930,18084,4015,19430,7724,3690,9981 +1459,3785,11276,34250,17789,3963,19259,7558,3670,10370 +1460,3665,11369,34010,17553,3965,18915,7348,3560,10318 +1461,3469,10812,31520,16553,3775,17743,7008,3430,9883 +1462,3574,11058,33250,17406,4008,18448,7429,3600,9928 +1463,3661,10990,33300,17174,4055,18265,7315,3490,9786 +1464,3781,11039,33550,17181,4009,18208,7320,3450,9549 +1465,3935,10955,34820,17389,3995,18772,7560,3480,9852 +1466,4108,11226,36140,17603,3966,19139,7728,3550,10462 +1467,4162,11324,36870,18168,4021,19829,7992,3750,11239 +1468,4089,11045,36190,17727,3899,19456,7830,3690,11307 +1469,3994,10751,35310,17302,3786,18859,7667,3570,11131 +1470,3868,10240,33770,16839,3655,18184,7370,3390,10769 +1471,3670,9647,32010,16012,3581,17179,7021,3160,10261 +1472,3717,9561,30050,15593,3582,16340,6792,3100,9812 +1473,3655,9302,27850,14769,3479,15299,6634,3050,9388 +1474,3791,9554,26870,14483,3580,14918,6695,3150,9510 +1475,3914,9787,26840,14479,3740,15181,7023,3360,9974 +1476,4070,9956,27010,14494,3833,15236,7342,3460,10459 +1477,4152,10167,27600,14506,3812,15173,7347,3490,10647 +1478,4170,10494,29300,14880,3798,15323,7487,3510,10854 +1479,4236,10870,32580,16229,3867,16606,8052,3650,11532 +1480,4130,10781,34510,17440,3864,18055,8259,3740,11744 +1481,4177,11737,36670,18893,4012,19426,8154,3880,11283 +1482,4256,11879,38140,19370,4037,19997,7738,3820,10741 +1483,4299,11694,37680,18773,3943,19571,7381,3710,10529 +1484,4067,11630,36910,18220,3853,18912,7137,3640,10560 +1485,3792,11044,34690,16736,3620,17810,6594,3420,10036 +1486,3877,11290,34950,17115,3667,18018,6724,3460,9932 +1487,3851,11036,34150,16881,3542,17655,6593,3340,9794 +1488,3890,10513,33710,16441,3470,17420,6471,3240,9458 +1489,3961,10714,34520,16538,3524,17676,6811,3320,9620 +1490,4127,10971,35730,16537,3559,17938,7059,3390,10058 +1491,4179,11026,36780,17119,3661,18648,7493,3600,10756 +1492,4079,10762,36110,16751,3605,18379,7410,3580,10855 +1493,4016,10416,35090,16520,3534,17921,7323,3500,10659 +1494,3905,9997,33440,16286,3433,17390,7012,3330,10282 +1495,3724,9466,31870,15558,3399,16747,6696,3110,9794 +1496,3749,9455,29950,15161,3375,15945,6592,3020,9318 +1497,3654,9173,27760,14341,3293,15080,6469,2960,8754 +1498,3750,9303,26640,14093,3354,14738,6502,3030,8709 +1499,3859,9496,26350,14141,3525,14970,6813,3180,9142 +1500,3979,9581,26340,14111,3629,14986,7121,3290,9536 +1501,4038,9640,26450,13836,3569,14723,7034,3290,9708 +1502,4019,9636,27100,13616,3445,14452,6872,3220,9569 +1503,3967,9650,28260,13835,3307,14900,6876,3150,9535 +1504,3739,9439,28960,14204,3165,15452,6983,3130,9567 +1505,3703,9890,29540,14650,3144,16325,7100,3310,9438 +1506,3728,10224,30180,14593,3119,16527,6747,3290,9077 +1507,3593,9951,29930,14053,3016,15991,6107,3230,8659 +1508,3664,9725,29680,13552,2946,15478,5962,3210,8785 +1509,3579,9388,28610,12958,2884,14731,5823,3090,8599 +1510,3572,9278,28400,12869,2875,14596,5691,3030,8415 +1511,3523,9017,28020,12482,2782,14279,5699,2900,8231 +1512,3506,8825,27680,12450,2800,14203,5658,2830,8110 +1513,3598,8723,27930,12682,2892,14527,5920,2820,8376 +1514,3898,9419,29780,13320,3009,15364,6283,2960,8911 +1515,4052,9808,31610,14128,3154,16297,6786,3190,9609 +1516,3971,9694,31590,14113,3120,16288,6738,3170,9637 +1517,3859,9426,31020,13998,3054,16001,6539,3070,9460 +1518,3735,9063,29910,13585,2967,15611,6282,2930,9163 +1519,3600,8735,28530,12831,2931,14846,5891,2750,8814 +1520,3692,8733,27150,12420,2926,14185,5763,2680,8421 +1521,3694,8622,25380,11889,2910,13350,5663,2610,8047 +1522,3817,8834,24500,11656,3005,13135,5711,2660,8098 +1523,3937,9120,24400,12004,3205,13502,6050,2860,8585 +1524,4010,9345,24440,12156,3327,13781,6439,3030,9089 +1525,4053,9432,24540,12194,3324,13637,6520,3090,9239 +1526,3990,9494,24970,12117,3207,13308,6407,3020,9123 +1527,3775,9248,25710,12039,3054,13301,6257,2840,8905 +1528,3451,8857,26590,12252,2910,13910,6193,2780,8781 +1529,3356,9364,28160,12741,2808,14522,5750,2770,8240 +1530,3320,9447,29340,13074,2824,14820,5359,2720,8309 +1531,3281,9154,29240,12823,2737,14531,5055,2680,8003 +1532,3230,9056,29050,12595,2697,14173,5048,2650,7880 +1533,3119,8836,28340,12450,2659,13768,4948,2630,7762 +1534,2992,8596,28070,12132,2583,13388,4772,2560,7576 +1535,2915,8241,27970,12146,2515,13075,4513,2460,7373 +1536,2938,7999,28500,12141,2498,13100,4711,2380,7307 +1537,3156,7998,29750,12438,2668,13568,5205,2490,7467 +1538,3535,8920,31980,13320,2900,14631,5892,2730,8372 +1539,3752,9567,33290,14067,3087,16013,6464,2980,9158 +1540,3720,9485,32880,14098,3086,16288,6559,3030,9392 +1541,3627,9353,31990,13724,3024,16090,6465,2960,9255 +1542,3485,9021,30540,13359,2925,15546,6327,2860,9000 +1543,3341,8516,28560,12660,2837,14621,5967,2670,8569 +1544,3411,8576,26790,12291,2860,14003,5666,2610,8228 +1545,3409,8466,24860,11777,2860,13313,5669,2570,7861 +1546,3558,8708,24040,11646,3000,13168,5864,2680,8014 +1547,3681,9035,23940,11972,3216,13666,6276,2920,8561 +1548,3785,9261,24140,12268,3346,13901,6621,3100,9203 +1549,3890,9558,24780,12446,3405,13988,6725,3180,9509 +1550,3916,10055,26370,13055,3438,14310,6981,3180,9789 +1551,3921,10494,29700,14501,3533,15722,7372,3270,10331 +1552,3732,10600,33230,15959,3548,17136,7641,3370,10466 +1553,3845,11565,36420,17804,3638,18563,7540,3580,10166 +1554,3941,11745,37150,18473,3706,19113,7216,3580,10020 +1555,3878,11425,36470,18020,3631,18595,6972,3490,9977 +1556,3780,11129,35810,17450,3576,18021,6864,3420,9803 +1557,3520,10478,33640,16164,3380,16847,6320,3210,9359 +1558,3552,10637,34490,16679,3429,17232,6560,3300,9357 +1559,3532,10345,33770,16470,3372,16908,6400,3200,9279 +1560,3512,10028,33500,16110,3318,16576,6393,3080,8855 +1561,3664,9810,33900,16158,3361,16784,6775,3120,9146 +1562,3843,10109,34810,15948,3401,17111,6924,3160,9508 +1563,3906,10407,35800,16448,3506,17740,7188,3330,10077 +1564,3818,10189,34990,16085,3433,17418,7127,3290,10106 +1565,3691,9909,33910,15778,3348,16985,7014,3200,9906 +1566,3513,9490,32320,15377,3262,16437,6738,3020,9502 +1567,3356,8991,30650,14826,3220,15665,6482,2820,9179 +1568,3388,8922,28610,14504,3208,15015,6305,2750,8735 +1569,3315,8813,26530,13783,3191,14165,6109,2670,8257 +1570,3432,9030,25640,13678,3311,13902,6276,2750,8350 +1571,3548,9317,25560,13866,3527,14400,6684,2950,8907 +1572,3647,9510,25800,14085,3634,14677,6985,3130,9546 +1573,3721,9761,26360,14122,3668,14668,7103,3220,9879 +1574,3749,10172,27940,14548,3628,14892,7160,3260,10047 +1575,3757,10458,30400,15574,3675,16058,7506,3330,10501 +1576,3813,10322,31770,16693,3640,17133,7452,3370,10542 +1577,3856,11200,33700,17945,3711,18334,7428,3540,10224 +1578,3973,11363,34890,18497,3717,18768,7249,3550,9944 +1579,3805,11073,34380,17857,3589,18256,6841,3490,9803 +1580,3734,10943,34020,17273,3532,17794,6640,3410,9631 +1581,3544,10330,32300,16044,3308,16690,6137,3210,9095 +1582,3588,10427,32750,16523,3383,17030,6337,3310,9156 +1583,3538,10146,32410,16341,3342,16836,6235,3240,9041 +1584,3460,9939,32130,15977,3301,16568,6288,3140,8980 +1585,3527,9733,32310,15852,3325,16713,6610,3150,9019 +1586,3709,9931,32890,15730,3328,16772,6644,3120,9275 +1587,3818,10126,33840,16294,3417,17383,7040,3250,9711 +1588,3743,9842,33170,15885,3350,17056,6935,3210,9804 +1589,3594,9540,32130,15525,3284,16610,6796,3120,9532 +1590,3439,9121,30710,15142,3174,16000,6559,2960,9221 +1591,3266,8688,29180,14574,3152,15322,6322,2770,8906 +1592,3362,8539,27470,14255,3102,14594,6138,2690,8502 +1593,3344,8319,25450,13549,3032,13710,5995,2610,8055 +1594,3436,8546,24720,13410,3155,13465,6136,2670,8106 +1595,3570,8920,24750,13623,3356,14031,6498,2870,8626 +1596,3678,9142,25060,13844,3522,14391,6855,3060,9220 +1597,3762,9334,25570,13958,3548,14374,7012,3150,9526 +1598,3771,9694,27010,14356,3522,14524,7108,3200,9670 +1599,3757,9871,29280,15331,3506,15451,7318,3240,9996 +1600,3692,9783,30720,16116,3428,16620,7291,3300,9948 +1601,3857,10653,32710,17610,3496,18210,7385,3590,9637 +1602,4055,10817,33990,18159,3553,18758,7158,3610,9429 +1603,4093,10590,33660,17571,3452,18293,6729,3520,9438 +1604,3971,10449,33360,17009,3388,17875,6563,3440,9349 +1605,3764,9822,31760,15740,3172,16703,6047,3230,8867 +1606,3886,10014,32270,16285,3275,17154,6367,3380,8949 +1607,3794,9735,31880,16159,3257,16965,6322,3350,8934 +1608,3776,9473,31520,15706,3201,16673,6362,3200,8738 +1609,3825,9252,31710,15650,3232,16604,6293,3080,8886 +1610,3900,9368,31970,15604,3208,16450,6395,3020,9057 +1611,3911,9544,32680,15881,3266,16777,6712,3160,9534 +1612,3827,9259,31960,15412,3187,16382,6645,3100,9535 +1613,3677,8990,30920,15098,3106,15895,6515,2990,9247 +1614,3521,8521,29580,14602,3001,15355,6260,2820,8972 +1615,3376,8113,28000,13991,2985,14627,6098,2660,8643 +1616,3461,7938,26370,13641,2943,14007,5932,2600,8326 +1617,3435,7753,24460,12942,2822,13178,5815,2520,7901 +1618,3557,7945,23750,12807,2935,12896,5890,2580,7927 +1619,3685,8241,23830,12982,3159,13474,6253,2790,8396 +1620,3816,8489,24150,13305,3346,13885,6642,2980,8955 +1621,3923,8781,24690,13345,3407,13950,6885,3050,9200 +1622,3917,9137,25830,13665,3420,14025,6922,3050,9233 +1623,3897,9245,27830,14345,3365,14778,7098,3040,9279 +1624,3745,9270,29470,15087,3266,15620,6967,3010,9329 +1625,3818,10209,31920,16602,3376,16953,7078,3330,9470 +1626,3905,10432,33410,17236,3457,17546,6953,3410,9611 +1627,3889,10301,33310,16774,3401,17222,6798,3400,9481 +1628,3800,10262,33270,16353,3340,16858,6692,3390,9497 +1629,3617,9666,31970,15171,3129,15759,6341,3200,9059 +1630,3716,9822,32760,15804,3243,16323,6563,3370,9320 +1631,3740,9595,32610,15813,3253,16409,6562,3240,9394 +1632,3752,9366,32140,15418,3205,16109,6479,3170,9404 +1633,3878,9252,31770,15367,3215,16116,6508,3160,9517 +1634,3996,9400,31750,15349,3196,16149,6652,3120,9621 +1635,4010,9537,32450,15536,3232,16466,6863,3160,10023 +1636,3883,9211,31420,15027,3138,15989,6608,3050,9746 +1637,3762,8890,30260,14535,3041,15354,6399,2940,9394 +1638,3621,8527,28820,14073,2938,14929,6197,2800,9022 +1639,3495,8127,27470,13554,2938,14340,5927,2660,8722 +1640,3554,7941,25940,13152,2856,13650,5841,2620,8330 +1641,3433,7641,24010,12389,2767,12694,5583,2510,7800 +1642,3530,7839,23210,12138,2860,12382,5716,2560,7791 +1643,3655,8135,23180,12287,3085,12885,6020,2760,8274 +1644,3757,8366,23430,12494,3278,13269,6374,2960,8765 +1645,3870,8615,23650,12423,3301,13240,6538,3020,9033 +1646,3856,8843,24350,12479,3234,13008,6399,2970,9051 +1647,3905,8964,25950,13017,3119,13588,6418,2930,9051 +1648,3946,9109,27730,13837,3059,14591,6477,3020,9036 +1649,4138,10044,30180,15537,3250,16122,6859,3380,8958 +1650,4327,10423,32100,16440,3408,16961,6805,3470,9168 +1651,4259,10471,32330,16254,3388,16795,6465,3410,9099 +1652,4128,10362,31820,15945,3362,16512,6414,3360,9155 +1653,3899,9653,30790,14880,3174,15523,5973,3190,8786 +1654,3993,10039,31820,15531,3280,16077,6257,3330,8949 +1655,3999,9844,31530,15421,3304,15912,6214,3270,8872 +1656,3956,9610,30920,15090,3197,15673,6277,3140,8802 +1657,3928,9579,30730,14885,3199,15579,6399,3050,8704 +1658,4000,9657,30760,14503,3160,15351,6276,2890,8883 +1659,4058,9735,31320,14888,3222,15655,6488,2960,9175 +1660,3949,9482,30360,14411,3152,15254,6290,2880,9130 +1661,3787,9128,29230,14013,3056,14699,6005,2790,8812 +1662,3687,8726,27920,13816,2976,14303,5841,2650,8462 +1663,3541,8422,26930,13420,2942,13899,5746,2540,8242 +1664,3649,8203,25720,13121,2897,13429,5668,2500,8003 +1665,3514,7877,23930,12377,2795,12653,5462,2380,7545 +1666,3618,7996,23130,11995,2873,12319,5508,2410,7449 +1667,3688,8289,23150,12206,3067,12780,5793,2600,7909 +1668,3790,8520,23340,12421,3222,13201,6247,2810,8447 +1669,3814,8678,23430,12275,3270,13107,6288,2870,8713 +1670,3766,8741,23840,12001,3171,12690,6062,2790,8510 +1671,3572,8479,23910,11801,2993,12636,5900,2590,8136 +1672,3368,8257,24020,11994,2816,12878,5633,2560,7866 +1673,3354,8909,25340,12375,2749,13590,5536,2700,7544 +1674,3374,9147,26510,12602,2754,14117,5450,2760,7784 +1675,3309,8986,26880,12413,2711,14028,5312,2730,7799 +1676,3215,8643,27130,12254,2690,13946,5098,2650,7837 +1677,3061,8320,26660,11866,2614,13512,5038,2570,7741 +1678,2991,8131,26340,11791,2569,13445,5226,2620,7699 +1679,2940,7855,25910,11529,2525,13170,5141,2610,7569 +1680,3010,7624,25610,11312,2485,12946,5047,2550,7560 +1681,3191,7616,25730,11304,2516,13085,5387,2520,7549 +1682,3484,8072,26690,11582,2607,13344,5675,2520,7922 +1683,3642,8486,28200,12232,2737,13992,5806,2610,8381 +1684,3609,8368,27840,11999,2704,13820,5771,2580,8395 +1685,3471,8157,27120,11653,2642,13494,5584,2490,8098 +1686,3366,7884,26100,11301,2566,13019,5423,2390,7792 +1687,3278,7647,25130,10858,2507,12513,5135,2260,7640 +1688,3324,7556,24010,10649,2481,12081,5151,2240,7355 +1689,3276,7379,22370,10149,2391,11372,5072,2160,7013 +1690,3444,7555,21720,10022,2477,11175,5035,2230,6962 +1691,3547,7829,21780,10361,2692,11791,5381,2430,7413 +1692,3689,8019,22120,10709,2859,12182,5767,2630,7969 +1693,3722,8152,22300,10746,2905,12190,5949,2700,8192 +1694,3634,8234,22560,10588,2821,11712,5602,2610,7958 +1695,3484,7951,22380,10323,2608,11457,5355,2360,7394 +1696,3278,7735,22660,10237,2446,11671,5059,2220,7048 +1697,3242,8149,24620,10658,2390,12144,5050,2410,7006 +1698,3285,8290,26170,10960,2394,12589,5043,2490,6980 +1699,3262,8218,26880,10993,2383,12692,4984,2480,7189 +1700,3271,7980,26200,10949,2382,12746,4829,2480,7212 +1701,3215,7920,25740,10728,2380,12519,4765,2480,7321 +1702,3162,7797,25560,10549,2315,12259,4623,2470,7251 +1703,3078,7565,25100,10703,2274,11839,4769,2390,7251 +1704,3146,7473,25550,10684,2258,11913,4864,2350,7229 +1705,3169,7530,25740,11042,2318,12267,5075,2250,7535 +1706,3444,8112,27390,11712,2442,12993,5388,2360,8094 +1707,3591,8480,28610,12257,2586,13946,5824,2550,8531 +1708,3547,8323,28330,12131,2562,13822,5743,2540,8484 +1709,3441,8064,27540,11812,2495,13520,5581,2470,8226 +1710,3351,7741,26340,11409,2405,12932,5361,2340,7937 +1711,3205,7333,24830,10858,2361,12276,5066,2220,7689 +1712,3239,7202,23540,10532,2331,11790,5052,2200,7370 +1713,3150,7004,21940,10052,2291,11085,4826,2150,6992 +1714,3217,7201,21270,9909,2395,10886,4908,2210,7017 +1715,3343,7471,21390,10292,2639,11504,5278,2410,7584 +1716,3414,7742,21720,10730,2840,12051,5735,2610,8248 +1717,3508,8006,22150,10919,2921,12206,6023,2720,8634 +1718,3520,8216,22940,11256,2940,12214,6040,2710,8945 +1719,3585,8379,24340,12169,2916,12766,6256,2660,9316 +1720,3597,8572,26520,13771,3049,14150,6488,2700,9413 +1721,3808,9637,30100,16043,3420,15829,7028,3040,9502 +1722,4021,10208,32650,17379,3686,17019,7297,3230,9716 +1723,4053,10173,33650,17421,3742,17072,7020,3290,9826 +1724,4018,10224,33990,16985,3780,17011,6837,3370,9783 +1725,3849,9892,32930,15946,3602,16221,6393,3240,9329 +1726,3980,10340,33830,16877,3745,17095,6625,3410,9514 +1727,3940,10380,33010,16708,3751,17034,6429,3240,9347 +1728,3859,10340,32240,16343,3720,16778,6287,3040,9118 +1729,3875,10469,32680,16560,3705,16667,6529,3070,9292 +1730,3884,10394,33280,16324,3663,16791,6850,3100,9827 +1731,3902,10429,33810,16919,3705,17456,7210,3240,10508 +1732,3797,10048,32820,16414,3587,17195,7188,3220,10741 +1733,3628,9704,31590,16006,3476,16717,7082,3140,10583 +1734,3459,9211,30140,15681,3345,16218,6791,2990,10369 +1735,3360,8769,28750,15000,3292,15420,6515,2810,9933 +1736,3403,8577,26960,14627,3231,14686,6310,2740,9518 +1737,3367,8330,25070,13830,3149,13840,6170,2700,9056 +1738,3484,8458,24170,13602,3244,13607,6270,2780,9113 +1739,3614,8707,24180,13627,3417,13994,6685,2990,9629 +1740,3722,8869,24440,13781,3581,14318,7091,3180,10124 +1741,3799,9051,24900,13824,3601,14346,7182,3230,10432 +1742,3766,9360,26140,14213,3623,14513,7245,3240,10634 +1743,3751,9583,28560,15113,3629,15493,7615,3320,11134 +1744,3651,9671,30820,15952,3545,16329,7642,3340,11040 +1745,3696,10698,33990,17558,3597,17616,7418,3490,10440 +1746,3783,11132,35110,18177,3701,18233,7284,3490,10540 +1747,3782,10935,34680,17694,3632,17854,6862,3440,10203 +1748,3712,10852,34260,17188,3573,17583,6685,3380,10023 +1749,3516,10289,33100,15807,3355,16478,6229,3160,9515 +1750,3600,10450,33320,16434,3443,16832,6318,3270,9555 +1751,3495,10308,32570,16156,3383,16441,6135,3190,9357 +1752,3455,9922,32000,15865,3317,16107,6092,3080,9181 +1753,3548,9701,32330,15810,3350,16204,6376,3080,9159 +1754,3748,9823,32980,15596,3336,16281,6571,3090,9514 +1755,3882,10223,34190,16067,3443,16856,6919,3220,9902 +1756,3795,10068,33640,15738,3388,16676,6864,3220,10068 +1757,3652,9779,32640,15471,3308,16233,6727,3140,9882 +1758,3484,9352,31040,15038,3227,15703,6500,3000,9622 +1759,3335,8912,29450,14467,3190,14993,6319,2790,9257 +1760,3382,8838,27610,14008,3155,14311,6169,2700,8774 +1761,3395,8628,25450,13253,3089,13403,5971,2610,8273 +1762,3514,8802,24470,13011,3212,13150,6034,2670,8278 +1763,3599,9078,24430,13166,3381,13608,6384,2880,8753 +1764,3716,9247,24630,13403,3554,14073,6782,3080,9272 +1765,3805,9441,25010,13528,3570,14085,6890,3150,9613 +1766,3804,9821,26220,13788,3553,14195,6921,3170,9694 +1767,3717,9980,28070,14600,3570,14941,7234,3240,9991 +1768,3622,9856,29350,15361,3443,15703,7287,3220,9865 +1769,3665,10873,31560,16778,3499,16879,7106,3360,9594 +1770,3752,11083,33230,17336,3543,17459,6892,3410,9682 +1771,3705,10872,33610,16884,3479,17178,6647,3360,9419 +1772,3667,10702,33550,16470,3445,16894,6574,3300,9358 +1773,3457,10145,31810,15179,3214,15816,6184,3100,8899 +1774,3486,10304,32280,15758,3300,16271,6382,3220,9024 +1775,3403,10067,31700,15668,3258,15979,6231,3160,8888 +1776,3441,9619,31260,15377,3185,15675,6140,3050,8825 +1777,3544,9356,31390,15299,3195,15723,6437,3070,8935 +1778,3677,9447,31660,15019,3139,15735,6464,3000,8983 +1779,3823,9770,32560,15411,3204,16159,6643,3090,9370 +1780,3731,9544,31860,14996,3134,15856,6599,3050,9392 +1781,3579,9273,30830,14577,3072,15317,6460,2950,9117 +1782,3415,8837,29500,14227,3021,14853,6240,2780,8794 +1783,3247,8456,28060,13605,2957,14248,5932,2610,8455 +1784,3292,8304,26460,13277,2899,13563,5787,2550,8131 +1785,3245,8100,24530,12535,2817,12704,5601,2450,7631 +1786,3367,8262,23720,12285,2926,12391,5669,2500,7637 +1787,3471,8542,23730,12446,3131,12896,5910,2680,8148 +1788,3568,8758,24000,12707,3302,13413,6267,2890,8696 +1789,3645,8973,24430,12817,3356,13528,6485,2970,8947 +1790,3651,9284,25570,12972,3327,13354,6274,2950,8894 +1791,3683,9322,27090,13597,3233,13822,6459,2910,8879 +1792,3684,9282,28330,14277,3165,14452,6423,2910,8886 +1793,3815,10275,30780,15769,3260,15739,6887,3190,9184 +1794,3999,10664,32530,16527,3428,16614,6966,3260,9120 +1795,3992,10387,32950,16307,3432,16683,6852,3240,9084 +1796,4010,10199,32810,16098,3395,16593,6594,3270,9342 +1797,3876,9701,31100,15093,3200,15743,6178,3090,8868 +1798,4074,10018,31570,15766,3357,16185,6436,3160,9051 +1799,4042,9859,31590,15592,3386,15978,6524,3140,9188 +1800,3967,9391,31090,15220,3374,15959,6658,3090,8921 +1801,3862,9705,31270,15158,3432,15951,6645,3120,9149 +1802,3887,9779,31040,15006,3417,15863,6608,3040,9280 +1803,4004,9862,31920,15225,3418,15955,6844,3090,9579 +1804,3870,9540,31060,14602,3314,15481,6668,2980,9446 +1805,3718,9120,29930,14090,3204,14893,6407,2870,9085 +1806,3583,8723,28590,13650,3104,14429,6223,2710,8773 +1807,3454,8390,27470,13169,3063,13853,6070,2570,8534 +1808,3473,8145,25930,12755,3005,13298,5789,2520,8149 +1809,3411,7791,23980,11979,2868,12406,5577,2420,7744 +1810,3476,7974,23060,11683,2941,12164,5606,2450,7825 +1811,3620,8285,23120,11869,3172,12694,5989,2630,8264 +1812,3741,8560,23430,12123,3341,13119,6375,2830,8625 +1813,3858,8752,23820,12193,3426,13116,6471,2910,8859 +1814,3814,9042,24660,12286,3401,12956,6297,2840,8729 +1815,3779,9165,25940,12701,3340,13468,6244,2750,8696 +1816,3632,9310,27890,13493,3290,14523,6254,2850,8853 +1817,3652,10337,31230,15267,3521,16186,6539,3260,9225 +1818,3907,10719,33230,16136,3661,17267,6783,3440,9442 +1819,3956,10651,33260,15918,3625,16909,6452,3360,9320 +1820,3911,10548,32990,15708,3583,16335,6455,3350,9409 +1821,3744,9998,31830,14728,3357,15536,6121,3170,8962 +1822,3764,10205,32620,15286,3473,16460,6497,3300,9108 +1823,3725,10064,32770,15344,3452,16515,6444,3320,9051 +1824,3649,9750,32760,15055,3425,16461,6477,3290,9171 +1825,3781,9559,33010,15093,3452,16600,6703,3280,9500 +1826,3875,9719,33470,14973,3421,16372,6682,3200,9573 +1827,3992,9959,33560,14984,3465,16472,6832,3190,9857 +1828,3869,9748,32560,14511,3360,16017,6707,3080,9657 +1829,3698,9428,31350,14080,3239,15505,6426,2960,9289 +1830,3537,8957,29880,13790,3134,14963,6145,2790,8892 +1831,3453,8513,28510,13318,3072,14455,5910,2610,8541 +1832,3479,8321,26880,12945,3002,13864,5758,2540,8210 +1833,3441,8015,24990,12195,2858,12985,5649,2430,7742 +1834,3532,8128,24080,11867,2921,12635,5621,2460,7561 +1835,3597,8360,23960,11980,3102,13046,5916,2640,8028 +1836,3711,8526,24200,12229,3255,13352,6355,2820,8494 +1837,3739,8662,24300,12112,3286,13260,6454,2890,8688 +1838,3664,8733,24490,11773,3199,13008,6231,2800,8461 +1839,3504,8683,25490,11684,3013,12927,5991,2600,8040 +1840,3363,8765,27430,12211,2950,13743,6044,2630,8105 +1841,3367,9505,30340,13110,3064,14975,6180,2860,8420 +1842,3538,9862,32070,13722,3169,15489,6227,2940,8731 +1843,3661,9837,32040,13651,3151,15275,6044,2900,8820 +1844,3596,9828,32110,13489,3101,15023,5949,2870,8832 +1845,3325,9653,31980,13201,2976,14509,5715,2760,8501 +1846,3283,9635,31980,13045,2961,14583,5674,2810,8416 +1847,3153,9462,31650,12939,2949,14374,5626,2730,8259 +1848,3129,9441,31660,12674,2924,14441,5583,2710,8126 +1849,3193,9314,31920,12787,2978,14585,5648,2740,8069 +1850,3428,9513,33010,13090,3051,14946,5897,2780,8334 +1851,3656,9739,33700,13681,3110,15468,6312,2900,8799 +1852,3589,9492,33050,13506,3072,15465,6353,2870,8905 +1853,3488,9195,32060,13240,2999,15059,6152,2790,8705 +1854,3345,8739,30450,12719,2901,14521,5951,2670,8418 +1855,3258,8335,28850,12057,2852,14015,5708,2540,8116 +1856,3352,8256,27010,11740,2837,13394,5470,2500,7881 +1857,3251,8046,25030,11123,2765,12537,5282,2400,7460 +1858,3376,8187,23990,10964,2854,12172,5387,2440,7425 +1859,3478,8465,23890,11193,3076,12579,5691,2630,7955 +1860,3590,8602,24130,11324,3185,13028,6140,2820,8496 +1861,3646,8705,24300,11469,3217,12979,6281,2910,8807 +1862,3594,8766,24820,11481,3138,12777,6335,2870,8747 +1863,3359,8663,24950,11327,3009,12565,6170,2700,8316 +1864,3164,8419,24940,11483,2782,12816,5908,2560,7851 +1865,3082,8549,26000,11707,2634,13133,5364,2520,7685 +1866,3182,8662,26880,11799,2643,13395,5085,2550,7579 +1867,3178,8645,27280,11649,2623,13399,4867,2520,7418 +1868,3115,8570,27330,11508,2588,13378,4828,2500,7338 +1869,3018,8456,26920,11315,2566,13233,4767,2480,7424 +1870,2855,8071,25950,10979,2464,12895,4761,2430,7262 +1871,2731,7876,25060,10734,2403,12583,4689,2380,7062 +1872,2704,7693,24850,10582,2363,12384,4700,2310,7018 +1873,2860,7824,25680,10902,2450,12564,5039,2340,7364 +1874,3173,8259,27850,11525,2631,13338,5488,2500,7878 +1875,3410,8841,30110,12541,2818,14625,5952,2710,8508 +1876,3396,8768,30170,12689,2842,14734,6180,2750,8663 +1877,3313,8637,29710,12529,2827,14675,6027,2710,8569 +1878,3183,8313,28580,12280,2742,14144,5815,2590,8236 +1879,3056,7813,26900,11622,2718,13472,5537,2450,7869 +1880,3143,7765,25490,11369,2727,12890,5277,2400,7520 +1881,3093,7636,23690,10926,2711,12145,5194,2340,7109 +1882,3216,7882,22920,11007,2851,11993,5262,2410,7150 +1883,3337,8169,23060,11395,3068,12504,5640,2620,7703 +1884,3426,8427,23450,11826,3199,12909,6207,2850,8332 +1885,3550,8697,24020,12090,3263,13067,6465,2930,8682 +1886,3559,9092,25340,12645,3248,13325,6489,2960,8836 +1887,3483,9401,27280,13664,3273,14064,6770,2950,9005 +1888,3423,9306,28540,14627,3248,15009,6761,2930,8994 +1889,3482,10035,30990,16174,3358,16210,6769,3160,8806 +1890,3593,10290,32500,16805,3423,16859,6616,3220,8962 +1891,3581,10188,32680,16459,3379,16624,6404,3170,9030 +1892,3536,10036,32620,16130,3346,16411,6523,3120,8979 +1893,3333,9498,31170,14931,3145,15509,6156,2950,8619 +1894,3325,9594,31470,15559,3195,15917,6197,3100,8814 +1895,3179,9403,30910,15347,3147,15639,6225,3040,9128 +1896,3095,9119,30400,15140,3122,15420,6167,2990,9053 +1897,3224,9106,30700,15035,3112,15421,6418,3060,9291 +1898,3385,9028,30970,14905,3080,15462,6476,2980,9383 +1899,3534,9314,31960,15184,3157,15927,6677,3050,9712 +1900,3467,9112,31210,14682,3099,15664,6595,2990,9560 +1901,3310,8864,30160,14291,3009,15203,6431,2880,9193 +1902,3135,8494,28720,13947,2919,14722,6185,2740,8834 +1903,3027,8181,27480,13566,2897,14104,5825,2570,8496 +1904,3073,8043,25960,13133,2854,13493,5649,2510,8121 +1905,2997,7804,24120,12571,2745,12589,5587,2410,7653 +1906,3134,7983,23200,12304,2849,12277,5510,2460,7555 +1907,3255,8254,23190,12481,3030,12692,5888,2640,7985 +1908,3315,8467,23460,12743,3208,13106,6225,2840,8542 +1909,3416,8644,23710,12706,3261,13148,6409,2910,8746 +1910,3376,8768,24150,12713,3222,12799,6353,2820,8525 +1911,3230,8724,24470,12963,3045,12846,6137,2640,8175 +1912,3146,8640,25700,13586,2957,13615,6300,2680,8495 +1913,3160,9068,27860,14977,2994,14768,6736,2890,9140 +1914,3250,9230,29630,15636,3058,15325,6919,3030,9519 +1915,3278,9204,29750,15554,3051,15450,6838,3000,9487 +1916,3269,9164,29780,15240,3029,15317,6712,2980,9466 +1917,3112,8944,29100,14347,2920,14961,6364,2880,9247 +1918,3016,8679,29600,14956,2929,15243,6545,2950,9265 +1919,2918,8490,28090,15124,2916,15353,6532,2930,9200 +1920,2834,8261,28150,15023,2907,15419,6561,2890,9145 +1921,2935,8278,28700,15198,2936,15590,6614,2950,9224 +1922,3168,8546,29860,15355,2997,15797,6752,3020,9468 +1923,3415,8805,30830,15335,3058,16047,6900,3100,9770 +1924,3370,8637,30260,14908,2999,15686,6723,3040,9606 +1925,3255,8456,29340,14504,2911,15302,6523,2920,9288 +1926,3106,8141,28180,14097,2830,14790,6307,2780,8882 +1927,2946,7697,26560,13426,2814,13947,6045,2590,8438 +1928,2975,7533,25090,12957,2744,13266,5807,2530,8072 +1929,2941,7303,23390,12260,2656,12434,5544,2410,7534 +1930,3053,7537,22500,11945,2728,12117,5543,2450,7505 +1931,3196,7842,22670,12085,2966,12598,5906,2630,8007 +1932,3314,8074,22980,12468,3113,13070,6378,2810,8506 +1933,3394,8278,23300,12433,3174,13127,6490,2910,8730 +1934,3396,8555,24030,12509,3098,13055,6429,2860,8652 +1935,3386,8461,25100,12853,2981,13450,6413,2800,8586 +1936,3373,8558,26640,13790,2935,14514,6367,2840,8643 +1937,3524,9701,29540,15487,3120,15972,6529,3210,8934 +1938,3641,10211,31680,16489,3259,16657,6468,3300,9088 +1939,3649,10193,32300,16448,3299,16822,6309,3380,9328 +1940,3619,10152,32520,16252,3299,16677,6261,3250,9454 +1941,3394,9602,31130,15170,3106,15730,5863,3020,9124 +1942,3398,9754,31530,15815,3219,16249,6133,3120,9322 +1943,3291,9617,31060,15760,3192,16073,6089,3090,9279 +1944,3181,9217,30620,15410,3128,15741,6066,3000,9182 +1945,3255,8898,30480,15206,3119,15645,6223,3010,9262 +1946,3371,8731,30380,14702,3032,15341,6185,2930,9253 +1947,3528,9035,31010,15008,3081,15537,6356,3000,9483 +1948,3457,8784,30170,14462,2992,15160,6248,2920,9278 +1949,3270,8416,29060,14090,2899,14586,6077,2810,8904 +1950,3126,8002,27640,13661,2818,14120,5888,2650,8516 +1951,2963,7654,26390,13173,2784,13624,5732,2530,8265 +1952,2990,7482,25020,12811,2719,13099,5590,2510,7966 +1953,2906,7224,23200,12030,2635,12251,5400,2410,7508 +1954,2985,7347,22430,11824,2730,11952,5412,2430,7474 +1955,3108,7619,22470,12017,2933,12518,5746,2590,7837 +1956,3200,7840,22770,12246,3085,12943,6143,2780,8352 +1957,3281,8015,22990,12251,3124,12876,6135,2820,8562 +1958,3279,8182,23430,12204,3057,12500,5900,2750,8396 +1959,3384,8030,24460,12402,2945,12690,5908,2650,8187 +1960,3381,8263,26340,13273,2905,13738,5997,2740,8489 +1961,3581,9297,29020,15104,3123,15410,6599,3100,9124 +1962,3681,9533,31760,16319,3334,16579,6971,3260,9430 +1963,3628,9565,32110,16225,3334,16847,6994,3250,9452 +1964,3625,9475,32540,16199,3333,16969,6921,3190,9674 +1965,3447,9054,31310,15279,3153,16164,6525,2990,9348 +1966,3577,9301,32550,16263,3316,16799,6866,3050,9568 +1967,3571,9329,32520,16375,3334,16708,6801,3140,9648 +1968,3524,9114,32470,16070,3297,16619,6713,3110,9449 +1969,3521,9191,32700,16019,3296,16550,6691,3120,9434 +1970,3541,9219,32610,15569,3245,16129,6597,3030,9446 +1971,3593,9174,32510,15512,3242,16054,6570,3040,9594 +1972,3472,8830,31360,14803,3126,15473,6328,2950,9334 +1973,3315,8479,30060,14260,3009,14817,6137,2820,8967 +1974,3158,8037,28400,13749,2929,14272,5912,2680,8632 +1975,3012,7629,26940,13257,2850,13724,5742,2520,8301 +1976,3038,7455,25490,12893,2793,13198,5613,2480,7975 +1977,2940,7197,23870,12125,2690,12395,5374,2390,7578 +1978,3001,7300,22950,11769,2758,12040,5372,2410,7564 +1979,3103,7540,22840,11906,2962,12408,5694,2550,7885 +1980,3229,7766,23080,12145,3114,12864,6148,2720,8400 +1981,3309,7841,23240,12061,3158,12859,6231,2780,8685 +1982,3300,7930,23520,11998,3078,12567,6032,2710,8573 +1983,3404,7893,24540,12224,2955,12747,5837,2610,8400 +1984,3341,8176,26520,13072,2954,13895,6021,2640,8525 +1985,3547,9154,28800,14822,3202,15557,6406,2960,9025 +1986,3679,9644,30970,15879,3395,16112,6431,3020,9390 +1987,3687,9634,31910,15816,3402,16065,6475,3040,9374 +1988,3720,9586,31540,15853,3392,16205,6281,3020,9467 +1989,3584,9151,30560,14889,3218,15365,5871,2900,8899 +1990,3603,9609,31400,15459,3391,16001,6293,3010,9187 +1991,3549,9531,31160,15263,3404,15915,6294,2960,9448 +1992,3489,9152,30940,14972,3359,15881,6300,2950,9352 +1993,3506,9073,31190,14796,3329,15777,6428,3000,9446 +1994,3575,8948,31190,14410,3252,15418,6352,2940,9404 +1995,3693,9226,31160,14532,3268,15493,6414,2970,9559 +1996,3614,8932,30100,14056,3176,15124,6220,2850,9351 +1997,3471,8579,28840,13563,3069,14531,6016,2750,9009 +1998,3332,8197,27510,13273,3006,14070,5759,2590,8643 +1999,3240,7852,26360,12837,2913,13501,5616,2470,8356 +2000,3242,7610,25070,12557,2845,13098,5553,2440,8036 +2001,3168,7282,23430,11766,2717,12281,5250,2340,7580 +2002,3250,7394,22470,11429,2751,11956,5241,2360,7470 +2003,3330,7624,22460,11477,2944,12367,5600,2520,7839 +2004,3404,7814,22640,11727,3094,12846,5979,2720,8360 +2005,3475,7960,22730,11637,3125,12825,6127,2790,8605 +2006,3410,7994,22860,11320,3040,12493,5923,2720,8384 +2007,3283,7823,23440,11020,2821,12348,5696,2520,7921 +2008,3275,7842,24880,11306,2716,13027,5630,2500,7817 +2009,3398,8329,27340,12130,2786,14198,5780,2670,8066 +2010,3400,8623,28990,12543,2839,14680,5587,2700,8117 +2011,3355,8559,29360,12453,2832,14438,5482,2740,8097 +2012,3313,8458,29190,12488,2783,14413,5506,2720,8107 +2013,3202,8227,28520,12123,2703,13987,5386,2650,8173 +2014,3145,8212,28670,12144,2667,13922,5378,2630,8035 +2015,2992,7987,28650,11970,2658,13864,5163,2570,7883 +2016,2911,7875,28480,11990,2632,13788,5230,2520,7845 +2017,2999,7846,28870,12184,2701,13801,5437,2560,7932 +2018,3242,8107,29890,12516,2759,14032,5653,2660,8180 +2019,3449,8485,30620,12803,2874,14583,5937,2750,8605 +2020,3412,8389,30070,12527,2835,14559,5944,2690,8592 +2021,3309,8067,29080,12124,2749,14093,5843,2600,8391 +2022,3155,7852,27720,11657,2641,13647,5552,2480,8092 +2023,3055,7456,26320,11075,2604,13065,5316,2380,7853 +2024,3066,7337,24910,10805,2525,12532,5190,2350,7550 +2025,3018,7081,23160,10248,2417,11742,4957,2250,7148 +2026,3096,7189,22260,10047,2488,11410,5024,2250,7059 +2027,3209,7419,22210,10275,2683,11816,5412,2430,7452 +2028,3320,7615,22350,10504,2875,12365,5729,2650,8054 +2029,3346,7754,22400,10474,2921,12297,5879,2750,8295 +2030,3288,7754,22470,10258,2842,11868,5590,2660,8075 +2031,3187,7564,22790,9942,2627,11664,5373,2410,7506 +2032,3087,7566,24240,10203,2535,12363,5314,2360,7345 +2033,3193,7881,26480,10878,2587,13474,5289,2520,7614 +2034,3362,8199,28270,11447,2693,14110,5461,2590,7882 +2035,3372,8151,28670,11648,2689,14237,5432,2610,7918 +2036,3324,8080,28850,11545,2710,14384,5337,2600,7706 +2037,3284,8008,28780,11495,2687,14126,5120,2600,7665 +2038,3217,7916,28700,11357,2656,14040,5125,2540,7533 +2039,3157,7897,28570,11313,2627,14090,5064,2490,7580 +2040,3170,7991,28460,11255,2625,14159,5164,2490,7683 +2041,3229,8210,28940,11629,2724,14390,5291,2510,7727 +2042,3416,8609,30030,12378,2851,14823,5672,2630,8205 +2043,3587,8794,30820,12765,2948,15280,6013,2800,8723 +2044,3554,8605,30400,12517,2914,15171,6057,2790,8892 +2045,3425,8291,29230,12314,2826,14724,5961,2700,8693 +2046,3306,7884,27730,11816,2715,14070,5795,2580,8388 +2047,3132,7446,25950,11180,2643,13146,5452,2400,8005 +2048,3176,7265,24470,10805,2581,12605,5196,2320,7690 +2049,3164,7005,22860,10265,2496,11625,5055,2220,7278 +2050,3215,7196,22030,10134,2568,11251,5119,2260,7235 +2051,3311,7491,22060,10474,2786,11755,5491,2460,7719 +2052,3384,7797,22480,10875,2969,12302,5994,2690,8321 +2053,3478,8053,23000,11056,3066,12463,6253,2810,8735 +2054,3480,8357,23870,11564,3100,12548,6279,2810,8868 +2055,3485,8493,25140,12255,3073,12958,6290,2720,8877 +2056,3386,8615,27260,13452,3063,14000,6297,2730,8716 +2057,3423,10006,30580,15389,3351,15799,6545,3100,8641 +2058,3397,10583,32830,16533,3495,16940,6583,3270,8799 +2059,3271,10455,32950,16420,3471,16880,6521,3230,9146 +2060,3374,10147,32670,16058,3418,16843,6536,3200,9332 +2061,3219,9725,30920,15100,3230,15772,6130,3010,8991 +2062,3271,9954,32280,15747,3327,16249,6432,3120,9110 +2063,3291,9806,32020,15611,3309,16160,6268,3100,9200 +2064,3289,9368,31790,15258,3272,15877,6253,2980,8872 +2065,3374,9241,32120,15049,3309,15892,6451,2890,8782 +2066,3535,9270,32490,14941,3274,15594,6424,2890,9040 +2067,3710,9658,33210,15404,3356,16075,6635,3010,9386 +2068,3633,9437,32460,14977,3297,15992,6572,2990,9454 +2069,3468,9111,31400,14593,3200,15566,6428,2900,9214 +2070,3286,8713,29890,14295,3106,15016,6187,2760,8896 +2071,3127,8326,28320,13777,3065,14262,5904,2590,8602 +2072,3187,8123,26630,13374,2984,13647,5717,2510,8206 +2073,3120,7900,24510,12531,2888,12664,5538,2410,7696 +2074,3180,8071,23510,12196,2975,12392,5561,2440,7651 +2075,3311,8328,23430,12466,3205,12839,5890,2630,8102 +2076,3410,8535,23830,12816,3372,13400,6315,2840,8713 +2077,3519,8756,24220,12911,3432,13544,6646,2960,9079 +2078,3479,9094,25180,13169,3447,13613,6624,2980,9201 +2079,3405,9101,27070,13533,3423,14137,6707,2950,9143 +2080,3442,9181,29850,14269,3321,14946,6619,2960,8858 +2081,3555,10310,33650,16023,3415,16357,6545,3170,9038 +2082,3688,10650,35640,16962,3547,17080,6555,3250,9430 +2083,3695,10469,35490,16597,3527,17014,6346,3220,9348 +2084,3662,10245,35490,16340,3498,16780,6308,3150,9363 +2085,3434,9649,34370,15254,3290,15770,5906,2970,9017 +2086,3436,9912,34600,15944,3376,16205,6225,3080,9131 +2087,3308,9774,33940,15703,3327,15867,6078,3040,9101 +2088,3138,9431,33180,15381,3275,15530,6005,2910,8889 +2089,3190,9097,32980,15148,3283,15476,6198,2930,8953 +2090,3359,9103,33100,14787,3245,15352,6313,2910,9109 +2091,3532,9556,34060,15193,3327,15884,6465,2990,9346 +2092,3491,9406,33340,14900,3284,15771,6471,2980,9474 +2093,3341,9138,32180,14520,3212,15358,6362,2880,9288 +2094,3193,8734,30560,14201,3132,14894,6204,2750,8960 +2095,3041,8310,28900,13723,3066,14218,6006,2580,8667 +2096,3079,8185,27000,13285,2987,13588,5777,2510,8321 +2097,2994,7946,24900,12532,2883,12650,5602,2400,7849 +2098,3087,8146,23690,12280,3004,12384,5649,2440,7839 +2099,3212,8413,23710,12473,3219,12899,6023,2630,8330 +2100,3329,8607,24010,12811,3395,13470,6430,2870,8939 +2101,3424,8810,24440,12918,3465,13544,6627,2970,9339 +2102,3401,9074,25310,13140,3446,13559,6750,2980,9438 +2103,3316,9131,26520,13470,3399,14024,6816,2920,9436 +2104,3412,9006,28510,14168,3254,14678,6671,2890,9126 +2105,3596,9944,31530,15750,3370,16108,6636,3110,9032 +2106,3719,10236,32900,16496,3494,16908,6591,3180,9438 +2107,3702,10021,33390,16421,3470,16862,6369,3160,9367 +2108,3664,9965,33720,16104,3438,16661,6322,3120,9345 +2109,3451,9186,32190,14917,3231,15721,5923,2920,9014 +2110,3476,9441,32170,15577,3310,16048,6135,3050,9147 +2111,3339,9269,31720,15422,3257,15743,6043,3020,9025 +2112,3248,9132,31350,15126,3204,15472,6109,2900,8863 +2113,3259,9101,31380,14918,3209,15396,6240,2880,8879 +2114,3351,8995,31460,14515,3173,15248,6189,2840,9002 +2115,3526,9400,32230,14975,3267,15770,6445,2950,9296 +2116,3460,9235,31720,14682,3248,15614,6440,2950,9419 +2117,3322,8967,30690,14302,3162,15145,6343,2860,9193 +2118,3160,8554,29300,13897,3123,14673,6150,2720,8855 +2119,3010,8168,27810,13358,3052,14055,6033,2560,8543 +2120,3074,7942,26150,13005,2965,13361,5847,2490,8170 +2121,2997,7692,24190,12288,2867,12543,5623,2380,7704 +2122,3079,7914,23180,12016,2968,12274,5583,2400,7665 +2123,3208,8184,23110,12239,3206,12802,5964,2580,8138 +2124,3271,8414,23390,12583,3359,13339,6458,2840,8746 +2125,3379,8646,23650,12724,3417,13418,6684,2950,9133 +2126,3365,8917,24240,12928,3399,13481,6758,2960,9201 +2127,3343,8963,25300,13331,3341,13867,6901,2890,9070 +2128,3279,8866,27280,13914,3238,14539,6722,2850,8834 +2129,3436,9642,30190,15509,3342,15932,6673,3080,9007 +2130,3566,10023,32070,16326,3453,16760,6580,3190,9038 +2131,3546,9841,32260,16143,3434,16656,6420,3210,8927 +2132,3521,9793,32680,15857,3414,16545,6387,3160,8989 +2133,3327,9197,31350,14719,3192,15526,5893,2990,8645 +2134,3314,9336,31800,15373,3286,15874,6157,3120,8808 +2135,3162,9159,31280,15204,3240,15679,5995,3030,8838 +2136,3117,8860,30740,14791,3174,15327,6009,2950,8893 +2137,3250,8867,30510,14602,3150,15212,6052,2840,9043 +2138,3401,8734,30400,14231,3100,14956,6114,2820,9098 +2139,3507,9109,31340,14666,3161,15411,6325,2940,9511 +2140,3432,8893,30720,14378,3108,15166,6301,2910,9437 +2141,3278,8632,29700,13983,3040,14712,6098,2820,9156 +2142,3118,8233,28340,13591,2974,14254,5953,2680,8806 +2143,2977,7897,26850,13037,2949,13663,5679,2520,8467 +2144,2983,7702,25370,12667,2866,13005,5450,2450,8067 +2145,2913,7410,23520,11903,2732,12089,5311,2350,7603 +2146,2991,7551,22600,11687,2835,11823,5295,2380,7498 +2147,3098,7829,22660,11836,3051,12290,5570,2570,7982 +2148,3213,8065,22950,12129,3219,12816,6027,2790,8551 +2149,3265,8269,23280,12227,3285,12852,6180,2880,8840 +2150,3276,8436,23900,12373,3272,12806,6116,2860,8769 +2151,3379,8417,24620,12513,3159,13015,6113,2740,8581 +2152,3386,8331,26290,13102,3020,13802,5939,2710,8581 +2153,3741,9130,28640,14634,3140,15393,6157,3010,8735 +2154,3915,9507,30730,15381,3266,16251,6167,3130,8676 +2155,3816,9440,31390,15290,3256,15983,6083,3080,8706 +2156,3628,9385,31900,14977,3215,15556,5982,3100,8854 +2157,3355,8931,30110,14050,3027,14907,5555,2910,8669 +2158,3397,9017,30490,14546,3122,15604,5703,3010,8826 +2159,3294,8824,29620,14425,3068,15265,5651,2960,8772 +2160,3214,8404,23380,14046,3010,14953,5621,2850,8602 +2161,3223,8431,22460,13850,2978,14804,5788,2800,8768 +2162,3286,8283,22410,13528,2912,14575,5771,2730,8741 +2163,3420,8608,22640,14012,2956,14866,5938,2780,9018 +2164,3363,8427,22800,13740,2924,14658,5865,2770,9014 +2165,3237,8131,22800,13362,2849,14193,5734,2680,8707 +2166,3082,7748,22550,13031,2767,13669,5569,2550,8356 +2167,2959,7409,22980,12659,2758,13061,5361,2400,8156 +2168,3002,7222,24600,12284,2690,12596,5191,2350,7816 +2169,2918,6964,26030,11570,2600,11734,5000,2250,7386 +2170,3009,7106,26890,11279,2675,11512,5022,2270,7274 +2171,3122,7407,27350,11498,2867,11975,5354,2440,7706 +2172,3219,7609,27000,11783,3027,12523,5781,2660,8273 +2173,3281,7808,26540,11747,3067,12438,5997,2760,8566 +2174,3199,7824,25980,11523,2978,12109,5905,2690,8364 +2175,3146,7590,25600,11200,2784,11765,5686,2500,7868 +2176,3105,7505,25530,11141,2619,11881,5576,2400,7431 +2177,3248,7684,26000,11579,2653,12559,5347,2480,7397 +2178,3353,7859,27320,12044,2652,13128,5315,2530,7891 +2179,3330,7971,27160,11938,2645,13298,5328,2530,7922 +2180,3354,7927,26450,11902,2641,13162,5333,2500,8022 +2181,3180,7764,25270,11538,2566,12867,5141,2460,7869 +2182,3111,7648,24120,11455,2539,12960,5229,2540,7869 +2183,3052,7443,23200,11223,2481,12662,5148,2470,7803 +2184,3004,7306,21750,11071,2466,12607,5132,2420,7691 +2185,3090,7350,21000,10972,2501,12789,5258,2430,7759 +2186,3226,7455,20990,11171,2581,12872,5347,2430,7958 +2187,3382,7946,21260,11816,2683,13567,5671,2540,8274 +2188,3347,7890,21300,11763,2691,13587,5655,2530,8334 +2189,3213,7657,21300,11478,2641,13195,5503,2460,8066 +2190,3061,7339,21230,11054,2555,12627,5349,2350,7784 +2191,2963,7081,22060,10584,2516,12005,5161,2200,7498 +2192,2990,7016,23430,10386,2449,11580,4970,2170,7237 +2193,2923,6865,24500,9847,2348,10872,4950,2080,6832 +2194,3018,7039,25250,9743,2412,10651,4939,2110,6778 +2195,3115,7326,25890,10057,2628,11204,5185,2280,7173 +2196,3214,7539,25610,10444,2822,11738,5712,2500,7774 +2197,3261,7661,25390,10470,2880,11749,5825,2590,8060 +2198,3200,7686,25020,10255,2811,11334,5737,2510,7855 +2199,3071,7544,25040,9912,2590,10851,5393,2270,7243 +2200,2915,7400,25310,10021,2410,10869,5267,2180,6779 +2201,2984,7584,26630,10395,2363,11345,5085,2180,6810 +2202,3107,7788,28320,10716,2383,11817,5038,2270,7051 +2203,3082,7783,28130,10745,2421,11935,4985,2240,7074 +2204,3027,7754,27480,10841,2423,11842,4870,2220,7209 +2205,2879,7720,26400,10739,2413,11799,4757,2270,7342 +2206,2675,7490,24940,10651,2351,11727,4744,2250,7288 +2207,2511,7300,23620,10467,2300,11698,4561,2190,7167 +2208,2506,7164,21970,10302,2304,11770,4666,2160,7070 +2209,2678,7295,21260,10450,2377,11884,4938,2200,7215 +2210,2927,7627,21380,11002,2537,12424,5301,2290,7654 +2211,3218,8125,21850,11742,2674,13434,5566,2430,8036 +2212,3240,8105,22360,11656,2692,13579,5648,2450,8206 +2213,3156,7925,23250,11471,2640,13270,5437,2370,7954 +2214,3017,7547,24570,11066,2565,12693,5296,2260,7671 +2215,2847,7142,26390,10477,2492,12019,4969,2130,7356 +2216,2869,6984,29320,10190,2448,11518,4832,2100,7089 +2217,2835,6802,32170,9725,2366,10774,4733,2020,6711 +2218,2990,7037,32590,9617,2473,10609,4806,2060,6669 +2219,3142,7372,32700,9945,2665,11105,5224,2250,7190 +2220,3233,7655,31380,10476,2867,11733,5732,2510,7874 +2221,3297,7867,31680,10629,2960,11893,6061,2620,8264 +2222,3272,8138,31090,11022,2973,11859,6138,2630,8375 +2223,3274,8259,30540,11515,2926,12308,6223,2570,8216 +2224,3220,8279,30580,12661,2890,13329,5991,2540,7920 +2225,3331,9172,30590,14454,3064,14808,5966,2780,8040 +2226,3481,9540,31750,15645,3267,15639,6157,2920,8655 +2227,3509,9546,31320,15947,3281,15639,6195,2950,8822 +2228,3474,9588,30330,15738,3281,15662,6364,2930,9036 +2229,3248,9102,28940,14794,3070,14859,6054,2770,8767 +2230,3233,9289,27480,15569,3186,15458,6160,2920,8887 +2231,3095,9083,25970,15530,3143,15443,6098,2870,8864 +2232,3013,8678,24030,15213,3123,15280,6064,2780,8772 +2233,3155,8799,23100,15043,3140,15297,6272,2820,8693 +2234,3239,8628,23210,14574,3093,15042,6286,2780,8808 +2235,3423,9086,23660,14792,3155,15357,6386,2820,8902 +2236,3357,8872,24160,14434,3096,15136,6302,2810,8966 +2237,3232,8604,24880,13944,3006,14622,6150,2710,8617 +2238,3091,8218,25940,13624,2925,14172,5973,2550,8302 +2239,2927,7864,27180,13204,2850,13480,5740,2390,8055 +2240,2937,7776,29930,12875,2774,12855,5466,2340,7755 +2241,2903,7572,31930,12138,2666,11918,5279,2240,7266 +2242,3019,7791,32560,11832,2750,11741,5378,2250,7206 +2243,3125,8123,32720,11999,2970,12310,5683,2440,7673 +2244,3218,8335,31380,12356,3142,12917,6159,2670,8257 +2245,3277,8484,31810,12558,3229,13032,6381,2780,8619 +2246,3259,8748,31360,12713,3244,13045,6402,2790,8581 +2247,3264,8751,31040,12926,3156,13081,6365,2700,8336 +2248,3214,8603,30770,13707,3021,13677,6127,2620,8003 +2249,3432,9338,30210,15313,3164,15066,6204,2870,8007 +2250,3602,9763,31310,16430,3301,15990,6361,3000,8553 +2251,3538,9739,30780,16271,3322,16063,6340,3020,8992 +2252,3475,9688,29790,16177,3324,15955,6426,3010,8991 +2253,3172,9109,28430,15165,3113,15114,5922,2850,8582 +2254,3286,9345,27080,15939,3219,15732,6144,3030,8791 +2255,3195,9125,25570,15884,3185,15840,5988,2950,8751 +2256,3176,8704,23770,15596,3137,15399,6047,2940,8547 +2257,3234,8814,22880,15343,3143,15100,6149,2910,8794 +2258,3292,8647,23000,14830,3076,15041,6021,2820,8827 +2259,3418,9013,23330,15127,3113,15357,6167,2870,9125 +2260,3351,8796,23830,14617,3062,15049,6162,2820,9045 +2261,3213,8499,24250,14250,2975,14535,5955,2710,8683 +2262,3040,8064,25180,13862,2924,13941,5694,2560,8300 +2263,2879,7746,26570,13338,2828,13290,5402,2390,8001 +2264,2859,7519,29240,13002,2764,12740,5220,2350,7721 +2265,2840,7308,31860,12211,2644,11816,5093,2230,7297 +2266,2950,7440,32220,12039,2705,11478,5059,2250,7219 +2267,3050,7758,32470,12056,2910,12074,5420,2410,7575 +2268,3162,8009,31920,12394,3063,12613,5864,2620,8155 +2269,3194,8149,30880,12437,3130,12744,5942,2730,8456 +2270,3195,8228,30920,12433,3086,12530,6027,2700,8411 +2271,3241,8152,30890,12687,2942,12675,5886,2530,8149 +2272,3085,8202,30690,13425,2914,13418,5925,2560,8227 +2273,3322,9013,30550,15226,3150,14761,6402,2920,8849 +2274,3431,9388,31360,16246,3289,15763,6781,3050,9292 +2275,3483,9373,30630,16071,3286,15635,6704,3010,9294 +2276,3469,9285,29510,15923,3279,15609,6705,3040,9402 +2277,3227,8827,27980,15010,3069,14984,6342,2860,8995 +2278,3240,9047,26740,15616,3189,15859,6706,3050,9299 +2279,3122,8941,25250,15713,3208,15918,6780,3060,9341 +2280,3042,8702,23530,15449,3164,15805,6734,3030,9310 +2281,3136,8741,22620,15261,3156,15815,6694,3050,9333 +2282,3209,8585,22650,14907,3108,15637,6614,2990,9342 +2283,3362,8848,22930,15092,3137,15624,6651,3000,9491 +2284,3273,8601,23190,14604,3050,15190,6468,2880,9309 +2285,3122,8283,23600,14168,2942,14608,6298,2780,8968 +2286,2972,7861,24460,13680,2849,14011,5937,2640,8548 +2287,2833,7498,26430,13156,2812,13400,5699,2460,8265 +2288,2867,7314,29310,12768,2742,12862,5461,2410,7913 +2289,2802,7038,31490,12007,2627,11983,5289,2300,7519 +2290,2835,7109,31630,11678,2698,11682,5299,2320,7367 +2291,2949,7383,31350,11822,2901,12159,5490,2490,7769 +2292,3071,7614,30460,12174,3067,12742,5966,2700,8302 +2293,3133,7788,31440,12189,3109,12781,6167,2770,8625 +2294,3121,7871,31450,12230,3041,12584,6027,2730,8505 +2295,3163,7811,31180,12541,2945,12826,5890,2600,8166 +2296,3098,8011,31100,13347,2929,13820,5927,2670,8300 +2297,3320,8899,30760,15180,3155,15411,6304,2960,8856 +2298,3479,9355,31380,16290,3328,16290,6536,3040,9325 +2299,3474,9388,30660,16321,3306,16348,6441,3140,9253 +2300,3550,9373,29420,16132,3314,16136,6526,3190,9124 +2301,3324,8830,27950,15238,3115,15373,6193,2990,8839 +2302,3403,9191,26650,16104,3225,16018,6547,3080,9270 +2303,3439,9152,25290,16097,3221,16156,6584,3060,9324 +2304,3455,8732,23490,15665,3190,16104,6627,3030,9223 +2305,3489,8846,22580,15557,3168,16114,6578,3010,9275 +2306,3471,8840,22550,15248,3104,15725,6492,2950,9328 +2307,3519,8949,22880,15245,3106,15693,6481,2940,9475 +2308,3426,8628,23110,14677,3007,15146,6235,2840,9286 +2309,3257,8312,23260,14111,2910,14534,6100,2720,8878 +2310,3064,7855,24270,13618,2815,14064,5850,2570,8481 +2311,2918,7492,26650,13118,2794,13453,5639,2410,8181 +2312,2929,7296,29320,12832,2706,12919,5425,2380,7900 +2313,2838,7019,31500,12024,2620,12062,5219,2280,7455 +2314,2900,7114,32070,11679,2686,11696,5254,2280,7367 +2315,2980,7349,32600,11786,2878,12174,5552,2430,7710 +2316,3077,7520,30740,12028,3006,12689,6025,2640,8312 +2317,3155,7644,31760,12108,3048,12739,6200,2740,8645 +2318,3137,7649,32070,12097,2955,12410,6108,2670,8544 +2319,3214,7673,31480,12419,2869,12701,5990,2580,8385 +2320,3224,7955,31400,13367,2883,13911,6080,2670,8519 +2321,3531,8778,31220,15184,3139,15725,6556,3010,9177 +2322,3732,9261,31460,16330,3342,16854,6853,3130,9638 +2323,3703,9283,30510,16494,3352,16957,6742,3130,9565 +2324,3703,9207,29240,16294,3348,16810,6654,3140,9416 +2325,3542,8747,27770,15208,3182,16063,6200,2950,9082 +2326,3613,9148,26620,16059,3330,16670,6554,3050,9327 +2327,3616,9192,25270,16027,3351,16671,6433,3070,9151 +2328,3543,9112,23570,15742,3332,16553,6231,3050,8773 +2329,3514,9180,22580,15645,3315,16401,6269,3020,8800 +2330,3477,9010,22390,15142,3230,15938,6143,2920,8945 +2331,3508,8926,22540,14917,3197,15779,6240,2950,9208 +2332,3428,8635,22520,14338,3105,15248,6187,2900,9286 +2333,3223,8251,22250,13835,2989,14625,6054,2790,9023 +2334,3058,7823,22000,13495,2899,14074,5810,2630,8627 +2335,2935,7494,22880,13076,2840,13458,5504,2460,8298 +2336,2959,7298,24780,12678,2752,12884,5341,2400,7946 +2337,2851,7008,25890,11834,2658,11982,5148,2300,7463 +2338,2868,7013,26680,11479,2687,11691,5144,2300,7296 +2339,3003,7261,27060,11615,2882,12118,5376,2460,7685 +2340,3116,7417,26650,11930,3020,12647,5808,2690,8292 +2341,3185,7522,26520,11870,3063,12616,5959,2790,8603 +2342,3148,7461,26330,11519,2984,12224,5775,2730,8524 +2343,3123,7308,26570,11079,2777,11797,5443,2510,8080 +2344,2997,7315,26790,11053,2660,12231,5270,2410,7609 +2345,3079,7574,27790,11542,2792,13031,5205,2570,7594 +2346,3132,7727,28860,12004,2882,13370,5410,2580,7859 +2347,3117,7801,28620,11948,2833,13515,5441,2640,8030 +2348,3079,7847,27840,11889,2806,13868,5425,2590,8131 +2349,3016,7832,26630,11868,2777,13728,5271,2480,8039 +2350,3043,7663,25460,11841,2704,13627,5283,2530,7849 +2351,2924,7651,24420,11640,2600,13311,5281,2450,7664 +2352,2915,7500,23030,11536,2611,13026,5140,2370,7587 +2353,3002,7659,22250,11711,2658,13141,5288,2380,7689 +2354,3119,7913,22320,11921,2777,13606,5502,2490,8067 +2355,3242,8337,22790,12683,2906,14372,5812,2620,8546 +2356,3205,8228,23110,12761,2925,14550,5903,2680,8831 +2357,3071,7971,23180,12535,2847,14229,5824,2620,8686 +2358,2915,7656,22790,12008,2746,13707,5651,2500,8496 +2359,2840,7405,23080,11416,2689,13105,5323,2350,8237 +2360,2873,7315,24560,11294,2634,12537,5195,2320,7966 +2361,2820,7140,26080,10653,2508,11723,5127,2220,7555 +2362,2878,7337,26750,10411,2551,11411,5084,2240,7478 +2363,2992,7585,26990,10806,2763,11847,5374,2420,7899 +2364,3089,7824,26830,11174,2910,12512,5811,2660,8580 +2365,3127,7896,25870,11190,2968,12519,6033,2770,8908 +2366,3080,7846,24990,11072,2920,12201,5845,2710,8861 +2367,3088,7683,24710,10840,2732,11675,5514,2480,8325 +2368,2926,7727,24990,10706,2531,11667,5185,2270,7515 +2369,2923,7969,26430,11038,2462,12275,4851,2250,7304 +2370,2924,8077,28490,11273,2492,12818,4734,2320,7527 +2371,2923,8084,28810,11189,2472,12954,4772,2310,7498 +2372,2935,8004,28220,11209,2487,12904,4808,2300,7471 +2373,2969,7933,27080,11068,2473,12484,4800,2290,7409 +2374,2887,7663,25590,10758,2406,12332,4700,2270,7255 +2375,2765,7486,24270,10594,2349,12106,4553,2220,7076 +2376,2750,7485,22770,10429,2316,12076,4452,2190,7080 +2377,2868,7734,22060,10677,2393,12162,4709,2200,7244 +2378,3081,8079,22280,11150,2525,12915,5251,2370,7767 +2379,3327,8501,22860,12014,2699,13907,5543,2500,8254 +2380,3306,8459,23410,12228,2741,14157,5698,2560,8478 +2381,3203,8246,24310,12186,2717,13913,5544,2510,8373 +2382,3035,7895,25690,11889,2636,13419,5342,2400,8060 +2383,2916,7429,27130,11401,2541,12695,5090,2260,7832 +2384,2931,7278,29820,11026,2487,12133,4751,2220,7513 +2385,2853,7118,31800,10460,2420,11442,4611,2150,7142 +2386,2943,7323,32420,10455,2498,11303,4650,2200,7132 +2387,3087,7613,32670,10992,2734,11898,5046,2410,7642 +2388,3175,7852,31510,11414,2911,12529,5578,2680,8340 +2389,3237,8061,31830,11709,2970,12682,5854,2810,8717 +2390,3175,8334,31230,12173,2990,12711,5951,2820,8918 +2391,3249,8509,30750,12893,2968,13186,5978,2780,8812 +2392,3304,8690,30790,13741,2864,13806,5773,2680,8343 +2393,3466,9518,30650,15264,3057,15057,5911,2890,8360 +2394,3575,9906,31530,16236,3234,15983,6110,3030,8979 +2395,3587,9910,30930,16205,3272,16095,6113,3060,9122 +2396,3488,9905,29790,16000,3279,16053,6187,3020,9097 +2397,3259,9404,28330,14962,3095,15215,5855,2860,8676 +2398,3275,9541,27020,15632,3197,15734,6093,3060,8970 +2399,3194,9324,25490,15520,3153,15654,6083,3030,8830 +2400,3088,8984,23620,15076,3096,15528,5857,2940,8791 +2401,3124,8870,22710,15021,3086,15384,5958,2920,8819 +2402,3214,8588,22830,14636,3023,15135,6030,2860,8883 +2403,3375,8889,23240,14911,3074,15439,6105,2890,9102 +2404,3338,8696,23650,14603,3016,15291,6040,2860,9197 +2405,3161,8363,24120,14070,2941,14797,5903,2750,8877 +2406,2985,7988,25020,13686,2850,14272,5745,2600,8515 +2407,2862,7624,26610,13289,2796,13633,5480,2470,8213 +2408,2841,7378,29430,12905,2709,13063,5260,2420,7863 +2409,2742,7127,31630,12102,2596,12123,5094,2300,7375 +2410,2815,7243,32670,11830,2673,11848,5130,2330,7307 +2411,2954,7584,32940,12033,2890,12381,5427,2500,7762 +2412,3056,7848,31700,12289,3073,12930,5818,2730,8351 +2413,3117,8031,32280,12442,3109,13074,6041,2850,8698 +2414,3086,8217,31950,12532,3075,12860,5986,2810,8648 +2415,3146,8162,31470,12847,2954,12972,5857,2720,8412 +2416,3239,8169,31210,13588,2835,13708,5778,2720,8190 +2417,3422,8965,30520,15136,3026,15227,6004,2980,8319 +2418,3478,9378,31120,16086,3178,16288,6244,3100,8934 +2419,3417,9406,30360,16173,3216,16297,6280,3090,8947 +2420,3390,9470,29180,15928,3231,16188,6283,3090,9140 +2421,3248,8887,27710,14937,3055,15327,5839,2910,8881 +2422,3374,9168,26480,15659,3189,16114,6184,3050,9053 +2423,3357,9071,25130,15685,3182,16078,6070,3010,8964 +2424,3288,8705,23370,15329,3111,15708,5982,2960,8814 +2425,3272,8541,22510,15300,3116,15658,6038,2960,8897 +2426,3273,8424,22500,14846,3015,15272,5991,2880,8928 +2427,3353,8702,22790,15067,3025,15437,6059,2890,9113 +2428,3287,8492,23010,14598,2950,15094,5962,2830,9134 +2429,3116,8148,23380,13994,2854,14562,5774,2720,8771 +2430,2930,7770,24350,13573,2770,14098,5605,2570,8354 +2431,2779,7384,26150,13039,2735,13429,5307,2430,8132 +2432,2819,7215,28780,12753,2655,12841,5061,2380,7782 +2433,2771,6983,31810,11901,2554,12007,4855,2280,7344 +2434,2773,7078,33120,11553,2620,11703,4881,2310,7276 +2435,2880,7381,33560,11775,2813,12174,5183,2460,7652 +2436,3014,7597,32420,12087,2943,12651,5691,2660,8210 +2437,3062,7773,32910,12094,2985,12725,5831,2740,8542 +2438,3110,7852,31800,12094,2906,12455,5695,2680,8422 +2439,3224,7772,31030,12232,2793,12566,5619,2610,8179 +2440,3177,7990,31090,13097,2817,13611,5816,2640,8296 +2441,3301,8940,30590,14883,3133,15226,6334,2940,8698 +2442,3298,9331,31170,15943,3364,16287,6457,3120,8822 +2443,3464,9578,30370,16001,3404,16643,6368,3110,8715 +2444,3313,9552,29140,15881,3416,16580,6348,3170,9108 +2445,3056,9125,27500,14892,3190,15754,5902,3000,8905 +2446,3195,9566,26330,15735,3263,16439,6086,3090,8999 +2447,3142,9391,24910,15725,3266,16314,6152,3050,8969 +2448,3081,9197,23330,15402,3179,16175,5986,2980,8843 +2449,3135,9110,22510,15320,3164,16009,6118,3020,8773 +2450,3210,8933,22580,14820,3094,15458,6080,2910,8875 +2451,3368,9225,23020,14959,3136,15632,6114,2900,8960 +2452,3327,9061,23390,14651,3107,15452,6040,2860,9077 +2453,3163,8712,23710,14164,3016,14881,5961,2770,8812 +2454,2994,8287,24590,13751,2922,14316,5782,2620,8441 +2455,2825,7804,26110,13167,2860,13760,5482,2450,8202 +2456,2850,7544,29060,12856,2762,13144,5295,2380,7956 +2457,2793,7255,31470,12107,2675,12255,5109,2280,7481 +2458,2841,7328,32480,11804,2766,11963,5160,2310,7450 +2459,2987,7620,32810,12080,2994,12519,5576,2480,7925 +2460,3088,7870,31590,12501,3174,13141,6052,2720,8585 +2461,3114,8107,32070,12677,3241,13315,6274,2830,9022 +2462,3147,8324,31500,12814,3230,13277,6232,2840,9149 +2463,3304,8490,31030,13177,3153,13441,6257,2760,8898 +2464,3249,8706,30840,13728,3021,14033,6062,2670,8253 +2465,3523,9483,30370,15325,3161,15338,6032,2910,8414 +2466,3688,9939,31070,16212,3325,16178,6239,3040,8939 +2467,3627,10022,30390,16255,3348,16177,6208,3070,9053 +2468,3653,9978,29250,16082,3354,16113,6260,3060,9156 +2469,3351,9450,27780,15002,3155,15195,5835,2880,8846 +2470,3388,9630,26470,15693,3255,15837,6157,3040,9055 +2471,3299,9454,25000,15565,3213,15737,6119,3030,9050 +2472,3235,9180,23220,15246,3146,15502,6001,2980,8879 +2473,3264,8987,22400,15166,3135,15487,6174,2970,8966 +2474,3277,8719,22440,14663,3050,15167,6034,2860,8912 +2475,3420,8946,22840,14811,3077,15352,6098,2870,9063 +2476,3373,8810,23200,14450,3037,15212,6029,2850,9101 +2477,3210,8493,23450,13972,2944,14698,5878,2760,8745 +2478,3017,8041,24370,13572,2860,14245,5704,2610,8341 +2479,2864,7677,26410,13229,2807,13510,5453,2440,8071 +2480,2884,7460,29300,12845,2720,12912,5281,2380,7825 +2481,2810,7139,31700,12107,2610,12049,5060,2260,7338 +2482,2879,7303,32530,11803,2685,11714,5049,2280,7217 +2483,2998,7579,32620,12043,2876,12238,5382,2440,7677 +2484,3120,7817,30880,12400,3050,12794,5793,2680,8284 +2485,3156,7993,30890,12450,3112,12900,5964,2800,8687 +2486,3104,8104,31430,12536,3064,12751,6043,2780,8666 +2487,3213,8061,31710,12787,3001,12815,6018,2690,8408 +2488,3229,8164,30990,13479,2882,13539,5917,2660,8280 +2489,3450,8870,30450,14957,3057,15008,6272,2900,8835 +2490,3588,9301,30800,15974,3223,15789,6389,3040,9211 +2491,3603,9365,29850,15972,3211,15849,6427,3030,9205 +2492,3678,9422,28670,15735,3222,15716,6561,3020,9370 +2493,3472,9041,27250,14855,3071,15095,5910,2770,8945 +2494,3494,9306,26090,15440,3156,15515,6188,2960,9386 +2495,3433,9260,24830,15427,3149,15406,6188,2950,9398 +2496,3358,8892,23100,15058,3107,15452,6221,2910,9398 +2497,3297,8731,22120,14875,3082,15522,6283,2950,9515 +2498,3262,8619,21980,14531,2981,15186,6289,2900,9515 +2499,3389,8764,22240,14550,2991,15327,6332,2930,9699 +2500,3367,8533,22300,14080,2923,15002,6171,2850,9503 +2501,3207,8185,22220,13648,2838,14367,5974,2730,9121 +2502,3059,7788,22340,13298,2790,13846,5781,2590,8716 +2503,2947,7425,23510,12888,2724,13363,5645,2440,8366 +2504,2969,7225,25810,12571,2653,12859,5442,2400,8005 +2505,2884,6931,27430,11769,2548,11954,5221,2270,7490 +2506,2944,6962,28020,11394,2594,11581,5155,2280,7313 +2507,3048,7240,28150,11539,2761,12056,5403,2430,7728 +2508,3122,7440,27670,11809,2909,12707,5813,2650,8295 +2509,3161,7550,27940,11707,2929,12652,6021,2730,8439 +2510,3082,7519,27810,11382,2812,12063,5814,2640,8173 +2511,3027,7320,27750,10977,2616,11757,5592,2420,7737 +2512,2958,7233,28090,11243,2514,12640,5611,2380,7762 +2513,3082,7702,28700,12100,2618,13683,5929,2600,8172 +2514,3288,7999,29360,12642,2672,14555,6136,2720,8325 +2515,3227,7938,28770,12629,2672,14668,6133,2720,8247 +2516,3147,7867,27720,12597,2685,14662,6045,2710,8317 +2517,3013,7706,26310,12298,2604,14155,5909,2610,8251 +2518,2947,7857,25070,12420,2631,14145,5944,2650,8318 +2519,2889,7786,23970,12312,2600,14168,5951,2640,8126 +2520,2862,7737,22260,12133,2608,14250,5884,2600,8180 +2521,2879,7918,21390,12163,2655,14349,5904,2630,8226 +2522,2975,8112,21300,12489,2689,14453,5985,2640,8443 +2523,3167,8271,21610,12659,2722,14478,6010,2670,8740 +2524,3164,8080,21650,12428,2677,14201,5930,2630,8657 +2525,3051,7773,21590,11984,2593,13783,5739,2540,8406 +2526,2895,7371,21610,11510,2480,13137,5436,2400,8031 +2527,2810,7058,22520,10829,2377,12468,5155,2250,7678 +2528,2795,6895,24060,10567,2329,12078,5014,2210,7439 +2529,2795,6562,24490,9957,2221,11252,4818,2110,7066 +2530,2903,6653,24760,9710,2274,10897,4754,2120,6959 +2531,2980,6912,26080,10028,2487,11397,5054,2280,7332 +2532,3087,7109,26880,10342,2630,11916,5540,2490,7927 +2533,3117,7182,26500,10358,2657,11858,5704,2580,8213 +2534,3085,7111,25650,9978,2544,11357,5583,2510,8012 +2535,3055,6866,24810,9485,2324,10896,5228,2290,7285 +2536,2983,6918,25240,9795,2247,11191,5000,2170,6949 +2537,3136,7169,26030,10358,2230,11809,4963,2160,6910 +2538,3207,7250,27330,10680,2294,12549,4876,2200,7246 +2539,3175,7438,27200,10732,2303,12525,4810,2260,7330 +2540,3208,7452,26400,10798,2358,12391,4914,2270,7504 +2541,3194,7233,25270,10676,2309,12508,4930,2250,7518 +2542,3117,7194,23920,10610,2283,12434,5038,2270,7393 +2543,3052,7141,22830,10443,2275,12224,4848,2270,7202 +2544,2989,6943,21490,10290,2236,12099,5061,2280,7254 +2545,3038,6991,20790,10453,2321,12544,5154,2290,7311 +2546,3172,7516,20920,10824,2432,12873,5485,2420,7700 +2547,3315,8058,21490,11572,2556,13627,5759,2510,8125 +2548,3311,7956,21980,11620,2567,13761,5764,2510,8270 +2549,3199,7674,22650,11346,2510,13386,5559,2440,8135 +2550,3048,7369,23700,10988,2422,12918,5361,2330,7833 +2551,2921,6978,25470,10419,2322,12265,5043,2190,7487 +2552,2930,6814,28810,10240,2260,11782,4811,2160,7118 +2553,2892,6608,31400,9681,2193,11035,4696,2080,6819 +2554,2985,6730,32230,9531,2265,10753,4797,2120,6769 +2555,3093,7059,32460,9960,2487,11297,5074,2290,7214 +2556,3209,7343,30800,10503,2669,11969,5635,2550,7951 +2557,3254,7593,31710,10805,2758,12189,5906,2670,8422 +2558,3270,7820,31070,11150,2778,12129,5951,2680,8576 +2559,3336,7927,30510,11725,2768,12527,5911,2650,8402 +2560,3292,8297,30530,12836,2842,13482,5707,2590,8043 +2561,3576,9110,30260,14723,3105,14997,5903,2890,8349 +2562,3845,9741,31100,15936,3297,16102,6337,3050,8995 +2563,3844,9677,30590,15998,3363,16332,6359,3110,9136 +2564,3762,9610,29490,15834,3288,16220,6400,3140,9233 +2565,3519,9065,28080,14826,3169,15262,5948,2940,8841 +2566,3634,9484,26820,15580,3276,15866,6175,3050,9016 +2567,3591,9432,25420,15743,3273,15789,6109,3010,8983 +2568,3557,9230,23590,15179,3235,15383,6014,2930,8885 +2569,3566,9177,22730,15185,3210,15318,6093,2910,8879 +2570,3593,9185,22810,14792,3139,15040,6074,2830,8906 +2571,3657,9420,23210,15082,3181,15284,6098,2840,9035 +2572,3608,9193,23700,14795,3152,15098,6095,2830,9128 +2573,3434,8893,24150,14351,3062,14666,5940,2740,8821 +2574,3213,8385,25190,14041,2968,14304,5812,2590,8443 +2575,3052,7922,26960,13438,2887,13646,5590,2410,8149 +2576,3037,7665,29440,13220,2780,13173,5455,2360,7849 +2577,2972,7333,31760,12577,2688,12253,5258,2250,7370 +2578,3048,7474,32760,12290,2748,11813,5240,2270,7301 +2579,3158,7745,32080,12505,2953,12431,5484,2440,7718 +2580,3274,7965,30870,12859,3128,13016,5955,2690,8355 +2581,3304,8148,32090,12982,3213,13245,6262,2810,8745 +2582,3235,8370,31970,13066,3224,13203,6242,2810,8772 +2583,3230,8422,31730,13364,3156,13262,6180,2750,8411 +2584,3201,8419,31980,14002,3126,13963,6106,2740,8113 +2585,3400,9091,31440,15614,3324,15256,6286,3010,8363 +2586,3578,9640,32240,16735,3529,16211,6411,3110,8979 +2587,3590,9599,31550,16637,3520,16225,6327,3150,9069 +2588,3572,9483,30440,16541,3528,16159,6349,3110,9283 +2589,3400,8959,28870,15361,3372,15098,5924,2930,8967 +2590,3394,9359,27420,16036,3513,15929,6204,3070,9248 +2591,3247,9344,25840,16015,3516,15979,6071,3030,9478 +2592,3115,9094,23930,15827,3499,15776,6141,2950,9360 +2593,3198,9102,22930,15880,3514,15709,6387,2900,9290 +2594,3236,9105,22960,15678,3449,15569,6278,2850,9130 +2595,3381,9211,23390,15653,3440,15737,6280,2860,9268 +2596,3365,8971,23740,15134,3317,15330,6193,2820,9258 +2597,3203,8610,23990,14625,3189,14707,5970,2710,8835 +2598,3012,8136,24930,14135,3046,14143,5722,2540,8449 +2599,2821,7770,26310,13546,2947,13475,5409,2390,8166 +2600,2833,7523,29040,13131,2825,12927,5290,2350,7882 +2601,2749,7165,31510,12411,2681,11962,5138,2260,7404 +2602,2833,7238,32560,12054,2751,11603,5137,2260,7299 +2603,2936,7499,33120,12184,2938,12102,5480,2410,7639 +2604,3048,7746,31440,12505,3097,12683,5867,2630,8230 +2605,3126,7905,32180,12569,3108,12736,6103,2730,8547 +2606,3131,7991,31510,12534,3040,12414,5958,2690,8422 +2607,3165,7987,30850,12797,2932,12490,5850,2560,8039 +2608,3113,8097,31250,13630,2902,13674,5866,2610,7929 +2609,3391,8915,30680,15274,3169,15603,6299,2890,8342 +2610,3604,9359,31180,16553,3353,16565,6621,3070,8900 +2611,3605,9364,30460,16379,3293,16910,6553,3050,8967 +2612,3459,9413,29190,16179,3254,16537,6610,3060,9126 +2613,3307,9006,27590,14958,3047,15631,6108,2920,8710 +2614,3380,9284,26360,15949,3221,16509,6485,3030,9153 +2615,3327,9139,25030,16030,3210,16189,6556,3080,9265 +2616,3254,8869,23240,15758,3168,16065,6372,3050,9304 +2617,3254,8796,22310,15530,3129,16068,6333,3030,9388 +2618,3289,8507,22260,15077,3034,15831,6260,2940,9335 +2619,3420,8775,22620,15195,3053,15801,6336,2930,9470 +2620,3389,8650,22900,14670,3002,15298,6226,2850,9320 +2621,3227,8337,22930,14246,2915,14695,5955,2750,8877 +2622,3043,7880,23730,13720,2863,14122,5734,2580,8493 +2623,2841,7521,25660,13196,2764,13426,5466,2410,8162 +2624,2854,7302,28570,12804,2697,12820,5297,2360,7878 +2625,2783,7034,31120,12031,2606,11939,5077,2260,7452 +2626,2858,7133,32340,11745,2674,11596,5081,2250,7299 +2627,2977,7410,32930,11930,2880,12138,5440,2410,7642 +2628,3103,7680,31950,12268,3045,12710,5836,2630,8212 +2629,3152,7907,32770,12208,3071,12821,6041,2730,8555 +2630,3055,8010,32640,12136,3009,12522,5904,2690,8458 +2631,3091,7933,32280,12415,2898,12623,5760,2600,7984 +2632,3083,8028,32190,13241,2815,13640,5722,2620,7830 +2633,3370,8817,31350,15022,3055,15151,6000,2930,8122 +2634,3732,9397,31600,16205,3238,16095,6270,3050,8973 +2635,3752,9484,30800,16388,3274,16476,6265,3060,9421 +2636,3699,9521,29370,16377,3289,16644,6384,3060,9656 +2637,3394,9051,27710,15427,3130,15853,5990,2920,9324 +2638,3546,9298,26460,16221,3283,16659,6370,3080,9619 +2639,3447,9130,25060,16270,3281,16613,6288,3130,9595 +2640,3417,8920,23300,15907,3234,16344,6247,3080,9399 +2641,3404,8864,22340,15703,3212,16175,6323,3050,9419 +2642,3358,8559,22310,15047,3067,15496,6297,2910,9290 +2643,3458,8740,22690,15040,3042,15474,6232,2870,9364 +2644,3394,8555,22900,14575,2955,15128,6126,2840,9284 +2645,3218,8182,22760,14012,2843,14466,5914,2700,8873 +2646,3028,7747,23500,13515,2753,14002,5714,2540,8413 +2647,2872,7389,25610,12998,2713,13334,5404,2390,8129 +2648,2870,7212,28950,12681,2631,12770,5212,2330,7871 +2649,2782,6980,31740,11928,2544,11938,5180,2230,7388 +2650,2822,7011,32950,11489,2580,11574,5136,2230,7233 +2651,2988,7230,33760,11648,2773,12063,5447,2360,7577 +2652,3094,7438,32870,11970,2921,12638,5889,2590,8119 +2653,3143,7529,33860,12078,2954,12672,6090,2700,8460 +2654,3137,7456,33930,11961,2872,12268,6012,2640,8386 +2655,3212,7407,33740,11989,2769,12226,5777,2510,8021 +2656,3199,7751,32710,13089,2758,13219,5620,2520,7886 +2657,3375,8690,31500,14775,3018,14996,6016,2810,8393 +2658,3550,9277,31660,15995,3193,16085,6286,2960,8815 +2659,3553,9386,30640,16260,3227,16275,6234,3010,8992 +2660,3556,9457,29120,16331,3235,16334,6265,3080,8964 +2661,3379,9010,27420,15327,3033,15445,5895,2970,8643 +2662,3435,9307,26090,16034,3152,16185,6470,3160,9048 +2663,3299,9198,24850,16031,3180,16388,6336,3160,9047 +2664,3216,8826,23070,15656,3152,15996,6331,3060,9148 +2665,3235,8678,22070,15358,3121,15614,6212,2980,9020 +2666,3239,8400,21840,14571,3034,14922,6003,2810,9104 +2667,3374,8641,22100,14548,3038,14969,6031,2820,9150 +2668,3382,8489,22150,14156,3009,14757,6032,2750,9147 +2669,3201,8184,22030,13646,2913,14156,5933,2620,8769 +2670,3047,7767,21930,13167,2859,13606,5592,2490,8335 +2671,2894,7439,22750,12708,2757,13112,5278,2330,8068 +2672,2889,7222,24220,12453,2688,12630,5238,2280,7769 +2673,2808,6939,25440,11690,2552,11831,5069,2170,7261 +2674,2891,6999,25940,11243,2589,11393,4967,2160,7090 +2675,2986,7229,26390,11301,2778,11837,5199,2300,7383 +2676,3107,7496,26240,11516,2925,12458,5595,2510,7975 +2677,3126,7610,26150,11480,2986,12486,5814,2630,8300 +2678,3070,7577,25870,11186,2938,12054,5708,2610,8211 +2679,3040,7408,25740,10873,2760,11559,5414,2450,7636 +2680,3045,7451,25890,10984,2570,11881,5112,2370,7283 +2681,3228,7742,26370,11604,2599,12899,5062,2460,7459 +2682,3305,7952,27610,12063,2667,13664,5113,2510,7906 +2683,3251,8085,27620,12192,2690,13853,5216,2510,8086 +2684,3195,8106,26840,12178,2695,13884,5329,2500,8207 +2685,3065,7876,25580,11771,2624,13516,5242,2440,8167 +2686,3063,7785,24450,11625,2611,13529,5317,2480,8102 +2687,2988,7604,23380,11411,2546,13161,5239,2460,7961 +2688,2929,7428,21870,11289,2504,12861,5111,2410,7942 +2689,2956,7517,21040,11169,2517,12991,5219,2460,7915 +2690,3036,7674,20940,11308,2589,13211,5359,2460,8149 +2691,3185,8100,21500,11882,2685,13765,5552,2490,8271 +2692,3228,8047,21770,11862,2711,13973,5650,2520,8398 +2693,3105,7805,21550,11509,2663,13682,5516,2460,8112 +2694,2954,7448,21260,11191,2564,13107,5309,2350,7772 +2695,2851,7080,21950,10615,2484,12517,5053,2220,7466 +2696,2883,6893,23170,10372,2412,12081,4872,2200,7247 +2697,2796,6638,24600,9855,2303,11161,4696,2100,6821 +2698,2888,6691,25330,9689,2357,10920,4679,2110,6703 +2699,2996,6990,25940,9978,2553,11425,4943,2280,7046 +2700,3088,7267,25250,10357,2748,12008,5440,2520,7655 +2701,3088,7412,25040,10471,2817,12069,5711,2650,8092 +2702,3007,7357,24830,10262,2752,11611,5593,2600,8017 +2703,2947,7138,24520,10000,2561,11080,5243,2400,7428 +2704,2819,7100,24810,9901,2378,11089,4852,2210,6861 +2705,2978,7244,25890,10272,2352,11771,4633,2200,6813 +2706,3145,7439,27480,10686,2396,12375,4726,2270,7136 +2707,2992,7583,27740,10694,2371,12695,4804,2280,7397 +2708,2996,7599,26970,10846,2410,12725,4860,2270,7531 +2709,2977,7485,25830,10771,2392,12708,4861,2270,7588 +2710,2856,7339,24440,10573,2347,12546,4782,2290,7519 +2711,2767,7130,23260,10428,2294,12278,4704,2250,7379 +2712,2726,6986,21710,10280,2301,12230,4715,2220,7379 +2713,2773,7222,20910,10374,2346,12452,4922,2310,7448 +2714,2927,7595,21030,10728,2498,12941,5190,2320,7758 +2715,3168,8072,21580,11438,2634,13700,5554,2460,8213 +2716,3200,8091,22190,11532,2683,13891,5657,2480,8305 +2717,3094,7903,22730,11380,2616,13571,5338,2390,8019 +2718,2937,7541,23890,10977,2521,13033,5147,2280,7664 +2719,2789,7164,25440,10412,2438,12282,4900,2130,7379 +2720,2783,6968,28210,10159,2382,11865,4728,2090,7064 +2721,2709,6673,31110,9628,2273,10966,4556,2000,6680 +2722,2802,6819,31230,9495,2371,10684,4532,2020,6569 +2723,2918,7227,31890,9812,2595,11223,4974,2200,7031 +2724,3037,7544,29830,10368,2764,11926,5447,2460,7665 +2725,3073,7781,30940,10684,2859,12080,5821,2600,8082 +2726,3068,7909,30900,10981,2882,12032,5840,2610,8155 +2727,3092,7981,30300,11469,2825,12449,5730,2520,8016 +2728,3186,8183,30660,12432,2799,13619,5731,2500,8108 +2729,3508,9008,30960,14412,3053,15235,6010,2790,8492 +2730,3714,9594,32090,15621,3242,16007,6274,2890,8881 +2731,3681,9566,31460,15791,3266,15907,6309,2870,8899 +2732,3570,9671,30290,15633,3258,15568,6260,2910,8944 +2733,3371,9144,28720,14540,3081,14782,5841,2730,8643 +2734,3363,9463,27350,15423,3216,15655,6159,2880,9035 +2735,3327,9325,25700,15515,3234,15837,6110,2930,9081 +2736,3236,9085,23740,15305,3192,15722,6132,2890,9179 +2737,3223,9000,22790,15151,3213,15746,6247,2930,9339 +2738,3225,8845,22880,14823,3164,15566,6267,2900,9400 +2739,3365,9201,23400,15154,3219,15971,6380,2980,9671 +2740,3393,9081,23890,14693,3172,15786,6302,2930,9661 +2741,3237,8778,24240,14265,3085,15234,6136,2820,9325 +2742,3075,8342,25360,13822,2999,14637,5928,2640,8855 +2743,2895,7876,26800,13266,2923,13885,5573,2460,8420 +2744,2888,7647,29330,12817,2821,13121,5395,2380,7991 +2745,2775,7430,31660,12093,2699,12217,5206,2250,7458 +2746,2807,7588,32520,11809,2795,11933,5158,2250,7332 +2747,2958,7905,32570,11997,3000,12416,5511,2420,7689 +2748,3057,8198,31600,12371,3209,13032,5967,2670,8395 +2749,3065,8385,31840,12531,3277,13168,6202,2790,8781 +2750,3074,8506,32160,12621,3245,13166,6222,2810,8834 +2751,3155,8521,31780,12989,3185,13621,6247,2730,8695 +2752,3164,8566,31740,13721,3030,14591,6298,2700,8769 +2753,3377,9358,31660,15447,3228,16171,6844,3020,9317 +2754,3573,9805,32020,16505,3379,17047,7188,3090,9719 +2755,3562,9841,31220,16404,3366,16969,7071,3050,9793 +2756,3507,9777,30030,16201,3357,16890,6986,3070,9781 +2757,3265,9206,28410,15255,3153,15983,6732,2900,9493 +2758,3288,9356,26960,16175,3299,16743,6982,3080,9692 +2759,3155,9168,25470,16276,3303,16721,6996,3120,9741 +2760,3054,8813,23600,15969,3287,16643,6977,3120,9739 +2761,3097,8986,22600,15950,3313,16679,7038,3180,9806 +2762,3107,8829,22550,15612,3260,16355,7026,3090,9941 +2763,3262,9142,22930,15598,3291,16383,6944,3080,10054 +2764,3252,8928,23190,15070,3198,15908,6724,3000,9821 +2765,3085,8582,23740,14532,3074,15258,6531,2870,9480 +2766,2901,8124,25220,14028,2986,14504,6164,2690,9007 +2767,2764,7612,27580,13391,2871,13787,5864,2490,8511 +2768,2742,7301,30420,12920,2763,13077,5549,2420,8078 +2769,2606,7047,32270,12170,2635,12074,5334,2290,7573 +2770,2667,7075,32590,11836,2679,11640,5302,2310,7397 +2771,2789,7381,32540,11936,2865,12083,5558,2460,7733 +2772,2909,7596,31280,12366,3028,12637,5892,2670,8349 +2773,2970,7775,32290,12356,3055,12741,6092,2750,8675 +2774,3042,7875,32180,12454,2982,12523,6103,2720,8702 +2775,3095,8072,32170,12838,2916,12972,6038,2630,8436 +2776,3123,8340,32450,13695,2954,14295,5966,2680,8308 +2777,3412,9234,32010,15529,3225,16195,6320,3020,8567 +2778,3612,9720,32100,16691,3411,17249,6464,3050,9103 +2779,3626,9647,31220,16700,3437,17192,6391,3050,9232 +2780,3601,9643,29840,16581,3462,16884,6443,3080,9324 +2781,3404,9140,28260,15542,3262,15963,5910,2890,9094 +2782,3528,9531,26890,16164,3410,16369,6210,2960,9134 +2783,3495,9511,25320,16140,3405,16313,6185,2970,9055 +2784,3414,9393,23480,15725,3347,16294,6033,2880,8929 +2785,3413,9451,22480,15426,3343,16184,6116,2880,8914 +2786,3354,9272,22480,14804,3267,15766,6096,2830,8981 +2787,3401,9332,22900,14901,3292,15753,6181,2820,9083 +2788,3350,9009,23250,14647,3224,15603,6172,2820,9245 +2789,3177,8683,23470,14182,3109,15086,6032,2720,8930 +2790,2999,8207,24170,13756,2979,14403,5830,2580,8580 +2791,2806,7706,25390,13146,2911,13797,5569,2410,8152 +2792,2773,7429,28010,12642,2796,13099,5351,2350,7845 +2793,2673,7043,30550,11898,2678,12125,5104,2230,7372 +2794,2746,7121,31480,11571,2741,11838,5176,2240,7312 +2795,2858,7399,31730,11685,2907,12272,5488,2420,7765 +2796,2971,7663,30480,12078,3093,12874,5965,2670,8430 +2797,3005,7834,30990,12203,3140,13002,6266,2800,8870 +2798,2991,7941,30380,12273,3117,12816,6235,2800,8944 +2799,3037,8076,29910,12613,3035,13003,6170,2720,8719 +2800,3060,8327,29990,13208,2943,13596,5854,2610,8266 +2801,3320,9169,29640,15070,3119,15146,5920,2820,8485 +2802,3531,9625,30120,15716,3302,16209,6148,2940,9019 +2803,3532,9784,29820,15721,3300,16290,6100,2950,9163 +2804,3481,9785,28670,15651,3322,16162,6053,2950,9270 +2805,3267,9274,27190,14607,3096,15218,5717,2780,8815 +2806,3260,9455,25870,15253,3238,15708,5977,2930,8984 +2807,3148,9165,24450,15150,3181,15635,5949,2920,8963 +2808,3025,8837,22760,14781,3089,15329,5933,2860,8945 +2809,3071,8686,21810,14587,3037,15210,5903,2820,8868 +2810,3083,8448,21820,14071,2959,14841,5825,2680,8829 +2811,3254,8670,22250,14100,2979,15017,5856,2760,8986 +2812,3322,8610,22510,13875,2961,15026,5856,2780,9096 +2813,3155,8306,22520,13402,2885,14464,5733,2670,8797 +2814,2954,7906,23300,13015,2802,13922,5557,2520,8374 +2815,2812,7476,24970,12518,2737,13364,5321,2360,8038 +2816,2807,7285,27760,12134,2664,12725,5196,2300,7737 +2817,2712,7017,29940,11352,2547,11783,5052,2190,7322 +2818,2737,7088,30830,10968,2625,11482,5056,2210,7200 +2819,2887,7400,31270,11201,2811,11977,5329,2390,7555 +2820,2982,7697,30160,11601,2983,12616,5808,2620,8167 +2821,3020,7851,30650,11704,3043,12720,5996,2760,8594 +2822,2990,7978,30300,11646,3006,12497,5910,2740,8619 +2823,3108,7903,29950,11828,2892,12402,5733,2620,8277 +2824,3179,7888,29490,12532,2781,13030,5571,2540,7955 +2825,3347,8625,28750,14009,2950,14441,5762,2780,8246 +2826,3445,9152,29220,14902,3108,15457,5936,2930,8945 +2827,3418,9211,28840,14997,3142,15484,5911,2950,9174 +2828,3494,9155,27540,14959,3141,15448,5970,2930,9253 +2829,3266,8675,26020,13982,2955,14683,5626,2780,8652 +2830,3320,8929,25000,14557,3044,15077,5971,2940,9059 +2831,3330,8801,23740,14449,3026,15020,5904,2930,9063 +2832,3255,8474,22090,13963,2952,14667,5764,2890,8912 +2833,3210,8438,21100,13615,2914,14540,5870,2820,8840 +2834,3171,8053,21010,13019,2798,14127,5857,2740,8879 +2835,3217,8189,21330,13067,2750,14159,5789,2700,8950 +2836,3189,8112,21310,12985,2720,14140,5767,2690,8904 +2837,3007,7750,20700,12533,2627,13666,5608,2580,8553 +2838,2841,7324,20390,12155,2555,13086,5352,2440,8167 +2839,2682,6999,21310,11775,2499,12568,5112,2310,7856 +2840,2655,6802,23190,11370,2431,12062,4955,2280,7540 +2841,2572,6498,24350,10673,2316,11195,4768,2160,7131 +2842,2617,6527,25570,10298,2362,10745,4697,2140,6960 +2843,2725,6769,26380,10424,2551,11182,5037,2280,7255 +2844,2827,7057,25470,10752,2684,11831,5434,2500,7793 +2845,2833,7135,24980,10681,2727,11797,5630,2590,8045 +2846,2807,7052,24810,10235,2620,11245,5323,2480,7842 +2847,2671,6743,24960,9723,2412,10656,4957,2230,7252 +2848,2637,6687,25120,9955,2234,10901,4894,2150,7229 +2849,2785,6968,25550,10611,2266,11800,4975,2310,7435 +2850,2861,7294,26790,11053,2322,12487,5069,2340,7828 +2851,2928,7383,26600,11220,2362,12656,5129,2360,7908 +2852,2811,7514,25790,11133,2392,12453,5128,2340,8008 +2853,2737,7425,24570,10758,2383,12502,5071,2330,7915 +2854,2737,7268,23260,10821,2289,12619,5152,2320,7943 +2855,2739,7142,22350,10664,2249,12479,5089,2300,7952 +2856,2731,6949,20910,10585,2221,12628,5071,2300,7971 +2857,2804,6929,20130,10738,2233,12704,5236,2390,8040 +2858,2920,7103,20160,11063,2293,13031,5365,2490,8322 +2859,3054,7423,20530,11380,2355,13400,5524,2550,8531 +2860,3062,7359,20550,11220,2332,13243,5437,2490,8398 +2861,2930,7075,20420,10905,2262,12823,5254,2400,8104 +2862,2809,6695,20370,10475,2200,12169,5025,2280,7720 +2863,2697,6359,21400,9948,2119,11616,4729,2130,7338 +2864,2666,6179,23170,9690,2084,11195,4548,2110,7030 +2865,2608,5926,24060,9172,2006,10525,4440,2040,6679 +2866,2656,5983,24330,8962,2077,10230,4427,2050,6534 +2867,2787,6251,24270,9280,2264,10627,4661,2200,6899 +2868,2865,6469,24710,9613,2394,11183,5045,2380,7469 +2869,2879,6571,24920,9611,2399,11220,5118,2450,7753 +2870,2873,6480,24630,9328,2267,10584,4972,2360,7626 +2871,2769,6387,24600,8868,2035,10244,4573,2110,6917 +2872,2684,6487,25070,9171,1986,10546,4399,2030,6676 +2873,2772,6830,25710,9642,2038,11109,4459,2100,6900 +2874,2764,7064,26850,10043,2068,11408,4517,2120,7072 +2875,2587,7050,26580,10098,2097,11587,4299,2110,7026 +2876,2583,7181,25660,10226,2087,11593,4291,2110,7140 +2877,2609,7085,24240,10068,2070,11508,4219,2100,7249 +2878,2515,6926,22820,9957,2029,11308,4201,2020,7103 +2879,2546,6870,21780,9950,2021,11234,4137,2010,7067 +2880,2604,6789,20330,9866,2033,11330,4246,2000,6947 +2881,2658,6893,19490,9870,2102,11315,4411,2100,7070 +2882,2749,7142,19590,10260,2159,11789,4743,2210,7490 +2883,2912,7434,20040,10840,2226,12636,4980,2290,7788 +2884,3016,7427,20300,10910,2252,12860,5139,2370,7963 +2885,2876,7184,20490,10635,2195,12513,5006,2310,7759 +2886,2726,6845,21240,10190,2110,11951,4794,2200,7474 +2887,2574,6455,23040,9668,2011,11347,4514,2050,7119 +2888,2554,6256,25180,9327,1965,10891,4330,2020,6821 +2889,2448,6037,26310,8736,1926,10115,4207,1930,6436 +2890,2480,6155,26920,8653,1996,9845,4220,1960,6328 +2891,2608,6437,27750,9011,2213,10416,4525,2140,6768 +2892,2725,6720,27510,9475,2386,11074,5038,2400,7488 +2893,2743,6863,27930,9705,2477,11213,5266,2540,7921 +2894,2788,6917,27880,9679,2455,11096,5251,2530,7965 +2895,2815,6953,27630,9826,2379,11061,5106,2430,7638 +2896,2813,7058,27550,10244,2288,11720,4921,2360,7362 +2897,3021,7756,27320,11199,2438,12830,4917,2510,7553 +2898,3187,8243,27880,12001,2594,13666,5138,2640,8049 +2899,3216,8299,27610,12177,2660,13778,5259,2670,8213 +2900,3172,8504,26500,12172,2676,13863,5427,2670,8297 +2901,3031,8080,24980,11768,2526,13445,5246,2520,8091 +2902,2990,8226,23590,12000,2586,13864,5316,2690,8193 +2903,2938,8122,22390,11935,2577,13842,5240,2670,8184 +2904,2877,7811,20810,11741,2576,13784,5108,2600,8152 +2905,2947,7791,19910,11503,2571,13826,5195,2680,8268 +2906,3001,7771,19960,11313,2536,13753,5181,2600,8326 +2907,3073,7915,20410,11625,2570,13831,5259,2570,8306 +2908,3118,7763,20830,11550,2555,13650,5339,2560,8380 +2909,2947,7467,20940,11159,2460,13120,5154,2460,8144 +2910,2782,7039,21300,10616,2359,12468,4915,2320,7794 +2911,2630,6606,22540,10012,2241,11845,4709,2160,7403 +2912,2581,6385,25000,9683,2169,11285,4457,2120,7087 +2913,2467,6128,27080,9099,2060,10417,4337,2020,6640 +2914,2529,6149,27930,8893,2111,10116,4303,2020,6558 +2915,2676,6439,28250,9214,2318,10654,4591,2190,6996 +2916,2783,6708,27650,9725,2485,11271,5041,2450,7657 +2917,2820,6890,27650,9936,2543,11393,5369,2590,8115 +2918,2865,6961,26930,9899,2521,11220,5371,2600,8158 +2919,2789,6984,26530,10073,2434,11217,5199,2470,7790 +2920,2701,7250,26680,10316,2326,11653,4851,2310,7476 +2921,2881,7878,26810,11157,2439,12697,4828,2500,7665 +2922,3075,8472,27230,11764,2593,13463,4953,2600,8016 +2923,3099,8697,27130,11877,2624,13566,5015,2600,8190 +2924,3090,8767,26090,11876,2651,13502,5128,2600,8292 +2925,2932,8363,24690,11329,2524,13047,4947,2480,8081 +2926,2899,8332,23330,11620,2587,13350,5048,2620,8287 +2927,2781,8105,22170,11467,2545,13218,4946,2630,8280 +2928,2726,7875,20520,11242,2481,13083,4963,2550,8215 +2929,2877,7728,19690,11224,2493,13135,5111,2550,8247 +2930,2912,7512,19700,10975,2445,13039,5074,2500,8164 +2931,2976,7712,20130,11253,2447,13260,5205,2490,8243 +2932,3061,7683,20380,11291,2461,13388,5243,2500,8290 +2933,2899,7397,19860,10967,2367,12926,5035,2390,7997 +2934,2763,7038,19480,10450,2264,12239,4761,2270,7636 +2935,2621,6664,20040,9730,2162,11582,4564,2130,7364 +2936,2618,6426,21310,9522,2127,11089,4359,2090,7062 +2937,2503,6163,22940,8934,2039,10273,4240,1970,6616 +2938,2562,6222,24190,8644,2091,9946,4235,1980,6528 +2939,2688,6447,24790,8896,2266,10442,4506,2150,6898 +2940,2807,6746,23700,9402,2460,11106,4980,2390,7572 +2941,2777,6879,23220,9535,2501,11164,5234,2510,7917 +2942,2745,6779,23410,9235,2439,10651,5098,2460,7767 +2943,2688,6604,23510,8955,2247,10134,4770,2250,7121 +2944,2696,6588,23580,9172,2087,10225,4511,2080,6782 +2945,2780,6694,24200,9653,2041,10763,4413,2080,6752 +2946,2759,6961,25210,9932,2109,11314,4382,2150,7057 +2947,2712,6996,25320,10064,2102,11538,4452,2160,7178 +2948,2641,7064,24500,10203,2140,11740,4513,2160,7246 +2949,2637,6902,23370,10138,2131,11756,4505,2180,7340 +2950,2523,6746,22180,9962,2105,11641,4454,2210,7301 +2951,2535,6579,21170,9837,2027,11391,4447,2170,7195 +2952,2547,6526,19680,9757,2017,11370,4415,2110,7185 +2953,2653,6584,18880,9780,2101,11616,4733,2190,7169 +2954,2746,6745,18950,9908,2135,11876,4787,2200,7560 +2955,2891,7050,19370,10308,2180,12350,4994,2280,7855 +2956,2967,7060,19550,10469,2202,12541,5055,2300,7897 +2957,2807,6829,19160,10187,2134,12222,4835,2230,7677 +2958,2695,6510,18900,9713,2051,11702,4650,2130,7302 +2959,2570,6157,19680,9180,1965,11112,4374,1990,7043 +2960,2541,5962,21270,8985,1920,10615,4215,1970,6800 +2961,2474,5712,22920,8418,1838,9840,4133,1880,6433 +2962,2511,5755,24070,8212,1889,9525,4125,1880,6330 +2963,2689,6029,24670,8486,2088,10000,4350,2040,6702 +2964,2745,6326,24740,8835,2240,10605,4825,2250,7266 +2965,2727,6492,24390,8920,2298,10746,5032,2350,7593 +2966,2694,6395,23910,8650,2223,10246,4829,2290,7444 +2967,2675,6271,23760,8406,2036,9675,4408,2000,6809 +2968,2634,6369,23980,8674,1917,9970,4284,1940,6530 +2969,2733,6546,24500,9199,1920,10729,4198,2090,6635 +2970,2771,6871,25440,9634,2000,11216,4361,2180,6927 +2971,2781,7083,25500,9866,2046,11495,4405,2200,7019 +2972,2768,7188,24680,9899,2088,11627,4563,2230,7217 +2973,2719,7187,23440,9779,2100,11574,4542,2230,7221 +2974,2621,6991,22110,9810,2063,11412,4500,2220,7182 +2975,2581,6778,21140,9668,2022,11296,4415,2190,7080 +2976,2531,6694,19700,9609,1986,11224,4411,2170,7249 +2977,2656,6735,18880,9658,2056,11587,4538,2170,7359 +2978,2710,6797,18960,9747,2114,11817,4529,2180,7767 +2979,2833,7012,19420,10194,2155,12219,4853,2290,7937 +2980,2889,7037,19540,10303,2169,12514,4937,2310,7915 +2981,2738,6767,19030,9918,2106,12135,4755,2240,7662 +2982,2620,6416,19000,9524,2008,11602,4614,2120,7335 +2983,2455,6134,19950,9023,1907,11075,4351,1990,7079 +2984,2448,5924,21490,8794,1852,10633,4165,1960,6816 +2985,2394,5688,23180,8261,1781,9919,4072,1880,6490 +2986,2414,5720,24450,8043,1824,9572,4075,1870,6351 +2987,2554,6005,25190,8356,2012,10041,4357,2010,6729 +2988,2644,6274,25330,8698,2165,10658,4757,2220,7272 +2989,2644,6420,25030,8774,2203,10743,4884,2330,7570 +2990,2648,6276,24650,8490,2107,10199,4855,2270,7407 +2991,2525,6175,24580,8287,1939,9733,4429,2010,6770 +2992,2494,6278,24960,8619,1882,10057,4262,1900,6535 +2993,2619,6625,24920,9163,1900,10779,4308,1970,6668 +2994,2688,6901,25930,9661,1986,11345,4310,2050,7045 +2995,2724,7160,25820,9809,2023,11459,4305,2110,7307 +2996,2776,7257,24960,9809,2044,11785,4451,2170,7483 +2997,2728,7308,23760,9797,2036,11866,4428,2200,7465 +2998,2649,7191,22550,9729,2026,11755,4510,2230,7487 +2999,2560,6965,21610,9685,1982,11635,4598,2250,7317 +3000,2464,6806,20100,9617,1951,11641,4578,2220,7394 +3001,2614,6865,19290,9616,2002,11819,4781,2260,7404 +3002,2710,6938,19270,9847,2082,12215,4997,2280,7784 +3003,2828,7201,19650,10373,2153,12601,5126,2320,8046 +3004,2856,7097,19750,10442,2160,12691,5157,2320,8110 +3005,2766,6823,19270,10104,2088,12311,4985,2250,7830 +3006,2634,6475,19310,9760,1986,11708,4762,2130,7501 +3007,2507,6151,20340,9257,1926,11222,4515,2000,7222 +3008,2467,5993,22260,8967,1872,10819,4380,1980,6938 +3009,2382,5745,24150,8463,1801,10089,4197,1900,6574 +3010,2412,5787,24540,8243,1825,9676,4116,1900,6396 +3011,2533,6006,26310,8487,2016,10114,4374,2030,6717 +3012,2623,6255,26440,8890,2140,10676,4785,2240,7295 +3013,2603,6352,26680,8974,2158,10756,4943,2340,7574 +3014,2610,6186,26100,8700,2051,10247,4848,2290,7415 +3015,2562,6075,25920,8647,1911,9765,4512,2060,6870 +3016,2523,6214,25810,9102,1887,10292,4258,2010,6851 +3017,2700,6596,25960,9913,1984,11413,4527,2150,7238 +3018,2679,6871,26840,10511,2086,12265,4669,2270,7706 +3019,2686,6948,26740,10494,2113,12630,4844,2350,7885 +3020,2798,6936,25720,10462,2195,12927,4808,2350,7939 +3021,2730,6895,24380,10575,2149,12808,4864,2320,8013 +3022,2648,6942,23420,10382,2125,13016,5001,2310,7824 +3023,2611,6883,22440,10278,2138,12831,4989,2330,7755 +3024,2633,6751,21000,10411,2131,12860,5056,2290,7847 +3025,2700,6871,20070,10494,2161,12952,5119,2310,7954 +3026,2792,7182,19980,10804,2220,13218,5273,2370,8224 +3027,2927,7362,20270,11142,2258,13307,5404,2410,8338 +3028,2971,7226,20330,11061,2228,13151,5346,2390,8270 +3029,2860,6932,20130,10625,2179,12660,4975,2310,7910 +3030,2694,6583,20100,10276,2082,11988,4740,2190,7542 +3031,2549,6340,21210,9642,1992,11491,4631,2080,7330 +3032,2528,6182,22930,9371,1965,11127,4467,2070,7077 +3033,2455,5948,24450,8863,1901,10376,4293,1970,6686 +3034,2488,5949,24980,8486,1931,10044,4238,1950,6527 +3035,2609,6206,25340,8763,2093,10355,4446,2070,6798 +3036,2725,6453,25460,9152,2215,10845,4825,2270,7351 +3037,2688,6571,25280,9260,2256,10884,5064,2380,7697 +3038,2682,6488,25190,8982,2143,10467,4890,2320,7505 +3039,2531,6363,25260,8769,1961,10343,4604,2120,6861 +3040,2439,6506,25580,9174,1927,10970,4420,1990,6704 +3041,2526,6822,26490,10147,2028,11794,4642,2080,7100 +3042,2655,7062,27210,10710,2110,12458,4822,2140,7533 +3043,2744,7071,26840,10953,2150,12788,5002,2180,7649 +3044,2728,7115,25920,11028,2194,12950,4952,2230,7740 +3045,2630,7104,24650,10902,2186,12947,4889,2190,7837 +3046,2529,7128,23290,10837,2158,12747,4870,2180,7781 +3047,2418,7044,22250,10832,2144,12686,4830,2190,7703 +3048,2394,7104,20780,10715,2123,12662,4979,2200,7772 +3049,2509,7304,20030,10779,2213,12846,5122,2290,7896 +3050,2684,7658,20030,11259,2318,13327,5431,2410,8327 +3051,2842,7848,20730,11503,2391,13645,5603,2480,8508 +3052,2970,7760,21210,11284,2375,13442,5501,2430,8358 +3053,2824,7532,21920,10960,2303,12983,5274,2350,8090 +3054,2661,7142,23490,10532,2215,12377,4957,2210,7684 +3055,2523,6766,25550,9925,2111,11772,4686,2070,7372 +3056,2472,6504,27730,9700,2068,11297,4510,2040,7079 +3057,2390,6322,29740,9212,2034,10549,4403,1960,6708 +3058,2476,6417,30220,8936,2093,10227,4330,1950,6554 +3059,2617,6744,30370,9176,2315,10632,4630,2100,6959 +3060,2724,7110,29080,9634,2484,11238,5099,2340,7598 +3061,2768,7343,30320,9906,2558,11439,5387,2470,8023 +3062,2768,7567,30520,10027,2522,11323,5347,2480,8106 +3063,2765,7812,29970,10424,2452,11626,5287,2380,7839 +3064,2883,8139,30090,11767,2515,12536,5244,2360,7774 +3065,3134,8986,29830,13562,2806,13984,5546,2650,8199 +3066,3310,9418,30330,14921,3045,15012,5876,2780,8753 +3067,3260,9526,30220,15330,3122,15088,6047,2900,8795 +3068,3212,9417,29060,15445,3081,15336,6034,2920,8960 +3069,3115,8989,27440,14302,2904,14412,5781,2780,8597 +3070,3223,9301,26140,15133,3074,14917,5961,2910,8853 +3071,3211,9224,24680,15095,3034,14900,5916,2840,8781 +3072,3188,9015,22930,14749,3003,14599,5763,2740,8773 +3073,3211,9063,21930,14499,2991,14693,5759,2680,8552 +3074,3149,8922,21840,13909,2908,14243,5744,2600,8714 +3075,3211,9006,22330,14102,2916,14589,5705,2680,8825 +3076,3258,9104,22720,13942,2909,14625,5843,2700,8994 +3077,3097,8791,22830,13490,2830,14082,5662,2600,8645 +3078,2914,8381,23700,13056,2725,13607,5463,2460,8308 +3079,2755,7878,25080,12655,2670,13092,5123,2290,7930 +3080,2681,7572,27840,12320,2578,12516,4992,2260,7604 +3081,2585,7317,30140,11488,2475,11535,4778,2150,7119 +3082,2644,7405,31040,11237,2516,11213,4814,2140,6982 +3083,2822,7723,31340,11306,2680,11722,5085,2300,7358 +3084,2916,7971,30120,11571,2880,12448,5568,2550,8028 +3085,2934,8085,30640,11771,2947,12712,5847,2700,8465 +3086,3012,8239,30050,11815,2967,12464,5915,2700,8526 +3087,3095,8267,29600,12205,2854,12314,5732,2590,8231 +3088,3029,8292,29680,12962,2749,13051,5397,2480,7983 +3089,3316,9012,29460,14687,2945,14525,5621,2760,8279 +3090,3429,9488,29880,15807,3128,15448,5986,2900,8901 +3091,3459,9541,29820,15983,3179,15720,6064,2940,9088 +3092,3436,9547,28740,16014,3201,15862,6153,2940,9191 +3093,3309,9045,27240,14936,3021,15188,5781,2800,8938 +3094,3399,9247,25930,15707,3146,15653,6112,2950,9152 +3095,3273,9071,24550,15676,3132,15584,6014,2930,9144 +3096,3147,8772,22730,15332,3051,15438,5845,2860,9015 +3097,3180,8843,21830,15214,3042,15419,6079,2880,9060 +3098,3138,8533,21900,14534,2952,15025,5950,2840,8959 +3099,3173,8534,22360,14404,2938,14967,5833,2810,8958 +3100,3222,8604,22690,14217,2896,14831,5922,2770,8995 +3101,3054,8355,22730,13828,2819,14266,5803,2680,8653 +3102,2868,7947,23310,13421,2758,13781,5563,2520,8271 +3103,2726,7562,24770,12951,2654,13120,5213,2370,7950 +3104,2680,7303,27660,12590,2598,12554,5035,2310,7599 +3105,2592,6992,30140,11855,2499,11690,4841,2210,7174 +3106,2615,7077,31130,11514,2547,11258,4803,2190,7025 +3107,2761,7384,31650,11632,2754,11786,5096,2350,7415 +3108,2892,7680,30630,12081,2929,12386,5552,2600,8068 +3109,2891,7812,31500,12243,2982,12541,5820,2730,8508 +3110,2920,7939,31310,12151,2946,12281,5807,2730,8524 +3111,2934,7902,30880,12470,2834,12246,5611,2620,8143 +3112,3026,7942,30390,13225,2766,13031,5381,2500,7782 +3113,3219,8737,29620,14923,2951,14572,5634,2760,8273 +3114,3359,9289,30130,16122,3160,15680,5919,2930,8877 +3115,3286,9396,29810,16197,3213,15993,6041,2990,9087 +3116,3299,9433,28580,16146,3231,16087,6195,2990,9268 +3117,3133,8917,27140,15131,3056,15340,5826,2850,8892 +3118,3223,9155,25840,15958,3168,16183,6104,3030,9197 +3119,3090,9044,24410,15990,3155,15901,6037,3000,9276 +3120,3044,8811,22670,15681,3082,15660,6027,2940,9236 +3121,3100,8799,21710,15581,3064,15754,6110,2950,9206 +3122,3063,8473,21710,14839,2955,15308,6012,2860,9020 +3123,3115,8444,22100,14682,2949,15102,5993,2800,9033 +3124,3190,8511,22620,14411,2906,14910,5862,2770,9055 +3125,3037,8222,22430,13891,2825,14310,5752,2660,8702 +3126,2864,7803,23150,13399,2763,13632,5600,2520,8319 +3127,2734,7476,25000,12923,2669,13141,5311,2360,7909 +3128,2685,7172,28010,12540,2587,12564,5142,2310,7705 +3129,2587,6923,30760,11809,2484,11744,4899,2200,7248 +3130,2621,6985,31900,11410,2524,11315,4843,2170,7075 +3131,2766,7330,32410,11527,2704,11766,5113,2310,7427 +3132,2891,7619,31390,11911,2882,12495,5605,2540,8050 +3133,2913,7780,32290,11983,2936,12657,5852,2690,8419 +3134,2937,7895,32060,11858,2915,12396,5791,2700,8391 +3135,2932,7846,31190,12299,2827,12351,5774,2610,7995 +3136,3025,7921,31070,13074,2721,13077,5639,2540,7755 +3137,3295,8883,30520,14831,2911,14609,5820,2840,8276 +3138,3496,9452,30690,16139,3126,15698,6109,3000,8911 +3139,3500,9540,30100,16373,3184,16091,6202,3070,9135 +3140,3410,9530,28860,16337,3211,16266,6399,3040,9343 +3141,3185,9184,27380,15297,3037,15446,6057,2880,9063 +3142,3265,9361,26070,16149,3180,16014,6424,3090,9323 +3143,3157,9296,24720,16071,3166,15995,6224,3090,9357 +3144,3116,8977,22860,15673,3089,15748,6140,3030,9195 +3145,3225,8945,21910,15414,3082,15731,6244,2990,9123 +3146,3214,8670,21920,14738,2998,15307,6121,2840,9060 +3147,3265,8628,22380,14567,2966,15135,6091,2810,9112 +3148,3345,8611,22660,14282,2936,14950,6034,2790,9076 +3149,3182,8314,22680,13844,2872,14325,5882,2670,8690 +3150,3016,7881,23620,13320,2770,13855,5684,2510,8328 +3151,2907,7516,25380,12941,2715,13304,5424,2350,8013 +3152,2887,7248,28180,12559,2647,12713,5247,2300,7713 +3153,2755,7056,30650,11805,2517,11845,5063,2180,7240 +3154,2809,7138,31570,11420,2564,11444,5067,2150,7075 +3155,2932,7432,31960,11525,2777,11911,5238,2300,7425 +3156,3056,7756,30860,11967,2940,12677,5702,2540,8006 +3157,3118,7907,31350,12121,3009,12812,5964,2700,8422 +3158,3177,8078,31340,12061,2996,12645,5948,2710,8403 +3159,3145,7946,30760,12393,2876,12578,5733,2600,8070 +3160,3227,7979,30640,13086,2785,13132,5491,2530,7870 +3161,3354,8832,30020,14810,2979,14476,5678,2810,8276 +3162,3520,9470,30150,16065,3159,15585,6020,3020,9002 +3163,3551,9569,29550,16273,3210,15876,6145,3060,9223 +3164,3506,9581,28340,16281,3214,16006,6192,3070,9436 +3165,3348,9000,26900,15234,3036,15274,5898,2920,9176 +3166,3464,9214,25620,16049,3161,16050,6315,3120,9492 +3167,3319,9173,24390,15939,3142,15994,6212,3110,9474 +3168,3297,8872,22670,15621,3069,15904,6192,3030,9198 +3169,3268,8861,21670,15279,3051,15688,6166,2930,9163 +3170,3180,8525,21640,14354,2940,14915,5962,2790,9042 +3171,3211,8412,21920,14275,2919,14976,6021,2790,9120 +3172,3299,8458,21970,14105,2895,14914,5958,2760,9057 +3173,3129,8174,21550,13608,2804,14342,5696,2650,8731 +3174,2954,7753,21610,13226,2737,13694,5498,2500,8292 +3175,2820,7455,22520,12834,2665,13207,5255,2340,8020 +3176,2797,7185,24500,12463,2568,12739,5074,2280,7724 +3177,2703,6896,26220,11654,2464,11881,4895,2160,7256 +3178,2750,6936,26600,11173,2476,11437,4847,2120,7028 +3179,2874,7206,26280,11298,2648,11869,5028,2240,7313 +3180,3018,7461,25980,11493,2809,12517,5424,2450,7870 +3181,2996,7531,25980,11401,2841,12517,5616,2570,8159 +3182,2949,7444,25740,10925,2735,11934,5420,2520,7992 +3183,2833,7209,26120,10604,2498,11307,4967,2250,7472 +3184,2748,7223,26350,10798,2372,11641,4827,2190,7417 +3185,2927,7595,26870,11418,2415,12716,5106,2370,7844 +3186,3048,7889,27610,11983,2499,13416,5359,2430,8131 +3187,3063,7829,27410,12032,2549,13804,5431,2480,8135 +3188,3033,7942,26510,11959,2578,13818,5479,2520,8220 +3189,2926,7638,25180,11634,2504,13645,5187,2450,8038 +3190,2892,7727,24050,11899,2504,13959,5326,2520,8089 +3191,2783,7577,23000,11853,2470,13927,5405,2490,8099 +3192,2733,7424,21510,11697,2459,13918,5393,2500,8136 +3193,2831,7538,20600,11772,2475,13981,5438,2560,8246 +3194,2865,7568,20530,11857,2507,14040,5505,2580,8373 +3195,2955,7688,20900,12107,2548,14207,5562,2620,8581 +3196,3038,7715,21000,11885,2527,14023,5539,2580,8490 +3197,2897,7443,20660,11588,2449,13622,5390,2490,8193 +3198,2749,7088,20270,11070,2353,13010,5194,2350,7863 +3199,2684,6796,21070,10559,2311,12348,4865,2210,7548 +3200,2631,6646,22620,10357,2259,11909,4663,2190,7313 +3201,2557,6348,23090,9796,2139,11180,4543,2060,6856 +3202,2597,6376,24370,9488,2184,10726,4476,2060,6742 +3203,2717,6649,24380,9704,2379,11179,4698,2190,7066 +3204,2808,6896,24440,10142,2552,11803,5142,2420,7666 +3205,2816,6968,24380,10265,2563,11871,5372,2530,7944 +3206,2768,6849,24610,9921,2443,11377,5212,2490,7792 +3207,2685,6606,24820,9387,2245,10933,4817,2210,6985 +3208,2649,6665,25390,9450,2167,11243,4639,2110,6537 +3209,2722,6970,26590,10201,2202,12065,4747,2190,6935 +3210,2822,7246,27610,10743,2275,12644,4764,2230,7343 +3211,2796,7330,27420,10766,2269,12811,4732,2310,7460 +3212,2819,7459,26630,10890,2298,12848,4786,2310,7598 +3213,2788,7372,25420,10904,2308,12892,4747,2250,7906 +3214,2694,7145,24060,10794,2286,12890,4754,2190,7689 +3215,2612,6982,22960,10731,2242,12803,4871,2180,7517 +3216,2582,7009,21490,10807,2265,12928,4790,2160,7568 +3217,2686,7197,20680,11068,2311,13167,4909,2240,7634 +3218,2801,7571,20740,11428,2378,13349,5203,2380,7956 +3219,2907,7796,21180,11593,2454,13694,5399,2460,8168 +3220,3001,7751,21530,11539,2476,13910,5402,2480,8186 +3221,2868,7498,21960,11246,2414,13497,5260,2410,7960 +3222,2698,7138,23520,10836,2333,12815,5052,2290,7668 +3223,2555,6798,25630,10373,2244,12204,4851,2150,7284 +3224,2532,6640,28410,10111,2180,11675,4654,2140,7006 +3225,2466,6435,30430,9558,2099,10909,4433,2030,6565 +3226,2508,6491,30590,9364,2138,10604,4376,2010,6411 +3227,2666,6762,30950,9630,2351,11149,4681,2150,6817 +3228,2778,7049,29680,10143,2522,11879,5179,2380,7454 +3229,2784,7225,31030,10425,2577,12086,5480,2510,7907 +3230,2819,7233,31150,10598,2518,11818,5433,2530,7933 +3231,2820,7330,30910,11071,2455,11905,5345,2420,7661 +3232,2923,7778,30750,12345,2527,13133,5257,2440,7536 +3233,3167,8599,30500,14231,2807,14731,5746,2770,8149 +3234,3348,9200,30790,15823,3060,15724,6209,2950,8990 +3235,3400,9243,30210,15983,3194,16053,6159,3090,9246 +3236,3362,9274,28950,15868,3236,16475,6394,3100,9513 +3237,3047,8786,27450,15048,3035,15853,6221,2930,9227 +3238,3188,9159,26240,16051,3184,16449,6602,3190,9557 +3239,3237,9073,24830,15976,3177,16565,6540,3130,9700 +3240,3217,8941,23010,15466,3108,16253,6265,3090,9612 +3241,3225,8931,22040,15268,3092,16042,6280,3010,9520 +3242,3178,8824,22050,14688,2992,15423,6257,2920,9452 +3243,3226,8761,22470,14564,2944,15299,6129,2840,9283 +3244,3217,8590,22710,14344,2866,15179,6025,2780,9193 +3245,3023,8233,22730,13836,2756,14461,5834,2670,8767 +3246,2843,7778,23450,13386,2678,13841,5580,2520,8351 +3247,2681,7467,25180,12963,2616,13229,5364,2370,8005 +3248,2638,7198,28210,12611,2543,12674,5140,2320,7638 +3249,2541,6932,31090,11799,2430,11795,4967,2190,7183 +3250,2588,6968,32090,11446,2458,11444,4855,2160,6979 +3251,2729,7226,32510,11520,2649,11869,5120,2280,7271 +3252,2853,7498,31410,11875,2799,12506,5563,2490,7812 +3253,2876,7580,32150,11994,2858,12652,5807,2640,8268 +3254,2861,7602,31930,11910,2812,12445,5720,2640,8237 +3255,2862,7622,31880,12255,2698,12536,5532,2540,7967 +3256,2930,7792,31620,13072,2663,13302,5286,2530,7831 +3257,3157,8619,30840,14974,2910,15046,5713,2850,8552 +3258,3329,9267,30690,16296,3176,16329,6167,3090,9341 +3259,3301,9322,30220,16504,3255,16726,6384,3150,9702 +3260,3312,9515,28840,16599,3298,16946,6517,3170,9911 +3261,3120,9043,27280,15611,3127,16216,6121,2990,9656 +3262,3176,9312,26160,16519,3288,17067,6581,3230,10061 +3263,3108,9190,24850,16656,3305,17111,6483,3230,10296 +3264,3145,8912,22950,16313,3230,16896,6476,3180,10211 +3265,3199,8915,21910,16213,3198,16837,6454,3160,10197 +3266,3110,8715,21880,15462,3063,16203,6307,3030,9988 +3267,3136,8546,22260,15077,2970,15879,6232,2920,9684 +3268,3192,8464,22430,14687,2897,15493,6068,2840,9550 +3269,3044,8144,22280,14121,2795,14752,5838,2710,9142 +3270,2849,7752,23250,13575,2705,14069,5606,2560,8621 +3271,2716,7386,25400,13064,2649,13534,5381,2410,8261 +3272,2674,7097,28920,12701,2577,12887,5239,2360,7908 +3273,2566,6862,32010,11899,2460,12014,5008,2230,7384 +3274,2602,6831,33420,11409,2492,11491,4895,2190,7120 +3275,2722,7066,34240,11391,2652,11819,5123,2300,7341 +3276,2836,7338,33520,11735,2792,12505,5542,2510,7882 +3277,2816,7455,34980,11917,2812,12637,5780,2660,8279 +3278,2829,7453,35280,11777,2753,12337,5707,2680,8295 +3279,2826,7420,35150,12119,2667,12408,5564,2590,7887 +3280,2906,7604,35030,13112,2675,13531,5401,2620,7874 +3281,3145,8593,33600,15139,2962,15394,5827,2940,8704 +3282,3295,9320,32900,16631,3266,16988,6346,3180,9658 +3283,3262,9584,32240,16985,3380,17434,6628,3250,10023 +3284,3256,9688,30630,17166,3437,17802,6824,3280,10255 +3285,3103,9318,28700,16322,3276,17198,6489,3120,9991 +3286,3218,9731,27250,17507,3441,18172,6925,3360,10365 +3287,3176,9663,25710,17800,3445,18311,6858,3360,10396 +3288,3133,9464,23650,17608,3363,18227,6778,3330,10255 +3289,3211,9438,22530,17424,3355,18022,6836,3310,10216 +3290,3113,9055,22330,16566,3164,17052,6666,3150,9897 +3291,3085,8716,22620,16029,3057,16449,6429,3020,9776 +3292,3164,8616,22690,15491,2959,16018,6231,2940,9679 +3293,3013,8205,22560,14787,2831,15198,5989,2780,9245 +3294,2795,7744,23660,14143,2731,14445,5712,2620,8780 +3295,2646,7357,26180,13461,2695,13839,5483,2450,8378 +3296,2621,7045,30330,13072,2601,13119,5337,2390,8068 +3297,2518,6791,34100,12176,2484,12107,5028,2260,7537 +3298,2572,6774,35780,11608,2505,11551,4966,2200,7273 +3299,2736,6994,36720,11659,2647,12008,5149,2300,7469 +3300,2846,7268,35940,11936,2777,12588,5505,2500,7982 +3301,2824,7357,37460,11997,2805,12644,5747,2640,8342 +3302,2779,7362,38050,11791,2789,12231,5691,2650,8426 +3303,2768,7431,38030,12147,2692,12399,5453,2520,8077 +3304,2880,7735,37710,13220,2726,13644,5338,2490,8017 +3305,3106,8883,35410,15497,3049,15668,5824,2820,8761 +3306,3250,9738,34410,17181,3390,17205,6274,3060,9449 +3307,3323,10120,33160,17708,3537,17708,6474,3200,9634 +3308,3395,10306,31320,17920,3613,17840,6500,3180,9613 +3309,3280,9964,29400,17019,3450,16890,6121,2910,9150 +3310,3391,10401,27920,18020,3574,17590,6364,3030,9521 +3311,3260,10299,26310,18035,3575,17470,6363,3020,9534 +3312,3187,10018,24360,17419,3433,17064,6282,3010,9413 +3313,3228,9844,23070,16791,3346,16870,6344,3030,9395 +3314,3162,9259,22780,15801,3170,16278,6222,2960,9295 +3315,3153,9022,23040,15556,3108,16121,6199,2970,9361 +3316,3202,8807,23260,14971,3002,15655,5987,2870,9158 +3317,2997,8332,23260,14362,2880,14930,5688,2760,8788 +3318,2800,7875,24010,13849,2771,14363,5483,2590,8405 +3319,2674,7491,26250,13447,2726,13793,5170,2410,8134 +3320,2649,7214,29840,13116,2631,13166,5041,2370,7840 +3321,2560,6961,32290,12256,2537,12283,4944,2240,7398 +3322,2602,6937,33400,11774,2528,11760,4916,2200,7168 +3323,2782,7080,33550,11812,2655,12067,5118,2300,7483 +3324,2914,7302,32580,12006,2799,12574,5515,2530,8014 +3325,2896,7340,33520,12113,2813,12659,5806,2670,8416 +3326,2867,7248,33780,12022,2744,12530,5851,2670,8412 +3327,2826,7328,33300,12301,2665,12771,5779,2550,8159 +3328,2862,7762,32870,13361,2710,13810,5930,2570,8145 +3329,3051,8652,31840,15157,3005,15667,6277,2910,8751 +3330,3206,9243,31460,16543,3244,16933,6492,3040,9384 +3331,3315,9413,30420,16647,3279,16914,6360,3010,9348 +3332,3329,9348,29020,16579,3283,16896,6279,2920,9267 +3333,3038,8806,27430,15388,3071,15996,5901,2770,8957 +3334,3137,9305,26440,16217,3184,16557,5988,2950,9371 +3335,3193,9326,25210,16336,3191,16501,6048,3020,9269 +3336,3133,9162,23570,15925,3121,16148,6036,2960,9186 +3337,3124,9109,22420,15560,3107,16021,6151,2900,9241 +3338,3074,8764,22140,14813,2988,15379,6109,2820,9160 +3339,3063,8605,22440,14611,2927,15239,6079,2820,9187 +3340,3138,8422,22390,14261,2865,14976,6038,2790,9072 +3341,2991,8066,21930,13776,2761,14415,5768,2670,8792 +3342,2787,7602,21930,13333,2675,13729,5473,2530,8364 +3343,2698,7288,23050,13016,2628,13250,5237,2370,8043 +3344,2676,7051,24710,12536,2535,12800,5033,2340,7741 +3345,2554,6800,25950,11839,2428,11925,4870,2210,7274 +3346,2555,6758,26550,11322,2432,11425,4775,2170,7057 +3347,2717,6932,27250,11348,2574,11642,5011,2260,7278 +3348,2819,7157,27140,11541,2707,12228,5410,2470,7774 +3349,2772,7226,27160,11537,2710,12307,5675,2590,8170 +3350,2766,7138,26950,10953,2612,11820,5505,2550,8088 +3351,2669,6930,26670,10714,2443,11563,5118,2350,7531 +3352,2626,6990,26910,11088,2391,12148,4922,2300,7242 +3353,2761,7491,27080,11853,2481,13300,5059,2370,7465 +3354,2860,7660,27590,12662,2514,13826,5294,2420,8106 +3355,2851,7758,27580,12939,2527,13912,5365,2520,8409 +3356,2923,7824,26620,13027,2478,13929,4997,2580,8379 +3357,2857,7650,25260,12825,2429,13679,5041,2490,8339 +3358,2865,7745,24340,12875,2449,13718,5062,2570,8535 +3359,2762,7711,23300,12617,2437,13676,5151,2550,8466 +3360,2627,7552,21720,12508,2464,13613,5241,2530,8517 +3361,2701,7530,20810,12430,2480,13517,5368,2570,8449 +3362,2734,7623,20610,12119,2512,13475,5549,2580,8616 +3363,2799,7644,20920,12086,2520,13694,5593,2580,8611 +3364,2879,7647,20970,12165,2523,13769,5632,2570,8577 +3365,2737,7322,20490,11788,2448,13343,5431,2470,8286 +3366,2586,6929,20320,11202,2331,12800,5181,2340,7900 +3367,2490,6693,20920,10693,2272,12182,4969,2210,7569 +3368,2410,6507,22730,10336,2217,11806,4841,2170,7301 +3369,2352,6193,25170,9679,2125,10985,4672,2050,6841 +3370,2389,6196,26490,9410,2147,10577,4552,2020,6630 +3371,2498,6396,25870,9553,2286,10880,4750,2130,6864 +3372,2640,6653,25900,9777,2440,11512,5178,2320,7413 +3373,2644,6748,26570,10016,2471,11631,5476,2450,7781 +3374,2574,6582,26770,9781,2362,11085,5290,2420,7683 +3375,2549,6395,26490,9633,2178,10718,4912,2210,7008 +3376,2615,6593,26330,9855,2124,11024,4667,2140,6753 +3377,2734,6895,26830,10391,2229,11749,4568,2180,6928 +3378,2827,7356,28100,11101,2367,12693,4858,2310,7465 +3379,2870,7504,28380,11372,2446,13377,4987,2380,7707 +3380,2907,7529,27360,11742,2517,13664,5056,2420,7858 +3381,2876,7608,26090,11708,2482,13574,5171,2450,7934 +3382,2765,7515,24800,11664,2425,13352,5105,2480,8010 +3383,2740,7372,23680,11665,2403,13417,5036,2460,8019 +3384,2695,7299,22020,11734,2343,13487,5067,2450,8092 +3385,2762,7266,21030,11720,2392,13601,5320,2480,8318 +3386,2857,7563,20890,11851,2420,13869,5531,2580,8443 +3387,2916,7790,21270,12075,2454,13894,5558,2560,8503 +3388,3011,7692,21590,12248,2464,13981,5621,2540,8494 +3389,2889,7462,21600,11906,2387,13505,5444,2450,8190 +3390,2756,7057,23070,11410,2291,12821,5233,2320,7840 +3391,2577,6741,26200,10794,2204,12216,4962,2190,7429 +3392,2523,6561,30310,10375,2157,11699,4676,2150,7176 +3393,2428,6353,33970,9749,2090,10824,4573,2030,6702 +3394,2448,6362,35610,9384,2101,10493,4484,2000,6505 +3395,2613,6577,36120,9626,2270,10946,4678,2100,6817 +3396,2737,6826,35390,10132,2433,11515,5092,2320,7370 +3397,2751,6965,36820,10448,2475,11675,5374,2490,7827 +3398,2763,7008,36930,10468,2443,11489,5407,2530,7908 +3399,2807,7110,36550,11190,2422,11798,5274,2480,7716 +3400,2863,7478,35970,12763,2496,13118,5276,2550,7708 +3401,3123,8428,34310,15201,2833,15125,5787,2940,8171 +3402,3374,9269,33350,16927,3097,16855,6170,3170,9069 +3403,3498,9419,32060,17374,3177,17505,6363,3280,9574 +3404,3522,9521,30040,17734,3240,17720,6499,3340,9982 +3405,3284,9080,28050,16849,3035,17107,6318,3240,9492 +3406,3302,9419,26590,17864,3210,18168,6622,3410,9870 +3407,3194,9316,25110,17985,3212,18138,6875,3390,9692 +3408,3127,9119,23330,17634,3158,17619,6671,3300,9668 +3409,3149,8977,22150,17219,3149,17605,6457,3240,9645 +3410,3072,8720,21980,16132,3035,16684,6274,3060,9507 +3411,3118,8587,22340,15874,2997,16026,6147,3010,9441 +3412,3206,8399,22670,15255,2899,15217,5933,2880,9284 +3413,3052,7984,23110,14420,2774,14419,5760,2740,8897 +3414,2861,7622,24400,13921,2690,13752,5483,2570,8399 +3415,2763,7319,26370,13465,2636,13254,5263,2410,8152 +3416,2667,7036,29370,13078,2561,12739,5073,2350,7839 +3417,2579,6758,31610,12285,2428,11876,4834,2240,7316 +3418,2589,6778,31650,11743,2443,11309,4667,2190,7101 +3419,2718,6969,31480,11698,2601,11761,4848,2280,7293 +3420,2842,7272,30170,12078,2764,12337,5231,2480,7827 +3421,2846,7401,31270,12234,2813,12572,5520,2630,8353 +3422,2893,7384,31540,12236,2771,12415,5596,2660,8354 +3423,2844,7402,31230,12474,2679,12617,5420,2540,8049 +3424,2920,7785,31460,13260,2682,13640,5481,2560,7871 +3425,3167,8682,31100,15397,2939,15102,6016,2890,8510 +3426,3208,9214,31150,16616,3166,15700,6296,3030,9341 +3427,3195,9209,30650,16731,3193,16029,6257,3050,9618 +3428,3223,9229,29310,16731,3294,16379,6498,3130,9917 +3429,3019,8657,27750,15432,3066,15604,6074,2970,9543 +3430,3149,9116,26340,16248,3244,16427,6544,3180,9781 +3431,3059,9139,24950,16324,3207,16386,6388,3200,9688 +3432,3013,9002,23060,16181,3147,16039,6176,3120,9670 +3433,3151,8961,22020,15900,3158,15961,6235,3050,9442 +3434,3119,8681,21970,15217,3000,15429,6173,2970,9461 +3435,3122,8661,22360,14887,2963,15180,6013,2880,9260 +3436,3222,8559,22600,14586,2897,15050,5889,2800,9115 +3437,3040,8189,22660,14058,2804,14376,5691,2690,8785 +3438,2860,7742,23330,13516,2717,13853,5458,2530,8348 +3439,2694,7350,24890,13097,2655,13304,5187,2370,7992 +3440,2636,7034,28070,12696,2581,12785,5042,2320,7705 +3441,2499,6745,30910,11892,2462,11853,4871,2200,7191 +3442,2572,6773,32070,11491,2475,11400,4722,2160,7033 +3443,2717,6984,32270,11531,2651,11703,4933,2280,7272 +3444,2843,7311,31020,11931,2829,12366,5419,2500,7841 +3445,2854,7437,31560,12119,2891,12592,5690,2680,8374 +3446,2836,7430,31300,12103,2844,12311,5621,2730,8425 +3447,2807,7411,30790,12414,2743,12412,5477,2600,8191 +3448,2804,7751,30700,13110,2692,13147,5257,2510,7872 +3449,3108,8691,30220,14917,2920,14940,5709,2810,8457 +3450,3305,9009,30090,16157,3154,15961,6213,3010,9165 +3451,3316,9055,29890,16387,3164,16130,6280,3080,9426 +3452,3279,9138,28680,16320,3262,16223,6300,3080,9552 +3453,3112,8795,27150,15276,3070,15345,5927,2920,9294 +3454,3164,9187,25840,16075,3191,16068,6285,3090,9647 +3455,3053,9126,24510,16172,3199,16117,6309,3060,9692 +3456,2997,8905,22700,15822,3116,15862,6132,3060,9513 +3457,3089,8951,21680,15606,3109,15837,6325,2950,9348 +3458,3077,8714,21610,15020,2987,15158,6265,2960,9182 +3459,3060,8405,22050,14651,2923,15032,6082,2880,9215 +3460,3173,8485,22280,14462,2889,14882,5961,2810,9196 +3461,3013,8140,22060,13929,2802,14374,5751,2680,8830 +3462,2819,7747,22920,13398,2718,13763,5525,2530,8421 +3463,2659,7405,24860,12945,2667,13211,5259,2380,8078 +3464,2589,7134,27680,12519,2588,12629,5036,2340,7759 +3465,2490,6834,29390,11749,2468,11759,4829,2200,7322 +3466,2527,6844,30360,11326,2491,11311,4759,2160,7081 +3467,2651,7042,31430,11471,2669,11678,4873,2270,7353 +3468,2754,7370,29740,11814,2866,12394,5276,2490,7854 +3469,2752,7479,32110,11951,2906,12627,5634,2660,8292 +3470,2816,7596,31790,11835,2846,12428,5605,2690,8424 +3471,2815,7547,31330,12015,2733,12427,5307,2540,7989 +3472,2829,7767,31200,12887,2706,13057,5206,2500,7907 +3473,3135,8701,30310,14975,2944,14560,5649,2840,8321 +3474,3344,9305,30400,16141,3134,15670,5952,2950,8848 +3475,3388,9461,30060,16254,3161,15765,5866,2990,9101 +3476,3414,9548,28740,16285,3187,15966,5824,3010,9176 +3477,3200,9069,27260,15195,3017,15418,5491,2870,9250 +3478,3240,9435,25990,16047,3153,16420,6038,3060,9664 +3479,3143,9309,24600,16174,3230,16757,6187,3160,9546 +3480,3110,9063,22900,15775,3193,16547,6146,3090,9286 +3481,3187,8948,21870,15603,3171,16252,6210,3030,9246 +3482,3102,8640,21770,14874,3028,15618,6104,2990,9313 +3483,3053,8490,22170,14659,2978,15349,5970,2890,9303 +3484,3144,8425,22250,14452,2924,15156,5869,2820,9246 +3485,2976,8048,21890,13918,2807,14494,5742,2710,8859 +3486,2789,7619,22760,13452,2730,13885,5464,2550,8405 +3487,2647,7332,24900,13032,2687,13331,5119,2390,8155 +3488,2565,7068,28260,12643,2624,12828,4990,2340,7883 +3489,2483,6759,30360,11825,2504,11930,4735,2200,7336 +3490,2521,6765,30930,11382,2535,11466,4683,2170,7089 +3491,2657,6988,30590,11443,2675,11711,4894,2270,7363 +3492,2784,7257,30420,11838,2840,12330,5285,2490,7879 +3493,2731,7361,31850,11974,2860,12476,5582,2650,8302 +3494,2783,7471,32270,11806,2800,12367,5503,2670,8292 +3495,2776,7390,31610,11986,2720,12686,5394,2570,7938 +3496,2836,7708,30710,12913,2734,13681,5395,2590,7924 +3497,3142,8622,30020,14766,2976,15074,5892,2880,8346 +3498,3375,9176,30010,16016,3168,16194,6035,2950,8965 +3499,3487,9265,29750,16178,3206,16290,6005,2970,9395 +3500,3505,9146,28560,16084,3224,16392,6129,3030,9857 +3501,3304,8677,27070,15018,3020,15859,6013,2910,9700 +3502,3431,9073,25930,15953,3172,16773,6462,3080,9965 +3503,3354,9145,24670,16007,3178,16800,6382,3160,9978 +3504,3225,9018,22880,15511,3146,16547,6292,3100,9885 +3505,3219,8914,21750,15202,3110,16258,6402,3110,9858 +3506,3162,8685,21620,14462,2990,15644,6149,2970,9725 +3507,3129,8542,21960,14305,2933,15282,5914,2880,9580 +3508,3155,8337,21870,14145,2888,15110,5840,2810,9463 +3509,2959,8028,21220,13681,2767,14521,5646,2690,9053 +3510,2753,7593,21260,13309,2670,13951,5424,2540,8599 +3511,2602,7296,22500,12875,2634,13507,5154,2400,8300 +3512,2582,7025,24870,12530,2558,13017,4998,2340,8009 +3513,2485,6785,26730,11744,2437,12107,4787,2200,7451 +3514,2471,6735,27740,11198,2450,11553,4619,2140,7183 +3515,2585,6897,27860,11206,2563,11707,4734,2230,7394 +3516,2714,7122,27690,11419,2696,12269,5101,2430,7866 +3517,2706,7179,27650,11430,2716,12375,5313,2560,8213 +3518,2691,6994,27280,10883,2602,11678,5209,2530,8100 +3519,2549,6755,27670,10583,2427,11128,4719,2260,7479 +3520,2476,6965,27500,11037,2364,11728,4609,2240,7358 +3521,2678,7533,27450,11664,2459,13025,4814,2450,7868 +3522,2843,7944,27660,12275,2613,13851,4982,2610,8466 +3523,2942,8153,27750,12531,2684,14037,5037,2670,8894 +3524,2998,8280,26730,12780,2695,14186,5211,2670,9224 +3525,2879,8256,25350,12406,2671,13860,5049,2570,9177 +3526,2841,8111,24330,12655,2717,14110,5153,2570,9159 +3527,2739,8079,23220,12576,2710,14523,5120,2530,9020 +3528,2734,7881,21760,12347,2649,14416,5290,2430,8842 +3529,2786,7728,20720,12165,2610,14490,5389,2560,8772 +3530,2820,7740,20620,11822,2593,14111,5268,2560,8845 +3531,2821,7686,20980,11980,2585,14013,5320,2520,8893 +3532,2932,7732,21010,12204,2574,14153,5387,2550,8868 +3533,2828,7417,20350,11773,2484,13662,5221,2460,8562 +3534,2677,7036,20310,11160,2376,13064,4980,2330,8119 +3535,2612,6782,21410,10597,2302,12353,4728,2190,7784 +3536,2517,6608,23170,10286,2239,12054,4555,2150,7420 +3537,2440,6339,24760,9652,2142,11206,4377,2050,6971 +3538,2486,6308,25620,9370,2134,10680,4252,2020,6685 +3539,2608,6515,26120,9411,2265,10899,4391,2110,6885 +3540,2741,6751,25700,9914,2407,11541,4743,2290,7368 +3541,2712,6821,26130,9965,2441,11668,4976,2410,7772 +3542,2637,6687,26360,9587,2341,11111,4874,2380,7667 +3543,2469,6474,26910,9405,2161,10602,4439,2120,7040 +3544,2461,6652,26130,9701,2116,11039,4264,2050,6746 +3545,2659,6995,26750,10105,2188,11882,4336,2150,6888 +3546,2748,7228,27870,10752,2298,12465,4512,2190,7274 +3547,2934,7317,27880,11021,2381,12754,4455,2340,7652 +3548,2950,7315,27000,11084,2458,13203,4846,2440,8273 +3549,2854,7387,25710,11390,2473,13472,4812,2470,8577 +3550,2817,7219,24360,11347,2422,13534,4792,2440,8363 +3551,2802,7173,23350,11034,2431,13282,4713,2340,8413 +3552,2798,7161,21750,10952,2428,13174,4778,2360,8504 +3553,2841,7279,20760,11062,2430,13405,4933,2340,8645 +3554,2915,7613,20700,11377,2486,13596,5204,2440,8944 +3555,2962,7745,21140,11800,2537,14111,5449,2530,9157 +3556,2970,7623,21470,11988,2520,14091,5375,2520,9167 +3557,2842,7382,21910,11627,2430,13695,5166,2440,8818 +3558,2672,7038,23200,11098,2347,13081,4923,2310,8453 +3559,2513,6699,25790,10654,2258,12390,4645,2180,8041 +3560,2440,6508,29150,10378,2208,11944,4522,2140,7715 +3561,2372,6304,31650,9795,2114,11126,4442,2020,7243 +3562,2438,6302,31970,9393,2140,10698,4375,1990,6898 +3563,2571,6548,32190,9632,2306,10944,4572,2090,7079 +3564,2707,6833,31260,10048,2467,11637,4850,2290,7563 +3565,2727,6987,31820,10293,2517,11792,5091,2460,8004 +3566,2705,6970,31870,10528,2471,11866,5182,2510,8131 +3567,2727,7096,32110,11277,2430,12261,5095,2410,8024 +3568,2836,7554,32430,12638,2556,13577,5266,2500,8303 +3569,3099,8415,32000,14995,2893,15686,5846,2900,9360 +3570,3271,9041,32030,16386,3155,17126,6505,3100,10278 +3571,3268,9194,31180,16652,3224,17335,6508,3180,10683 +3572,3268,9082,29720,16766,3237,17422,6554,3240,11116 +3573,3065,8803,28130,15704,3049,16618,6136,3080,11037 +3574,3191,9182,26880,16624,3225,17305,6566,3220,11621 +3575,3146,9138,25380,16690,3249,17301,6652,3260,11257 +3576,3111,9103,23510,16410,3200,17180,6725,3250,11406 +3577,3160,9030,22310,16307,3192,17174,6715,3230,11224 +3578,3073,8782,22190,15731,3074,16689,6539,3110,10801 +3579,3051,8657,22560,15526,3018,16294,6363,3040,10694 +3580,3097,8462,22770,14940,2897,15714,6085,2930,10477 +3581,2950,8115,22820,14381,2781,15009,5909,2790,9966 +3582,2761,7678,23830,14072,2686,14442,5658,2630,9474 +3583,2610,7295,26010,13604,2623,13788,5430,2490,9048 +3584,2527,7125,29530,13222,2545,13188,5284,2420,8652 +3585,2412,6917,32740,12419,2470,12223,4907,2300,8035 +3586,2415,6845,33540,11819,2465,11742,4790,2230,7692 +3587,2560,6995,33410,11850,2597,11988,4941,2310,7830 +3588,2702,7250,33220,12103,2759,12428,5354,2500,8255 +3589,2700,7415,33800,12215,2792,12575,5695,2650,8600 +3590,2712,7357,34320,12109,2761,12461,5714,2670,8711 +3591,2677,7338,34350,12482,2651,12744,5567,2590,8545 +3592,2738,7729,33800,13574,2672,13698,5675,2670,8819 +3593,3019,8665,32160,15502,2983,15462,6237,3070,9753 +3594,3282,9321,31840,16879,3184,16671,6487,3250,10710 +3595,3306,9398,31400,17021,3229,16775,6416,3230,10693 +3596,3197,9428,29970,17125,3297,16831,6492,3180,10727 +3597,3006,9032,28250,16240,3159,16183,6050,2960,10226 +3598,3111,9262,27040,17102,3285,16832,6384,3130,10766 +3599,3067,9410,25600,17223,3287,16561,6506,3140,10852 +3600,3023,9001,23620,16754,3209,16615,6399,3130,10506 +3601,3064,8997,22400,16443,3206,16646,6378,3120,10464 +3602,3016,8669,22140,15456,3046,15990,6254,3030,10313 +3603,3013,8408,22360,15166,2985,15661,6220,2970,10216 +3604,3066,8392,22510,14719,2922,15245,6057,2850,9983 +3605,2918,8020,22680,14172,2816,14561,5863,2720,9531 +3606,2738,7591,23790,13671,2729,13961,5659,2580,9041 +3607,2617,7232,25820,13190,2676,13397,5395,2430,8757 +3608,2545,6966,28560,12796,2619,12778,5206,2380,8418 +3609,2405,6663,30490,12001,2492,11921,4914,2270,7802 +3610,2413,6658,30430,11454,2489,11404,4747,2210,7432 +3611,2582,6860,31320,11481,2619,11654,4987,2280,7609 +3612,2715,7129,29170,11761,2778,12286,5461,2470,7995 +3613,2746,7263,30570,11927,2804,12444,5690,2620,8458 +3614,2788,7409,30750,11833,2755,12258,5725,2670,8528 +3615,2772,7307,30670,12062,2639,12494,5555,2550,8301 +3616,2803,7553,30800,13073,2628,13368,5479,2530,8457 +3617,3046,8559,30340,14990,2861,14970,6030,2790,9202 +3618,3227,9217,30210,16300,3081,15987,6273,2890,9759 +3619,3334,9312,29990,16339,3193,15984,6225,2890,9742 +3620,3297,9428,28720,16362,3207,15880,6151,2870,9645 +3621,3051,8939,27140,15439,3070,15104,5811,2690,9324 +3622,3114,9349,25940,16334,3228,15641,6143,2850,9659 +3623,3053,9168,24630,16484,3235,16126,6303,2900,9798 +3624,2983,8791,22750,16282,3154,16270,6235,2980,9712 +3625,3037,8841,21620,15978,3141,16130,6331,2990,9798 +3626,2995,8565,21520,15082,3009,15573,6321,2910,9711 +3627,2951,8174,21920,14717,2915,15156,6141,2830,9637 +3628,3046,8153,22130,14465,2850,15016,6042,2760,9457 +3629,2911,7872,22130,13949,2745,14371,5818,2670,9089 +3630,2716,7438,23150,13424,2649,13677,5591,2500,8612 +3631,2545,7185,25380,13015,2625,13171,5372,2360,8309 +3632,2489,6894,28760,12645,2540,12672,5108,2310,7999 +3633,2396,6568,32270,11906,2456,11683,4892,2190,7489 +3634,2418,6566,33270,11394,2453,11179,4742,2150,7181 +3635,2559,6805,33400,11435,2599,11424,4958,2240,7407 +3636,2719,7107,31790,11756,2793,12080,5289,2450,7868 +3637,2728,7228,32780,11891,2852,12298,5569,2600,8324 +3638,2815,7407,32600,11829,2788,12044,5650,2640,8458 +3639,2850,7315,32310,12058,2649,12107,5518,2550,8162 +3640,2848,7514,32640,13081,2610,13085,5545,2560,8110 +3641,3072,8450,31400,14883,2897,14827,5993,2880,8797 +3642,3341,9110,31370,16489,3173,16182,6232,3130,9667 +3643,3393,9261,31030,16740,3277,17002,6525,3160,10027 +3644,3346,9490,29680,16786,3321,17258,6634,3110,10259 +3645,3111,9057,28080,15714,3131,16238,6093,2830,10164 +3646,3180,9373,26870,16563,3307,16974,6300,3020,10702 +3647,3161,9291,25600,16743,3380,17017,6528,3130,10392 +3648,3155,9087,23720,16495,3336,17031,6590,3000,10188 +3649,3203,9038,22640,16218,3314,16866,6511,3040,10233 +3650,3103,8616,22470,15512,3119,16294,6278,2990,10006 +3651,3042,8440,22840,15240,3062,15971,6273,2970,9963 +3652,3084,8425,23120,14764,2976,15529,6093,2870,9833 +3653,2937,8101,23320,14196,2868,14978,5909,2720,9407 +3654,2748,7688,24560,13785,2746,14490,5680,2590,8943 +3655,2616,7353,27010,13376,2728,13907,5445,2430,8651 +3656,2530,7097,30550,13066,2652,13392,5335,2390,8355 +3657,2424,6806,33090,12269,2531,12475,5135,2270,7780 +3658,2439,6750,33660,11676,2530,11967,4982,2230,7445 +3659,2534,6907,33630,11723,2669,12229,5178,2310,7638 +3660,2704,7173,32870,12101,2828,12830,5556,2510,8074 +3661,2750,7287,34030,12135,2848,12935,5753,2650,8472 +3662,2690,7276,34240,12140,2787,12781,5795,2680,8522 +3663,2728,7344,34500,12621,2715,13251,5788,2620,8339 +3664,2789,7720,34500,13800,2780,14417,5741,2740,8632 +3665,2953,8648,33360,15813,3086,16299,6364,3120,9374 +3666,3381,9244,32680,17161,3339,17826,6773,3360,10076 +3667,3408,9349,31760,17342,3393,18171,6710,3390,10416 +3668,3391,9358,30370,17378,3388,18220,6653,3340,10398 +3669,3112,8859,28830,16361,3173,17149,6125,3010,9926 +3670,3166,9229,27690,17130,3292,17448,6451,3060,10249 +3671,3249,9231,26370,17041,3327,17122,6597,3070,10569 +3672,3180,9134,24740,16416,3278,16661,6478,3020,10449 +3673,3161,9115,23560,15813,3247,16495,6438,3020,10685 +3674,3115,8743,23090,14914,3117,16006,6368,2930,10464 +3675,3076,8584,23230,14562,3049,15737,6284,2890,10243 +3676,3086,8370,23140,14119,2934,15340,6128,2830,9919 +3677,2923,8031,22880,13689,2825,14688,5957,2710,9472 +3678,2754,7573,22800,13207,2709,14129,5699,2560,8938 +3679,2627,7276,23850,12898,2622,13688,5479,2410,8541 +3680,2560,7031,25430,12717,2545,13099,5290,2370,8196 +3681,2449,6721,26550,11732,2448,12251,4990,2260,7587 +3682,2447,6652,26640,11122,2424,11598,4807,2190,7244 +3683,2579,6800,27290,11115,2534,11921,5025,2270,7376 +3684,2734,6946,27130,11278,2664,12496,5368,2460,7772 +3685,2712,7036,26910,11261,2696,12491,5511,2580,8159 +3686,2686,6874,27300,10869,2567,11848,5346,2570,8091 +3687,2684,6651,27410,10347,2357,11473,4969,2440,7690 +3688,2682,6898,27440,10603,2246,11860,4718,2410,7440 +3689,2787,7277,27520,11466,2362,12772,4937,2490,7937 +3690,3074,7634,27730,11963,2501,13626,5266,2630,8502 +3691,3029,7815,27990,12268,2593,14023,5377,2680,8835 +3692,2914,7743,26880,12368,2602,14112,5506,2690,9036 +3693,2822,7531,25440,12098,2540,13934,5467,2650,8981 +3694,2843,7542,24440,12231,2531,13880,5486,2720,9028 +3695,2762,7535,23380,12219,2525,13686,5362,2720,9004 +3696,2720,7247,21870,12021,2497,13515,5283,2650,8911 +3697,2806,7460,20840,12058,2548,13651,5355,2720,8998 +3698,2782,7485,20620,11948,2520,13791,5478,2710,9029 +3699,2801,7266,20930,11807,2493,13821,5495,2640,8998 +3700,2883,7393,20910,11967,2470,13936,5401,2560,8669 +3701,2762,7134,20390,11486,2402,13521,5269,2480,8379 +3702,2604,6753,20000,11073,2315,12868,5004,2340,7936 +3703,2534,6570,20980,10537,2247,12245,4724,2200,7674 +3704,2491,6411,22850,10275,2195,11897,4640,2140,7360 +3705,2402,6109,25130,9647,2092,11055,4428,2030,6862 +3706,2394,6108,26680,9263,2104,10533,4264,1990,6648 +3707,2526,6301,27510,9478,2248,10832,4443,2080,6794 +3708,2655,6612,27730,9793,2426,11336,4832,2280,7296 +3709,2693,6682,27980,9952,2475,11560,5106,2430,7712 +3710,2676,6584,27200,9733,2403,11154,4994,2460,7783 +3711,2612,6405,26190,9664,2238,10549,4726,2280,7222 +3712,2565,6544,26330,9850,2154,10726,4306,2170,6851 +3713,2646,6688,26800,10239,2194,11711,4449,2190,7010 +3714,2736,7049,27750,10840,2294,12546,4629,2340,7580 +3715,2806,7275,28140,11098,2382,13170,4791,2400,7885 +3716,2844,7404,27190,11271,2431,13549,4910,2480,8044 +3717,2824,7439,25740,11573,2429,13441,4679,2520,8089 +3718,2755,7153,24330,11202,2426,13009,4600,2410,8207 +3719,2636,7146,23260,11052,2408,12692,4738,2350,8239 +3720,2591,7008,21670,11013,2376,12764,4824,2420,8311 +3721,2746,7143,20650,11101,2433,13098,5031,2530,8516 +3722,2806,7274,20500,11184,2474,13401,5120,2530,8877 +3723,2852,7469,20950,11683,2483,13757,5332,2540,8918 +3724,2973,7476,21200,11883,2481,13938,5384,2510,8703 +3725,2878,7266,21160,11538,2385,13566,5181,2430,8435 +3726,2713,6914,22200,11141,2296,12950,4998,2300,8007 +3727,2562,6603,24750,10578,2201,12327,4739,2160,7582 +3728,2469,6403,28780,10270,2157,11880,4604,2130,7251 +3729,2344,6180,31980,9694,2070,11060,4375,2010,6797 +3730,2399,6177,33330,9343,2096,10544,4315,1980,6546 +3731,2550,6373,34190,9448,2247,10850,4516,2090,6752 +3732,2686,6715,33560,9914,2411,11513,4918,2300,7332 +3733,2715,6919,35780,10218,2495,11766,5271,2480,7824 +3734,2817,7158,35920,10279,2482,11685,5322,2500,7988 +3735,2774,7038,35280,10835,2439,11798,5154,2380,7724 +3736,2821,7472,33620,12222,2491,12783,5093,2410,7660 +3737,3140,8519,32420,14473,2846,14482,5647,2740,8293 +3738,3355,9325,32040,16096,3206,15885,6057,2960,9108 +3739,3253,9579,31570,16757,3333,16540,6345,3080,9158 +3740,3274,9712,30060,17000,3399,16879,6222,3050,9348 +3741,3103,9263,28350,16134,3235,16440,6148,2970,8933 +3742,3105,9670,27040,17153,3390,17272,6448,3110,9539 +3743,3050,9553,25600,17152,3433,17457,6574,3100,9808 +3744,3094,9347,23660,16786,3370,17234,6447,3060,9741 +3745,3134,9431,22490,16576,3339,16899,6522,3060,9694 +3746,3059,9094,22200,15580,3178,16138,6271,2960,9602 +3747,3000,8586,22550,15166,3041,15755,6235,2900,9583 +3748,3064,8501,22610,14929,2933,15536,6068,2820,9420 +3749,2944,8069,22370,14298,2812,14899,5886,2700,9029 +3750,2746,7647,23250,13847,2706,14221,5611,2550,8617 +3751,2622,7343,25590,13334,2649,13707,5374,2400,8296 +3752,2507,7087,29180,12895,2572,13124,5217,2350,8015 +3753,2422,6774,31720,12074,2451,12120,4871,2220,7426 +3754,2439,6748,32130,11487,2457,11525,4752,2160,7176 +3755,2606,6929,32100,11478,2573,11815,4916,2250,7362 +3756,2751,7165,31640,11856,2728,12466,5326,2440,7860 +3757,2783,7299,33670,11996,2773,12634,5580,2610,8283 +3758,2866,7477,33170,11986,2725,12351,5611,2650,8365 +3759,2825,7325,32640,12188,2652,12461,5495,2510,8133 +3760,2837,7781,32810,13109,2644,13519,5566,2500,8257 +3761,3092,8732,32040,15005,2949,15289,6034,2800,9061 +3762,3308,9500,31940,16403,3220,16452,6477,2960,9650 +3763,3385,9759,31080,16538,3340,16624,6435,3010,9712 +3764,3464,9943,29650,16583,3403,16656,6403,3020,9754 +3765,3222,9402,27990,15543,3133,15722,5908,2820,9301 +3766,3305,9856,26840,16597,3300,16271,6319,2970,9601 +3767,3195,9757,25400,16581,3318,16419,6351,2990,9587 +3768,3090,9594,23450,16215,3246,16514,6265,2960,9483 +3769,3158,9435,22370,16105,3235,16470,6345,2990,9499 +3770,3078,9116,22150,15424,3090,16017,6190,2890,9389 +3771,3029,8760,22460,15131,3031,15735,6103,2890,9369 +3772,3084,8708,22680,14649,2954,15380,5991,2790,9234 +3773,2945,8300,22810,14101,2823,14772,5772,2670,8822 +3774,2755,7797,23500,13637,2725,14228,5560,2520,8453 +3775,2578,7493,25490,13106,2678,13676,5438,2370,8161 +3776,2467,7249,29580,12642,2594,13165,5303,2330,7869 +3777,2391,6884,32910,11911,2492,12304,5076,2230,7357 +3778,2397,6827,34550,11538,2512,11627,4989,2200,7061 +3779,2539,6992,35500,11555,2640,11963,5153,2300,7331 +3780,2693,7253,34740,11904,2798,12581,5561,2490,7844 +3781,2690,7350,35970,12106,2811,12693,5837,2650,8314 +3782,2645,7335,36140,12033,2780,12478,5769,2690,8322 +3783,2693,7345,36040,12410,2686,12459,5611,2570,8008 +3784,2779,7747,35380,13467,2713,13565,5540,2600,8013 +3785,3054,8842,33640,15507,3031,15366,6068,2920,8770 +3786,3291,9614,32940,16878,3327,16602,6464,3190,9567 +3787,3285,9926,32390,17232,3413,16880,6531,3260,9965 +3788,3364,10087,30780,17377,3471,16936,6753,3260,10324 +3789,3197,9478,28990,16555,3305,16297,6358,3130,10118 +3790,3278,9945,27570,17530,3447,17149,6732,3320,10381 +3791,3258,9852,26080,17713,3430,17078,6785,3370,10335 +3792,3155,9667,24110,17249,3356,17337,6719,3190,10285 +3793,3136,9700,22780,16877,3301,16898,6586,3060,10347 +3794,3098,9196,22460,15850,3145,15993,6397,3020,10205 +3795,3083,8773,22740,15381,3073,15792,6258,2950,9942 +3796,3131,8695,22900,15120,3006,15677,6217,2880,9735 +3797,2986,8281,22900,14473,2890,14976,6020,2770,9303 +3798,2805,7859,24130,14040,2795,14334,5706,2610,8799 +3799,2633,7512,26810,13483,2709,13799,5514,2430,8488 +3800,2523,7224,30740,12979,2649,13239,5326,2370,8125 +3801,2423,6893,34660,12148,2527,12308,5021,2240,7598 +3802,2453,6853,35890,11592,2520,11586,4904,2180,7323 +3803,2617,6964,37360,11628,2647,11914,5116,2270,7436 +3804,2716,7196,36180,11891,2774,12515,5477,2460,7883 +3805,2752,7349,36210,12097,2834,12696,5748,2630,8343 +3806,2695,7409,35600,11806,2758,12296,5643,2650,8445 +3807,2707,7340,34600,12265,2653,12188,5451,2510,8228 +3808,2800,7813,34560,13389,2710,13215,5546,2540,8310 +3809,3101,8870,33700,15471,3033,15192,6038,2820,9054 +3810,3344,9619,33400,16987,3296,16597,6415,3020,9654 +3811,3417,9878,32550,17122,3377,17159,6474,3070,9739 +3812,3426,10082,30980,16946,3372,17162,6576,3040,9857 +3813,3237,9496,29170,16099,3198,16223,6216,2910,9452 +3814,3310,9839,27760,17159,3357,17179,6689,3100,9750 +3815,3256,9774,26150,17288,3399,17282,6658,3130,9728 +3816,3231,9619,24160,16919,3356,17125,6602,3110,9564 +3817,3305,9498,22860,16770,3317,17123,6586,3070,9665 +3818,3205,9151,22640,16025,3161,16479,6375,2950,9530 +3819,3118,8893,22980,15653,3094,16103,6304,2920,9513 +3820,3144,8740,23270,14918,3001,15484,6079,2820,9336 +3821,2999,8324,23730,14249,2895,14712,5933,2710,8928 +3822,2789,7846,25100,13854,2775,14172,5695,2580,8487 +3823,2672,7525,27480,13412,2714,13645,5399,2440,8242 +3824,2566,7259,30490,13026,2626,13081,5269,2390,7989 +3825,2477,6905,32930,12250,2518,12228,5066,2250,7428 +3826,2438,6815,33460,11739,2523,11743,5011,2190,7181 +3827,2578,6918,33440,11711,2647,12067,5132,2290,7379 +3828,2708,7147,32000,12114,2792,12570,5572,2490,7834 +3829,2718,7323,33190,12276,2836,12737,5843,2630,8360 +3830,2695,7330,32950,12307,2783,12558,5791,2640,8358 +3831,2763,7420,33350,12553,2666,12670,5528,2490,7929 +3832,2949,7821,33650,13534,2686,13710,5489,2560,7926 +3833,3203,8641,32570,15475,2985,15582,6029,2930,8511 +3834,3309,9196,32280,17053,3179,17036,6508,3160,9177 +3835,3308,9315,31620,17052,3233,17266,6575,3260,9691 +3836,3287,9263,30180,17088,3316,17268,6788,3360,9962 +3837,3127,8799,28570,16267,3109,16291,6349,3150,9717 +3838,3243,9187,27240,17252,3298,17096,6734,3230,10055 +3839,3250,9214,25840,17532,3319,17029,6759,3170,10204 +3840,3216,9021,23960,17013,3229,16609,6638,3090,10173 +3841,3238,8902,22700,16504,3178,16677,6621,3060,10077 +3842,3146,8638,22370,15581,3026,16049,6407,2950,9792 +3843,3100,8430,22640,15215,2973,15874,6338,2910,9666 +3844,3097,8370,22620,14908,2909,15621,6214,2850,9544 +3845,2941,8006,22180,14336,2797,14854,6020,2730,9168 +3846,2735,7547,21960,13901,2720,14203,5708,2570,8704 +3847,2635,7242,23160,13373,2612,13735,5458,2400,8333 +3848,2565,6971,25350,13078,2545,13150,5259,2360,8054 +3849,2466,6680,27700,12193,2437,12208,5087,2220,7505 +3850,2469,6570,29290,11569,2429,11671,4931,2180,7201 +3851,2592,6706,29880,11407,2542,11835,5001,2250,7265 +3852,2716,6907,28910,11638,2650,12351,5378,2420,7693 +3853,2743,6979,27890,11559,2666,12504,5567,2550,8037 +3854,2668,6825,28250,10940,2575,11981,5411,2500,8013 +3855,2622,6770,28030,10730,2373,11251,4998,2230,7443 +3856,2656,6880,28420,11186,2358,11706,4802,2160,7170 +3857,2768,7399,28650,12150,2444,12803,5014,2400,7584 +3858,2807,7838,29240,12997,2583,13915,5330,2520,8088 +3859,2809,8067,29210,12996,2683,14282,5621,2520,8288 +3860,2785,8164,28100,12941,2765,14258,5777,2540,8552 +3861,2743,8080,26660,12718,2770,13936,5606,2450,8497 +3862,2724,8001,25560,12842,2705,13992,5478,2490,8515 +3863,2741,7851,24430,12718,2656,13927,5484,2470,8457 +3864,2722,7748,22720,12475,2604,14065,5344,2460,8521 +3865,2778,7714,21620,12379,2582,14290,5350,2500,8489 +3866,2804,7782,21390,12347,2583,14433,5469,2570,8584 +3867,2804,7704,21610,12508,2604,14649,5618,2600,8687 +3868,2871,7775,21700,12553,2592,14648,5569,2590,8593 +3869,2783,7439,21580,12177,2494,13968,5428,2500,8319 +3870,2621,7030,21560,11611,2409,13327,5259,2380,7883 +3871,2529,6807,22450,11013,2319,12778,5019,2230,7704 +3872,2470,6609,24030,10728,2246,12234,4830,2210,7489 +3873,2399,6300,25480,10027,2137,11327,4604,2090,7055 +3874,2396,6230,26160,9621,2144,10748,4498,2050,6792 +3875,2498,6373,26680,9693,2245,10909,4747,2120,7001 +3876,2624,6602,27080,9964,2404,11566,5083,2320,7453 +3877,2663,6672,27150,10146,2436,11687,5325,2460,7858 +3878,2641,6662,27230,9936,2342,11368,5229,2440,7795 +3879,2519,6467,27090,9635,2189,11173,4896,2180,7246 +3880,2517,6670,27640,9982,2185,11591,4746,2080,6954 +3881,2576,6970,28400,10596,2215,12405,4846,2160,7159 +3882,2640,7241,29020,11155,2308,13210,4916,2240,7629 +3883,2668,7330,28920,11319,2340,13408,4962,2230,7909 +3884,2763,7397,27890,11564,2364,13502,5059,2230,8192 +3885,2725,7428,26490,11492,2370,13484,5001,2220,8419 +3886,2667,7384,25100,11358,2319,13366,5078,2200,8202 +3887,2675,7313,23970,11388,2315,13180,5034,2200,8117 +3888,2697,7271,22310,11400,2341,13163,5101,2280,8084 +3889,2745,7472,21260,11466,2359,13493,5261,2330,8393 +3890,2832,7688,21070,11714,2434,13961,5561,2440,8659 +3891,2813,7706,21510,12123,2475,14238,5713,2510,8842 +3892,2931,7719,21900,12196,2488,14294,5692,2540,8887 +3893,2830,7405,22320,11792,2425,13826,5547,2450,8563 +3894,2698,7029,23860,11381,2342,13143,5370,2330,8170 +3895,2536,6750,26650,10860,2275,12535,5119,2180,7807 +3896,2462,6524,30210,10536,2210,12001,4932,2160,7511 +3897,2357,6316,32970,9979,2137,11257,4719,2040,7017 +3898,2372,6266,33500,9628,2133,10775,4603,2000,6771 +3899,2536,6442,33660,9850,2276,11040,4744,2110,6995 +3900,2677,6725,32620,10210,2441,11664,5121,2310,7486 +3901,2722,6926,33420,10529,2493,11819,5415,2470,7932 +3902,2732,7040,34020,10612,2488,11804,5506,2520,8110 +3903,2734,7094,33740,11258,2452,12318,5354,2450,7855 +3904,2811,7529,33740,12840,2584,13687,5725,2540,8023 +3905,3051,8558,33240,15281,2962,15594,6327,2920,8861 +3906,3242,9294,32930,16930,3229,17150,6831,3070,9803 +3907,3288,9381,32100,17260,3299,17508,7092,3070,10279 +3908,3350,9497,30630,17292,3321,17527,7086,3120,10784 +3909,3187,9092,29000,16226,3138,16646,6760,3010,10623 +3910,3268,9607,27740,17035,3298,17527,7163,3170,10680 +3911,3271,9529,26340,17189,3331,17625,7324,3130,10888 +3912,3237,9441,24400,16821,3306,17494,7174,3120,10830 +3913,3293,9450,23060,16607,3279,17439,7016,3070,10860 +3914,3184,9148,22770,15867,3137,16761,6677,2990,10860 +3915,3105,8891,23100,15589,3094,16383,6628,2960,10629 +3916,3122,8744,23300,15035,3009,15899,6454,2870,10270 +3917,2972,8306,23580,14484,2878,15151,6284,2740,9799 +3918,2787,7865,24970,14064,2792,14556,6046,2600,9250 +3919,2645,7500,27320,13612,2764,13915,5775,2440,8840 +3920,2554,7292,30970,13281,2668,13356,5532,2390,8501 +3921,2461,6953,34570,12471,2560,12394,5267,2270,7887 +3922,2472,6880,36900,11868,2541,11809,5133,2230,7496 +3923,2610,7011,38060,11882,2643,12039,5291,2300,7635 +3924,2738,7288,37190,12148,2809,12640,5620,2490,8049 +3925,2786,7422,38980,12249,2840,12840,5882,2630,8461 +3926,2727,7374,39310,12131,2793,12593,5943,2660,8510 +3927,2743,7414,38370,12641,2688,12822,5763,2550,8264 +3928,2843,7830,37730,14006,2759,14090,5723,2630,8426 +3929,3126,8872,35760,16358,3120,16215,6427,3060,9412 +3930,3303,9530,34760,18137,3424,17716,6980,3330,10253 +3931,3223,9923,33890,18581,3603,18237,7282,3420,10712 +3932,3253,10164,32320,18879,3669,18461,7441,3460,10942 +3933,3134,9663,30500,18018,3511,17768,6925,3270,10417 +3934,3217,10232,29060,19157,3647,18558,7434,3400,10842 +3935,3208,10208,27520,19213,3714,18918,7517,3370,10850 +3936,3139,9904,25350,18846,3630,18444,7421,3450,10872 +3937,3195,9868,23970,18408,3518,18742,7195,3410,10782 +3938,3119,9439,23590,17447,3311,17689,6832,3210,10564 +3939,3083,9058,23780,16807,3218,17083,6776,3100,10460 +3940,3072,8932,23960,16319,3148,16693,6652,3020,10361 +3941,2924,8499,24100,15655,3012,15843,6372,2870,9891 +3942,2717,8014,25460,15024,2917,15092,6090,2710,9402 +3943,2574,7662,28250,14457,2852,14475,5826,2550,9037 +3944,2497,7357,32360,13976,2753,13801,5676,2480,8623 +3945,2394,6973,35840,12964,2614,12832,5315,2330,8011 +3946,2411,6889,36410,12349,2599,12135,5178,2270,7646 +3947,2535,6987,36400,12169,2696,12282,5319,2330,7769 +3948,2700,7219,35020,12373,2825,12741,5598,2490,8195 +3949,2704,7337,35950,12499,2830,12862,5820,2640,8584 +3950,2669,7390,35870,12446,2788,12722,5924,2680,8657 +3951,2666,7501,34880,12865,2715,13115,5779,2610,8380 +3952,2782,7907,34440,14068,2794,14346,5846,2640,8572 +3953,3137,8975,34130,16198,3145,16384,6464,3000,9568 +3954,3282,9667,33720,17960,3441,17720,7080,3200,10260 +3955,3297,9855,33040,18140,3529,18013,7070,3290,10441 +3956,3243,10050,31540,18145,3562,18572,7312,3330,10588 +3957,3132,9535,29810,17045,3384,17849,6629,3140,10205 +3958,3252,9908,28530,18100,3493,18393,6916,3250,10672 +3959,3185,9931,26990,18155,3511,18552,7245,3310,10650 +3960,3134,9727,25050,17885,3457,18368,7024,3310,10435 +3961,3193,9673,23740,17511,3398,18194,6980,3250,10479 +3962,3122,9240,23340,16646,3239,17346,6717,3130,10338 +3963,3050,8971,23610,16273,3159,16889,6563,3090,10298 +3964,3086,8844,23830,15765,3069,16336,6398,2970,10102 +3965,2970,8463,23990,15108,2933,15614,6132,2850,9646 +3966,2790,8016,24900,14606,2840,14947,5859,2690,9160 +3967,2649,7596,27500,14096,2770,14468,5620,2530,8750 +3968,2540,7317,31300,13676,2672,13762,5546,2460,8372 +3969,2414,7032,34060,12756,2555,12758,5204,2320,7846 +3970,2399,6902,34750,12225,2560,12104,4945,2250,7433 +3971,2504,7002,35920,12089,2671,12256,5086,2310,7570 +3972,2620,7231,34080,12406,2798,12821,5451,2500,7968 +3973,2639,7384,35190,12355,2833,12853,5645,2640,8465 +3974,2630,7346,35070,12313,2798,12674,5726,2700,8615 +3975,2658,7406,34720,12580,2721,12839,5656,2640,8413 +3976,2798,7806,34690,13755,2774,14055,5619,2700,8555 +3977,3042,8827,33900,16028,3111,16103,6255,3050,9166 +3978,3230,9506,33580,17564,3380,17224,6795,3190,9893 +3979,3290,9635,32610,17785,3428,17623,6861,3160,10338 +3980,3299,9694,31090,17733,3464,17799,6696,3090,11084 +3981,3168,9162,29420,16581,3292,16779,6449,2970,10696 +3982,3256,9668,28090,17659,3457,17793,6860,3140,11218 +3983,3272,9638,26620,17691,3478,17900,7192,3290,11333 +3984,3204,9480,24630,17326,3393,17672,7098,3330,11050 +3985,3229,9448,23330,17026,3368,17496,7083,3370,10989 +3986,3156,9017,23050,16196,3208,17026,6764,3230,10626 +3987,3083,8797,23250,15899,3140,16768,6463,3090,10418 +3988,3125,8659,23370,15491,3066,16248,6252,2980,10069 +3989,2988,8303,23470,14833,2950,15482,6033,2830,9662 +3990,2788,7851,24810,14356,2851,14804,5757,2650,9091 +3991,2666,7466,27840,13902,2750,14174,5522,2480,8743 +3992,2600,7239,32160,13452,2650,13576,5290,2420,8368 +3993,2484,6931,36280,12533,2523,12538,5088,2290,7687 +3994,2485,6824,37720,11931,2524,11887,4975,2220,7362 +3995,2612,6931,38390,11881,2630,12080,5050,2280,7415 +3996,2724,7180,37120,12193,2767,12563,5419,2460,7856 +3997,2765,7299,38460,12138,2823,12732,5636,2630,8286 +3998,2745,7271,38460,12001,2800,12552,5684,2700,8499 +3999,2793,7381,37670,12477,2718,12689,5567,2640,8302 +4000,2872,7843,36830,13579,2721,13907,5486,2690,8294 +4001,3161,8808,35090,15723,3011,15807,6102,3110,9149 +4002,3412,9395,33730,17300,3281,17564,6721,3390,10283 +4003,3433,9406,32930,17658,3320,18142,6886,3480,10977 +4004,3407,9436,31220,17665,3318,18230,7077,3540,11080 +4005,3188,8909,29310,16842,3198,17622,6767,3380,10850 +4006,3335,9288,27940,17866,3400,18244,7105,3580,10999 +4007,3319,9266,26340,17991,3455,18290,7119,3620,11209 +4008,3289,9078,24330,17544,3343,18173,6988,3550,11193 +4009,3323,8970,22890,17208,3320,17897,6957,3480,11164 +4010,3219,8713,22400,16153,3169,17050,6700,3320,10762 +4011,3134,8423,22580,15490,3048,16408,6502,3150,10498 +4012,3155,8396,22420,15120,2978,16079,6226,3010,10262 +4013,3038,8050,22190,14439,2858,15409,6008,2890,9785 +4014,2848,7601,22350,14110,2757,14627,5760,2690,9238 +4015,2722,7237,23880,13504,2630,14077,5463,2520,8873 +4016,2637,6995,26700,12987,2559,13458,5296,2460,8478 +4017,2507,6669,29530,12120,2440,12493,4984,2300,7851 +4018,2482,6551,31240,11412,2400,11780,4759,2210,7478 +4019,2606,6697,32250,11402,2503,11874,4896,2250,7550 +4020,2697,6906,32330,11547,2618,12330,5222,2420,7907 +4021,2725,6968,32630,11474,2648,12356,5375,2560,8271 +4022,2746,6970,32450,11117,2587,11820,5221,2570,8208 +4023,2711,6745,32490,10965,2425,11658,4965,2400,7692 +4024,2740,7010,32530,11350,2375,12489,4863,2360,7446 +4025,2935,7608,32100,12321,2498,13731,5124,2630,7995 +4026,3028,8225,31520,13248,2730,14971,5481,2840,8686 +4027,3046,8568,31330,13701,2827,15685,5803,2970,9296 +4028,3179,8750,30090,13944,2856,15985,5938,3040,9508 +4029,3047,8641,28390,13896,2828,15889,5913,3000,9538 +4030,2990,8572,27050,14109,2845,16064,6030,3090,9530 +4031,2832,8484,25660,14089,2835,16044,5955,3060,9580 +4032,2833,8299,23670,13918,2804,16030,6023,3010,9586 +4033,2983,8180,22370,13843,2797,16102,6183,2990,9652 +4034,2987,7997,21950,13590,2745,15979,6160,2940,9735 +4035,2933,7871,22070,13332,2677,15731,6104,2850,9608 +4036,3007,7863,21960,13280,2631,15544,5933,2770,9427 +4037,2908,7548,21650,12856,2533,14871,5738,2670,9018 +4038,2745,7131,21910,12168,2418,14033,5435,2500,8562 +4039,2602,6859,23490,11475,2341,13328,5145,2350,8260 +4040,2491,6634,26050,11099,2260,12695,4938,2300,7944 +4041,2378,6354,29310,10192,2120,11745,4708,2140,7352 +4042,2398,6258,30650,9755,2086,11104,4514,2070,7065 +4043,2470,6372,31150,9804,2237,11169,4543,2130,7155 +4044,2583,6550,31370,10027,2365,11631,4799,2300,7586 +4045,2617,6643,31600,10190,2398,11668,5074,2450,7916 +4046,2718,6645,31900,9791,2331,11158,5073,2430,7953 +4047,2636,6601,32240,9675,2166,10805,4641,2180,7417 +4048,2589,6815,32130,9992,2145,11306,4434,2090,7145 +4049,2707,7252,32060,10612,2252,12270,4622,2200,7326 +4050,2827,7786,32200,11263,2367,13235,4724,2310,7698 +4051,2887,8041,32360,11591,2458,13672,4841,2390,7843 +4052,2875,8224,31080,11836,2531,13677,4994,2360,7973 +4053,2749,8189,29350,12013,2655,13884,5054,2400,8099 +4054,2633,8110,27590,12182,2651,14030,4998,2370,8161 +4055,2576,8048,26000,12062,2629,13873,4920,2350,8272 +4056,2659,7887,23930,12050,2600,13805,5290,2320,8404 +4057,2723,7986,22460,12248,2634,14123,5692,2350,8594 +4058,2805,7983,21910,12395,2638,14622,5928,2520,8922 +4059,2798,7809,22210,12538,2632,14777,5850,2600,9107 +4060,2857,7860,22410,12694,2588,14831,5836,2600,9192 +4061,2781,7601,22830,12371,2522,14563,5666,2520,8784 +4062,2630,7162,24490,11860,2412,13775,5465,2380,8386 +4063,2501,6824,27810,11219,2308,13043,5133,2230,8050 +4064,2432,6584,32030,10801,2240,12444,4898,2180,7716 +4065,2308,6337,35350,10096,2153,11454,4696,2060,7212 +4066,2339,6211,36920,9624,2126,10853,4532,2000,6898 +4067,2419,6381,37850,9721,2262,11034,4654,2090,7018 +4068,2595,6665,37100,10124,2420,11627,5037,2280,7517 +4069,2627,6865,38410,10410,2512,11818,5310,2460,8008 +4070,2622,7153,38100,10645,2492,11689,5394,2550,8205 +4071,2674,7077,37230,11443,2484,12234,5428,2560,8053 +4072,2759,7539,36330,13188,2606,13824,5547,2670,8315 +4073,3026,8685,35080,15997,3011,16065,6231,3130,9241 +4074,3202,9482,33640,17980,3360,18099,6909,3450,10579 +4075,3224,9728,32710,18541,3402,18717,7195,3580,11306 +4076,3226,9895,30950,18750,3451,19076,7459,3640,11712 +4077,3021,9420,29130,18012,3333,18489,7225,3500,11567 +4078,3050,9883,27930,19052,3483,19517,7652,3700,12011 +4079,3026,9791,26380,19001,3542,19703,7783,3780,12164 +4080,3038,9579,24360,18692,3456,19417,7721,3730,12044 +4081,3122,9597,23190,18326,3431,19110,7717,3690,12003 +4082,3076,9189,22880,17169,3237,18125,7413,3520,11637 +4083,3017,8559,23080,16453,3115,17250,7104,3320,11159 +4084,3044,8442,23390,15891,2986,16475,6730,3130,10771 +4085,2897,8106,23460,15156,2856,15491,6472,2960,10209 +4086,2719,7676,24440,14456,2726,14797,6113,2770,9638 +4087,2571,7308,26650,14018,2672,14178,5801,2580,9191 +4088,2488,7098,30620,13516,2605,13467,5570,2490,8743 +4089,2397,6792,34150,12639,2478,12418,5209,2310,8077 +4090,2378,6654,35400,12047,2458,11820,4988,2220,7674 +4091,2503,6798,35370,11920,2570,11905,5109,2270,7707 +4092,2611,7097,34110,12223,2746,12372,5388,2430,8108 +4093,2651,7254,35930,12294,2792,12579,5618,2600,8511 +4094,2744,7504,36390,12238,2784,12409,5662,2650,8630 +4095,2735,7316,36300,12699,2699,12412,5623,2600,8355 +4096,2785,7760,35860,13881,2755,13570,5630,2660,8569 +4097,3035,8816,34340,16160,3111,15853,6270,3070,9472 +4098,3297,9619,33540,17887,3361,17718,6800,3390,10622 +4099,3333,9918,32750,18120,3490,18477,7057,3540,11289 +4100,3367,10068,31120,18000,3568,19187,7304,3570,11824 +4101,3162,9617,29260,17217,3418,18234,6971,3430,11895 +4102,3224,10050,27930,18331,3570,19415,7443,3670,12163 +4103,3150,10000,26440,18555,3612,19636,7502,3720,12030 +4104,3124,9796,24410,18220,3565,19345,7358,3670,12168 +4105,3250,9883,23130,17881,3505,19046,7452,3650,11882 +4106,3176,9437,22740,16609,3289,18021,7122,3470,11525 +4107,3060,8774,22910,16042,3187,17494,6812,3290,11255 +4108,3099,8648,23090,15555,3083,16920,6541,3140,11023 +4109,2968,8247,23180,14902,2971,16055,6273,2980,10508 +4110,2766,7736,24360,14325,2852,15301,6044,2800,9929 +4111,2561,7370,27330,13769,2755,14620,5724,2610,9440 +4112,2466,7097,31710,13317,2664,13916,5497,2530,8966 +4113,2367,6738,35020,12476,2520,12785,5239,2380,8287 +4114,2371,6603,36520,11919,2505,12113,5082,2280,7883 +4115,2486,6731,36470,11810,2612,12165,5216,2320,7902 +4116,2604,6952,35180,12046,2730,12683,5431,2470,8270 +4117,2632,7128,36020,12164,2772,12821,5653,2640,8643 +4118,2718,7159,34970,12118,2739,12566,5712,2680,8765 +4119,2721,7186,34110,12605,2691,12774,5656,2550,8631 +4120,2795,7684,34210,13895,2795,14036,5873,2640,8969 +4121,3140,8793,33230,16035,3174,16354,6519,3010,9919 +4122,3394,9691,32720,17592,3439,17923,6993,3240,10596 +4123,3450,9933,32300,17786,3525,18248,6916,3290,10734 +4124,3480,10213,30800,17741,3547,18305,6985,3240,10624 +4125,3284,9786,29010,16635,3397,17633,6525,3040,10187 +4126,3327,10151,27640,17746,3521,18637,6859,3190,10619 +4127,3281,10038,26210,17713,3534,18588,6793,3210,10794 +4128,3219,9747,24340,17288,3503,18353,6712,3200,10654 +4129,3337,9649,23060,16911,3464,17812,6758,3140,10634 +4130,3215,9171,22730,15922,3277,16915,6535,3020,10338 +4131,3102,8835,23000,15510,3205,16539,6563,2990,10283 +4132,3128,8732,23250,15157,3103,16312,6340,2950,10112 +4133,3007,8341,23460,14594,2982,15519,6102,2820,9748 +4134,2804,7875,24790,14083,2864,14707,5885,2670,9268 +4135,2641,7494,27280,13605,2745,14153,5613,2520,8976 +4136,2508,7268,31170,13202,2689,13584,5423,2470,8613 +4137,2378,6880,33720,12345,2551,12555,5155,2320,8047 +4138,2361,6786,34120,11757,2541,11984,5076,2250,7713 +4139,2499,6888,34150,11703,2634,12069,5136,2290,7827 +4140,2645,7122,32340,11936,2758,12596,5349,2460,8189 +4141,2678,7287,33210,12077,2814,12802,5638,2630,8613 +4142,2723,7300,33250,12121,2761,12825,5717,2690,8768 +4143,2758,7364,32800,12482,2719,13196,5594,2570,8531 +4144,2856,7866,32790,13736,2818,14394,5690,2620,8705 +4145,3202,8878,32390,15661,3124,16186,6343,2950,9605 +4146,3506,9527,32060,17039,3331,17367,6768,3110,10570 +4147,3574,9560,31100,17026,3408,17488,6803,3150,11047 +4148,3628,9533,29680,16802,3430,17373,6870,3210,11344 +4149,3395,8973,27900,15514,3240,16438,6554,3090,11212 +4150,3447,9458,26530,16558,3431,17203,6878,3240,11661 +4151,3361,9457,25180,16697,3399,17423,7010,3300,11539 +4152,3300,9265,23360,16261,3351,17582,7031,3330,11587 +4153,3289,9244,22340,16090,3313,17529,6913,3290,11319 +4154,3179,8940,22200,15385,3173,16658,6548,3180,10960 +4155,3120,8692,22570,15284,3117,16418,6437,3080,10635 +4156,3185,8512,22920,14838,3024,15936,6258,2950,10323 +4157,3032,8157,23080,14324,2913,15170,6049,2810,9860 +4158,2848,7683,24150,13845,2803,14570,5833,2660,9318 +4159,2661,7367,26040,13477,2728,14061,5600,2490,8955 +4160,2563,7137,29220,13039,2700,13552,5453,2420,8569 +4161,2438,6768,31790,12272,2539,12556,5263,2280,7946 +4162,2411,6671,32150,11771,2551,11910,5098,2210,7584 +4163,2537,6844,32490,11730,2677,12081,5306,2260,7704 +4164,2640,7077,31760,12000,2797,12522,5670,2430,8052 +4165,2713,7253,33270,12166,2828,12745,5897,2610,8487 +4166,2667,7245,34060,12173,2806,12675,5931,2660,8616 +4167,2686,7280,33520,12383,2693,12966,5735,2530,8425 +4168,2831,7704,33190,13402,2770,14016,5758,2610,8589 +4169,3145,8683,32330,15338,3081,15974,6493,2980,9290 +4170,3319,9287,32080,16764,3344,17339,6997,3190,10244 +4171,3389,9445,31620,17034,3431,17506,7077,3240,10459 +4172,3483,9527,30260,17099,3531,17448,7435,3260,10964 +4173,3254,9032,28670,16305,3368,16923,6970,3090,10760 +4174,3330,9475,27530,17457,3538,17782,7272,3330,11263 +4175,3248,9544,26150,17605,3644,18038,7384,3370,11151 +4176,3169,9361,24200,17305,3520,18046,7107,3340,11009 +4177,3213,9309,22960,17061,3427,17765,6955,3300,11002 +4178,3125,8982,22550,15920,3235,16705,6883,3070,10731 +4179,3064,8707,22700,15474,3144,16313,6777,2990,10627 +4180,3083,8564,22670,15186,3057,16174,6572,3000,10377 +4181,2956,8168,22020,14617,2949,15440,6372,2870,9953 +4182,2781,7725,22210,14159,2825,14695,6071,2670,9369 +4183,2603,7419,23750,13663,2779,14094,5818,2500,8974 +4184,2526,7167,26600,13223,2695,13555,5537,2430,8585 +4185,2385,6838,29640,12295,2526,12526,5282,2260,7901 +4186,2376,6672,31410,11660,2488,11814,5130,2180,7465 +4187,2499,6746,32060,11441,2566,11889,5212,2220,7515 +4188,2617,6938,31290,11723,2658,12356,5504,2370,7876 +4189,2619,7004,31050,11655,2688,12456,5692,2530,8221 +4190,2542,6943,30990,11184,2587,12094,5623,2530,8237 +4191,2502,6787,31070,10986,2419,11690,5125,2330,7707 +4192,2545,6969,30430,11445,2394,12388,5052,2280,7524 +4193,2666,7417,30010,12564,2528,13471,5415,2490,8036 +4194,2863,7815,30390,13497,2719,14544,5717,2720,8626 +4195,2905,8042,30720,13704,2830,15158,5883,2820,9056 +4196,2846,8258,29620,13793,2851,15293,6003,2920,9284 +4197,2768,8146,28000,13608,2790,15539,5976,2850,9323 +4198,2812,8094,26770,13755,2770,15670,6157,2880,9510 +4199,2743,8053,25440,13489,2737,15860,5979,2960,9484 +4200,2746,7883,23590,13444,2724,15718,5760,2850,9455 +4201,2846,7927,22250,13341,2701,15545,5854,2800,9542 +4202,2870,7924,21790,13118,2676,15354,5821,2760,9495 +4203,2866,7798,22000,13043,2654,15389,5925,2750,9600 +4204,2917,7849,21880,13021,2622,15418,5925,2740,9559 +4205,2827,7548,21390,12673,2537,14889,5752,2630,9179 +4206,2654,7128,21680,12033,2416,14150,5454,2470,8717 +4207,2555,6854,23350,11457,2342,13396,5165,2320,8396 +4208,2430,6655,25620,11079,2277,12722,4963,2270,8128 +4209,2310,6342,28340,10290,2157,11894,4783,2120,7505 +4210,2273,6241,30280,9827,2143,11307,4540,2040,7183 +4211,2395,6356,31680,9783,2249,11349,4653,2080,7201 +4212,2507,6596,32330,10070,2377,11847,4869,2240,7624 +4213,2547,6700,32370,10232,2421,11988,5073,2380,7978 +4214,2598,6639,32420,9931,2359,11521,5064,2400,8032 +4215,2550,6445,32530,9697,2221,11068,4695,2150,7513 +4216,2548,6632,32380,10095,2201,11757,4543,2080,7243 +4217,2679,7180,32100,10733,2324,12784,4683,2210,7604 +4218,2833,7596,32040,11457,2507,13641,4840,2410,8156 +4219,2911,7717,31990,11985,2514,13972,4923,2560,8324 +4220,3004,7891,30830,12371,2644,14153,5233,2680,8453 +4221,3004,7903,29160,12712,2647,14450,5562,2710,8310 +4222,2915,7988,27490,12666,2595,14826,5550,2690,8507 +4223,2821,7908,25970,12542,2560,14829,5568,2680,8549 +4224,2778,7786,24010,12482,2582,14976,5635,2670,8744 +4225,2863,8002,22580,12333,2611,14953,5778,2670,8826 +4226,2939,8125,22130,12519,2619,15078,5973,2710,9101 +4227,2908,7922,22380,12731,2633,15378,6050,2750,9320 +4228,2973,7975,22560,12910,2612,15574,6003,2740,9302 +4229,2827,7726,22830,12478,2528,15088,5822,2630,8982 +4230,2659,7297,24430,11981,2422,14339,5621,2480,8572 +4231,2504,6891,27680,11351,2340,13600,5248,2320,8224 +4232,2425,6652,32320,10966,2268,12996,5029,2260,7890 +4233,2336,6384,36210,10241,2154,11965,4802,2130,7469 +4234,2295,6279,38050,9875,2134,11395,4609,2070,7124 +4235,2438,6438,39290,9949,2268,11460,4674,2130,7257 +4236,2563,6711,39030,10295,2399,12037,5017,2300,7723 +4237,2609,6924,40390,10601,2486,12251,5446,2460,8175 +4238,2671,7054,40910,10662,2461,12206,5602,2530,8354 +4239,2726,7223,40560,11433,2441,12739,5524,2470,8272 +4240,2853,7732,40080,13087,2598,14301,5681,2600,8718 +4241,3156,8994,37930,15723,3077,16378,6466,3090,9863 +4242,3396,9918,36810,17723,3518,18232,7109,3360,10818 +4243,3529,10350,35880,18429,3701,18618,7062,3460,11392 +4244,3553,10632,34000,18603,3784,18809,7072,3520,11814 +4245,3398,10222,31940,17817,3673,18091,6736,3290,11342 +4246,3499,10740,30290,19107,3842,19112,7283,3500,11606 +4247,3482,10721,28580,19153,3881,18987,7244,3530,11978 +4248,3469,10463,26210,18592,3762,19034,7394,3540,11806 +4249,3527,10378,24670,18149,3675,18886,7298,3490,12001 +4250,3442,9772,24150,17058,3443,18048,7032,3340,11717 +4251,3301,9340,24290,16551,3328,17565,6948,3280,11538 +4252,3274,9183,24410,16084,3218,17110,6729,3180,11177 +4253,3096,8780,24540,15553,3072,16351,6477,3020,10641 +4254,2897,8221,25940,15040,2965,15674,6208,2840,10011 +4255,2709,7798,29080,14506,2868,14985,5917,2630,9541 +4256,2591,7590,34040,13986,2766,14244,5758,2550,9083 +4257,2446,7172,37730,13151,2624,13086,5545,2370,8372 +4258,2451,7033,38530,12513,2593,12378,5360,2290,7961 +4259,2534,7116,38930,12363,2690,12527,5406,2330,7992 +4260,2652,7329,38620,12582,2797,12882,5717,2480,8332 +4261,2681,7450,40430,12708,2825,12979,5892,2620,8717 +4262,2725,7472,40710,12649,2803,12796,5887,2680,8861 +4263,2821,7595,39940,13097,2758,13152,5847,2650,8899 +4264,2951,8160,39130,14539,2899,14806,5980,2800,9284 +4265,3254,9446,37910,17059,3409,17424,6838,3360,10571 +4266,3465,10285,37340,19249,3798,19625,7500,3700,11797 +4267,3540,10570,36720,19431,4035,20493,7775,3920,12475 +4268,3648,10802,34970,19768,4119,20879,8029,4020,12863 +4269,3570,10183,32900,18935,3953,20355,7969,3870,12639 +4270,3690,10646,31270,20223,4123,21433,8276,4040,12867 +4271,3695,10763,29330,20471,4152,21692,8128,4060,12944 +4272,3586,10531,26830,20152,4095,21259,8127,4040,12908 +4273,3571,10267,25160,19745,4005,21206,8122,3960,12839 +4274,3410,9900,24600,18590,3798,20150,7700,3720,12617 +4275,3302,9681,24600,18043,3672,19227,7459,3580,12132 +4276,3300,9489,24680,17526,3540,18611,7066,3430,11751 +4277,3141,9044,24860,16737,3386,17620,6779,3250,11222 +4278,2915,8479,26870,16083,3190,16580,6524,3030,10526 +4279,2705,8037,30790,15302,3017,15687,6273,2800,10047 +4280,2620,7731,36320,14644,2888,14823,5968,2700,9514 +4281,2484,7346,40320,13669,2729,13544,5595,2500,8783 +4282,2429,7197,41850,12929,2682,12713,5409,2370,8312 +4283,2538,7275,43410,12722,2761,12725,5524,2350,8253 +4284,2693,7444,44000,12809,2851,13100,5849,2470,8590 +4285,2750,7530,45660,12882,2867,13150,6022,2590,8909 +4286,2711,7541,46200,12781,2815,12998,5992,2650,9065 +4287,2772,7696,44940,13529,2801,13518,5863,2590,9030 +4288,2914,8371,43980,15328,2987,15483,6234,2780,9385 +4289,3221,9648,40880,18469,3525,18401,7095,3360,10737 +4290,3501,10540,39680,20621,3916,20396,7662,3780,11566 +4291,3588,10841,38400,21158,4095,20912,8017,3930,11940 +4292,3645,10988,35970,21214,4224,21401,8378,3910,12107 +4293,3303,10641,33650,20342,4094,20938,7692,3790,11676 +4294,3330,11146,31860,21506,4142,21578,7888,3790,12145 +4295,3427,11088,29630,21170,4154,21518,7576,3630,12139 +4296,3423,10987,26990,20183,3952,21236,7555,3590,12189 +4297,3470,10707,25300,19502,3795,19940,7584,3590,12346 +4298,3387,10071,24680,18317,3571,18509,7152,3500,12026 +4299,3317,9863,24630,17599,3452,17984,6996,3390,11729 +4300,3320,9490,24650,16939,3303,17589,6863,3260,11431 +4301,3192,9032,24970,16271,3174,16832,6609,3100,10951 +4302,2980,8524,26750,15553,3041,15983,6315,2880,10330 +4303,2767,8063,30300,14954,2959,15239,6041,2690,9951 +4304,2644,7709,35890,14402,2854,14519,5829,2590,9432 +4305,2498,7311,40500,13442,2670,13376,5492,2400,8702 +4306,2475,7146,42850,12721,2635,12588,5328,2280,8277 +4307,2561,7187,44290,12575,2734,12674,5438,2300,8295 +4308,2710,7370,43960,12713,2830,13073,5703,2430,8589 +4309,2783,7529,46040,12765,2857,13122,5911,2580,8964 +4310,2752,7607,46580,12793,2832,13193,5911,2660,9125 +4311,2788,7645,45790,13265,2790,13791,5952,2670,9129 +4312,2967,8223,45110,14443,2956,15597,6147,2930,9609 +4313,3360,9428,43230,16950,3451,18353,7150,3540,10927 +4314,3566,10353,41410,18808,3845,20573,7943,3890,11981 +4315,3667,10717,40160,19394,3976,21465,8198,4080,12207 +4316,3759,10947,37900,19800,3973,21891,8239,4190,12711 +4317,3526,10554,35410,19090,3827,21302,7838,4040,12152 +4318,3627,10903,33390,20354,4019,22507,8214,4240,12498 +4319,3583,10867,31080,20732,4078,22617,8173,4120,12723 +4320,3582,10644,28250,20492,4070,22337,7808,3910,12576 +4321,3567,10752,26320,20054,3986,21672,7711,3840,12507 +4322,3450,10158,25550,18850,3728,20299,7360,3600,12163 +4323,3371,9720,25410,18217,3598,19644,7232,3510,11992 +4324,3403,9454,25440,17723,3465,18922,6988,3380,11673 +4325,3258,9102,25710,16961,3301,17882,6655,3200,11144 +4326,3045,8536,27670,16226,3168,17096,6393,3000,10571 +4327,2898,8026,31110,15595,3055,16232,6039,2800,10107 +4328,2710,7672,36640,14975,2923,15350,5823,2690,9608 +4329,2535,7196,40590,13910,2738,14068,5447,2500,8843 +4330,2477,6985,40500,13184,2701,13241,5186,2370,8383 +4331,2590,7015,39800,12906,2775,13186,5225,2380,8368 +4332,2726,7205,39690,13010,2881,13485,5543,2500,8668 +4333,2735,7327,42110,12978,2897,13560,5668,2640,9023 +4334,2712,7348,43640,12824,2848,13506,5698,2730,9251 +4335,2798,7538,42810,13473,2828,14031,5719,2730,9255 +4336,2992,8280,41190,15098,2986,15827,5950,2900,9849 +4337,3333,9543,39360,17843,3476,18558,6760,3290,11057 +4338,3543,10370,38410,19575,3837,20405,7370,3550,11871 +4339,3603,10425,37610,19988,3922,21017,7551,3570,12235 +4340,3660,10426,35720,20060,3901,21034,7645,3500,12267 +4341,3558,9911,33590,19050,3713,20083,7326,3410,11839 +4342,3596,10298,32090,20038,3901,20868,7636,3550,12004 +4343,3575,10373,30230,19679,3899,20900,7607,3540,11867 +4344,3510,10140,27960,19238,3759,20494,7524,3500,11671 +4345,3477,9950,26170,18788,3631,20002,7466,3440,11689 +4346,3398,9609,25410,17738,3394,18932,7111,3300,11440 +4347,3325,9418,25110,17172,3259,18410,6995,3240,11250 +4348,3285,9202,24960,16639,3172,17893,6713,3130,10962 +4349,3132,8799,24790,15996,3028,17035,6449,2960,10487 +4350,2934,8300,25390,15458,2937,16266,6139,2770,9995 +4351,2806,7892,27090,14912,2836,15492,5887,2580,9661 +4352,2677,7539,30070,14335,2746,14668,5741,2510,9251 +4353,2482,7131,32960,13334,2614,13479,5497,2350,8595 +4354,2470,6941,32890,12710,2544,12657,5195,2240,8124 +4355,2579,6977,32880,12374,2619,12602,5239,2270,8137 +4356,2711,7124,33160,12477,2719,12888,5461,2390,8435 +4357,2714,7168,33470,12352,2712,12972,5609,2530,8715 +4358,2683,7037,33580,11956,2611,12707,5546,2550,8753 +4359,2613,6920,34160,11721,2491,12537,5301,2390,8417 +4360,2663,7301,34190,12048,2525,13262,5365,2390,8597 +4361,2887,7954,33880,13172,2702,14700,5909,2600,9299 +4362,3040,8434,34110,14176,2881,15966,6121,2740,9865 +4363,3116,8650,33820,14540,2930,16397,6190,2810,10103 +4364,3163,8690,32370,14889,2947,16501,6141,2800,10183 +4365,3028,8569,30530,14772,2851,16013,6014,2700,10016 +4366,2952,8540,28860,14743,2865,15922,6042,2770,10191 +4367,2927,8456,26810,14477,2839,15804,5967,2740,9953 +4368,2918,8344,24620,14307,2808,15602,6001,2710,9702 +4369,2911,8332,23140,14031,2798,15597,6019,2730,9664 +4370,2882,8319,22570,13854,2775,15381,5959,2770,9645 +4371,2873,8282,22640,13788,2765,15361,6064,2780,9686 +4372,2976,8200,22620,13755,2715,15370,6033,2760,9632 +4373,2857,7819,22400,13251,2596,14775,5977,2650,9366 +4374,2674,7403,22490,12671,2487,14203,5704,2480,8899 +4375,2545,7106,24320,12124,2449,13647,5481,2340,8625 +4376,2432,6881,27200,11747,2376,13095,5267,2310,8355 +4377,2289,6540,30490,10946,2265,12124,5017,2150,7791 +4378,2313,6366,32850,10319,2214,11461,4757,2060,7402 +4379,2428,6424,34150,10161,2346,11502,4897,2080,7437 +4380,2541,6634,35100,10398,2426,11957,5201,2230,7742 +4381,2548,6745,35410,10534,2459,11998,5399,2380,8088 +4382,2501,6642,35450,10354,2400,11690,5402,2420,8123 +4383,2482,6462,35480,10453,2265,11504,5130,2300,7614 +4384,2484,6656,35000,10903,2274,12216,4980,2240,7606 +4385,2677,7295,34290,11972,2384,13399,5075,2390,8093 +4386,2880,7827,33770,12938,2548,14763,5423,2640,9023 +4387,2892,8105,33670,13548,2628,15460,5620,2800,9298 +4388,2756,8321,32360,13815,2681,15799,5954,2920,9700 +4389,2772,8442,30700,14185,2796,15970,6052,3010,10138 +4390,2719,8334,28910,14308,2788,16136,6250,3020,10116 +4391,2765,8177,27320,14397,2801,16322,6227,3060,10277 +4392,2736,7976,25330,14482,2781,16560,6066,3040,10288 +4393,2772,8163,23800,14618,2777,16635,6399,2920,10587 +4394,2822,8287,23220,14630,2824,16627,6745,3060,10650 +4395,2824,8186,23420,14598,2827,16892,6754,3050,10836 +4396,2915,8203,23660,14625,2774,16911,6670,2990,10626 +4397,2831,7886,24000,14150,2671,16217,6384,2870,10275 +4398,2663,7451,26150,13486,2556,15471,6085,2690,9780 +4399,2529,7040,30440,12660,2451,14546,5645,2490,9260 +4400,2420,6831,35990,12073,2371,13699,5382,2410,8724 +4401,2300,6504,40130,11234,2257,12516,5095,2240,8030 +4402,2278,6344,42370,10663,2215,11729,4859,2140,7599 +4403,2388,6462,43890,10618,2326,11856,4921,2170,7645 +4404,2559,6721,44180,10878,2459,12267,5223,2310,8035 +4405,2573,6891,45750,11201,2513,12380,5527,2460,8490 +4406,2587,6973,46230,11364,2476,12352,5552,2540,8723 +4407,2644,7141,45810,12378,2490,12999,5566,2500,8837 +4408,2758,7761,44410,14483,2732,15012,5922,2700,9451 +4409,3060,9043,41770,17553,3254,18069,6938,3250,10498 +4410,3264,9923,40550,19974,3682,20386,7540,3490,11203 +4411,3357,10216,39690,20829,3859,21060,7701,3490,11216 +4412,3427,10370,37600,21044,3962,21016,7797,3530,11185 +4413,3268,10001,35070,20262,3870,20849,7295,3370,10785 +4414,3330,10428,33210,21257,4016,21515,7604,3560,11111 +4415,3285,10366,30890,21227,4002,21390,7853,3530,11246 +4416,3293,10375,28100,20657,3910,20790,7626,3510,11340 +4417,3333,10379,25940,20287,3853,20341,7532,3460,11361 +4418,3220,9884,25080,19205,3637,19614,7451,3260,11113 +4419,3150,9373,24910,18605,3459,19249,7371,3260,10904 +4420,3166,9191,24910,17964,3284,18601,7020,3130,10677 +4421,3027,8735,25110,17001,3134,17577,6757,2990,10226 +4422,2832,8262,26860,16225,2970,16884,6324,2800,9674 +4423,2653,7791,30800,15652,2889,15908,6028,2600,9254 +4424,2584,7475,36360,14859,2777,15030,5823,2520,8881 +4425,2429,7076,40670,13866,2630,13683,5464,2350,8225 +4426,2397,6891,42220,13080,2588,12819,5312,2250,7850 +4427,2508,6946,43270,12841,2672,12674,5378,2260,7904 +4428,2655,7168,42640,12869,2797,12983,5539,2400,8252 +4429,2680,7317,43880,12976,2824,13107,5792,2560,8625 +4430,2697,7422,43920,13045,2791,12998,5931,2640,8750 +4431,2741,7545,43050,13646,2772,13456,5916,2640,8626 +4432,2855,8047,41850,15279,2933,15159,6114,2810,8983 +4433,3127,9288,39220,18097,3408,17905,6859,3310,10136 +4434,3427,10234,37740,20253,3789,19968,7448,3660,11305 +4435,3519,10402,36760,21053,3923,20781,7739,3870,11757 +4436,3540,10466,34800,21333,4003,21339,8068,3980,11930 +4437,3369,10086,32680,20492,3824,21051,7912,3860,11801 +4438,3433,10578,30970,21580,3967,22325,8279,3930,12209 +4439,3385,10578,29130,21821,3975,22615,8307,4000,12426 +4440,3344,10381,26690,21603,3915,22637,8202,3830,12105 +4441,3395,10581,25080,21221,3860,22268,8178,3790,11966 +4442,3294,10112,24470,19918,3614,21032,7994,3660,11502 +4443,3201,9385,24470,18879,3408,20146,7701,3540,11355 +4444,3207,9220,24560,18053,3262,19370,7383,3350,11185 +4445,3060,8711,24720,17101,3116,18238,6959,3170,10712 +4446,2842,8219,26360,16344,2974,17290,6572,2970,10145 +4447,2688,7718,29640,15615,2897,16323,6178,2770,9719 +4448,2582,7369,34440,14954,2795,15321,5942,2680,9314 +4449,2457,6977,38180,13875,2627,14043,5566,2470,8603 +4450,2394,6832,39460,13193,2581,13163,5252,2360,8202 +4451,2485,6845,40050,12924,2655,13097,5375,2370,8223 +4452,2655,7111,38890,13018,2777,13373,5615,2500,8559 +4453,2721,7287,40420,13011,2799,13506,5857,2630,8925 +4454,2706,7323,40350,13068,2792,13422,5978,2730,9093 +4455,2724,7426,38770,13438,2775,14012,6019,2690,9127 +4456,2832,8040,38210,14877,2877,15687,6254,2810,9668 +4457,3103,9196,36790,17309,3276,18125,7155,3290,11019 +4458,3297,10060,36310,19008,3585,20031,7749,3560,11929 +4459,3402,10496,35690,19153,3686,20611,7731,3580,12121 +4460,3482,10467,34270,19131,3738,20736,7703,3520,12180 +4461,3396,10099,32410,18022,3564,19437,7222,3320,11715 +4462,3532,10289,30970,19040,3711,19941,7599,3510,11873 +4463,3512,10334,29350,19074,3737,19831,7642,3550,11909 +4464,3515,10188,27170,18659,3647,19492,7494,3510,11859 +4465,3531,10075,25550,18295,3575,19314,7538,3480,11975 +4466,3372,9668,24920,17321,3381,18335,7210,3350,11768 +4467,3246,9451,24890,16872,3272,17880,6969,3290,11525 +4468,3220,9285,24990,16258,3169,17435,6784,3190,11231 +4469,3064,8776,25320,15596,3038,16616,6611,3040,10694 +4470,2841,8276,26630,14977,2947,15933,6401,2850,10057 +4471,2675,7909,29520,14406,2894,15363,6152,2690,9562 +4472,2630,7564,34090,13908,2794,14670,5812,2600,9041 +4473,2472,7203,38520,12949,2657,13551,5553,2410,8353 +4474,2424,7037,40620,12382,2620,12826,5391,2320,7886 +4475,2542,7078,42150,12160,2709,12891,5429,2330,7872 +4476,2698,7317,42230,12378,2824,13255,5625,2460,8238 +4477,2770,7448,44730,12509,2858,13342,5838,2610,8584 +4478,2812,7465,46000,12505,2825,13272,5855,2700,8744 +4479,2818,7563,45970,13172,2833,13766,5879,2730,8579 +4480,2963,8297,45190,14730,3048,15456,6018,2880,8952 +4481,3238,9695,42750,17547,3560,18211,6875,3400,10168 +4482,3451,10911,40990,19796,3996,20407,7705,3810,11456 +4483,3427,11300,39800,20592,4099,21216,8059,3980,12187 +4484,3437,11455,37580,20961,4141,21713,8338,4080,12661 +4485,3111,11170,35170,20249,3912,21232,8149,3950,12671 +4486,3259,11527,33040,21623,4038,22255,8680,4190,12878 +4487,3390,11561,30840,21846,4119,22492,8715,4240,12965 +4488,3453,11430,28190,21440,4056,22469,8480,4190,12887 +4489,3518,11545,26360,21095,3988,22165,8421,4130,12872 +4490,3404,11005,25560,19633,3768,20754,8129,3850,12614 +4491,3315,10273,25370,18784,3589,20075,7925,3690,12262 +4492,3290,9977,25430,18019,3422,19361,7529,3500,11892 +4493,3130,9436,25670,17051,3245,18298,7102,3290,11332 +4494,2935,8768,27810,16091,3087,17423,6769,3030,10582 +4495,2789,8331,32080,15336,2990,16423,6432,2790,10144 +4496,2688,7897,38430,14711,2852,15437,6129,2670,9651 +4497,2553,7419,43970,13590,2680,14082,5746,2450,8878 +4498,2524,7182,46900,12815,2617,13135,5415,2330,8375 +4499,2609,7208,48230,12553,2671,13036,5458,2330,8406 +4500,2802,7374,47180,12590,2773,13281,5701,2440,8697 +4501,2806,7523,48380,12600,2786,13333,5940,2610,9066 +4502,2835,7529,47500,12497,2793,13302,5885,2710,9194 +4503,2899,7689,46580,13210,2776,13697,5785,2680,9200 +4504,3018,8395,45520,14911,2962,15361,6001,2800,9834 +4505,3411,9841,42670,17725,3469,18274,6986,3340,11302 +4506,3564,10937,40980,19900,3907,20612,7590,3760,12348 +4507,3655,11458,39600,20604,4104,21501,7689,3970,12403 +4508,3726,11741,37340,21076,4242,22099,8086,3960,12384 +4509,3549,11468,34880,20513,4065,21720,7789,3780,12201 +4510,3652,11824,33060,21485,4204,22907,7875,3790,12331 +4511,3638,11909,30950,21741,4179,23091,7797,3710,12561 +4512,3520,11620,28420,21137,4046,22389,7603,3610,12371 +4513,3566,11460,26560,20442,3942,21870,7534,3570,12494 +4514,3427,10884,25710,18954,3667,20741,7137,3380,12219 +4515,3290,10400,25510,18383,3528,19944,6998,3310,11964 +4516,3334,10107,25360,17788,3406,19111,6687,3190,11775 +4517,3199,9541,25410,16858,3260,18081,6413,3050,11267 +4518,2973,8912,25890,16176,3160,17240,6136,2860,10647 +4519,2795,8480,27740,15607,3024,16609,5823,2680,10168 +4520,2716,7989,31030,14975,2881,15790,5531,2610,9810 +4521,2573,7474,33530,13866,2699,14547,5305,2430,9082 +4522,2488,7247,34070,13144,2626,13652,5119,2330,8588 +4523,2562,7205,35800,12756,2680,13550,5180,2350,8580 +4524,2710,7301,35780,12844,2756,13784,5496,2460,8794 +4525,2771,7392,36590,12713,2752,13677,5614,2580,9061 +4526,2723,7287,36460,12403,2692,13369,5555,2640,9081 +4527,2702,7187,35810,12386,2582,13375,5435,2510,8895 +4528,2760,7488,35430,13138,2600,14553,5474,2560,9215 +4529,2930,8092,35060,14524,2757,16250,5992,2900,10051 +4530,3164,8508,35250,15611,2925,17648,6255,3110,10827 +4531,3329,8596,35040,16012,2982,18321,6338,3250,11159 +4532,3428,8688,33670,16202,3052,18385,6427,3310,11315 +4533,3400,8550,31880,15906,3037,18520,6367,3290,11279 +4534,3428,8482,30300,15896,3055,18564,6344,3340,11101 +4535,3401,8482,28660,15757,3050,18669,6478,3400,10971 +4536,3346,8374,26450,15457,3001,18504,6598,3500,10850 +4537,3411,8284,24870,15398,2959,18494,6649,3480,10716 +4538,3370,8294,24220,15152,2934,18265,6701,3370,10810 +4539,3260,8342,24090,15144,2922,18178,6615,3230,10914 +4540,3263,8273,23970,14893,2857,17873,6363,3110,10795 +4541,3155,7937,23730,14294,2749,17179,6077,2960,10386 +4542,2955,7461,24500,13647,2638,16333,5754,2780,9847 +4543,2754,7198,26760,13048,2501,15434,5459,2600,9460 +4544,2650,6966,30070,12449,2412,14598,5318,2510,9067 +4545,2523,6641,34000,11581,2283,13461,5182,2350,8435 +4546,2449,6457,35270,10941,2237,12723,4934,2240,8044 +4547,2543,6528,36140,10888,2324,12553,5010,2260,8030 +4548,2673,6715,37390,11063,2439,12762,5298,2380,8374 +4549,2674,6823,36460,11080,2472,12695,5497,2510,8599 +4550,2690,6746,36520,10966,2384,12453,5534,2550,8647 +4551,2746,6696,36290,10768,2278,12318,5287,2370,8353 +4552,2776,7011,36650,11372,2325,13115,5251,2350,8510 +4553,2963,7620,36850,12245,2432,14301,5554,2490,9067 +4554,3231,8083,37000,13231,2698,15236,5928,2720,9751 +4555,3379,8271,37020,13728,2795,16163,6134,2890,9846 +4556,3363,8486,35660,14120,2817,16647,6325,2940,10137 +4557,3318,8571,33700,14215,2826,17034,6368,2980,10378 +4558,3310,8644,31750,14456,2793,17102,6305,2950,10238 +4559,3243,8521,29800,14351,2753,17182,6013,2890,10120 +4560,3193,8463,27410,14284,2754,16586,5833,2940,10150 +4561,3239,8401,25630,14264,2804,16634,6004,2990,10482 +4562,3245,8701,24900,14396,2863,16994,6338,3020,10715 +4563,3201,8694,24770,14540,2875,17137,6420,3060,10901 +4564,3250,8677,24920,14590,2838,17093,6363,3040,10745 +4565,3121,8321,25750,14170,2737,16580,6195,2900,10335 +4566,2916,7870,28930,13531,2635,15830,5915,2730,9848 +4567,2724,7434,34440,12823,2517,14998,5577,2550,9360 +4568,2606,7156,41630,12270,2444,14225,5376,2470,8947 +4569,2471,6806,47460,11485,2303,13135,5131,2310,8254 +4570,2386,6639,50010,10822,2264,12325,4840,2210,7740 +4571,2519,6687,51320,10790,2372,12370,5028,2250,7790 +4572,2689,6920,51100,11077,2498,12745,5367,2370,8135 +4573,2720,7104,53110,11319,2532,12895,5677,2550,8546 +4574,2761,7165,53580,11617,2546,12985,5800,2650,8835 +4575,2832,7435,53200,12782,2608,13879,5887,2630,8951 +4576,3002,8308,51840,15187,2930,16135,6174,2880,9425 +4577,3348,9813,48820,18784,3530,19543,6921,3420,10661 +4578,3547,10707,46390,21365,3970,21938,7487,3760,11680 +4579,3631,11090,44160,22151,4201,22574,7643,3950,11976 +4580,3829,11402,41420,22703,4291,22462,7812,3980,12117 +4581,3673,11049,38490,21820,4179,22110,7034,3640,11733 +4582,3725,11676,35920,22913,4325,23337,7101,3680,12125 +4583,3677,11783,33280,22890,4237,22654,7387,3800,12335 +4584,3702,11553,30180,22252,4147,20884,7691,3890,12131 +4585,3747,11259,28000,21189,4060,20420,7507,3910,12174 +4586,3616,10830,27000,19307,3762,19809,7541,3710,11981 +4587,3494,10491,26700,18588,3650,19289,7246,3520,11936 +4588,3511,10136,26680,17862,3482,18685,7040,3320,11591 +4589,3329,9640,27440,17215,3295,17708,6748,3150,11051 +4590,3124,9070,30190,16461,3156,16919,6436,2940,10435 +4591,2909,8551,35230,15757,3063,16051,6108,2730,9902 +4592,2723,8091,42040,15149,2949,15180,5845,2630,9426 +4593,2566,7602,47470,14049,2740,13918,5519,2440,8629 +4594,2505,7385,49790,13285,2699,13116,5344,2330,8171 +4595,2591,7372,51290,13029,2761,13116,5368,2340,8201 +4596,2763,7516,50860,13090,2833,13482,5758,2460,8492 +4597,2765,7622,52370,13127,2869,13558,5950,2610,8818 +4598,2764,7720,52470,13177,2867,13564,6025,2710,9036 +4599,2901,8008,51780,14038,2855,14256,5977,2760,9182 +4600,3094,8944,51700,15773,3069,16264,6227,2990,9747 +4601,3507,10509,48990,18969,3583,19436,7135,3600,10930 +4602,3819,11416,46710,21350,3969,21919,7884,3980,12268 +4603,3908,11715,44910,22059,4101,22792,8302,4180,13019 +4604,3988,11817,42380,22530,4228,23177,8589,4290,13636 +4605,3853,11387,39620,21780,4043,22688,8316,4200,13505 +4606,3769,11785,37080,22913,4240,23792,8630,4440,13725 +4607,3671,11792,34260,23274,4270,23875,8750,4480,13854 +4608,3623,11684,30940,22868,4210,23734,8696,4390,13692 +4609,3686,11639,28740,22573,4161,23590,8684,4370,13572 +4610,3540,11185,27610,21276,3943,22254,8434,4160,13120 +4611,3447,10638,27300,20369,3787,21240,8128,3980,12889 +4612,3417,10455,27120,19514,3609,20469,7698,3730,12540 +4613,3239,9869,27680,18598,3431,19358,7293,3510,11898 +4614,3014,9197,30390,17664,3311,18246,6992,3250,11257 +4615,2818,8630,35420,16796,3154,17235,6540,3020,10626 +4616,2707,8203,42210,15948,2982,16209,6246,2870,10061 +4617,2531,7750,47630,14773,2772,14720,5743,2610,9226 +4618,2484,7483,50170,13836,2689,13748,5586,2470,8708 +4619,2553,7450,52090,13476,2774,13610,5641,2460,8646 +4620,2711,7607,52350,13524,2856,13869,5821,2570,8836 +4621,2728,7714,53820,13406,2854,13873,5997,2690,9188 +4622,2755,7735,54060,13414,2829,13790,6057,2780,9433 +4623,2869,8029,52630,14373,2839,14565,5985,2790,9433 +4624,3104,8859,51590,16398,3089,16687,6236,3040,10059 +4625,3444,10421,48560,19652,3628,20137,7173,3640,11488 +4626,3693,11328,46470,21963,4021,22497,7813,4000,12407 +4627,3716,11467,44850,22555,4098,22827,8164,4060,12604 +4628,3743,11337,42310,22835,4083,23144,8363,4190,12849 +4629,3533,10763,39590,21827,3824,22737,8045,4070,12484 +4630,3637,10915,37200,22985,3999,24232,8546,4320,12562 +4631,3681,10808,34410,23038,3999,23766,8513,4180,12438 +4632,3598,10723,31190,21418,3843,23008,8170,4090,12663 +4633,3593,10576,29000,20710,3742,22035,8142,3910,12549 +4634,3465,10137,27940,19112,3560,20924,7948,3730,12513 +4635,3383,9877,27380,18285,3454,20338,7682,3690,12293 +4636,3358,9686,27290,17711,3341,19784,7468,3530,12095 +4637,3190,9179,27630,16956,3201,18808,7158,3360,11527 +4638,2988,8680,29300,16288,3082,17819,6779,3130,10893 +4639,2801,8174,32540,15592,2994,16888,6507,2920,10366 +4640,2693,7810,37280,14985,2883,15902,6221,2790,9816 +4641,2550,7365,40760,13953,2713,14613,5875,2570,9047 +4642,2503,7185,42250,13259,2674,13703,5631,2450,8604 +4643,2563,7246,43170,12948,2751,13635,5665,2450,8540 +4644,2723,7426,41890,12981,2830,13879,5876,2560,8831 +4645,2746,7531,42950,13113,2846,13850,6056,2700,9153 +4646,2758,7557,43300,13210,2846,13840,6095,2790,9353 +4647,2868,7680,43010,13795,2820,14541,6094,2790,9386 +4648,3028,8505,43310,15442,2970,16480,6443,3010,10097 +4649,3383,9933,42300,18055,3427,19360,7484,3650,11609 +4650,3597,11012,41600,19579,3752,21211,8178,3960,12808 +4651,3688,11281,40600,19722,3844,21633,8073,4120,13248 +4652,3680,11473,38510,19627,3972,21407,8453,4180,13534 +4653,3515,11072,36160,18692,3868,20711,8209,4030,13466 +4654,3635,11395,34170,19821,4026,21576,8507,4230,13491 +4655,3573,11352,31920,19926,3953,21514,8429,4280,13757 +4656,3519,11081,29100,19513,3872,21238,8151,4140,13580 +4657,3521,10904,27180,19292,3778,21041,8206,4110,13544 +4658,3390,10282,26290,18388,3560,19974,7894,3940,13241 +4659,3310,9863,26070,17943,3482,19198,7652,3790,12953 +4660,3319,9613,26140,17245,3358,18529,7368,3630,12622 +4661,3160,9074,26560,16506,3184,17677,7060,3420,11971 +4662,2948,8453,28220,15765,3055,16861,6724,3210,11253 +4663,2767,7971,31840,15287,2994,16072,6303,2980,10727 +4664,2653,7643,36620,14767,2879,15306,6173,2830,10094 +4665,2526,7165,39610,13707,2711,14187,5783,2600,9230 +4666,2467,6976,40220,12971,2673,13301,5511,2450,8690 +4667,2566,6981,41630,12783,2753,13236,5492,2440,8674 +4668,2704,7200,41070,12873,2878,13573,5740,2550,8846 +4669,2760,7362,42060,12936,2898,13620,6027,2680,9197 +4670,2728,7480,43610,13021,2860,13609,6089,2810,9432 +4671,2801,7547,44000,13539,2841,14104,6126,2770,9465 +4672,2933,8208,43390,15076,3014,15800,6365,2960,9993 +4673,3322,9589,41870,17801,3443,18674,7277,3510,11243 +4674,3616,10444,40730,19741,3772,21010,7843,3910,12204 +4675,3692,10808,39860,20259,3901,21749,7838,3930,12408 +4676,3660,10850,37850,20689,3978,22138,8032,3960,12652 +4677,3466,10413,35740,19785,3851,21589,7455,3830,12271 +4678,3558,10720,34040,20956,4047,22251,7972,4000,12619 +4679,3532,10606,32110,20905,4107,21935,7899,3990,12788 +4680,3515,10455,29420,20352,4024,21474,7875,3930,12790 +4681,3533,10299,27550,19829,3941,21028,7866,3880,12690 +4682,3402,9862,26610,18618,3693,19930,7549,3700,12355 +4683,3309,9627,26320,18130,3516,19398,7493,3590,12198 +4684,3310,9456,26130,17603,3388,18983,7303,3480,12075 +4685,3134,8992,26140,16964,3227,18140,7040,3310,11538 +4686,2941,8436,26720,16286,3100,17326,6706,3110,10959 +4687,2770,7981,28570,15627,2974,16526,6463,2920,10479 +4688,2633,7662,31280,14983,2861,15720,6215,2830,9998 +4689,2474,7227,34390,13867,2688,14494,5806,2620,9239 +4690,2417,6975,35820,13088,2607,13497,5701,2480,8658 +4691,2527,6975,36930,12790,2668,13368,5744,2470,8607 +4692,2678,7119,36730,12730,2738,13592,5827,2540,8858 +4693,2683,7207,37600,12591,2737,13571,5850,2670,9114 +4694,2653,7132,38270,12274,2658,13311,5823,2740,9199 +4695,2648,7082,38260,12211,2546,13247,5668,2620,8938 +4696,2741,7405,37740,12836,2621,14023,5591,2620,9173 +4697,2934,8002,37330,14074,2869,15631,6103,2910,10276 +4698,3084,8424,37290,15219,3179,16972,6482,3170,11316 +4699,3135,8542,37180,15715,3359,17687,6716,3460,11964 +4700,3183,8576,35720,16190,3420,18180,6823,3660,12718 +4701,3071,8468,33780,16213,3460,18557,6952,3740,12413 +4702,3102,8541,32160,16381,3503,18924,7090,3760,12654 +4703,3055,8541,30360,16232,3536,19019,7224,3740,12540 +4704,3039,8503,27900,16164,3525,19194,7174,3660,12280 +4705,3066,8468,26080,15886,3496,19371,7172,3710,12179 +4706,3098,8551,25210,15435,3401,18960,6965,3620,12088 +4707,3052,8602,24990,15303,3342,18558,6868,3510,11985 +4708,3068,8520,24850,15231,3262,18150,6834,3390,11665 +4709,2944,8143,24870,14698,3111,17387,6623,3230,11189 +4710,2775,7702,26120,14044,2951,16668,6292,3050,10599 +4711,2627,7406,28810,13352,2810,15902,5936,2840,10181 +4712,2517,7094,32750,12830,2679,15045,5693,2710,9701 +4713,2381,6750,36920,11856,2491,13851,5239,2490,8925 +4714,2322,6542,39750,11169,2388,12960,4967,2350,8366 +4715,2421,6599,41530,10895,2437,12750,5006,2340,8255 +4716,2566,6801,42780,10896,2537,12904,5275,2420,8431 +4717,2584,6902,43210,11089,2538,12913,5381,2530,8702 +4718,2541,6828,43220,10900,2481,12631,5335,2600,8733 +4719,2497,6832,43200,11018,2421,12735,5237,2570,8575 +4720,2553,7177,42980,11940,2541,13803,5268,2600,8716 +4721,2676,7788,42630,13275,2863,15308,5656,2880,9325 +4722,2761,8539,41760,14392,3162,17054,6178,3160,10388 +4723,2885,8869,40970,15029,3340,18081,6498,3330,11189 +4724,2922,9185,39020,15621,3445,18580,6810,3460,11726 +4725,2891,9357,36840,16006,3446,18829,6983,3530,12064 +4726,2911,9354,34720,15957,3482,18784,7073,3550,11916 +4727,2925,9241,32560,16092,3473,18589,7081,3520,11934 +4728,2905,9138,29830,16090,3423,18556,7094,3470,11970 +4729,2949,8968,27660,16259,3410,18731,7277,3500,12137 +4730,3004,9108,26500,16300,3429,18929,7461,3610,12417 +4731,3047,9181,26140,16125,3339,18710,7350,3520,12446 +4732,3077,9056,25960,15913,3211,18315,7239,3360,11857 +4733,2940,8621,26470,15310,3069,17598,6840,3220,11365 +4734,2772,8187,28500,14593,2906,16736,6510,3010,10737 +4735,2624,7681,32620,13772,2749,15873,6139,2790,10121 +4736,2524,7387,38050,13086,2609,15039,5763,2650,9544 +4737,2366,6914,42610,12058,2439,13713,5395,2440,8749 +4738,2339,6680,45060,11327,2366,12828,5061,2310,8190 +4739,2424,6678,46470,11115,2432,12621,5069,2300,8107 +4740,2566,6832,46850,11274,2511,12707,5318,2390,8351 +4741,2598,6943,47280,11397,2517,12717,5591,2510,8618 +4742,2560,7010,47160,11576,2533,12609,5659,2610,8813 +4743,2530,7185,46880,12520,2568,12956,5612,2630,8898 +4744,2617,7772,46710,14527,2763,14378,5800,2700,9253 +4745,2837,8934,45960,17206,3170,16458,6417,3080,10196 +4746,2962,9841,44730,19392,3501,18480,7138,3440,11426 +4747,3153,10106,43840,20171,3668,19574,7503,3620,12351 +4748,3242,10364,41790,20761,3778,20304,7847,3720,12850 +4749,3239,10599,39410,20537,3762,20545,7933,3740,13037 +4750,3212,10583,36870,21323,3784,20950,8128,3820,13251 +4751,3094,10569,34200,21478,3787,21045,8134,3820,13217 +4752,3068,10509,31030,21427,3724,21084,8084,3780,13369 +4753,3142,10589,28800,21345,3726,21303,8273,3840,13423 +4754,3180,10537,27600,20769,3663,21071,8326,3870,13407 +4755,3183,10132,27260,20042,3544,20803,8172,3780,13284 +4756,3193,9931,27140,19415,3406,20252,7852,3600,12814 +4757,3060,9469,28090,18599,3244,19487,7594,3420,12304 +4758,2887,8879,31490,17760,3118,18458,7196,3210,11600 +4759,2679,8271,37560,16778,2942,17243,6798,2940,10913 +4760,2578,7823,45210,15914,2784,16158,6405,2800,10203 +4761,2420,7341,50330,14580,2589,14659,5921,2580,9302 +4762,2359,7074,52370,13664,2487,13640,5720,2440,8768 +4763,2451,7067,54120,13321,2545,13369,5740,2410,8680 +4764,2624,7239,53790,13245,2634,13490,5898,2490,8856 +4765,2681,7361,55150,13271,2687,13489,6060,2610,9121 +4766,2694,7461,55250,13346,2702,13687,6141,2750,9424 +4767,2689,7827,54540,14527,2749,14640,6138,2870,9603 +4768,2873,8833,53290,16760,3086,17100,6633,3180,10490 +4769,3217,10406,49830,20223,3723,20707,7888,3930,12140 +4770,3480,11310,47830,22785,4223,23413,8654,4330,13562 +4771,3520,11683,46180,23588,4413,24444,8883,4490,14037 +4772,3594,11770,43490,24158,4554,24861,9273,4610,14405 +4773,3418,11292,40660,23405,4406,24548,8992,4540,14342 +4774,3446,11723,38200,24347,4443,25627,9638,4740,14838 +4775,3430,11592,35360,24651,4483,25728,9550,4760,15090 +4776,3455,11359,32020,24069,4446,25551,9612,4680,15007 +4777,3506,11121,29730,23702,4364,25534,9531,4610,14917 +4778,3382,10698,28650,22485,4102,24536,8997,4330,14397 +4779,3295,10423,28190,21612,3922,23596,8667,4150,14001 +4780,3301,10104,28060,20767,3736,22497,8276,3960,13560 +4781,3146,9572,28500,19633,3553,21149,7964,3730,12800 +4782,2923,9005,31230,18606,3355,19870,7539,3450,12094 +4783,2744,8428,36730,17682,3231,18646,7125,3150,11196 +4784,2644,8012,43590,16737,3072,17337,6816,2970,10551 +4785,2469,7579,48860,15366,2864,15656,6349,2740,9557 +4786,2403,7325,50650,14402,2753,14523,6021,2600,9048 +4787,2530,7354,51280,13955,2827,14189,5987,2550,8930 +4788,2677,7489,50820,13825,2893,14304,6168,2620,9097 +4789,2745,7627,51290,13773,2912,14281,6242,2750,9363 +4790,2754,7690,50770,13825,2891,14287,6353,2870,9688 +4791,2734,7945,49360,14784,2947,15143,6534,2920,9819 +4792,2895,8659,48420,16866,3229,17185,6756,3140,10527 +4793,3219,9908,46060,20202,3767,20181,7732,3690,11890 +4794,3393,10761,44740,22483,4087,22137,8628,4060,12801 +4795,3434,10835,43530,22814,4148,22647,8706,4220,13332 +4796,3442,10879,41240,23040,4167,23817,8521,4330,13603 +4797,3344,10426,38710,21935,3992,22771,8238,4190,13668 +4798,3459,10771,36630,22841,4127,23510,8511,4390,13862 +4799,3447,10650,34070,22779,4013,24329,8656,4360,13745 +4800,3418,10515,31130,22334,3879,23809,8638,4250,13752 +4801,3472,10373,29000,21767,3794,23067,8736,4100,13609 +4802,3366,9954,27930,20473,3576,21748,8256,3950,13289 +4803,3315,9601,27560,19842,3448,21078,8001,3850,12917 +4804,3334,9283,27490,19098,3329,20178,7632,3690,12550 +4805,3172,8806,27910,18081,3169,19070,7338,3480,11910 +4806,2949,8293,30110,17061,3059,17843,6959,3240,11191 +4807,2742,7949,34690,16178,2986,16667,6520,3010,10642 +4808,2644,7622,40990,15414,2861,15699,6277,2870,10000 +4809,2495,7252,45260,14214,2716,14243,5827,2640,9193 +4810,2462,7045,47080,13293,2664,13414,5557,2490,8624 +4811,2540,7078,47550,12907,2721,13334,5567,2470,8584 +4812,2693,7280,46660,12905,2837,13446,5780,2550,8802 +4813,2771,7453,47800,12909,2869,13435,5874,2680,9096 +4814,2781,7519,46800,13057,2837,13517,5940,2820,9376 +4815,2756,7659,46070,14015,2843,14223,5963,2820,9425 +4816,2929,8152,45390,15784,3038,16085,6305,2980,9909 +4817,3295,9559,43160,18862,3487,18920,7328,3480,11152 +4818,3463,10511,41430,20963,3879,20947,7910,3710,11976 +4819,3516,10938,39940,21615,4034,21641,8201,3790,12285 +4820,3610,11221,37600,22085,4165,22325,8415,4000,12604 +4821,3555,10740,35300,21444,3927,21900,8102,3900,12750 +4822,3724,10981,33350,22588,4075,22850,8685,4080,13039 +4823,3681,11137,31230,22734,4110,22946,8703,4160,13139 +4824,3668,10844,28540,22418,4081,22858,8832,4130,13149 +4825,3744,10696,26750,21881,4014,22673,8572,4110,13067 +4826,3594,10183,25860,20529,3761,21700,8093,3830,12655 +4827,3465,9718,25700,19521,3573,20671,7930,3700,12440 +4828,3456,9458,25780,18548,3404,19660,7657,3540,12156 +4829,3292,8926,26280,17560,3233,18453,7294,3340,11551 +4830,3064,8378,28550,16678,3084,17414,6894,3110,10850 +4831,2887,7971,32360,15880,2950,16523,6501,2880,10340 +4832,2787,7625,37330,15190,2825,15565,6212,2740,9731 +4833,2586,7173,41120,14033,2667,14249,5816,2520,8928 +4834,2503,6974,42740,13177,2603,13338,5456,2390,8402 +4835,2610,7030,43910,12864,2680,13175,5518,2390,8373 +4836,2757,7220,43520,12839,2778,13333,5770,2470,8634 +4837,2817,7387,45210,12883,2791,13376,5848,2610,8929 +4838,2845,7435,45470,12937,2776,13467,5785,2740,9215 +4839,2863,7566,45240,13589,2791,13979,5994,2770,9153 +4840,3012,8184,44860,15457,3018,15848,6336,2970,9637 +4841,3330,9547,42430,18555,3560,18715,7215,3580,10870 +4842,3598,10399,40380,20772,3944,21081,8030,3970,11967 +4843,3703,10734,38770,21122,4082,22131,8426,4140,12568 +4844,3755,11004,36450,21367,4210,22756,8705,4250,13077 +4845,3595,10497,34130,20625,4036,22364,8504,4120,13057 +4846,3694,10775,32480,21801,4152,23393,8813,4320,13508 +4847,3662,10873,30560,21821,4153,23556,8760,4280,13692 +4848,3674,10668,27980,21371,4110,23304,8780,4230,13717 +4849,3744,10647,26180,20909,4019,23223,8823,4200,13588 +4850,3606,10195,25260,19482,3774,22059,8592,4030,13054 +4851,3445,9580,25070,18492,3565,21059,8227,3840,12744 +4852,3438,9429,24920,17853,3405,20288,7821,3650,12392 +4853,3256,8895,24800,17013,3236,19189,7448,3420,11826 +4854,3042,8377,25540,16178,3086,18101,7004,3170,11072 +4855,2852,7957,28100,15449,2982,17208,6665,2920,10516 +4856,2757,7594,31990,14802,2857,16256,6374,2790,10016 +4857,2577,7181,35220,13717,2684,14693,6039,2530,9134 +4858,2498,6896,36680,12895,2613,13625,5729,2400,8593 +4859,2603,6867,38060,12417,2661,13393,5773,2370,8517 +4860,2716,6999,38730,12328,2712,13492,5879,2440,8710 +4861,2721,7059,39380,12213,2702,13285,5969,2560,8920 +4862,2697,7059,39360,11918,2665,13074,5854,2640,9073 +4863,2721,7004,39070,11966,2596,13283,5690,2620,8790 +4864,2810,7269,38490,12851,2710,14517,5817,2720,8966 +4865,3023,8192,37250,14367,3007,16522,6357,3130,9900 +4866,3212,8910,36070,15619,3325,18420,6921,3500,11224 +4867,3362,9311,35210,16273,3507,19411,7210,3660,11871 +4868,3431,9613,33560,16428,3607,20088,7587,3740,12191 +4869,3362,9653,31620,16449,3565,20162,7585,3710,12472 +4870,3397,9778,29980,16672,3624,20500,7707,3780,12460 +4871,3414,9667,28300,16554,3615,20416,7624,3810,12257 +4872,3433,9534,26140,16297,3578,20203,7617,3740,12112 +4873,3487,9634,24440,16145,3558,20068,7673,3720,11927 +4874,3370,9436,23600,15522,3466,19557,7555,3620,11807 +4875,3289,9008,23390,15052,3335,18982,7354,3520,11694 +4876,3348,8872,23360,14728,3208,18553,7124,3400,11536 +4877,3187,8470,23290,14130,3063,17715,6785,3230,11018 +4878,2995,7938,24080,13492,2896,16884,6442,3020,10391 +4879,2808,7590,26340,12814,2787,16128,6187,2800,9947 +4880,2665,7230,29650,12271,2665,15259,5925,2680,9565 +4881,2519,6835,33030,11316,2478,13953,5580,2450,8769 +4882,2453,6579,35440,10645,2389,12957,5284,2310,8240 +4883,2548,6615,36980,10401,2459,12826,5258,2290,8171 +4884,2685,6763,37850,10453,2513,12846,5392,2370,8381 +4885,2711,6858,38140,10555,2535,12794,5577,2480,8605 +4886,2650,6859,37970,10537,2496,12616,5564,2560,8795 +4887,2621,6815,38000,10672,2460,12707,5435,2490,8359 +4888,2692,7112,38000,11408,2585,13691,5497,2490,8465 +4889,2801,7805,37770,12583,2828,15349,5831,2760,9109 +4890,2989,8462,36980,13827,3123,17059,6271,3070,10118 +4891,3095,8804,36140,14393,3295,17883,6582,3280,10945 +4892,3158,9283,34300,14827,3398,18520,6916,3430,11322 +4893,3197,9479,32230,15261,3467,18948,7071,3500,11722 +4894,3229,9503,30240,15235,3483,19120,7146,3470,12016 +4895,3185,9482,28400,15259,3452,19113,7316,3450,11855 +4896,3190,9428,26140,15231,3413,19010,7404,3390,11802 +4897,3327,9603,24400,15267,3395,19012,7522,3440,11841 +4898,3377,9619,23740,15207,3402,19058,7594,3470,12007 +4899,3331,9299,23640,14922,3331,18720,7551,3380,12049 +4900,3384,9193,23870,14837,3231,18444,7424,3310,11777 +4901,3217,8747,24410,14275,3103,17809,7183,3160,11215 +4902,2984,8184,26960,13512,2953,16888,6828,2950,10579 +4903,2754,7700,31920,12713,2786,15937,6372,2740,9985 +4904,2641,7283,38680,12093,2637,15018,6050,2610,9419 +4905,2527,6831,44010,11242,2450,13655,5726,2400,8676 +4906,2455,6665,46430,10601,2374,12745,5461,2280,8161 +4907,2546,6701,47700,10459,2441,12669,5453,2280,8091 +4908,2709,6884,47290,10654,2522,12818,5684,2370,8316 +4909,2778,7089,48530,10941,2568,12840,5949,2520,8639 +4910,2784,7324,48570,11240,2617,13125,6101,2680,9030 +4911,2818,7677,48250,12386,2732,14128,6359,2800,9292 +4912,3066,8574,47950,14764,3100,16575,6888,3100,10108 +4913,3417,10355,45890,18294,3769,20152,8003,3750,11872 +4914,3718,11459,43710,20455,4292,22768,8941,4120,13416 +4915,3876,12047,41950,21058,4485,23743,9234,4290,13883 +4916,3926,12414,39440,21652,4600,24283,9468,4390,14510 +4917,3792,12131,36900,20974,4504,23613,9258,4250,14175 +4918,3933,12733,34620,22163,4654,24476,9602,4430,14305 +4919,3900,12690,32110,22386,4680,24528,9646,4440,14364 +4920,3857,12601,29300,22201,4606,24334,9493,4340,14060 +4921,3852,12606,27240,21972,4563,24117,9601,4310,13750 +4922,3710,11984,26230,20577,4328,22955,9224,4110,13049 +4923,3653,11227,25880,19478,4111,21952,8839,3920,12718 +4924,3630,10877,25870,18588,3881,20999,8410,3740,12261 +4925,3422,10158,26340,17656,3653,19789,8000,3520,11586 +4926,3194,9474,28830,16753,3472,18833,7623,3280,10902 +4927,2979,8859,33680,15963,3315,17708,7187,3030,10282 +4928,2849,8359,40620,15144,3143,16593,6790,2880,9662 +4929,2677,7813,46060,14005,2917,15028,6357,2650,8859 +4930,2618,7530,48690,13158,2798,13986,6026,2490,8358 +4931,2688,7483,50260,12792,2839,13795,6029,2480,8317 +4932,2866,7580,50020,12841,2921,13930,6197,2550,8525 +4933,2924,7726,51330,12866,2925,13899,6339,2680,8802 +4934,2930,7900,51580,12956,2947,14067,6404,2820,9116 +4935,3006,8261,51350,13868,3031,14802,6598,2920,9271 +4936,3334,9215,50750,15867,3351,17078,7111,3160,10024 +4937,3685,11132,48230,19216,3990,20533,8319,3820,11548 +4938,3988,12488,45720,21489,4482,22944,9078,4260,13037 +4939,4058,13080,43860,22121,4650,23922,9446,4450,13630 +4940,4108,13365,41230,22625,4773,24522,9641,4570,14299 +4941,3995,13147,38540,22067,4666,24180,9369,4470,14116 +4942,4092,13568,36150,23259,4814,25230,9732,4690,14739 +4943,4121,13484,33510,23525,4784,25357,9692,4660,14565 +4944,4116,13213,30390,23286,4737,25288,9682,4510,13988 +4945,4126,13073,28100,23010,4657,25157,9590,4480,13443 +4946,3990,12337,26980,21605,4386,24102,9125,4220,13017 +4947,3895,11679,26550,20544,4167,22976,8721,3980,12710 +4948,3901,11296,26500,19629,3943,21827,8367,3730,12369 +4949,3686,10580,27020,18644,3745,20627,7954,3510,11757 +4950,3438,9845,29670,17569,3529,19477,7458,3250,11044 +4951,3198,9163,34780,16704,3377,18256,7082,3010,10406 +4952,3030,8598,41940,15866,3195,17147,6835,2870,9810 +4953,2833,8005,47590,14576,2971,15438,6348,2640,8971 +4954,2717,7671,50160,13691,2877,14365,5981,2480,8427 +4955,2772,7582,51830,13272,2911,14111,5948,2470,8357 +4956,2893,7664,51710,13227,2951,14119,6125,2540,8506 +4957,2938,7742,53240,13199,2976,14091,6271,2650,8830 +4958,2966,7966,53550,13342,2984,14201,6349,2820,9108 +4959,3148,8412,53160,14354,3113,15102,6503,2920,9227 +4960,3426,9333,52140,16556,3455,17443,6950,3130,9910 +4961,3930,11315,49080,19989,4080,21190,8060,3780,11501 +4962,4322,12570,46570,22467,4566,24011,8929,4240,12981 +4963,4432,13020,44700,23251,4743,25057,9362,4420,13726 +4964,4471,13237,42050,23788,4830,25703,9581,4540,14289 +4965,4263,12864,39450,23272,4653,25280,9450,4460,14297 +4966,4329,13343,37050,24364,4786,26257,9883,4680,14737 +4967,4295,13389,34370,24480,4857,26258,9881,4650,14936 +4968,4247,13130,31310,24067,4772,25911,9862,4610,14863 +4969,4303,13059,29110,23719,4635,25069,9914,4580,14966 +4970,4153,12425,28070,21937,4347,23644,9541,4370,14595 +4971,3982,11668,27650,20856,4141,22919,9198,4170,14051 +4972,3963,11319,27540,19841,3957,22166,8762,3990,13593 +4973,3731,10594,28030,18873,3764,21008,8275,3740,12845 +4974,3452,9894,30550,17900,3566,19887,7800,3460,12073 +4975,3230,9187,35850,16943,3357,18590,7306,3200,11324 +4976,3075,8604,43320,16050,3179,17289,6954,3020,10593 +4977,2852,8011,49170,14765,2961,15667,6390,2750,9552 +4978,2756,7662,51750,13842,2849,14519,6068,2590,8970 +4979,2777,7584,53330,13450,2884,14296,6027,2550,8831 +4980,2909,7680,53110,13327,2916,14345,6126,2620,8943 +4981,2937,7797,54300,13273,2931,14269,6196,2740,9170 +4982,2932,8035,54320,13406,2952,14440,6304,2880,9479 +4983,3056,8455,53400,14483,3080,15467,6419,3010,9714 +4984,3384,9454,51810,16678,3450,17917,6939,3290,10536 +4985,3925,11377,48410,20219,4122,21698,8257,3990,12124 +4986,4267,12565,45920,22661,4617,24544,9112,4450,13751 +4987,4449,13055,44280,23514,4788,25657,9646,4640,14648 +4988,4506,13384,41780,24060,4889,26376,9990,4780,15229 +4989,4361,13105,39260,23495,4696,26001,9783,4680,15210 +4990,4419,13633,36970,24630,4849,27005,10232,4880,15568 +4991,4329,13594,34320,24614,4865,27076,10265,4880,15739 +4992,4341,13311,31310,24116,4790,26137,10203,4800,15308 +4993,4353,13263,29170,23517,4691,25218,10197,4760,14663 +4994,4158,12579,28020,21770,4396,23920,9704,4400,14107 +4995,3973,11802,27640,20639,4190,23094,9257,4200,13746 +4996,3975,11456,27560,19638,3992,22262,8861,4000,13305 +4997,3738,10778,28170,18742,3776,21072,8386,3740,12591 +4998,3488,9946,31060,17739,3566,19972,7820,3440,11774 +4999,3270,9323,36430,16825,3372,18725,7353,3150,11001 +5000,3117,8709,43800,15922,3199,17451,6933,2990,10323 +5001,2923,8104,49500,14664,2958,15903,6474,2720,9356 +5002,2831,7763,51890,13759,2851,14765,6069,2560,8774 +5003,2891,7644,53030,13371,2893,14510,5983,2540,8665 +5004,2980,7757,52440,13255,2930,14559,6107,2590,8809 +5005,3000,7875,53480,13157,2923,14414,6156,2710,9072 +5006,3043,8079,53320,13299,2948,14578,6268,2860,9378 +5007,3213,8547,52540,14242,3072,15625,6377,3000,9527 +5008,3487,9581,51350,16364,3447,17990,6968,3270,10237 +5009,3971,11468,47990,19647,4086,21634,8209,3940,11801 +5010,4342,12771,45310,22033,4596,24364,9112,4420,13363 +5011,4473,13342,43450,22537,4785,25533,9464,4650,14221 +5012,4546,13620,40970,23210,4876,26244,9810,4780,14600 +5013,4396,13269,38450,22682,4749,25989,9674,4690,14775 +5014,4431,13671,36340,23670,4906,26849,10151,4860,15283 +5015,4400,13658,33930,23593,4895,26973,10167,4870,15434 +5016,4362,13408,30950,23132,4761,26860,10242,4770,15386 +5017,4409,13354,28650,22549,4675,26098,10171,4660,15283 +5018,4218,12519,27440,21065,4364,24165,9580,4420,14827 +5019,4014,11665,26940,20005,4146,22965,9047,4190,14195 +5020,3958,11316,26650,19137,3959,22118,8546,3990,13625 +5021,3721,10634,26780,18200,3752,20975,8143,3750,12926 +5022,3479,9871,28200,17269,3557,19872,7692,3470,12114 +5023,3248,9249,31420,16466,3375,18661,7210,3210,11419 +5024,3083,8674,36320,15673,3218,17534,6817,3040,10721 +5025,2908,8083,40910,14402,2969,15995,6424,2770,9802 +5026,2808,7701,43300,13435,2841,14888,5957,2600,9064 +5027,2853,7552,44630,13001,2846,14542,5923,2560,8849 +5028,2968,7610,45000,12807,2859,14396,6038,2590,8884 +5029,2945,7643,45120,12668,2847,14116,6045,2690,8999 +5030,2953,7729,44870,12439,2836,14015,5989,2790,9170 +5031,3131,7935,44530,12432,2843,14335,5999,2800,9025 +5032,3317,8600,44070,13391,3036,15569,6260,2910,9304 +5033,3713,9860,42590,14784,3395,17708,6889,3320,10473 +5034,3991,10894,40850,16401,3755,19594,7558,3670,11666 +5035,4164,11423,39730,17153,3874,20513,7833,3820,12427 +5036,4286,11778,37880,17416,3992,21034,7983,3930,13045 +5037,4176,11815,35870,17324,3932,21077,8065,3930,13294 +5038,4112,11847,34110,17741,3990,21299,8183,3980,13324 +5039,3944,11728,32010,17592,3947,21159,8084,3950,13260 +5040,3888,11515,29330,17425,3852,20903,7979,3920,13024 +5041,3925,11504,27260,17155,3793,20800,8036,3880,12938 +5042,3823,11157,26130,16562,3663,20366,8073,3790,12740 +5043,3775,10598,25730,16078,3555,19845,7872,3650,12382 +5044,3792,10365,25530,15731,3432,19414,7551,3520,12023 +5045,3643,9769,25690,15055,3272,18532,7193,3350,11349 +5046,3407,9111,26880,14384,3118,17659,6783,3120,10698 +5047,3163,8624,29790,13655,3000,16753,6439,2890,10117 +5048,3003,8084,34040,13037,2853,15768,6137,2740,9582 +5049,2816,7581,38370,11910,2600,14316,5757,2520,8759 +5050,2719,7222,40960,11157,2501,13275,5414,2350,8164 +5051,2761,7126,42510,10856,2565,12909,5341,2320,8011 +5052,2902,7199,43560,10871,2573,13007,5537,2380,8148 +5053,2930,7278,43910,10861,2605,12843,5568,2500,8344 +5054,2893,7269,43760,10783,2590,12709,5626,2570,8509 +5055,2871,7482,43700,11101,2600,12938,5588,2540,8338 +5056,3011,8067,43530,12015,2731,14051,5720,2560,8293 +5057,3177,9118,43080,13299,3023,15926,6077,2840,8830 +5058,3366,10178,42210,14807,3349,17722,6650,3090,9851 +5059,3534,10733,41380,15315,3509,18597,6953,3380,10514 +5060,3598,11155,39570,15894,3602,19225,7256,3510,11140 +5061,3576,11377,37530,16277,3679,19760,7451,3630,11509 +5062,3487,11315,35220,16535,3690,20033,7462,3570,11564 +5063,3469,11126,32860,16309,3655,20016,7512,3530,11439 +5064,3400,11024,30040,16369,3598,19881,7474,3460,11706 +5065,3425,11093,27950,16349,3609,19746,7736,3530,11897 +5066,3481,10966,26890,16385,3581,19635,7697,3570,12166 +5067,3547,10649,26620,16204,3498,19543,7611,3450,12127 +5068,3596,10468,26730,16018,3390,19319,7506,3370,11786 +5069,3432,9915,27650,15364,3239,18524,7174,3230,11235 +5070,3243,9303,31060,14638,3102,17611,6761,3010,10543 +5071,3029,8687,37180,13753,2940,16608,6224,2790,9903 +5072,2857,8154,44940,13048,2804,15606,5926,2650,9338 +5073,2706,7636,50230,11982,2597,14134,5588,2420,8484 +5074,2629,7336,52750,11269,2515,13199,5250,2290,7960 +5075,2664,7289,54100,11074,2549,12991,5320,2270,7970 +5076,2823,7392,53910,11175,2630,13070,5457,2350,8163 +5077,2858,7539,54750,11337,2690,13075,5607,2470,8505 +5078,2893,7727,54370,11753,2752,13292,5801,2620,8949 +5079,2974,8214,53090,13099,2871,14382,5993,2650,9146 +5080,3220,9477,50970,15742,3289,16917,6632,2930,9885 +5081,3656,11411,48070,19544,4003,20426,7934,3650,11406 +5082,3908,12555,46300,21902,4490,23034,8574,4050,12712 +5083,3952,12996,44920,22664,4684,24040,9035,4280,13406 +5084,4021,13272,42490,23019,4838,24642,9296,4310,13904 +5085,3738,12943,39890,22411,4720,23927,8834,4180,13595 +5086,3841,13367,37820,23516,4823,24626,9105,4270,13875 +5087,3843,13192,35280,23615,4796,25059,9226,4270,13907 +5088,3797,12847,32270,23140,4614,24472,9147,4180,13693 +5089,3784,12530,30040,22554,4497,24063,9154,4170,13665 +5090,3655,11885,28860,21079,4216,22740,8863,4020,13535 +5091,3592,11529,28310,20444,4077,22030,8648,3920,13321 +5092,3625,11131,28190,19699,3903,21306,8330,3770,12904 +5093,3418,10455,28820,18762,3700,20093,7877,3560,12195 +5094,3173,9767,30590,17895,3540,19157,7479,3310,11457 +5095,2962,9120,35590,17053,3391,17982,7108,3060,10771 +5096,2790,8551,41560,16239,3234,16865,6731,2920,10118 +5097,2600,8007,45130,14931,3007,15386,6354,2680,9252 +5098,2518,7755,47170,14137,2909,14359,5964,2540,8734 +5099,2588,7670,46970,13696,2931,14158,5935,2490,8577 +5100,2749,7769,44420,13628,2984,14185,6069,2570,8756 +5101,2777,7867,43320,13568,2983,14107,6209,2680,9017 +5102,2776,8003,42330,13805,3032,14348,6241,2830,9337 +5103,2943,8270,41940,14615,3096,15252,6516,2920,9405 +5104,3195,9085,41650,16433,3447,17639,6929,3210,10081 +5105,3651,10515,40310,19728,4088,21243,8085,3860,11568 +5106,4003,11559,39320,22134,4616,23942,9049,4310,13051 +5107,4156,11970,38240,23115,4782,24944,9435,4530,13680 +5108,4237,12294,36400,23591,4910,25546,9786,4680,14196 +5109,4114,12141,34410,22927,4740,25228,9596,4590,14356 +5110,4189,12649,32790,23761,4892,26062,9900,4780,15086 +5111,4090,12799,30880,23853,4914,26032,9936,4770,15155 +5112,4051,12649,28450,23310,4861,25778,9861,4680,14982 +5113,4073,12632,26610,22792,4809,25240,9858,4640,15244 +5114,3910,11909,25870,21162,4527,23609,9587,4470,14939 +5115,3833,11347,25690,20394,4277,22573,9240,4250,14433 +5116,3822,10992,25750,19582,4038,21635,8731,4000,13817 +5117,3588,10289,26110,18527,3801,20428,8258,3750,12999 +5118,3338,9531,28100,17639,3591,19318,7827,3470,12199 +5119,3086,8965,32270,16780,3437,18114,7358,3190,11381 +5120,2937,8388,39050,15910,3245,16964,6988,3010,10625 +5121,2756,7807,44670,14607,3015,15319,6475,2730,9652 +5122,2650,7531,47450,13738,2905,14281,6204,2560,9011 +5123,2718,7439,49380,13283,2934,14022,6094,2520,8855 +5124,2876,7518,49410,13190,2962,14019,6208,2580,8975 +5125,2872,7634,50800,13205,2970,13944,6325,2680,9200 +5126,2872,7795,51260,13354,3005,14019,6392,2830,9543 +5127,3019,8230,51230,14259,3104,14986,6635,2940,9675 +5128,3316,9209,50360,16439,3433,17293,7129,3220,10463 +5129,3844,11021,47560,19837,4059,21065,8206,3910,11978 +5130,4173,12293,45150,21981,4547,23916,9071,4320,13545 +5131,4288,12867,43510,22603,4717,24890,9505,4530,14263 +5132,4380,13224,41060,23100,4817,25562,9700,4700,14615 +5133,4272,12964,38580,22425,4729,25046,9609,4570,14686 +5134,4332,13411,36390,23422,4859,25886,10048,4770,15139 +5135,4250,13333,33830,23559,4788,26020,10108,4760,15008 +5136,4225,13089,30760,23075,4621,25734,10131,4690,14770 +5137,4265,12889,28700,22498,4595,25367,10063,4640,14790 +5138,4125,12114,27620,21010,4396,24115,9564,4390,14607 +5139,4008,11590,27220,20248,4211,23026,9078,4190,14331 +5140,3978,11213,27140,19527,4027,22174,8812,3970,13772 +5141,3718,10481,27780,18508,3808,20938,8333,3730,13036 +5142,3454,9781,30480,17549,3612,19805,7896,3460,12165 +5143,3271,9175,35680,16775,3437,18686,7430,3170,11445 +5144,3096,8556,42750,15943,3231,17466,6940,3010,10688 +5145,2905,7980,48210,14639,2988,15820,6530,2760,9678 +5146,2786,7685,50400,13771,2901,14733,6156,2600,9080 +5147,2826,7615,51830,13439,2920,14405,6083,2550,8976 +5148,2989,7710,51440,13334,2956,14397,6155,2600,9031 +5149,3019,7906,52520,13323,2971,14304,6267,2720,9271 +5150,3007,8053,52500,13479,3011,14436,6395,2860,9588 +5151,3164,8454,52030,14283,3062,15386,6710,2970,9857 +5152,3474,9557,51320,16341,3418,17670,7288,3240,10795 +5153,3886,11420,48770,19907,4157,21261,8504,3880,12430 +5154,4082,12835,46430,21939,4672,23997,9456,4300,13753 +5155,4111,13296,44620,22709,4860,24880,9771,4530,14587 +5156,4146,13704,42020,22861,4991,25436,10010,4660,15239 +5157,3906,13416,39490,22230,4872,25018,9790,4580,14987 +5158,4054,13828,37030,23357,5051,25812,10248,4740,15350 +5159,4078,13803,34420,23521,5070,25815,10240,4730,15306 +5160,4088,13503,31160,23080,4990,25348,10146,4700,15343 +5161,4096,13333,29000,22720,4921,24942,10083,4610,15210 +5162,3967,12514,27880,21223,4647,23893,9553,4300,14732 +5163,3929,11973,27410,20297,4406,23006,9246,4120,14220 +5164,3953,11521,27440,19468,4185,22116,8834,3940,13687 +5165,3718,10794,27990,18366,3952,20889,8389,3700,13021 +5166,3481,10090,30900,17469,3725,19843,7911,3440,12109 +5167,3325,9417,36250,16649,3572,18632,7411,3170,11402 +5168,3173,8827,43450,15911,3362,17490,7021,3010,10657 +5169,2982,8238,49250,14732,3118,15881,6533,2750,9646 +5170,2871,7885,51900,13871,2995,14834,6193,2580,9052 +5171,2926,7769,53650,13516,2991,14617,6112,2540,8885 +5172,3055,7826,53690,13439,3013,14606,6118,2600,8997 +5173,3089,7971,54750,13418,3029,14502,6288,2710,9181 +5174,3131,8204,54600,13492,3036,14718,6362,2860,9550 +5175,3300,8654,53950,14510,3170,15724,6686,3000,9745 +5176,3659,9776,52520,16593,3531,18286,7283,3220,10652 +5177,4139,11772,49300,19990,4213,21893,8432,3920,12314 +5178,4532,13215,47370,22247,4722,24513,9191,4370,13704 +5179,4527,13693,45740,23196,4915,25470,9492,4570,14401 +5180,4497,14048,43180,23366,5016,26084,9801,4690,14953 +5181,4229,13703,40500,22851,4883,25558,9547,4620,15056 +5182,4326,14095,38190,23883,5020,26286,10050,4780,15606 +5183,4328,13987,35560,23933,5016,26254,10016,4750,15730 +5184,4208,13814,32380,23543,4948,25904,9909,4700,15442 +5185,4146,13563,30140,23076,4884,25501,9955,4640,15423 +5186,3961,12780,28800,21343,4588,23896,9633,4410,14896 +5187,3854,12110,28260,20275,4334,22814,9160,4160,14423 +5188,3811,11678,28010,19432,4102,21993,8625,3950,13825 +5189,3574,10917,27890,18397,3874,20825,8102,3700,13109 +5190,3340,10126,29310,17525,3678,19756,7629,3430,12283 +5191,3180,9546,32670,16782,3524,18654,7160,3160,11571 +5192,3043,8933,37810,15960,3328,17575,6758,3010,10882 +5193,2841,8286,42520,14779,3093,16027,6295,2740,9917 +5194,2751,7939,45000,13784,2966,14900,5955,2590,9243 +5195,2774,7763,46220,13386,2939,14570,5894,2540,9052 +5196,2915,7775,46450,13180,2940,14455,6050,2580,9081 +5197,2954,7795,46540,13046,2941,14251,6093,2680,9235 +5198,2948,7874,46090,12796,2922,14129,6155,2790,9442 +5199,2994,8204,45210,12955,2975,14560,6337,2840,9399 +5200,3086,9002,44420,13844,3136,16155,6540,2990,9931 +5201,3347,10322,42880,15553,3545,18608,7164,3410,11083 +5202,3579,11480,41370,16952,3896,20804,7848,3680,12281 +5203,3683,11995,40210,17800,4047,21735,8198,3890,12920 +5204,3704,12312,38430,18190,4140,22441,8359,4050,13493 +5205,3639,12194,36630,18142,4109,22508,8399,4040,13607 +5206,3576,12325,34850,18347,4117,22762,8604,4050,13737 +5207,3519,12111,32810,18321,4106,22457,8520,4040,13643 +5208,3513,11811,30160,18163,4063,22138,8481,4000,13732 +5209,3483,11770,28150,17937,4011,22026,8548,4010,13681 +5210,3446,11327,27070,17141,3916,21516,8382,3930,13474 +5211,3435,10821,26650,16634,3759,20780,8195,3780,13173 +5212,3418,10530,26420,16175,3605,20219,7901,3610,12814 +5213,3229,9939,26480,15529,3421,19327,7492,3410,12256 +5214,3068,9341,27780,14898,3267,18573,7140,3200,11533 +5215,2915,8850,30790,14266,3117,17801,6828,3000,10939 +5216,2818,8324,34670,13642,2935,16769,6486,2870,10330 +5217,2637,7776,38680,12517,2721,15267,6021,2640,9440 +5218,2554,7418,40430,11734,2613,14221,5603,2480,8828 +5219,2623,7263,41560,11459,2658,13891,5594,2450,8686 +5220,2779,7311,41890,11402,2669,13848,5691,2490,8775 +5221,2821,7413,41340,11323,2673,13627,5770,2590,8891 +5222,2802,7437,41040,11439,2650,13614,5837,2680,9139 +5223,2771,7697,40180,11447,2694,13928,5959,2680,8990 +5224,2814,8388,39520,12255,2850,15049,6331,2740,9308 +5225,2938,9430,39080,13831,3162,16813,6877,3020,10095 +5226,3069,10295,38980,15076,3477,18999,7360,3300,11159 +5227,3113,10768,38610,15786,3656,19882,7713,3500,11591 +5228,3174,11123,37100,16253,3733,20450,8041,3670,12144 +5229,3176,11325,35190,16486,3792,20773,8150,3760,12556 +5230,3152,11269,33090,16648,3752,20790,8262,3760,12638 +5231,3128,11127,31050,16524,3689,20899,8228,3730,12562 +5232,3095,10884,28620,16210,3639,20671,8269,3660,12539 +5233,3102,10885,26890,16104,3661,20665,8503,3660,12686 +5234,3174,10769,26080,15960,3638,20595,8639,3680,12944 +5235,3216,10533,25950,15734,3582,20455,8546,3620,12908 +5236,3205,10328,26160,15580,3506,20219,8287,3520,12589 +5237,3059,9860,27060,14955,3384,19355,7882,3340,11949 +5238,2871,9268,30010,14233,3226,18341,7555,3120,11327 +5239,2719,8686,35580,13449,3076,17330,7007,2910,10659 +5240,2620,8183,42600,12904,2900,16296,6585,2780,10005 +5241,2460,7680,47400,11958,2693,14767,6184,2570,9107 +5242,2389,7404,49160,11409,2593,13791,5859,2420,8636 +5243,2469,7379,50570,11217,2631,13626,5812,2410,8505 +5244,2616,7452,49980,11419,2668,13704,5853,2470,8679 +5245,2705,7646,51290,11644,2720,13658,5988,2590,8950 +5246,2756,7924,50920,12141,2795,14016,6195,2780,9444 +5247,2815,8511,50330,13040,2939,14924,6562,2820,9699 +5248,2990,9651,49670,15259,3348,17277,7116,3120,10557 +5249,3291,11605,47070,18955,4013,20443,8287,3700,12270 +5250,3485,12842,45280,21202,4484,22359,8947,3940,13483 +5251,3524,13248,43590,21823,4685,23033,8753,3870,13997 +5252,3522,13521,41110,22160,4811,23526,8633,3820,14063 +5253,3417,13337,38580,21265,4737,22733,8232,3680,14067 +5254,3546,13722,36560,22138,4874,23519,8720,3770,14589 +5255,3552,13620,34190,22371,4849,23370,8688,3790,14645 +5256,3509,13211,31200,21824,4682,23212,8591,3810,14582 +5257,3552,12737,29180,21277,4530,23236,8692,3860,14617 +5258,3477,12060,28150,20026,4225,22156,8351,3710,14124 +5259,3428,11659,27770,19396,4084,21529,8246,3640,13725 +5260,3419,11193,27810,18582,3919,20800,8017,3490,13309 +5261,3233,10498,28420,17615,3718,19617,7626,3310,12626 +5262,3054,9871,31020,16977,3542,18730,7240,3110,11860 +5263,2876,9256,36040,16252,3372,17705,6830,2910,11224 +5264,2768,8739,42870,15582,3201,16716,6534,2810,10612 +5265,2622,8218,47540,14482,2960,15353,6152,2600,9740 +5266,2585,7909,49240,13709,2866,14317,5861,2470,9230 +5267,2649,7893,50270,13416,2912,14213,5802,2460,9104 +5268,2796,7972,49410,13428,2948,14309,5978,2560,9196 +5269,2826,8063,50800,13446,2955,14295,6163,2670,9473 +5270,2887,8229,50990,13556,3003,14460,6263,2810,9822 +5271,2970,8645,50380,14250,3090,15368,6511,2800,10013 +5272,3152,9771,49520,16295,3397,17443,6964,3040,10728 +5273,3433,11495,47250,19676,4013,20942,8097,3600,12002 +5274,3671,12635,45890,21981,4499,23312,8866,3840,13000 +5275,3693,13249,44330,22434,4661,24457,8877,3860,13371 +5276,3803,13571,41890,22674,4812,24828,9074,4070,13841 +5277,3532,13269,39370,22294,4707,24205,8880,4020,13668 +5278,3723,13553,37190,23355,4920,25238,9440,4270,14005 +5279,3657,13575,34600,23586,4944,25173,9598,4340,13965 +5280,3626,13492,31590,23186,4866,24948,9412,4360,13729 +5281,3659,13281,29450,22411,4762,24735,9488,4380,13539 +5282,3563,12637,28450,20868,4468,23411,9127,4190,13151 +5283,3547,12084,28100,20242,4262,22364,8856,3970,12855 +5284,3518,11637,28110,19419,4084,21492,8645,3800,12584 +5285,3339,10936,28650,18556,3882,20206,8236,3580,11982 +5286,3129,10221,31340,17643,3668,19121,7783,3330,11326 +5287,2947,9516,36280,16866,3479,18072,7300,3080,10802 +5288,2837,8937,42780,16074,3292,17087,7019,2960,10335 +5289,2670,8381,47680,14831,3036,15711,6532,2730,9530 +5290,2589,8041,49380,13979,2925,14635,6147,2580,9052 +5291,2674,7951,49460,13702,2954,14371,6083,2550,8894 +5292,2857,8003,46780,13611,2985,14446,6220,2620,8968 +5293,2901,8109,47260,13637,2991,14420,6364,2750,9187 +5294,2885,8276,46260,13788,3042,14525,6401,2870,9472 +5295,2982,8843,44900,14651,3175,15457,6722,2950,9506 +5296,3225,10002,44400,16612,3570,17814,7275,3230,10020 +5297,3664,11840,42950,19736,4278,21296,8328,3830,11330 +5298,3948,13124,42280,21670,4775,23462,9047,4140,12099 +5299,4053,13461,41150,22242,4963,23920,9302,4290,12402 +5300,4193,13788,39220,22508,4997,24629,9371,4350,12540 +5301,3996,13466,36870,21525,4819,24443,9095,4260,12312 +5302,4129,13811,34900,22056,4898,25181,9551,4420,12287 +5303,4200,13796,32680,21740,4917,24873,9452,4400,12059 +5304,4060,13508,29950,21318,4872,24327,9436,4310,11883 +5305,4049,13359,28000,20871,4731,23877,9412,4270,11732 +5306,3937,12613,27100,19697,4447,22703,8861,4010,11451 +5307,3889,12021,26860,19181,4274,22051,8572,3820,11268 +5308,3870,11706,26910,18495,4108,21274,8309,3670,10985 +5309,3630,10998,27360,17610,3895,20172,7871,3500,10446 +5310,3418,10274,29660,16813,3687,19115,7419,3290,9912 +5311,3211,9630,34360,16055,3519,18084,7013,3080,9545 +5312,3090,9081,40600,15382,3327,17055,6593,2970,9179 +5313,2887,8463,44920,14287,3075,15475,6199,2740,8581 +5314,2819,8109,46980,13444,2969,14464,5930,2600,8270 +5315,2866,7974,47840,13140,2980,14213,5950,2580,8310 +5316,3014,8033,47340,13088,3015,14222,6036,2650,8547 +5317,3067,8134,48180,13069,3005,14184,6177,2760,8870 +5318,3096,8315,48070,13181,3050,14343,6327,2870,9171 +5319,3167,8893,47670,13981,3209,15085,6399,2940,9179 +5320,3431,9949,47110,16003,3557,17304,6951,3180,9689 +5321,3857,11709,44690,19114,4226,20818,8027,3770,11056 +5322,4114,12962,42820,21232,4688,23272,8698,4110,11791 +5323,4190,13257,41320,21734,4825,23963,8871,4240,12402 +5324,4319,13642,39090,22021,4912,24422,9014,4260,12773 +5325,4183,13308,36820,21241,4800,23944,8762,4170,12919 +5326,4270,13626,34880,21929,4932,24500,9005,4250,13255 +5327,4249,13381,32720,22080,4901,24598,8980,4230,13007 +5328,4203,13135,29900,21686,4811,24194,8773,4170,12718 +5329,4143,13031,27900,21352,4718,23774,8723,4120,12814 +5330,3973,12140,26720,19949,4446,22421,8418,3910,12620 +5331,3892,11468,26230,19050,4177,21440,8118,3740,12263 +5332,3858,11077,26050,18347,3975,20650,7859,3600,11905 +5333,3609,10383,26010,17409,3747,19490,7521,3420,11272 +5334,3388,9654,27200,16589,3509,18507,7078,3200,10624 +5335,3199,9071,30130,16014,3347,17515,6735,3000,10119 +5336,3018,8543,33840,15236,3150,16515,6340,2870,9658 +5337,2789,7982,37160,14111,2907,15073,5967,2650,8934 +5338,2691,7547,39460,13281,2757,13979,5665,2490,8403 +5339,2732,7451,40960,12849,2759,13680,5585,2460,8328 +5340,2877,7470,41380,12636,2752,13620,5764,2510,8474 +5341,2904,7524,41750,12616,2751,13420,5860,2600,8638 +5342,2867,7603,41690,12582,2745,13356,5865,2690,8815 +5343,2952,7916,41550,13111,2755,13648,5971,2680,8608 +5344,3097,8599,41150,14468,2943,14883,6281,2760,8912 +5345,3400,9795,40120,16689,3358,17086,6812,3070,9888 +5346,3622,10795,39050,18345,3720,18903,7158,3320,10904 +5347,3712,11181,38110,19016,3885,19475,7198,3460,11625 +5348,3783,11537,36400,19395,3994,20167,7410,3550,12162 +5349,3770,11596,34510,19278,3954,20456,7479,3580,12495 +5350,3813,11693,32600,19801,3981,20695,7650,3520,12512 +5351,3758,11629,30640,19810,3974,20808,7619,3510,12459 +5352,3739,11430,27980,19432,3925,20790,7507,3470,12537 +5353,3771,11302,26110,19073,3855,20685,7577,3520,12767 +5354,3745,10957,25200,18325,3744,20293,7610,3500,12707 +5355,3677,10545,24830,17782,3596,19937,7460,3390,12421 +5356,3672,10283,24800,17343,3472,19514,7369,3270,12021 +5357,3467,9731,24700,16522,3351,18601,7145,3110,11416 +5358,3248,9129,25740,15773,3185,17718,6737,2920,10802 +5359,3030,8439,28510,15034,3030,16579,6262,2720,10166 +5360,2889,7879,32410,14235,2862,15562,5938,2620,9548 +5361,2706,7321,36050,12981,2622,14115,5616,2390,8740 +5362,2616,7011,38260,12116,2498,13122,5261,2250,8168 +5363,2641,6928,39750,11648,2480,12890,5245,2240,8071 +5364,2768,6982,40620,11482,2483,12852,5415,2300,8182 +5365,2789,7119,41060,11415,2481,12660,5450,2410,8403 +5366,2754,7177,40920,11244,2474,12599,5443,2490,8535 +5367,2781,7238,40780,11394,2474,12772,5366,2480,8278 +5368,2874,7602,40400,12245,2640,14065,5529,2530,8601 +5369,3119,8199,39800,13735,2932,16011,5991,2850,9413 +5370,3273,8673,38930,15098,3272,17874,6506,3200,10308 +5371,3434,8884,38040,15756,3360,18825,6894,3400,11027 +5372,3528,9160,36140,16252,3507,19474,7151,3550,11345 +5373,3498,9269,34040,16545,3472,19916,7328,3650,11825 +5374,3512,9260,32220,16833,3455,20221,7423,3690,11785 +5375,3468,9185,30350,16819,3446,20296,7418,3660,11583 +5376,3400,9111,27700,16728,3443,20242,7433,3620,11766 +5377,3433,9010,25830,16597,3402,20285,7550,3650,11736 +5378,3431,9065,24890,16096,3366,19975,7571,3680,11778 +5379,3420,9075,24490,15828,3278,19588,7322,3510,11536 +5380,3413,8831,24350,15463,3187,19075,7106,3350,11251 +5381,3261,8445,24360,14753,3055,18035,6752,3150,10604 +5382,3057,7922,25050,14088,2905,16961,6403,2950,9985 +5383,2876,7492,27310,13374,2723,15989,6057,2740,9429 +5384,2739,7151,30400,12696,2568,15005,5630,2600,8952 +5385,2584,6739,33690,11609,2350,13634,5217,2370,8169 +5386,2488,6457,36070,10912,2250,12637,4949,2230,7623 +5387,2514,6441,37130,10635,2281,12427,4905,2200,7576 +5388,2638,6549,37700,10668,2322,12540,5047,2260,7726 +5389,2670,6713,38080,10645,2334,12342,5052,2370,8015 +5390,2634,6728,37150,10559,2321,12370,5064,2430,8138 +5391,2647,6827,35750,10791,2332,12536,5186,2420,7833 +5392,2722,7247,35300,11860,2464,13699,5334,2440,7974 +5393,2879,7975,35280,13283,2715,15464,5711,2700,8523 +5394,3048,8883,35770,14497,2975,17312,6132,3010,9704 +5395,3082,9221,35460,15171,3128,18350,6446,3210,10345 +5396,3136,9464,33990,15771,3214,19199,6733,3390,10734 +5397,3119,9943,32220,16142,3244,19615,7020,3470,11246 +5398,3164,9721,30450,16287,3212,19729,7103,3510,11160 +5399,3124,9682,28810,16321,3188,19733,7069,3500,11333 +5400,3119,9704,26550,16118,3150,19675,7121,3480,11232 +5401,3196,9738,24870,15705,3118,19705,7397,3530,11516 +5402,3262,9554,24160,15569,3115,19483,7611,3590,11631 +5403,3306,9457,24000,15452,3052,19204,7422,3490,11510 +5404,3355,9330,24110,14980,3020,19042,7267,3370,11196 +5405,3164,8948,24500,14197,2911,18236,6930,3210,10702 +5406,2978,8474,26360,13349,2761,17122,6577,3000,10100 +5407,2782,7892,30240,12557,2599,16039,6151,2810,9512 +5408,2677,7454,34400,11907,2473,14899,5691,2680,8960 +5409,2504,6940,37270,10940,2298,13443,5271,2430,8177 +5410,2432,6700,38090,10264,2219,12458,4890,2270,7633 +5411,2465,6632,38780,10106,2260,12291,4803,2230,7570 +5412,2586,6731,39580,10178,2296,12287,4937,2320,7742 +5413,2629,6852,39680,10207,2324,12247,5026,2420,7985 +5414,2616,6968,39150,10297,2334,12288,5200,2510,8214 +5415,2661,7321,39390,10339,2350,12846,5212,2500,8045 +5416,2777,8023,39190,11288,2525,14009,5306,2590,8443 +5417,2989,8875,38620,12828,2773,15339,5732,2860,9181 +5418,3140,9518,38140,13982,3001,16291,6274,3000,10328 +5419,3244,9863,37300,14696,3087,17389,6544,3030,11019 +5420,3308,10330,35530,15174,3162,17913,6778,3120,11619 +5421,3299,10516,33600,15560,3196,17936,6885,3120,11959 +5422,3309,10314,31810,15641,3231,18007,6769,3050,11964 +5423,3308,10177,29930,15373,3230,17868,6707,3050,11991 +5424,3266,9933,27420,15003,3247,17701,6612,3020,11968 +5425,3292,9969,25580,14668,3256,17638,6735,3080,12030 +5426,3269,9815,24660,14579,3238,17743,6803,3120,12138 +5427,3298,9651,24470,14762,3170,17694,6951,3130,11846 +5428,3274,9416,24500,14468,3109,17501,6845,3070,11445 +5429,3092,8944,24910,13926,2972,16677,6595,2920,10841 +5430,2887,8417,26400,13196,2820,15942,6279,2760,10190 +5431,2699,7893,30120,12480,2623,15087,5918,2580,9688 +5432,2559,7508,33680,11865,2502,14342,5599,2490,9143 +5433,2428,7004,36010,10953,2317,13026,5246,2310,8334 +5434,2343,6748,37600,10324,2222,12128,4876,2180,7826 +5435,2399,6691,39410,10209,2267,11986,4899,2180,7763 +5436,2525,6787,39940,10266,2312,12152,5042,2260,7943 +5437,2550,6939,39710,10313,2336,12066,5199,2390,8176 +5438,2520,7069,39450,10365,2349,11981,5282,2490,8406 +5439,2544,7422,39460,10396,2350,11961,5349,2430,8298 +5440,2682,8016,39120,10955,2509,12624,5475,2450,8490 +5441,2929,8929,38380,11933,2766,13665,5880,2690,9224 +5442,3119,9547,38080,12611,3012,14192,6136,2800,9858 +5443,3181,10035,37180,12823,3118,14311,6155,2830,10257 +5444,3199,10347,35140,13048,3144,14463,6138,2770,10585 +5445,3181,10502,33070,13049,3140,14497,6130,2800,10887 +5446,3224,10390,31200,12975,3074,14090,5873,2780,10699 +5447,3184,10256,29240,12837,3022,13801,6001,2820,10737 +5448,3148,10090,26810,12786,2995,13734,6086,2850,10703 +5449,3179,10052,25000,12826,2964,13894,6161,2940,10844 +5450,3166,9918,24220,13010,2950,14103,6365,3010,11167 +5451,3205,9846,24070,13193,2938,14377,6435,3010,11016 +5452,3216,9564,24190,12976,2880,14330,6268,2940,10789 +5453,3040,9038,24530,12345,2764,13926,6050,2800,10297 +5454,2853,8532,26350,11933,2618,13415,5702,2630,9721 +5455,2678,7949,30350,11434,2474,12972,5424,2460,9284 +5456,2556,7570,34790,11097,2396,12511,5184,2390,8808 +5457,2409,7076,38390,10364,2241,11698,4873,2220,8123 +5458,2346,6793,40040,9865,2168,11091,4564,2120,7690 +5459,2412,6743,40710,9779,2218,11183,4675,2120,7602 +5460,2574,6819,40530,9888,2282,11372,4868,2230,7864 +5461,2608,6986,39640,10053,2301,11434,5035,2360,8156 +5462,2604,7108,39440,10180,2332,11613,5126,2470,8455 +5463,2705,7468,39900,10502,2345,12108,5128,2440,8457 +5464,2867,8293,39730,11505,2521,13890,5453,2590,8840 +5465,3195,9446,38870,13155,2803,16537,6180,3060,10070 +5466,3388,10339,38390,14548,3026,18350,6631,3390,10849 +5467,3491,10784,37730,15077,3153,19052,6916,3650,11493 +5468,3487,11079,36000,15631,3213,19661,7245,3790,12200 +5469,3450,11008,33970,15681,3263,19813,7400,3840,12385 +5470,3422,10856,32210,15864,3303,20401,7595,3940,12694 +5471,3400,10774,30250,15637,3293,20521,7720,3920,12726 +5472,3413,10431,27720,15293,3336,20566,7677,3860,12582 +5473,3443,10344,25820,15187,3341,20584,7796,3880,12627 +5474,3440,10221,24940,14822,3279,19999,7737,3750,12384 +5475,3486,10121,24790,14709,3216,19438,7458,3580,12056 +5476,3463,9786,24900,14464,3123,18993,7198,3470,11874 +5477,3267,9217,25480,13801,2966,18048,6738,3290,11172 +5478,3062,8663,27880,13120,2820,17120,6417,3070,10508 +5479,2874,8128,32790,12408,2658,16193,6035,2850,10005 +5480,2785,7718,39040,12071,2526,15274,5734,2710,9464 +5481,2636,7209,44060,11227,2378,13971,5385,2500,8712 +5482,2555,6857,46400,10487,2311,13024,5040,2360,8254 +5483,2600,6829,47870,10274,2358,12799,4936,2330,8137 +5484,2744,6937,47980,10286,2415,12862,5094,2400,8314 +5485,2814,7123,48830,10505,2432,12879,5255,2540,8591 +5486,2837,7293,49090,10733,2487,12949,5428,2670,8930 +5487,2939,7681,48720,11141,2594,13551,5491,2720,8862 +5488,3148,8920,48190,12722,2924,15552,5882,2960,9503 +5489,3562,10668,45590,15333,3511,18405,6874,3520,10818 +5490,3877,11939,43500,17185,3958,20549,7413,3730,12015 +5491,4034,12444,41800,17996,4089,21371,7766,3750,12519 +5492,4043,12833,39380,18526,4132,21373,7768,3790,12928 +5493,3977,12514,36910,18295,4029,20382,7507,3610,12972 +5494,4073,12729,34670,18891,4007,20558,7720,3620,13246 +5495,3975,12749,32190,18571,3929,20340,7793,3670,13159 +5496,3857,12536,29260,17860,3879,20115,8004,3650,12667 +5497,3897,12201,27180,17393,3862,20034,8008,3630,12346 +5498,3747,11472,26180,16460,3671,19297,7754,3510,11976 +5499,3708,11064,25890,16133,3585,19086,7441,3450,11855 +5500,3654,10624,25960,15641,3439,18545,7211,3340,11550 +5501,3408,9960,26630,14819,3240,17477,6764,3140,10946 +5502,3163,9234,28940,13982,3080,16627,6360,2960,10265 +5503,2938,8661,33750,13071,2947,15816,6008,2780,9862 +5504,2803,8111,39960,12446,2792,14852,5784,2690,9387 +5505,2628,7561,44840,11438,2627,13640,5532,2500,8658 +5506,2533,7252,47230,10776,2507,12757,5174,2380,8203 +5507,2612,7194,48970,10594,2570,12674,5159,2370,8196 +5508,2722,7275,49130,10632,2619,12900,5367,2460,8412 +5509,2802,7450,50020,10767,2631,12873,5544,2610,8650 +5510,2819,7602,50090,10918,2663,13062,5657,2730,8960 +5511,2963,7970,49610,11268,2721,13598,5757,2710,9019 +5512,3256,9093,48850,12908,2991,15349,6121,2890,9650 +5513,3689,10847,46530,15701,3541,18124,7076,3460,11030 +5514,4081,12059,44530,17654,4000,20129,7751,3850,11919 +5515,4229,12664,42950,18493,4193,20898,8003,4080,12252 +5516,4304,13052,40460,18827,4308,21516,8322,4180,12558 +5517,4174,12857,37900,18520,4231,21240,8119,4070,12323 +5518,4236,13164,35630,18994,4429,21863,8362,4180,12572 +5519,4133,13127,33210,18866,4397,22079,8290,4190,12589 +5520,4000,12858,30320,18701,4288,22110,8320,4150,12737 +5521,3971,12676,28130,18304,4196,21979,8352,4120,12893 +5522,3800,11754,26920,17210,3939,20950,8032,3880,12652 +5523,3744,11272,26480,16753,3774,20480,7872,3750,12490 +5524,3705,10722,26370,16191,3606,19751,7599,3610,12193 +5525,3448,10033,26490,15332,3381,18612,7115,3390,11482 +5526,3195,9300,27980,14469,3204,17676,6717,3170,10730 +5527,2991,8705,31670,13675,3058,16801,6403,2970,10267 +5528,2840,8196,36730,13096,2894,15888,6061,2850,9757 +5529,2651,7620,41550,12027,2695,14546,5713,2630,9013 +5530,2574,7303,44120,11313,2585,13443,5324,2490,8430 +5531,2609,7211,45820,11090,2631,13323,5175,2460,8365 +5532,2744,7277,46400,11143,2637,13423,5349,2530,8528 +5533,2782,7411,47030,11154,2650,13250,5530,2640,8798 +5534,2765,7491,46440,11071,2644,13158,5495,2710,8972 +5535,2858,7774,45780,11261,2646,13338,5523,2660,8827 +5536,3038,8482,44600,12374,2815,14698,5861,2770,9104 +5537,3376,9839,42570,14270,3259,16855,6527,3240,10217 +5538,3648,10919,41460,15845,3644,18928,7044,3580,11413 +5539,3763,11374,40170,16820,3876,20085,7454,3810,12035 +5540,3885,11782,38280,17417,4033,20733,7698,3950,12529 +5541,3754,11805,36070,17713,4030,20834,7697,3990,12656 +5542,3756,11769,34190,18222,4072,21163,7851,4060,13168 +5543,3692,11609,32140,17929,3987,21207,7894,4070,12886 +5544,3660,11321,29500,17755,3895,21113,7904,4040,12781 +5545,3659,10979,27410,17481,3859,21107,8099,3990,12950 +5546,3591,10576,26360,16778,3725,20680,7993,3930,12856 +5547,3600,10383,25990,16394,3586,20174,7702,3730,12593 +5548,3589,10031,25820,15997,3474,19668,7424,3580,12286 +5549,3375,9454,25760,15066,3303,18714,7047,3370,11621 +5550,3166,8868,27000,14180,3127,17884,6630,3140,10957 +5551,2972,8366,30090,13439,2968,17024,6375,2910,10404 +5552,2864,7909,34610,12688,2801,16021,6071,2780,9923 +5553,2709,7405,38810,11816,2590,14639,5748,2560,9106 +5554,2606,7068,41280,11056,2475,13553,5393,2400,8581 +5555,2668,7001,42900,10769,2508,13327,5278,2360,8419 +5556,2795,7037,43890,10814,2526,13309,5385,2430,8607 +5557,2832,7145,44030,10806,2536,13173,5488,2540,8788 +5558,2835,7186,43840,10849,2542,13003,5469,2610,8924 +5559,2854,7347,43140,11043,2546,13252,5549,2550,8695 +5560,2946,7920,42740,12008,2699,14474,5705,2600,8801 +5561,3092,8995,41650,13726,3035,16396,6147,2910,9651 +5562,3229,10007,41420,15328,3332,18338,6752,3260,10794 +5563,3415,10402,40360,16234,3486,19493,7202,3470,11598 +5564,3410,10770,38540,16796,3577,20327,7556,3610,12290 +5565,3341,10888,36450,17159,3622,20931,7751,3720,12533 +5566,3385,10910,34250,17327,3627,21138,7810,3790,12678 +5567,3364,10787,32100,17195,3604,21048,7771,3780,12374 +5568,3338,10477,29340,17022,3571,21211,7865,3730,12444 +5569,3450,10441,27450,16969,3515,21434,8122,3760,12728 +5570,3515,10383,26470,16697,3514,21183,8194,3800,12879 +5571,3585,10301,26170,16704,3469,20853,8006,3700,12707 +5572,3570,10070,26310,16385,3382,20451,7796,3620,12329 +5573,3371,9538,27140,15610,3219,19510,7418,3440,11773 +5574,3177,8939,30280,14897,3077,18615,7038,3240,11132 +5575,2971,8327,36070,13985,2901,17390,6600,3000,10469 +5576,2805,7904,43600,13310,2759,16242,6222,2870,9842 +5577,2641,7413,49240,12306,2574,14725,5750,2620,8974 +5578,2566,7087,51290,11586,2471,13675,5310,2470,8449 +5579,2626,7046,52110,11408,2520,13440,5302,2440,8341 +5580,2786,7151,51530,11484,2554,13619,5450,2510,8482 +5581,2841,7368,52750,11636,2598,13646,5598,2640,8796 +5582,2839,7593,52830,12067,2672,13881,5700,2780,9189 +5583,3023,8140,52100,13234,2842,14970,5995,2930,9391 +5584,3303,9384,51100,16087,3283,17696,6735,3300,10324 +5585,3780,11439,48650,19721,4034,21640,8072,4050,12006 +5586,4141,12788,47220,22314,4489,24571,9148,4520,13660 +5587,4210,13408,45320,23076,4698,25665,9505,4720,14576 +5588,4344,13817,42730,23735,4833,26341,9887,4870,15032 +5589,4200,13433,40080,23276,4741,25909,9707,4770,15152 +5590,4351,13837,37770,24010,4869,26706,10127,4910,15564 +5591,4302,13748,35220,24334,4906,26648,10176,4880,15782 +5592,4217,13391,32180,23608,4821,25960,10096,4810,15386 +5593,4212,13174,30040,23016,4747,25443,9983,4790,15055 +5594,4017,12264,28960,21547,4458,23937,9403,4440,14403 +5595,3967,11869,28610,20875,4215,23284,8945,4170,14004 +5596,3883,11321,28670,19868,4002,22314,8593,3980,13580 +5597,3623,10624,29270,18795,3767,20895,8116,3740,12830 +5598,3386,9881,32020,17811,3561,19784,7621,3470,11970 +5599,3149,9306,37500,17119,3396,18577,7198,3210,11335 +5600,2981,8769,44190,16382,3222,17406,6866,3040,10627 +5601,2810,8180,48820,14940,3001,15807,6443,2780,9747 +5602,2713,7861,49640,14142,2868,14753,6018,2620,9128 +5603,2752,7770,49430,13796,2899,14458,5949,2580,8973 +5604,2888,7813,48260,13726,2931,14495,6064,2640,9046 +5605,2954,7961,48620,13747,2940,14467,6190,2740,9259 +5606,2996,8153,48850,13938,2971,14670,6317,2890,9624 +5607,3133,8767,49070,14885,3103,15600,6530,2970,9751 +5608,3443,9990,48530,16929,3490,18026,7035,3250,10493 +5609,3916,12026,46100,20540,4214,21884,8248,3950,11961 +5610,4240,13307,45040,22908,4727,24708,9190,4440,13409 +5611,4395,13762,43390,23496,4920,25475,9585,4660,14221 +5612,4455,14061,41140,24007,5020,25674,9851,4710,14757 +5613,4352,13890,38700,23142,4876,25113,9576,4610,14837 +5614,4449,14383,36540,24053,5028,26064,9994,4780,15379 +5615,4387,14287,34150,23977,4993,25368,9973,4660,15410 +5616,4336,14025,31210,23204,4916,24489,9836,4600,15087 +5617,4357,13932,29110,22705,4857,23917,9808,4530,15066 +5618,4205,13071,28180,21428,4574,22888,9242,4310,14672 +5619,4163,12554,27860,20856,4358,22233,8930,4110,14085 +5620,4101,11925,27980,19974,4143,21492,8553,3920,13698 +5621,3842,11180,28620,18930,3906,20374,8145,3670,13036 +5622,3548,10353,31090,18044,3701,19362,7779,3410,12217 +5623,3305,9701,36090,17288,3523,18292,7273,3170,11569 +5624,3134,9129,42350,16447,3337,17141,6918,3020,10867 +5625,2928,8514,47180,15214,3087,15710,6445,2790,9985 +5626,2834,8173,49070,14334,2977,14760,6002,2620,9293 +5627,2882,8059,49880,13906,2983,14529,5913,2580,9143 +5628,2993,8090,48970,13812,3008,14588,6004,2650,9227 +5629,3045,8243,50350,13825,3020,14525,6084,2760,9450 +5630,3059,8456,51110,14027,3057,14568,6243,2910,9808 +5631,3245,9134,50810,14719,3186,15364,6503,2910,9949 +5632,3598,10342,49790,16476,3596,17556,6883,3100,10606 +5633,4125,12271,46950,19460,4307,21070,7953,3670,12023 +5634,4443,13485,45310,21463,4720,23840,8425,3940,12981 +5635,4602,13871,43520,21814,4862,24469,8585,4040,13487 +5636,4762,14226,41090,22276,4939,24865,8769,4030,13904 +5637,4648,14069,38590,21677,4809,24450,8371,3880,13533 +5638,4747,14456,36500,22942,4810,24798,8581,3990,13883 +5639,4712,14491,34100,22944,4718,24406,8463,3970,13888 +5640,4655,14264,31090,22569,4574,24158,8427,3840,13973 +5641,4653,13974,28990,21839,4539,24064,8264,3730,13924 +5642,4441,13014,27920,20320,4274,22637,7852,3550,13592 +5643,4377,12514,27610,19746,4117,21838,7685,3450,13397 +5644,4264,11940,27740,18781,3935,20839,7393,3310,13094 +5645,3975,11188,28500,17849,3719,19726,7052,3140,12360 +5646,3683,10406,31000,16903,3536,18824,6719,2930,11601 +5647,3429,9752,36110,16206,3380,17825,6368,2760,11042 +5648,3245,9152,42790,15620,3212,16774,6105,2680,10446 +5649,3004,8516,47880,14516,2993,15374,5736,2500,9558 +5650,2896,8161,50220,13781,2897,14411,5504,2380,8984 +5651,2935,8045,51000,13462,2926,14255,5529,2390,8892 +5652,3065,8043,50470,13463,2960,14288,5686,2480,9036 +5653,3101,8183,51490,13420,2967,14280,5816,2620,9299 +5654,3166,8429,51230,13638,3003,14401,5905,2740,9635 +5655,3334,9048,50910,14403,3106,15251,6038,2780,9705 +5656,3675,10373,50300,16110,3459,17281,6465,2970,10329 +5657,4200,12366,47780,18942,4080,20394,7656,3580,12058 +5658,4558,13580,45900,20752,4535,22982,8467,4020,13503 +5659,4707,14001,44020,20757,4746,23747,8782,4190,14253 +5660,4819,14301,41470,20615,4729,24080,9121,4320,14739 +5661,4689,13938,38860,19419,4514,23515,8803,4070,14444 +5662,4819,14434,36650,20480,4573,24289,9294,4250,14747 +5663,4682,14336,34130,20668,4569,23324,9431,4220,14886 +5664,4554,14142,31110,20313,4528,22297,9354,4140,14669 +5665,4471,14028,29020,20128,4507,21885,9429,4120,14250 +5666,4321,13130,27920,19162,4244,20773,8858,3940,13565 +5667,4280,12579,27600,18786,4096,20198,8558,3850,13208 +5668,4192,12037,27600,18000,3913,19416,8152,3690,12807 +5669,3912,11230,28210,17164,3689,18336,7708,3460,12065 +5670,3653,10407,30760,16443,3485,17532,7366,3220,11335 +5671,3430,9733,35940,15746,3330,16601,7013,3010,10747 +5672,3241,9119,42890,15148,3158,15791,6647,2890,10206 +5673,2996,8494,48370,14118,2941,14444,6226,2650,9384 +5674,2886,8127,50690,13359,2836,13582,5879,2500,8867 +5675,2907,7990,51810,13032,2868,13542,5801,2490,8818 +5676,3038,8005,51420,13019,2890,13708,5980,2570,8977 +5677,3093,8159,52430,13056,2921,13658,6101,2690,9265 +5678,3137,8336,52450,13304,2947,13904,6211,2800,9635 +5679,3304,8957,51880,13905,3016,14532,6402,2800,9666 +5680,3674,10190,51060,15633,3368,16645,6892,3030,10276 +5681,4184,12124,48170,18830,4037,20010,7999,3600,11561 +5682,4601,13476,45980,21186,4494,22661,8698,3930,12688 +5683,4775,13983,43860,21769,4747,23599,8837,4150,13122 +5684,4878,14304,41280,22221,4858,24166,9079,4340,13735 +5685,4699,13992,38700,21604,4734,23768,9085,4220,13589 +5686,4730,14358,36620,22484,4882,24448,9516,4340,13642 +5687,4654,14313,34180,22730,4889,24345,9389,4230,13431 +5688,4590,14024,31190,22440,4784,23657,9220,4200,13222 +5689,4578,13879,29090,21976,4716,23329,9201,4200,13131 +5690,4401,12865,27910,20383,4392,21811,8698,3890,12867 +5691,4328,12334,27290,19445,4151,21105,8346,3690,12616 +5692,4209,11699,27080,18528,3963,20263,7955,3510,12310 +5693,3921,10929,27070,17579,3737,19049,7596,3330,11628 +5694,3657,10216,28270,16789,3540,18102,7162,3100,10871 +5695,3393,9598,31790,16125,3366,17200,6736,2900,10390 +5696,3217,8994,36810,15395,3189,16239,6451,2790,9882 +5697,3004,8362,40860,14180,2948,14859,6076,2570,9096 +5698,2892,7991,42800,13378,2826,13868,5732,2440,8530 +5699,2911,7837,43860,12943,2836,13646,5689,2410,8410 +5700,3048,7830,44000,12817,2837,13715,5855,2470,8547 +5701,3076,7863,43340,12642,2833,13554,5938,2590,8761 +5702,3050,7939,42650,12432,2795,13428,5918,2660,8958 +5703,3151,8205,41970,12364,2755,13483,5927,2600,8731 +5704,3378,8956,41260,13345,2898,14591,6025,2650,8861 +5705,3780,10088,40050,15008,3272,16664,6600,3060,9717 +5706,4067,11090,39450,16417,3610,18621,7245,3450,10723 +5707,4218,11631,38180,17261,3761,19589,7613,3620,11513 +5708,4282,11918,36340,17403,3850,20063,7797,3760,12061 +5709,4197,11956,34340,17489,3884,20190,7687,3810,12552 +5710,4225,11860,32590,17734,3843,20364,7884,3830,12541 +5711,4136,11713,30830,17629,3820,20444,7932,3750,12711 +5712,4093,11388,28280,17331,3755,20548,7727,3640,12380 +5713,4104,11200,26460,17141,3713,20499,7788,3640,12224 +5714,4040,10753,25480,16443,3613,19852,7815,3460,12259 +5715,4020,10541,25160,16112,3508,19109,7623,3390,12083 +5716,3949,10165,24980,15589,3369,18340,7319,3290,11784 +5717,3719,9583,25020,14722,3183,17375,6920,3120,11162 +5718,3480,9022,25620,13877,2989,16567,6502,2920,10484 +5719,3305,8538,28090,13065,2818,15833,6161,2710,10080 +5720,3123,8073,31880,12543,2689,15063,5914,2620,9618 +5721,2922,7559,35650,11596,2476,13760,5635,2420,8872 +5722,2818,7235,37700,10929,2379,12723,5325,2300,8318 +5723,2832,7118,38290,10612,2425,12497,5320,2280,8202 +5724,2929,7178,39460,10690,2465,12618,5563,2360,8325 +5725,2987,7224,38730,10722,2496,12515,5554,2470,8488 +5726,2951,7280,38220,10687,2476,12401,5588,2530,8659 +5727,2994,7423,38500,10575,2400,12442,5559,2480,8383 +5728,3152,7879,37830,11380,2468,13396,5640,2480,8525 +5729,3372,8782,37330,12579,2746,15014,5997,2720,9117 +5730,3607,9653,37760,14020,3103,16808,6560,3040,10165 +5731,3793,10012,36980,14550,3297,17925,7001,3300,11009 +5732,3791,10350,35400,14958,3441,18657,7309,3430,11554 +5733,3769,10580,33510,15366,3435,19036,7491,3520,11759 +5734,3651,10504,31710,15595,3375,19092,7533,3500,12128 +5735,3490,10307,29880,15670,3276,19001,7509,3460,12170 +5736,3439,10033,27540,15763,3280,18989,7357,3430,12107 +5737,3466,9919,25790,15318,3345,19020,7437,3480,11923 +5738,3517,9964,25080,15273,3380,18965,7661,3480,12239 +5739,3607,10009,24910,15455,3326,19083,7553,3390,12118 +5740,3562,9745,25260,15253,3227,18865,7383,3320,11814 +5741,3358,9262,26020,14688,3085,18089,6992,3140,11146 +5742,3159,8739,28220,14090,2940,17157,6708,2940,10588 +5743,2930,8184,33250,13276,2780,16112,6311,2730,9953 +5744,2772,7750,39980,12605,2664,15148,5968,2610,9395 +5745,2637,7253,45270,11715,2474,13806,5583,2400,8668 +5746,2539,7018,47610,11077,2418,12944,5244,2280,8133 +5747,2602,7001,48980,10939,2457,12874,5232,2270,8125 +5748,2725,7158,49240,11084,2541,12945,5402,2370,8243 +5749,2824,7399,50560,11324,2577,13031,5603,2500,8581 +5750,2879,7632,51010,11813,2659,13282,5828,2640,9051 +5751,3033,8031,50530,12783,2755,14154,6154,2710,9255 +5752,3316,9304,49380,15388,3085,16759,6657,3040,10131 +5753,3749,11178,46990,19116,3805,20271,7864,3710,11608 +5754,4023,12455,46020,21217,4292,22726,8805,4170,13091 +5755,4123,12845,43880,22166,4514,23669,9213,4400,13875 +5756,4168,13253,41340,22800,4607,24251,9467,4580,14273 +5757,4035,12911,38780,22446,4455,23882,9303,4480,14469 +5758,4042,13319,36580,23412,4619,24810,9611,4610,14746 +5759,3998,13410,34030,23677,4652,24986,9695,4540,14910 +5760,3988,13186,30920,23228,4602,25000,9653,4400,14825 +5761,3992,12931,28850,22850,4533,24669,9589,4330,14783 +5762,3824,12104,27760,21354,4255,23335,9055,4130,14465 +5763,3787,11693,27410,20596,4058,22305,8666,3970,13927 +5764,3693,11160,27510,19592,3839,21108,8203,3780,13399 +5765,3444,10451,28090,18612,3614,19817,7751,3540,12562 +5766,3212,9720,30710,17699,3416,18905,7442,3280,11776 +5767,3005,9108,35920,16887,3299,17721,6985,3030,11073 +5768,2844,8652,42990,16126,3130,16613,6593,2880,10461 +5769,2637,8088,48080,14887,2885,15117,6197,2640,9522 +5770,2543,7799,50610,14081,2793,14108,5897,2490,8885 +5771,2600,7729,52390,13678,2810,13835,5798,2470,8781 +5772,2709,7772,52270,13569,2874,13952,5930,2550,8875 +5773,2807,7901,53420,13490,2888,13850,6069,2670,9111 +5774,2829,8081,53290,13727,2911,13986,6221,2790,9455 +5775,2933,8499,52450,14519,2996,14794,6416,2860,9617 +5776,3182,9635,51590,16657,3318,17028,6931,3090,10350 +5777,3604,11508,48670,20146,4015,20496,8218,3780,11789 +5778,3819,12830,46640,22457,4491,23034,9057,4170,13044 +5779,3943,13238,44250,22984,4674,23956,9241,4410,13664 +5780,3965,13580,41580,23439,4820,24478,9589,4450,14352 +5781,3805,13316,38870,22550,4703,23996,9290,4380,14445 +5782,3892,13827,36550,23577,4870,24900,9691,4570,14895 +5783,3917,13868,33970,23726,4845,24992,9626,4550,15040 +5784,3812,13575,30830,23374,4823,24839,9631,4480,15041 +5785,3815,13265,28710,22918,4746,24764,9649,4470,15156 +5786,3675,12387,27590,21372,4439,23408,9247,4260,14701 +5787,3672,12033,27160,20369,4217,22420,8767,4030,14160 +5788,3572,11475,27230,19288,4006,21356,8318,3840,13609 +5789,3332,10727,27810,18326,3775,20067,7832,3570,12747 +5790,3091,9995,30370,17457,3552,18971,7429,3310,11926 +5791,2921,9382,35630,16533,3386,17972,6945,3070,11209 +5792,2787,8899,42650,15756,3203,16835,6609,2930,10522 +5793,2618,8299,47740,14487,2953,15363,6159,2710,9611 +5794,2517,7943,50300,13664,2830,14304,5856,2540,8987 +5795,2602,7834,51670,13332,2857,14035,5883,2530,8807 +5796,2750,7893,51490,13363,2914,14044,5961,2600,8905 +5797,2817,8084,52560,13418,2915,13933,6023,2720,9106 +5798,2803,8248,52530,13612,2938,14165,6121,2850,9470 +5799,2932,8698,51470,14187,3006,14836,6410,2900,9609 +5800,3165,9692,50560,16074,3316,16805,6986,3130,10374 +5801,3550,11648,47670,19139,3934,20241,8159,3770,11793 +5802,3810,12885,46510,21137,4377,22298,9002,4160,13161 +5803,3861,13420,44320,21543,4483,23003,9169,4310,13568 +5804,3896,13812,41810,21966,4526,23406,9561,4330,14038 +5805,3724,13516,39170,21136,4329,22680,8901,4180,13945 +5806,3778,13980,36710,22121,4441,23552,9438,4320,14097 +5807,3763,13819,34070,22254,4471,23448,9350,4280,14257 +5808,3698,13543,31030,21868,4413,23152,9353,4190,13956 +5809,3681,13035,28880,21330,4378,22936,9282,4150,13665 +5810,3569,12229,27850,20244,4150,21928,8793,3930,12990 +5811,3595,12026,27460,19834,4026,21619,8494,3830,12798 +5812,3473,11465,27480,18950,3854,20872,8195,3640,12424 +5813,3251,10746,28020,18015,3646,19728,7752,3430,11749 +5814,3046,10016,30390,17108,3462,18683,7382,3190,11145 +5815,2877,9443,35540,16255,3325,17577,6920,2970,10624 +5816,2744,8939,42300,15590,3179,16499,6645,2850,10061 +5817,2614,8382,47320,14395,2950,15129,6330,2650,9237 +5818,2569,8074,49570,13651,2847,14138,5967,2510,8706 +5819,2656,7969,50710,13294,2900,13995,5891,2500,8602 +5820,2797,8020,50120,13352,2937,14070,5959,2580,8785 +5821,2871,8154,50820,13408,2942,14134,6028,2690,9088 +5822,2830,8246,50440,13515,2949,14336,6135,2820,9427 +5823,3005,8683,49970,14160,2984,14950,6410,2850,9562 +5824,3283,9960,48510,16010,3257,17057,6791,3050,10176 +5825,3743,11876,45570,19223,3862,19713,7767,3600,11812 +5826,4071,13242,44520,21242,4315,21587,8692,3880,12894 +5827,4167,13839,42610,21860,4505,22619,8660,3920,12872 +5828,4212,14133,40290,22013,4603,23024,8746,3970,12945 +5829,4069,13785,37760,21212,4404,22386,8172,3830,12916 +5830,4207,14161,35570,22325,4585,23577,8473,4060,13110 +5831,4208,14042,33140,22328,4627,23752,8363,3950,13149 +5832,4100,13648,30280,21858,4560,23777,8164,3820,12908 +5833,4071,13260,28120,21271,4474,23225,8053,3800,12781 +5834,3935,12343,27010,20168,4171,21918,7787,3670,12305 +5835,3976,12108,26640,19609,4022,21437,7690,3620,12117 +5836,3866,11431,26690,18591,3804,20545,7318,3460,11758 +5837,3620,10681,27330,17747,3589,19321,6987,3270,11135 +5838,3371,9906,29710,16980,3406,18237,6690,3060,10514 +5839,3176,9351,34840,16180,3241,17166,6464,2870,10124 +5840,3035,8803,41340,15414,3067,16108,6244,2760,9712 +5841,2844,8219,46520,14210,2842,14747,5850,2570,8971 +5842,2734,7867,48700,13354,2736,13795,5609,2430,8481 +5843,2804,7742,49990,13010,2781,13637,5521,2440,8476 +5844,2952,7774,49460,12945,2827,13750,5724,2530,8619 +5845,3018,7906,50490,12946,2840,13727,5801,2670,8965 +5846,2971,8065,50400,13119,2869,13977,6020,2810,9326 +5847,3128,8495,49730,13873,2922,14690,6260,2820,9461 +5848,3367,9705,49000,15885,3181,16791,6558,3000,10017 +5849,3801,11392,46290,18989,3717,19840,7393,3510,11173 +5850,4059,12632,44540,21115,4102,22330,8014,3850,12172 +5851,4063,13081,42490,21753,4248,23408,8252,4080,12534 +5852,4003,13625,40140,22252,4366,24034,8281,4210,12660 +5853,3911,13315,37650,21646,4272,23727,7900,4030,12301 +5854,4042,13760,35690,22638,4451,24470,8363,4210,12477 +5855,3937,13709,33500,22824,4584,24615,8452,4180,12495 +5856,3889,13375,30660,22354,4545,24211,8309,4090,12336 +5857,3860,13009,28570,21766,4404,24002,8190,4000,12295 +5858,3767,11998,27330,20103,4069,22276,7846,3770,11888 +5859,3756,11618,26840,19271,3902,21345,7701,3670,11676 +5860,3635,10972,26710,18264,3689,20383,7352,3500,11344 +5861,3383,10265,26680,17306,3474,19215,7014,3300,10796 +5862,3192,9584,27710,16566,3274,18271,6739,3070,10248 +5863,2980,9035,31120,15840,3127,17331,6465,2860,9820 +5864,2842,8496,36140,15133,2984,16346,6211,2760,9399 +5865,2646,7868,40520,13954,2774,14850,5872,2550,8725 +5866,2565,7508,42800,13059,2661,13858,5652,2400,8267 +5867,2617,7377,44400,12672,2686,13718,5595,2380,8243 +5868,2727,7431,44570,12593,2718,13680,5716,2460,8430 +5869,2792,7513,44840,12464,2748,13457,5714,2580,8700 +5870,2722,7495,44620,12251,2718,13393,5844,2650,8912 +5871,2787,7637,43460,12179,2635,13257,5729,2540,8616 +5872,2885,8210,41900,12910,2711,14308,5737,2580,8685 +5873,3135,9104,40390,14356,2981,16409,6230,2970,9528 +5874,3315,10002,40420,15879,3199,18180,6694,3290,10452 +5875,3404,10282,39130,16563,3329,19191,6735,3400,10986 +5876,3535,10482,37310,16907,3437,19603,6863,3560,11457 +5877,3417,10314,35090,17007,3419,19341,6848,3600,11344 +5878,3524,10300,33370,16972,3464,19249,6948,3630,11420 +5879,3479,10176,31350,16856,3503,19023,6882,3570,11305 +5880,3330,9935,28800,16551,3482,18687,6816,3540,11234 +5881,3322,9800,26810,16460,3448,18471,6799,3450,11293 +5882,3353,9628,25830,16058,3327,18247,6804,3360,11256 +5883,3467,9728,25410,16100,3269,18445,6906,3350,11219 +5884,3408,9347,25320,15635,3171,18059,6737,3220,11092 +5885,3187,8868,25360,14902,3010,17254,6436,3050,10494 +5886,2975,8336,25920,14134,2840,16555,6098,2850,9867 +5887,2802,7980,28570,13465,2719,15793,5893,2650,9471 +5888,2658,7590,32470,12886,2591,14986,5689,2560,9040 +5889,2462,7160,36170,11800,2409,13715,5331,2370,8351 +5890,2378,6871,38700,11177,2309,12822,5020,2250,7853 +5891,2448,6824,40010,10926,2360,12686,5033,2240,7820 +5892,2586,6917,40250,10992,2435,12754,5066,2330,8024 +5893,2653,7061,40240,11041,2458,12670,5241,2450,8248 +5894,2536,7027,40390,10989,2447,12604,5306,2520,8429 +5895,2599,7064,40000,10930,2385,12639,5159,2420,8118 +5896,2670,7535,39430,11714,2452,13616,5236,2470,8166 +5897,2837,8428,39110,13050,2733,15431,5549,2770,9046 +5898,3067,9086,39720,14440,3021,17453,5985,3060,9918 +5899,3231,9628,38810,15342,3186,18548,6308,3230,10812 +5900,3324,10019,37170,15729,3332,19319,6838,3390,11447 +5901,3325,10242,35210,16145,3436,19686,7045,3470,11804 +5902,3257,10446,33100,16337,3446,20097,7117,3490,12103 +5903,3171,10298,30990,16377,3412,20024,7174,3480,12172 +5904,3088,10237,28480,16181,3390,20025,7339,3470,12014 +5905,3156,10087,26550,16143,3363,20230,7546,3530,12104 +5906,3311,9941,25700,16032,3364,20329,7749,3570,12272 +5907,3450,10001,25570,16220,3307,20249,7585,3460,12056 +5908,3367,9658,25730,15888,3225,19743,7276,3320,11707 +5909,3160,9159,26770,15382,3072,18755,6782,3130,11040 +5910,2949,8631,29170,14607,2924,17686,6434,2910,10274 +5911,2794,8097,33440,13619,2772,16626,6030,2690,9640 +5912,2672,7641,38390,13025,2655,15587,5742,2580,9043 +5913,2487,7238,41700,12023,2499,14231,5388,2380,8304 +5914,2438,6998,42960,11421,2422,13272,5149,2260,7780 +5915,2477,6975,43970,11246,2486,13138,5161,2260,7751 +5916,2689,7140,42950,11391,2559,13251,5279,2340,7930 +5917,2760,7320,44580,11672,2603,13319,5503,2470,8300 +5918,2737,7564,44660,12238,2675,13633,5669,2620,8718 +5919,2876,8031,44110,13267,2743,14684,5888,2750,8968 +5920,3065,8974,43970,15497,3092,17066,6353,3070,9702 +5921,3426,10610,42630,19038,3710,20238,7556,3770,11352 +5922,3621,11615,42170,21343,4195,22640,8457,4200,12815 +5923,3748,11899,40460,22006,4462,23868,8856,4360,13791 +5924,3677,12119,38380,22546,4511,24556,9296,4500,14558 +5925,3562,11781,36170,22055,4401,24400,9153,4450,14520 +5926,3799,12191,34310,23013,4642,25218,9541,4640,14932 +5927,3897,12058,32130,23128,4653,24732,9514,4560,14987 +5928,3827,11903,29450,22645,4547,24454,9496,4480,15038 +5929,3796,11749,27610,22164,4437,24185,9506,4420,14965 +5930,3748,11142,26860,20835,4159,23036,8879,4190,14455 +5931,3784,10962,26660,20223,4040,22545,8569,4080,13669 +5932,3656,10438,26850,19153,3823,21421,8105,3900,13075 +5933,3424,9845,27690,18123,3615,20139,7607,3650,12188 +5934,3193,9232,30240,17365,3432,19171,7131,3370,11374 +5935,2973,8771,35340,16699,3302,18138,6876,3140,10589 +5936,2821,8389,41920,15905,3130,17008,6510,2980,10009 +5937,2643,7906,47160,14754,2921,15459,6036,2760,9186 +5938,2574,7625,49300,14020,2839,14502,5777,2610,8636 +5939,2650,7568,50840,13644,2870,14448,5730,2570,8532 +5940,2805,7659,50790,13568,2937,14487,5892,2640,8701 +5941,2898,7793,52260,13634,2971,14466,6045,2740,8978 +5942,2876,7946,52380,13880,2995,14661,6210,2890,9318 +5943,3043,8279,51820,14555,3094,15491,6261,2970,9510 +5944,3189,9299,50970,16345,3373,17771,6789,3190,10172 +5945,3529,10987,48170,19673,4047,21348,7953,3800,11627 +5946,3759,12098,46360,22215,4366,23941,8552,4100,12648 +5947,3805,12436,44140,22689,4480,24408,8661,4320,13029 +5948,3826,12715,41270,23130,4630,24774,8656,4450,13252 +5949,3670,12385,38390,22418,4448,24239,8338,4340,12958 +5950,3802,12913,36180,23507,4488,25184,8775,4540,13402 +5951,3791,12761,33570,23566,4494,25215,8817,4480,13266 +5952,3807,12497,30490,23299,4401,24993,8806,4430,13081 +5953,3813,12117,28440,23004,4266,24687,8679,4420,13038 +5954,3730,11484,27520,21487,4002,23356,8228,4130,12563 +5955,3782,11264,27250,20716,3886,22451,7945,3900,12251 +5956,3646,10657,27400,19581,3676,21403,7531,3690,11815 +5957,3401,10054,28090,18531,3489,20133,7140,3460,11190 +5958,3182,9368,30290,17609,3317,19002,6774,3200,10544 +5959,3001,8917,34680,16830,3189,18046,6417,2970,9967 +5960,2862,8427,40370,16100,3053,16890,6183,2840,9454 +5961,2672,7909,43900,14902,2853,15402,5781,2620,8707 +5962,2609,7575,44790,14044,2784,14417,5583,2490,8250 +5963,2645,7551,46670,13718,2816,14154,5565,2460,8214 +5964,2803,7649,46530,13749,2873,14311,5730,2530,8445 +5965,2913,7737,47760,13715,2887,14245,5871,2650,8730 +5966,2872,7961,47920,14002,2934,14452,5986,2790,9092 +5967,2973,8281,45540,14562,2961,15228,6086,2850,9177 +5968,3194,9086,44440,16276,3221,17219,6504,3040,9619 +5969,3599,10536,41920,19029,3716,20261,7649,3640,10992 +5970,3853,11253,40330,20499,3965,22159,8362,3910,12059 +5971,3922,11268,38400,20840,3940,22732,8583,4010,12787 +5972,4000,11271,36350,20918,3890,22768,8788,4270,13011 +5973,3757,10577,34100,19372,3669,21532,8439,4240,12700 +5974,3816,10957,32530,20061,3796,22363,8875,4410,13270 +5975,3830,11003,30510,20094,3803,21715,8659,4370,13299 +5976,3827,10801,28060,19589,3777,21290,8515,4310,12957 +5977,3777,10638,26400,19192,3798,20932,8690,4170,13015 +5978,3667,10128,25680,18330,3593,20036,8174,3900,12613 +5979,3710,9976,25570,18012,3458,19754,7854,3770,12238 +5980,3555,9527,25760,17131,3291,18900,7446,3580,11826 +5981,3284,8973,26350,16413,3130,17830,6993,3360,11138 +5982,3066,8469,28110,15769,3007,16904,6646,3120,10487 +5983,2872,8112,31830,15145,2894,16083,6270,2880,9939 +5984,2734,7724,37330,14527,2793,15201,6034,2750,9446 +5985,2592,7313,41070,13552,2631,13995,5613,2540,8741 +5986,2555,7077,42450,12857,2580,13212,5430,2410,8231 +5987,2615,7086,43840,12570,2660,13100,5475,2390,8216 +5988,2761,7175,42080,12634,2729,13305,5628,2470,8337 +5989,2843,7370,42540,12711,2792,13322,5773,2610,8652 +5990,2767,7546,42870,12952,2829,13525,5932,2740,8950 +5991,2823,7716,42230,13467,2818,14092,5997,2800,8996 +5992,3029,8422,42010,15006,2954,15907,6285,3020,9414 +5993,3374,9914,40590,17686,3471,18795,7144,3560,10712 +5994,3658,11023,40040,19748,3855,20571,7876,3840,11844 +5995,3752,11415,38310,20083,4014,21511,8108,4050,12543 +5996,3750,11554,36490,20390,4036,21724,8406,4140,13085 +5997,3542,11091,34390,19540,3908,20867,8354,4040,13101 +5998,3624,11374,32770,20715,4141,21175,8597,4140,13407 +5999,3567,11477,30840,20978,4122,21188,8600,4150,13515 +6000,3481,11311,28240,20639,4029,21160,8613,4090,13441 +6001,3508,11002,26500,20099,3977,20968,8559,4060,13500 +6002,3477,10263,25620,19037,3692,19948,8101,3840,12938 +6003,3513,10092,25400,18558,3575,19383,7739,3690,12390 +6004,3363,9528,25590,17476,3403,18377,7317,3470,11839 +6005,3151,8994,26270,16585,3223,17341,6949,3250,11106 +6006,2963,8433,28030,15770,3084,16518,6552,3030,10348 +6007,2819,8020,31020,15169,2977,15798,6305,2820,9840 +6008,2721,7672,34960,14619,2874,14988,5990,2720,9332 +6009,2554,7211,37580,13619,2688,13762,5632,2510,8603 +6010,2490,6999,37420,12979,2635,13010,5399,2380,8115 +6011,2547,7005,36780,12608,2697,12947,5490,2360,8090 +6012,2710,7155,35080,12690,2764,13194,5553,2450,8290 +6013,2802,7385,35520,12770,2806,13239,5721,2570,8592 +6014,2720,7512,35800,12999,2837,13445,5937,2700,8943 +6015,2755,7608,35610,13568,2827,13993,6169,2750,8925 +6016,3039,8150,35370,14734,2978,15699,6420,2950,9280 +6017,3384,9302,34530,17248,3445,18166,7363,3440,10571 +6018,3660,10090,34450,19009,3833,19688,7924,3680,11856 +6019,3737,10247,33000,19258,3915,20274,7965,3880,12503 +6020,3746,10392,31420,19487,3982,20517,8225,4010,12619 +6021,3593,9911,29730,18725,3915,20174,8095,3950,12775 +6022,3704,10286,28600,19716,4113,20848,8428,4160,13006 +6023,3616,10361,27350,19878,4060,20809,8466,4180,13221 +6024,3518,10243,25620,19412,4010,20463,8306,4150,13213 +6025,3518,10190,24260,18967,3928,20050,8253,4040,13112 +6026,3444,9769,23730,17879,3690,19149,7718,3760,12533 +6027,3509,9582,23740,17355,3578,18696,7419,3640,12074 +6028,3392,9176,23860,16489,3418,17904,7125,3460,11532 +6029,3180,8687,23950,15791,3237,16875,6703,3230,10825 +6030,2971,8216,24710,15132,3089,16058,6399,3000,10207 +6031,2851,7825,26330,14651,2992,15397,6108,2790,9611 +6032,2713,7597,28910,14117,2871,14622,5860,2670,9210 +6033,2594,7092,31280,13133,2673,13540,5513,2490,8442 +6034,2498,6925,32600,12447,2598,12758,5241,2400,7931 +6035,2556,6884,33070,12150,2651,12631,5229,2390,7903 +6036,2767,7052,33190,12209,2688,12812,5428,2440,8106 +6037,2814,7187,34080,12096,2696,12756,5471,2590,8331 +6038,2727,7209,34610,12002,2664,12648,5510,2600,8581 +6039,2731,7135,34870,11853,2573,12537,5408,2510,8340 +6040,2873,7505,34860,12484,2618,13276,5423,2580,8399 +6041,3032,8177,34670,13678,2889,14658,5769,2900,9056 +6042,3287,8805,35110,15042,3137,16330,6206,3210,10094 +6043,3421,9138,34230,15621,3242,17051,6511,3370,11054 +6044,3498,9487,32780,15947,3327,17683,6745,3540,11517 +6045,3381,9554,30940,16151,3305,17584,6701,3510,11643 +6046,3364,9804,29500,16334,3343,17969,6820,3580,11664 +6047,3323,9755,27980,16363,3322,18034,6921,3530,11702 +6048,3308,9722,25850,16227,3273,18088,6950,3440,11391 +6049,3317,9618,24230,16026,3209,18023,7009,3380,11592 +6050,3343,9500,23600,15540,3133,17301,6927,3330,11528 +6051,3435,9591,23510,15469,3118,17291,6831,3290,11276 +6052,3353,9224,23640,14956,3006,16781,6629,3160,10897 +6053,3161,8666,23680,14324,2863,15995,6298,3000,10312 +6054,3001,8286,24100,13626,2732,15277,5933,2780,9695 +6055,2866,7873,26270,12987,2641,14691,5756,2650,9163 +6056,2702,7556,29920,12527,2541,13938,5513,2520,8679 +6057,2552,7078,33770,11644,2368,12878,5222,2310,7991 +6058,2486,6835,36330,10875,2304,12038,4934,2200,7582 +6059,2525,6772,38170,10725,2368,11979,5005,2200,7535 +6060,2660,6916,38700,10766,2453,12216,5162,2290,7698 +6061,2750,7044,38710,10961,2465,12150,5276,2420,7991 +6062,2656,7049,38910,10917,2437,12088,5356,2500,8188 +6063,2667,7020,38680,10663,2354,11926,5276,2380,7846 +6064,2710,7414,38260,11254,2455,12649,5351,2400,7803 +6065,2922,8285,37700,12525,2665,14364,5720,2550,8462 +6066,3197,9115,38130,13882,2937,16140,6046,2690,9526 +6067,3338,9668,37090,14531,3126,17254,6307,2730,10410 +6068,3368,10024,35400,14996,3234,18151,6239,2940,10965 +6069,3348,10230,33410,14780,3280,18188,6626,3020,11552 +6070,3229,10029,31490,14825,3225,17885,6683,3020,11248 +6071,3157,9921,29650,14488,3175,17969,6605,2900,11016 +6072,3151,9780,27330,14127,3108,18042,6576,2860,10768 +6073,3208,9727,25580,14246,3093,17527,6698,2920,10501 +6074,3330,9737,24770,14462,3124,17527,6846,3000,10525 +6075,3486,9858,24690,14818,3160,17435,6949,3030,10574 +6076,3387,9442,24990,14463,3064,16936,6742,2920,10297 +6077,3204,8942,25850,13961,2941,16283,6471,2780,9751 +6078,3015,8478,28010,13349,2802,15491,6143,2610,9209 +6079,2824,8009,32990,12656,2677,14536,5704,2420,8693 +6080,2694,7582,39680,12178,2550,13839,5418,2350,8308 +6081,2547,7168,44340,11411,2406,12733,5208,2200,7726 +6082,2453,6856,46620,10854,2344,11857,4947,2110,7303 +6083,2558,6874,46890,10805,2420,11904,4967,2140,7328 +6084,2706,6998,45900,10964,2508,12211,5218,2250,7630 +6085,2801,7236,46860,11312,2573,12358,5444,2430,8043 +6086,2766,7503,46530,11837,2612,12688,5662,2550,8482 +6087,2909,7910,46530,12574,2679,13383,5928,2610,8578 +6088,3107,8817,46120,14724,3002,15393,6376,2820,8967 +6089,3462,10536,43760,17711,3628,18762,7309,3330,10166 +6090,3799,11649,42540,19859,4072,21015,7916,3570,11356 +6091,3896,12155,40430,20417,4260,21019,7937,3650,12343 +6092,3895,12464,38130,20269,4384,20176,8011,3780,12791 +6093,3737,12414,35770,18951,4211,19807,7640,3640,12986 +6094,3875,12728,33890,19839,4367,20482,8143,3750,13467 +6095,3843,12863,31890,19858,4313,20288,8160,3740,13694 +6096,3803,12683,29210,19427,4150,19740,8226,3720,13275 +6097,3807,12338,27350,19183,4019,19856,8063,3710,13308 +6098,3753,11594,26450,18238,3793,19145,7650,3470,12758 +6099,3731,11471,26180,17846,3711,18925,7479,3390,12355 +6100,3587,10773,26390,16933,3494,18077,7091,3230,11855 +6101,3358,10053,26910,16177,3319,17102,6717,3030,11083 +6102,3134,9386,29090,15532,3175,16285,6408,2840,10368 +6103,2926,8838,33520,15006,3061,15471,6068,2650,9815 +6104,2813,8377,39700,14464,2929,14754,5869,2550,9298 +6105,2640,7918,44280,13530,2760,13478,5517,2380,8589 +6106,2562,7596,45810,12846,2673,12736,5282,2260,8066 +6107,2627,7538,46680,12689,2714,12690,5318,2260,8032 +6108,2804,7606,46060,12716,2789,12980,5539,2370,8268 +6109,2898,7765,47490,12795,2820,13125,5744,2530,8606 +6110,2836,7915,47750,13023,2837,13300,5909,2650,8961 +6111,3048,8303,47230,13513,2856,13817,5968,2650,8921 +6112,3359,9280,46230,14958,3052,15550,6343,2810,9134 +6113,3772,11061,43660,17666,3586,18659,7233,3420,10562 +6114,3970,12213,42370,19481,3979,20604,7953,3820,11613 +6115,3978,12660,40030,20095,4175,21171,8195,4040,12498 +6116,3975,12913,37600,20391,4302,21786,8494,4180,13388 +6117,3667,12612,35130,19473,4121,21325,8166,4060,13235 +6118,3767,12930,33330,20307,4282,22163,8569,4210,13788 +6119,3765,12663,31230,20227,4173,21750,8548,4150,13749 +6120,3715,12326,28460,19872,4108,21446,8429,4050,13689 +6121,3742,11934,26550,19751,3963,20906,8518,3960,13466 +6122,3694,11358,25690,18763,3725,19953,8223,3720,13008 +6123,3692,11126,25490,18301,3638,19514,8036,3650,12676 +6124,3547,10481,25650,17247,3450,18590,7581,3440,12251 +6125,3332,9805,26090,16395,3296,17526,7132,3220,11474 +6126,3148,9157,27930,15727,3129,16651,6722,2990,10746 +6127,2949,8684,32300,15177,3037,15808,6343,2770,10158 +6128,2828,8214,38600,14619,2902,15006,6014,2660,9688 +6129,2655,7737,43610,13601,2735,13767,5725,2470,8895 +6130,2583,7444,45910,12969,2680,12947,5520,2330,8355 +6131,2621,7359,47410,12773,2739,12876,5479,2330,8289 +6132,2776,7449,47090,12822,2808,13128,5630,2430,8479 +6133,2883,7645,48350,12876,2832,13229,5669,2560,8803 +6134,2855,7770,48710,13136,2848,13330,5923,2680,9144 +6135,2960,7915,48370,13654,2834,13849,5978,2700,9243 +6136,3172,8839,47680,15156,3019,15568,6339,2900,9671 +6137,3626,10361,45060,18171,3558,18622,7378,3510,11073 +6138,3905,11563,43800,20306,4033,21094,8008,3880,12195 +6139,4042,11993,41590,21237,4231,22117,8277,4100,12829 +6140,3900,12335,39240,21614,4393,22507,8628,4240,13432 +6141,3751,12036,36760,20740,4232,21840,8339,4120,13072 +6142,3916,12463,34740,21709,4365,22834,8793,4220,13378 +6143,3978,12418,32510,22074,4394,22827,8800,4160,13353 +6144,3856,12249,29690,21680,4319,22757,8853,4020,13472 +6145,3797,11970,27710,21222,4281,22542,8766,4020,13203 +6146,3731,11194,26750,19920,4013,21294,8291,3810,12714 +6147,3750,11031,26490,19243,3869,20590,8104,3660,12548 +6148,3583,10416,26700,18232,3666,19547,7698,3440,12143 +6149,3364,9806,27330,17229,3484,18471,7300,3230,11457 +6150,3140,9139,29290,16323,3321,17570,6878,3010,10794 +6151,2928,8645,34110,15671,3155,16571,6518,2800,10191 +6152,2812,8276,40610,15005,3002,15627,6259,2680,9681 +6153,2643,7766,45600,13891,2791,14340,5888,2490,8948 +6154,2561,7506,48070,13160,2711,13380,5610,2360,8435 +6155,2638,7459,49340,12940,2764,13296,5496,2350,8426 +6156,2779,7537,48890,12937,2833,13440,5675,2440,8588 +6157,2878,7698,50180,13044,2855,13443,5886,2580,8901 +6158,2871,7825,50130,13196,2864,13602,6048,2700,9257 +6159,3017,8015,49790,13692,2855,14228,6133,2680,9425 +6160,3211,8860,48790,15301,3100,16090,6523,2860,10038 +6161,3563,10408,46140,18328,3662,19266,7504,3430,11270 +6162,3803,11614,44880,20335,4144,21654,8208,3780,12019 +6163,3805,12122,42670,20922,4249,22503,8179,3860,12149 +6164,3812,12383,40360,21338,4305,22685,8105,3970,12048 +6165,3572,12032,37900,20924,4125,22114,7695,3940,11980 +6166,3719,12550,35750,21911,4275,23024,8219,4190,12539 +6167,3703,12340,33390,22135,4280,22970,8423,4150,12540 +6168,3642,12061,30550,21546,4228,22866,8352,4050,12515 +6169,3644,11826,28510,21000,4118,22727,8278,4040,12554 +6170,3561,11416,27560,19875,3891,21684,8044,3820,12289 +6171,3527,11190,27260,19424,3793,21177,7922,3720,12226 +6172,3367,10580,27400,18636,3594,20153,7479,3520,11791 +6173,3147,9886,28070,17730,3422,19114,7146,3300,11170 +6174,2946,9328,30430,16954,3270,18234,6804,3070,10495 +6175,2799,8808,35610,16227,3115,17399,6470,2860,10046 +6176,2681,8378,42570,15489,2990,16463,6139,2740,9645 +6177,2502,7877,47740,14403,2797,15041,5728,2540,8953 +6178,2440,7588,49210,13592,2729,14093,5392,2400,8480 +6179,2533,7512,49920,13336,2789,13937,5390,2400,8420 +6180,2701,7659,49030,13318,2831,14068,5619,2490,8712 +6181,2796,7809,49430,13334,2853,14169,5842,2620,9035 +6182,2755,7944,48900,13586,2886,14261,6005,2740,9357 +6183,2834,8093,46550,14124,2906,14890,6128,2750,9439 +6184,3053,8891,44970,15992,3113,16780,6384,2970,9859 +6185,3367,10337,43290,19086,3638,20040,7404,3630,11236 +6186,3600,11316,42260,21245,3996,22394,8033,4040,12523 +6187,3689,11616,40460,22214,4118,23182,8394,4290,13201 +6188,3635,11889,38490,22580,4203,23823,8685,4450,13595 +6189,3477,11491,36200,22096,4098,23376,8422,4330,13319 +6190,3598,11732,34550,23350,4250,24252,8752,4510,13572 +6191,3610,11622,32450,23483,4283,24628,8809,4500,13529 +6192,3548,11270,29790,23253,4166,23886,8883,4480,13397 +6193,3498,11056,27920,22673,4076,23342,8780,4470,13392 +6194,3460,10524,26930,20985,3831,22072,8290,4120,12932 +6195,3479,10260,26570,20221,3694,21577,8089,3920,12684 +6196,3329,9772,26470,19152,3515,20521,7764,3680,12296 +6197,3111,9211,26660,18209,3329,19365,7297,3450,11587 +6198,2930,8670,27260,17393,3176,18389,6926,3210,10897 +6199,2818,8257,29680,16668,3058,17497,6531,2970,10361 +6200,2724,7906,33170,15963,2931,16473,6138,2830,9903 +6201,2536,7402,37150,14663,2748,15127,5864,2600,9142 +6202,2459,7164,39120,13751,2647,14067,5541,2440,8611 +6203,2530,7100,39930,13397,2701,13830,5508,2410,8461 +6204,2680,7229,40700,13259,2753,13830,5673,2480,8602 +6205,2756,7359,41500,13042,2749,13754,5730,2570,8880 +6206,2680,7419,41760,12854,2711,13536,5773,2640,9099 +6207,2692,7316,41760,12834,2599,13674,5739,2600,8904 +6208,2708,7650,41190,13836,2720,14880,6003,2710,9123 +6209,2992,8409,39960,15544,3038,16983,6674,3130,10294 +6210,3265,9199,39770,17099,3386,18811,7232,3500,11504 +6211,3288,9462,38500,17857,3598,19623,7659,3720,12218 +6212,3453,9799,36710,18393,3708,20285,7676,3880,13003 +6213,3391,9705,34700,18465,3696,20477,7758,3860,12880 +6214,3403,9928,32940,18796,3676,20751,8007,3890,12958 +6215,3289,9853,31100,18537,3629,20702,7963,3860,13143 +6216,3205,9690,28660,18139,3584,20455,8049,3820,12797 +6217,3271,9492,26680,17756,3528,20174,8118,3830,12588 +6218,3308,9383,25750,17124,3394,19566,7757,3690,12103 +6219,3369,9441,25520,16980,3336,19186,7439,3580,11993 +6220,3246,9057,25360,16270,3200,18500,7238,3400,11591 +6221,3051,8615,25480,15536,3042,17524,6915,3200,11050 +6222,2886,8022,26050,14577,2894,16659,6537,2990,10448 +6223,2709,7732,28240,13899,2777,15915,6129,2760,9861 +6224,2580,7396,31200,13282,2654,15113,5861,2650,9347 +6225,2414,7001,34100,12237,2454,13820,5554,2440,8640 +6226,2359,6789,36610,11513,2364,12945,5097,2290,8093 +6227,2418,6745,38540,11222,2378,12742,5110,2270,8049 +6228,2559,6895,40060,11304,2462,12839,5295,2340,8217 +6229,2620,7036,40370,11346,2485,12805,5406,2450,8452 +6230,2498,7068,40460,11320,2442,12696,5475,2530,8637 +6231,2453,7025,40360,11274,2368,12553,5353,2450,8233 +6232,2580,7307,39830,12080,2489,13594,5494,2500,8211 +6233,2729,7997,39160,13164,2747,15183,5790,2750,8861 +6234,2879,8694,39220,14531,3063,16730,6255,3060,9606 +6235,2991,9191,38040,15300,3241,17638,6515,3310,9997 +6236,3011,9574,36400,15555,3372,18168,6873,3430,10398 +6237,3053,9812,34310,15816,3405,18438,7100,3520,10344 +6238,3128,9712,32290,15808,3362,18590,7118,3530,10250 +6239,3077,9620,30460,15858,3345,18639,7113,3520,10202 +6240,2994,9632,28020,15999,3315,18427,7295,3460,10060 +6241,3046,9645,26220,15640,3310,18361,7343,3490,10140 +6242,3207,9731,25420,15562,3297,18301,7211,3450,10442 +6243,3287,9837,25320,15500,3278,18644,7193,3410,10555 +6244,3227,9451,25580,14976,3168,18187,6998,3270,10301 +6245,3063,9056,25890,14407,3030,17465,6604,3090,9811 +6246,2878,8497,27100,13796,2886,16541,6359,2890,9332 +6247,2721,7992,30660,13145,2758,15707,6073,2680,8903 +6248,2622,7674,35520,12621,2621,14855,5711,2570,8526 +6249,2492,7219,39680,11788,2453,13652,5492,2380,7930 +6250,2449,6984,41960,11103,2375,12803,5209,2250,7522 +6251,2535,6953,43380,10961,2431,12675,5133,2230,7560 +6252,2711,7089,44060,11083,2522,12833,5328,2310,7822 +6253,2788,7290,44500,11383,2561,12794,5510,2440,8197 +6254,2759,7365,44450,11666,2574,12937,5620,2550,8454 +6255,2794,7517,43800,12200,2525,13108,5622,2520,8363 +6256,2868,8184,42990,14084,2652,14380,6015,2630,8494 +6257,3159,9231,41620,16728,2926,16587,6843,2930,9148 +6258,3328,10265,41260,18598,3148,18502,7415,3170,10049 +6259,3466,10734,39710,18783,3316,19056,7345,3430,10956 +6260,3568,11078,37790,19397,3433,19469,7651,3720,11429 +6261,3474,10985,35670,18973,3523,19816,7785,3690,11553 +6262,3497,11178,33550,19758,3614,20224,7937,3730,11699 +6263,3429,10984,31400,19769,3640,20133,7807,3680,11621 +6264,3342,10785,28910,19570,3637,20239,7990,3640,11491 +6265,3385,10662,27090,19412,3523,20039,7935,3560,11659 +6266,3446,10464,26280,18798,3425,19618,7695,3430,11617 +6267,3489,10475,26050,18538,3346,19591,7687,3400,11549 +6268,3374,10032,26190,17700,3185,19027,7429,3250,11328 +6269,3183,9551,26930,16984,3032,18116,7200,3100,10735 +6270,2994,8931,29250,16292,2909,17158,6787,2890,10157 +6271,2816,8346,34470,15560,2790,16249,6406,2670,9627 +6272,2683,8011,41580,14871,2708,15353,6084,2570,9168 +6273,2502,7504,46590,13759,2535,14072,5642,2390,8473 +6274,2432,7292,48750,13070,2496,13169,5322,2270,8026 +6275,2513,7265,49950,12760,2559,13058,5338,2270,8031 +6276,2666,7395,49590,12823,2644,13293,5520,2350,8278 +6277,2754,7580,51330,12903,2708,13323,5663,2500,8657 +6278,2704,7744,51400,13165,2748,13683,5837,2630,9036 +6279,2817,8004,50350,13788,2799,14432,5961,2700,9127 +6280,3019,8894,48980,15544,3099,16664,6479,2980,9569 +6281,3355,10291,46310,18885,3697,19966,7587,3650,10924 +6282,3759,11454,44960,21160,4098,22513,8560,4110,12162 +6283,3839,11832,42980,21924,4277,23289,8681,4320,12796 +6284,3743,11913,40680,22476,4419,23771,8952,4490,13207 +6285,3504,11753,38160,21767,4286,23361,8756,4360,13284 +6286,3607,12062,35960,22856,4423,24478,9118,4550,13211 +6287,3541,11978,33490,23102,4409,24322,9135,4510,13566 +6288,3547,11641,30400,22393,4398,23226,9277,4460,13655 +6289,3595,11480,28320,21742,4285,23393,9143,4350,13430 +6290,3574,10930,27280,20265,3980,22159,8507,4040,13025 +6291,3618,10626,26890,19676,3860,21465,8290,3890,12684 +6292,3472,10052,27010,18822,3642,20323,7744,3640,12247 +6293,3247,9484,27620,17917,3455,19152,7430,3410,11489 +6294,3015,8932,29690,17138,3289,18167,7043,3170,10698 +6295,2856,8501,34600,16334,3152,17295,6618,2920,10166 +6296,2730,8172,40460,15641,3018,16294,6470,2800,9640 +6297,2575,7689,45580,14496,2812,14854,6029,2560,8886 +6298,2521,7416,47910,13713,2748,13907,5685,2420,8392 +6299,2545,7381,48850,13334,2772,13714,5723,2400,8333 +6300,2709,7511,47370,13358,2833,13815,5882,2480,8548 +6301,2811,7677,48410,13387,2862,13852,6064,2620,8880 +6302,2743,7820,48720,13614,2859,14037,6162,2750,9225 +6303,2815,7885,47590,14190,2863,14628,6233,2740,9189 +6304,2989,8627,45980,15588,3068,16392,6673,2930,9560 +6305,3358,10048,43430,18650,3520,19463,7603,3590,10897 +6306,3631,10883,41810,20750,3947,21696,8210,3990,12200 +6307,3816,11265,39800,21406,4100,22359,8306,4190,12936 +6308,3799,11281,37680,21682,4166,22856,8458,4280,13387 +6309,3445,10638,35450,20990,4069,22056,8203,4130,13195 +6310,3402,11082,33710,21857,4156,22898,8667,4250,13714 +6311,3427,11050,31640,21940,4119,22454,8800,4260,13704 +6312,3337,10738,28960,21130,4035,21785,8785,4270,13705 +6313,3343,10656,27030,20202,3964,21790,8618,4130,13508 +6314,3372,10345,26190,19177,3757,20932,8136,3860,12967 +6315,3384,10027,26040,18619,3649,20541,8078,3800,12816 +6316,3230,9570,26210,17610,3451,19613,7630,3580,12374 +6317,3038,9010,26930,16752,3285,18609,7304,3360,11663 +6318,2847,8496,28800,15969,3140,17597,6982,3110,10991 +6319,2701,8077,32550,15398,3042,16758,6640,2890,10439 +6320,2596,7811,37660,14759,2904,15911,6409,2780,9906 +6321,2449,7383,41430,13728,2745,14526,6005,2570,9097 +6322,2385,7123,42450,12994,2685,13695,5680,2450,8717 +6323,2496,7131,42760,12860,2762,13662,5660,2430,8644 +6324,2648,7341,41900,12841,2847,13847,5903,2510,8856 +6325,2736,7572,43340,12977,2872,13897,6036,2650,9174 +6326,2697,7708,43650,13217,2899,14091,6180,2800,9517 +6327,2738,7866,42990,13716,2897,14801,6353,2830,9673 +6328,2882,8440,42520,15250,3083,16864,6787,3020,10269 +6329,3184,9400,41760,18164,3547,19720,7874,3600,11640 +6330,3376,10191,41240,20147,3875,21707,8334,4000,12545 +6331,3389,10300,39650,20553,4012,22385,8390,4240,12773 +6332,3437,10293,37690,20847,4132,22593,8565,4480,13025 +6333,3290,9821,35490,19883,4024,21938,8135,4370,12803 +6334,3403,10329,33870,21051,4216,22935,8496,4420,12998 +6335,3405,10442,31760,21311,4236,22806,8355,4380,13018 +6336,3392,10370,28930,20870,4090,22814,8354,4290,13052 +6337,3431,10408,27320,20574,4010,22706,8335,4200,13072 +6338,3418,10132,26490,19641,3743,21677,8057,3910,12472 +6339,3398,9909,26210,19239,3612,21027,7893,3790,12236 +6340,3234,9467,26340,18109,3370,19643,7423,3560,11687 +6341,3050,8947,27070,17115,3187,18456,7017,3330,10995 +6342,2863,8421,28980,16320,3055,17665,6690,3090,10296 +6343,2703,8075,32420,15596,2961,16686,6379,2870,9789 +6344,2590,7765,37310,14894,2844,15609,6113,2770,9302 +6345,2445,7390,40450,13769,2684,14228,5723,2570,8515 +6346,2432,7155,41220,13041,2658,13387,5520,2440,8094 +6347,2512,7152,42050,12843,2702,13302,5506,2430,8058 +6348,2680,7259,42130,12937,2788,13484,5736,2510,8298 +6349,2768,7427,43200,12932,2835,13637,5926,2630,8659 +6350,2736,7609,42470,13224,2840,13716,6039,2750,8973 +6351,2804,7809,41020,13720,2796,14328,6203,2810,9027 +6352,2841,8230,40060,14973,2955,15968,6389,2970,9329 +6353,3091,9237,38510,17525,3340,18518,7261,3470,10310 +6354,3269,9910,37410,19520,3637,20137,7682,3620,11228 +6355,3407,10054,35640,20143,3712,20726,7799,3770,11603 +6356,3417,10160,33760,20422,3736,20732,8047,3860,11995 +6357,3184,9783,31630,19334,3498,20078,7716,3720,11795 +6358,3273,10309,30250,20349,3675,20959,8303,3870,11993 +6359,3251,10346,28620,20420,3679,20869,8160,3820,11965 +6360,3241,10064,26430,19816,3638,20571,7991,3720,11689 +6361,3336,9978,24830,19350,3576,20264,7887,3700,11577 +6362,3338,9574,24120,18365,3364,19216,7507,3490,11216 +6363,3362,9397,24000,17729,3279,18635,7418,3390,11036 +6364,3198,8937,24100,16797,3108,17723,7055,3180,10612 +6365,3002,8473,24210,15964,2971,16735,6721,3000,10093 +6366,2803,8051,24420,15223,2851,15887,6388,2780,9539 +6367,2718,7711,25400,14662,2794,15218,6054,2620,9168 +6368,2637,7411,27260,14168,2709,14541,5752,2570,8785 +6369,2484,7036,28790,13166,2519,13346,5398,2390,8200 +6370,2465,6808,29450,12285,2488,12467,5167,2270,7759 +6371,2533,6783,30570,12029,2546,12459,5146,2260,7768 +6372,2711,6984,30420,12115,2629,12812,5332,2360,8003 +6373,2737,7099,30310,12081,2655,12734,5457,2480,8327 +6374,2661,7109,30050,11973,2624,12593,5464,2570,8462 +6375,2553,6919,30150,11595,2436,12393,5257,2410,8167 +6376,2645,7046,30180,11954,2379,12695,5269,2360,8007 +6377,2884,7342,30640,13066,2464,13657,5536,2610,8544 +6378,3121,7765,30870,13726,2628,14860,5961,2790,9073 +6379,3209,7902,30020,14218,2715,15056,6137,2870,9583 +6380,3066,8136,28640,14538,2742,15425,6110,2980,9980 +6381,2871,8064,26940,14527,2695,15514,6124,2990,9944 +6382,2819,8120,25370,14752,2682,15689,6067,2890,10000 +6383,2826,7851,24210,14416,2603,14959,6183,2940,9848 +6384,2814,7819,22600,13885,2629,14789,6026,2860,9809 +6385,2901,7818,21380,13624,2629,14861,6011,2790,9664 +6386,3069,7962,20960,13570,2608,14739,5924,2810,9821 +6387,3146,8091,21110,13720,2659,15086,6044,2840,10018 +6388,3034,7769,21390,13258,2553,14613,5813,2710,9675 +6389,2865,7472,21670,12699,2450,14026,5547,2570,9225 +6390,2735,7068,21310,12101,2334,13386,5268,2410,8759 +6391,2560,6677,22140,11432,2281,12642,4967,2250,8298 +6392,2473,6502,24100,11007,2221,12217,4760,2200,7978 +6393,2331,6199,26180,10274,2102,11343,4621,2050,7455 +6394,2282,6046,27720,9734,2068,10780,4434,1980,7084 +6395,2402,6120,28570,9730,2163,10830,4480,2000,7109 +6396,2534,6350,28630,9984,2266,11172,4791,2120,7421 +6397,2623,6582,28650,10237,2341,11256,5028,2300,7717 +6398,2480,6552,28720,10241,2334,11336,5085,2380,7876 +6399,2418,6379,28260,9820,2170,11041,4860,2240,7440 +6400,2429,6428,28460,10060,2097,11368,4725,2160,7158 +6401,2535,6886,29130,10868,2175,12278,4775,2260,7626 +6402,2673,7257,29770,11738,2342,13369,4950,2420,8179 +6403,2751,7435,28940,12134,2433,13931,5193,2610,8456 +6404,2785,7578,27760,12565,2532,14171,5445,2700,8652 +6405,2697,7658,26400,12775,2554,14371,5566,2760,8940 +6406,2593,7626,25050,12759,2541,14435,5557,2750,9053 +6407,2537,7591,23840,12859,2507,14577,5476,2740,9336 +6408,2589,7516,22200,12820,2506,14703,5625,2750,9374 +6409,2742,7518,21000,12804,2556,14873,5859,2750,9469 +6410,2957,7761,20640,12904,2574,15129,5927,2760,9710 +6411,3046,7948,20930,12973,2620,15472,5975,2800,9791 +6412,2934,7638,21520,12749,2538,15064,5816,2710,9537 +6413,2793,7345,22160,12264,2440,14473,5572,2580,9027 +6414,2630,7004,23220,11782,2341,13677,5366,2420,8565 +6415,2470,6689,25870,11008,2250,12832,5073,2270,8133 +6416,2358,6459,29950,10724,2200,12256,4957,2220,7760 +6417,2248,6127,33000,10099,2086,11397,4700,2090,7248 +6418,2231,6010,33760,9615,2063,10863,4523,2010,6950 +6419,2350,6128,35010,9702,2168,10916,4680,2050,7017 +6420,2520,6423,34760,10068,2304,11354,4965,2200,7391 +6421,2645,6769,36300,10452,2404,11570,5245,2370,7871 +6422,2579,6922,36680,10931,2456,11875,5466,2490,8260 +6423,2611,7025,35980,11592,2407,12338,5618,2500,8302 +6424,2805,7394,35840,13142,2540,13830,5840,2640,8623 +6425,3109,8282,34740,15768,2975,16147,6462,3150,9775 +6426,3327,9035,34240,17695,3367,18203,7154,3500,10752 +6427,3458,9344,32690,18392,3497,19014,7389,3730,11398 +6428,3437,9492,31000,18765,3628,19586,7429,3800,11777 +6429,3193,9100,29120,17919,3454,19196,7177,3630,11800 +6430,3304,9663,27990,18993,3597,20062,7749,3780,12381 +6431,3343,9601,26470,19191,3628,20352,7758,3830,12455 +6432,3302,9420,24470,18877,3559,20141,7756,3740,12298 +6433,3333,9409,23090,18361,3542,19882,7826,3730,12367 +6434,3388,9276,22650,17319,3374,18977,7425,3500,12068 +6435,3358,9104,22860,16910,3313,18491,7222,3380,11866 +6436,3202,8655,23220,15959,3142,17472,6883,3170,11381 +6437,2997,8242,23720,15230,2991,16409,6641,2980,10717 +6438,2828,7808,24660,14720,2865,15509,6310,2770,10103 +6439,2658,7498,27480,14185,2789,14689,6043,2580,9679 +6440,2574,7232,31920,13696,2698,13901,5837,2500,9221 +6441,2430,6858,35670,12778,2559,12845,5460,2300,8530 +6442,2404,6734,37340,12205,2523,12065,5233,2190,8046 +6443,2489,6759,38390,12027,2603,12118,5283,2210,8068 +6444,2703,6986,37980,12152,2697,12385,5580,2320,8333 +6445,2782,7205,38840,12263,2766,12615,5708,2490,8678 +6446,2696,7392,38060,12459,2782,12769,5827,2610,8993 +6447,2759,7420,37740,12831,2733,12946,5942,2590,9027 +6448,2989,7822,37550,14107,2846,14453,6151,2760,9416 +6449,3304,8763,36660,16644,3226,16843,7162,3270,10749 +6450,3478,9451,36160,18600,3471,18585,7639,3690,11755 +6451,3495,9600,34420,19165,3544,19359,7887,3880,12511 +6452,3400,9705,32670,19368,3583,19848,7988,3970,12788 +6453,3221,9255,30760,18444,3381,19478,7639,3880,12498 +6454,3282,9695,29400,19427,3534,20539,7927,4070,12712 +6455,3325,9681,27790,19488,3578,20769,8149,4040,12854 +6456,3276,9648,25610,19159,3533,20668,8048,3940,12835 +6457,3377,9656,24150,18984,3514,20495,8122,3910,12966 +6458,3437,9524,23610,18087,3363,19486,7623,3640,12575 +6459,3401,9348,23690,17669,3293,19048,7489,3520,12323 +6460,3253,8856,23950,16634,3119,18060,7170,3300,11822 +6461,3045,8410,24600,15735,2993,17078,6850,3080,11103 +6462,2855,7977,25960,15022,2883,16257,6455,2860,10444 +6463,2713,7668,28980,14462,2808,15405,6127,2670,9970 +6464,2590,7412,33380,13966,2704,14552,5911,2580,9513 +6465,2434,7051,35940,12988,2548,13308,5524,2380,8683 +6466,2378,6909,37150,12331,2531,12506,5224,2270,8201 +6467,2477,6948,39690,12227,2640,12477,5359,2270,8185 +6468,2654,7160,39200,12379,2694,12751,5590,2390,8433 +6469,2725,7380,40650,12455,2771,12817,5838,2550,8814 +6470,2672,7493,41420,12792,2771,12984,5874,2660,9087 +6471,2723,7577,40790,13169,2760,13453,5922,2650,9079 +6472,2848,7967,39890,14345,2894,15114,6206,2830,9344 +6473,3131,8965,38560,17210,3241,17790,7135,3380,10571 +6474,3357,9542,37680,19149,3524,20039,7752,3780,11761 +6475,3462,9689,35880,20078,3576,20803,8018,3980,12566 +6476,3481,9835,34000,20273,3630,21189,8094,4100,13013 +6477,3314,9407,31970,19740,3425,20717,7789,4010,12802 +6478,3408,9724,30510,20975,3574,21750,8259,4170,13445 +6479,3326,9858,28820,21033,3591,21908,8390,4190,13409 +6480,3368,9691,26530,20760,3536,21929,8483,4150,13170 +6481,3437,9548,24990,20292,3499,21536,8401,4110,13150 +6482,3454,9344,24390,19273,3364,20417,7964,3800,12636 +6483,3429,9137,24370,18592,3310,19872,7835,3680,12322 +6484,3259,8725,24600,17523,3147,18869,7447,3460,11771 +6485,3047,8301,25210,16678,3030,17872,7119,3230,11028 +6486,2860,7915,26800,15934,2911,16950,6756,3000,10376 +6487,2709,7650,30020,15345,2855,15966,6340,2790,9850 +6488,2577,7386,34420,14754,2762,15087,6054,2670,9307 +6489,2442,7078,38160,13808,2615,13778,5807,2470,8455 +6490,2421,6864,40520,13088,2596,12982,5493,2350,7962 +6491,2529,6954,42970,12847,2666,12955,5448,2350,7965 +6492,2666,7166,43870,12886,2780,13228,5680,2440,8213 +6493,2734,7389,46210,12958,2819,13212,5854,2580,8572 +6494,2704,7521,47050,13123,2804,13363,6010,2700,8868 +6495,2835,7649,46490,13463,2756,13927,6075,2720,8826 +6496,2983,8089,45470,15272,2898,15850,6419,2950,9097 +6497,3208,9006,43300,18048,3273,18506,7393,3540,10326 +6498,3470,9638,42150,20067,3599,20600,8061,3900,11449 +6499,3518,9902,40250,20985,3705,21516,8194,4040,12013 +6500,3540,9951,38020,21117,3742,21734,8131,4140,12391 +6501,3305,9504,35630,20411,3473,21265,7622,4040,12061 +6502,3455,9953,33420,21653,3598,22190,7728,4170,12444 +6503,3450,9949,31170,21603,3592,21995,7995,4030,12532 +6504,3393,9867,28450,21246,3526,21481,8005,3930,12515 +6505,3395,9836,26540,20576,3447,21137,7909,3890,12649 +6506,3418,9556,25740,19330,3293,20080,7574,3650,12152 +6507,3358,9289,25600,18589,3189,19520,7490,3550,11843 +6508,3225,8792,25860,17431,3069,18396,7047,3320,11253 +6509,3038,8368,26360,16512,2961,17252,6708,3110,10548 +6510,2851,7921,27630,15762,2872,16328,6367,2880,9887 +6511,2744,7608,30790,15142,2803,15361,6040,2680,9468 +6512,2629,7333,35650,14416,2673,14512,5811,2590,9007 +6513,2471,6946,39990,13364,2509,13217,5457,2390,8266 +6514,2441,6782,41450,12529,2489,12397,5156,2290,7844 +6515,2522,6839,41480,12312,2559,12330,5187,2280,7846 +6516,2667,7040,40470,12293,2682,12594,5418,2380,8085 +6517,2755,7195,41340,12360,2733,12706,5587,2530,8481 +6518,2678,7327,41570,12671,2743,12789,5701,2660,8852 +6519,2699,7401,40730,13075,2678,13028,5705,2650,8722 +6520,2954,7836,39790,14448,2746,14392,5936,2850,8785 +6521,3211,8848,38270,16771,3127,16857,6582,3360,9847 +6522,3402,9734,37280,18572,3446,18820,7127,3690,11061 +6523,3546,10022,35520,19236,3555,19580,7375,3860,11768 +6524,3533,10210,33760,19666,3625,19949,7596,3990,12096 +6525,3282,9795,31830,19151,3513,19483,7259,3860,12105 +6526,3360,10101,30360,20083,3619,20358,7633,4000,12623 +6527,3180,9903,28860,20041,3608,20461,7825,3970,12737 +6528,3096,9697,26590,19674,3575,20340,8014,3910,12675 +6529,3230,9370,24890,19080,3533,20209,8102,3870,12671 +6530,3314,9164,24150,17692,3313,19007,7592,3580,12173 +6531,3291,8933,24010,17059,3236,18330,7325,3430,11763 +6532,3177,8518,24140,16145,3072,17270,6890,3200,11168 +6533,2967,8061,24210,15305,2913,16170,6446,3000,10505 +6534,2782,7642,24380,14707,2835,15166,6092,2780,9850 +6535,2605,7352,26340,14277,2708,14314,5684,2610,9476 +6536,2541,7101,29510,13668,2609,13629,5428,2520,8930 +6537,2408,6783,32190,12715,2457,12456,5088,2340,8166 +6538,2367,6516,32940,11875,2397,11658,4889,2230,7713 +6539,2426,6542,32850,11649,2451,11612,4960,2210,7745 +6540,2596,6710,32630,11710,2562,11894,5169,2310,7961 +6541,2684,6902,33150,11670,2597,11902,5368,2450,8234 +6542,2546,6942,33550,11537,2556,11874,5377,2540,8484 +6543,2561,6774,33650,11208,2395,11616,5212,2450,8145 +6544,2716,6947,33450,11646,2357,12277,5227,2520,8006 +6545,2882,7334,33510,12705,2494,13797,5662,2840,8744 +6546,2996,7731,33550,14043,2700,15341,6057,3110,9602 +6547,3108,7845,32540,14767,2916,16353,6318,3180,10251 +6548,3081,8025,31190,14951,2924,16836,6544,3320,10705 +6549,2955,7762,29490,15053,2861,17018,6544,3320,11000 +6550,3031,7846,28230,15371,2888,17469,6721,3320,10970 +6551,2980,7803,26900,15143,2885,17116,6703,3320,10871 +6552,2897,7823,25180,14650,2817,16776,6740,3300,10752 +6553,2962,7929,23790,14469,2794,16568,6536,3310,10622 +6554,3130,8044,23260,14521,2776,16537,6437,3150,10577 +6555,3114,7952,23240,14485,2765,16635,6387,3140,10504 +6556,3030,7641,23310,14014,2626,16176,6122,2980,10076 +6557,2869,7374,23570,13400,2505,15532,5851,2830,9591 +6558,2713,6999,23870,12742,2387,14790,5564,2670,9039 +6559,2582,6781,25450,12184,2287,14075,5300,2510,8601 +6560,2482,6577,27650,11831,2220,13385,5048,2440,8217 +6561,2362,6289,29300,11026,2091,12383,4821,2300,7625 +6562,2317,6145,30820,10447,2052,11652,4674,2180,7225 +6563,2397,6209,30860,10241,2145,11461,4702,2190,7232 +6564,2576,6449,32420,10445,2262,11816,5015,2300,7522 +6565,2610,6646,33000,10535,2309,11764,5198,2410,7827 +6566,2514,6620,32290,10576,2281,11625,5207,2480,7992 +6567,2489,6465,31880,10354,2136,11519,4950,2320,7621 +6568,2581,6600,31620,10727,2110,12137,5015,2280,7508 +6569,2652,6911,32300,11379,2196,12932,5139,2450,7850 +6570,2814,7172,32530,11736,2321,13644,5301,2590,8416 +6571,2865,7269,31670,12032,2388,14003,5510,2650,8803 +6572,2850,7351,30400,12305,2491,14295,5845,2670,9003 +6573,2802,7453,28760,12378,2520,14395,5830,2710,9310 +6574,2796,7460,27160,12182,2522,14372,5756,2620,9178 +6575,2661,7309,25780,12118,2441,14139,5718,2680,9030 +6576,2626,7337,23900,12102,2440,14148,5584,2720,9012 +6577,2736,7461,22570,12245,2431,14350,5501,2680,8997 +6578,2980,7883,22130,12867,2497,14790,5742,2670,9066 +6579,3028,7908,22270,12995,2527,14991,5974,2710,9230 +6580,2946,7637,22510,12570,2459,14380,5808,2600,8899 +6581,2797,7325,23140,12092,2361,13717,5531,2470,8461 +6582,2632,7000,24320,11577,2268,12981,5246,2320,8030 +6583,2468,6674,27150,10947,2175,12287,5003,2170,7656 +6584,2420,6441,31340,10656,2128,11818,4777,2130,7315 +6585,2291,6211,34730,9991,2037,10907,4566,2000,6792 +6586,2254,6102,36320,9506,1992,10241,4426,1920,6534 +6587,2344,6189,37120,9590,2100,10390,4553,1960,6671 +6588,2537,6448,35510,9934,2244,10819,4829,2120,7082 +6589,2628,6729,36830,10348,2338,11203,5201,2340,7602 +6590,2573,6905,36800,10880,2397,11504,5406,2490,8025 +6591,2571,7004,36090,11485,2343,11741,5405,2420,7941 +6592,2794,7324,35490,12772,2446,12861,5471,2440,8051 +6593,3146,8177,34930,14951,2807,15041,5908,2880,8747 +6594,3416,9018,34210,16572,3144,16767,6563,3140,9726 +6595,3383,9218,32480,17069,3286,17182,6653,3240,10245 +6596,3533,9208,30770,17457,3286,17565,6666,3300,10468 +6597,3128,8865,28920,16352,3194,16820,6432,3180,10226 +6598,3229,9221,27590,17328,3294,17583,6815,3330,10729 +6599,3181,9306,26150,17600,3313,17532,6797,3270,11069 +6600,3063,9146,24180,17248,3272,17155,6895,3210,10870 +6601,3187,8980,22880,16966,3257,17084,7104,3260,10800 +6602,3307,8907,22450,16189,3115,16495,6736,3100,10369 +6603,3283,8759,22670,15731,3050,16167,6630,3030,10188 +6604,3152,8300,23070,14809,2879,15303,6317,2850,9667 +6605,2946,7928,23700,14074,2754,14482,6008,2680,9122 +6606,2773,7551,24490,13563,2651,13763,5716,2520,8631 +6607,2586,7291,26550,13237,2601,13166,5419,2360,8254 +6608,2505,7083,30420,12854,2513,12599,5326,2300,7948 +6609,2397,6855,33970,12015,2388,11564,5029,2150,7446 +6610,2354,6672,35610,11469,2359,11004,4854,2070,7154 +6611,2471,6784,36400,11385,2467,11153,5023,2100,7245 +6612,2630,7046,35940,11662,2619,11725,5355,2280,7628 +6613,2732,7266,37300,11908,2720,12030,5590,2490,8092 +6614,2640,7379,36990,12208,2746,12187,5823,2610,8409 +6615,2663,7356,35690,12535,2662,12267,5725,2520,8220 +6616,2890,7597,35260,13368,2662,12850,5713,2520,8255 +6617,3134,8472,34800,15344,2939,14872,6163,2910,8910 +6618,3382,9182,34140,16797,3205,16398,6421,3100,9735 +6619,3427,9393,32600,17331,3344,16752,6489,3170,10164 +6620,3432,9388,31060,17290,3366,16981,6569,3140,10411 +6621,3130,8996,29290,16158,3187,16146,6256,3020,10202 +6622,3164,9337,27970,17141,3323,17100,6733,3190,10489 +6623,3129,9472,26560,17289,3330,17395,6749,3210,10526 +6624,3073,9276,24580,16981,3264,17243,6787,3150,10398 +6625,3193,9071,23280,16905,3233,17137,6817,3140,10373 +6626,3308,9085,22820,16525,3135,16705,6752,3050,10274 +6627,3274,8896,23000,16090,3088,16365,6669,3000,10248 +6628,3165,8466,23390,15250,2936,15580,6371,2840,9811 +6629,2987,8038,24030,14569,2805,14760,6137,2690,9295 +6630,2784,7616,25360,14083,2704,14124,5864,2530,8831 +6631,2611,7314,27610,13635,2659,13538,5709,2370,8532 +6632,2520,7111,30450,13263,2590,12974,5492,2320,8213 +6633,2389,6779,32580,12428,2455,12047,5277,2180,7624 +6634,2386,6672,33080,11928,2437,11498,5114,2110,7319 +6635,2475,6712,32900,11866,2555,11623,5192,2130,7432 +6636,2685,6942,31570,12088,2714,12075,5498,2290,7814 +6637,2739,7205,33320,12235,2764,12366,5701,2490,8243 +6638,2681,7322,33100,12347,2758,12413,5851,2580,8527 +6639,2698,7396,32860,12791,2650,12557,5749,2530,8383 +6640,2886,7672,33190,13693,2696,13555,5796,2590,8522 +6641,3233,8480,33090,15572,3014,15728,6265,2960,9382 +6642,3402,9006,32460,16733,3258,17420,6633,3190,10127 +6643,3337,9125,31150,16919,3395,17720,6739,3350,10620 +6644,3285,9229,29720,16899,3459,17643,6836,3470,10852 +6645,3140,8720,28080,15719,3274,16988,6620,3360,10717 +6646,3174,9200,26780,16749,3483,17866,7123,3560,11287 +6647,3072,9373,25430,16860,3470,18098,7135,3410,11365 +6648,3013,9220,23640,16614,3386,17760,7168,3420,11270 +6649,3187,9124,22440,16551,3329,17646,7147,3360,11055 +6650,3330,9051,22190,16158,3218,16944,6848,3150,10702 +6651,3276,8811,22490,15689,3144,16711,6768,3110,10549 +6652,3152,8469,22930,14996,2995,15845,6462,2940,10106 +6653,2980,8055,23590,14347,2873,15020,6183,2770,9514 +6654,2783,7651,24850,13811,2771,14362,5898,2590,9022 +6655,2631,7294,27000,13423,2721,13659,5651,2420,8590 +6656,2559,7118,29980,12968,2618,13041,5423,2360,8239 +6657,2442,6778,32840,12102,2492,12087,5212,2200,7634 +6658,2452,6664,32660,11622,2471,11479,4996,2120,7375 +6659,2556,6765,33100,11571,2572,11619,5091,2140,7448 +6660,2720,7014,32150,11861,2699,12129,5383,2300,7792 +6661,2787,7235,35440,12069,2775,12316,5689,2490,8204 +6662,2762,7337,34520,12278,2782,12500,5749,2580,8501 +6663,2860,7438,34610,12579,2706,12629,5797,2510,8300 +6664,3063,7715,34360,13448,2764,13774,5892,2570,8439 +6665,3287,8593,33470,15433,3095,15570,6322,2940,9128 +6666,3511,9204,32620,16748,3309,16856,6477,3050,9746 +6667,3566,9383,31060,16931,3323,16957,6428,3060,9997 +6668,3480,9314,29550,16927,3320,16679,6589,3080,10049 +6669,3235,8729,27890,15790,3109,15739,6249,3000,9766 +6670,3415,9030,26600,16463,3194,16651,6596,3140,9992 +6671,3372,9221,25240,16316,3252,16410,6702,3140,10174 +6672,3324,9123,23470,16285,3181,16403,6636,3100,9824 +6673,3363,9064,22230,16042,3173,16294,6764,3120,10022 +6674,3431,9039,21960,15686,3075,15958,6528,2950,9822 +6675,3333,8817,22350,15415,3028,15815,6454,2940,9797 +6676,3202,8379,22820,14574,2900,15053,6130,2770,9345 +6677,3004,8060,23460,13985,2766,14370,5907,2620,8845 +6678,2840,7620,24090,13406,2681,13723,5657,2460,8415 +6679,2704,7279,25590,13026,2623,13090,5411,2310,8092 +6680,2597,7111,28730,12675,2552,12654,5248,2260,7799 +6681,2476,6718,31610,11876,2428,11760,4992,2130,7248 +6682,2443,6599,32840,11424,2405,11192,4780,2060,7021 +6683,2565,6721,33550,11331,2516,11446,4898,2110,7176 +6684,2732,6976,32450,11665,2675,12017,5394,2280,7638 +6685,2794,7248,33270,11938,2781,12246,5697,2500,8158 +6686,2738,7381,33240,12172,2784,12308,5827,2590,8414 +6687,2830,7388,32930,12435,2703,12449,5682,2510,8257 +6688,3048,7634,32820,13233,2695,13101,5733,2510,8165 +6689,3253,8351,32240,14970,2945,14718,5955,2820,8628 +6690,3507,8886,31670,15981,3142,15959,6225,3050,9461 +6691,3546,8909,30310,16075,3189,16455,6342,3060,9613 +6692,3514,8918,28810,16186,3197,16463,6379,3130,9760 +6693,3198,8488,27240,15273,3027,15774,6140,3000,9483 +6694,3350,8754,26150,15995,3112,16413,6449,3130,10030 +6695,3406,8785,24830,16015,3138,16258,6555,3060,10294 +6696,3303,8747,22980,15742,3088,15998,6606,3010,9985 +6697,3339,8761,21820,15482,3070,15977,6724,3020,9868 +6698,3388,8803,21540,15022,3001,15601,6422,2900,9629 +6699,3311,8678,21890,14764,2951,15375,6371,2880,9625 +6700,3187,8306,22090,14104,2844,14728,6068,2720,9233 +6701,3010,7901,22280,13595,2722,14022,5839,2590,8776 +6702,2831,7474,21910,13160,2656,13354,5621,2450,8347 +6703,2679,7167,22290,12739,2576,12788,5500,2290,8078 +6704,2577,6894,23880,12287,2485,12218,5252,2250,7833 +6705,2469,6552,25830,11447,2320,11364,5100,2100,7254 +6706,2427,6404,27080,10853,2300,10830,4983,2050,6966 +6707,2499,6487,27720,10856,2422,11110,5100,2110,7126 +6708,2653,6755,27580,11180,2573,11631,5343,2280,7558 +6709,2716,6926,27670,11272,2650,11805,5587,2460,7931 +6710,2632,6908,27490,11107,2610,11676,5627,2500,8049 +6711,2661,6710,27140,10560,2413,11289,5311,2310,7606 +6712,2778,6726,26920,10615,2325,11569,5076,2240,7402 +6713,2951,7076,27620,11156,2391,12421,5161,2370,7735 +6714,3062,7342,27700,11637,2489,13091,5257,2490,8272 +6715,3057,7466,27000,11957,2522,13450,5263,2530,8518 +6716,2928,7506,25960,12118,2570,13515,5160,2550,8687 +6717,2771,7361,24670,11744,2478,13342,5070,2510,8702 +6718,2820,7355,23760,11747,2543,13256,5175,2600,8661 +6719,2842,7289,22860,11586,2469,12959,5352,2570,8485 +6720,2824,7344,21360,11436,2448,13083,5374,2550,8466 +6721,2884,7294,20350,11427,2448,13067,5498,2530,8510 +6722,3102,7700,20170,11813,2495,13486,5576,2540,8639 +6723,3092,7707,20620,12006,2525,13744,5654,2560,8814 +6724,3001,7442,20940,11670,2443,13459,5523,2470,8563 +6725,2856,7152,21080,11359,2368,12969,5319,2380,8247 +6726,2700,6832,20760,10833,2273,12477,5100,2250,7869 +6727,2619,6546,21460,10378,2167,11866,4970,2120,7602 +6728,2531,6337,22260,10104,2097,11387,4779,2090,7342 +6729,2478,6073,23340,9438,1992,10587,4558,1990,6841 +6730,2425,5954,24610,9184,1984,10094,4450,1940,6609 +6731,2541,6105,25430,9256,2130,10357,4623,2000,6787 +6732,2717,6415,24850,9632,2294,10912,4894,2170,7233 +6733,2806,6645,24450,9938,2396,11164,5145,2350,7643 +6734,2686,6644,24620,9971,2363,11019,5178,2390,7653 +6735,2537,6438,24730,9525,2175,10532,4967,2160,7156 +6736,2546,6391,25590,9521,2098,10821,4746,2020,7015 +6737,2655,6565,27170,10002,2120,11622,4810,2120,7394 +6738,2696,6824,27410,10357,2170,11943,4834,2240,7726 +6739,2685,6852,26930,10477,2190,12265,4758,2300,7794 +6740,2681,6824,26090,10661,2196,12417,4855,2280,7834 +6741,2606,6851,24900,10620,2192,12454,4786,2260,7804 +6742,2477,6695,23730,10678,2187,12325,4871,2230,7726 +6743,2393,6697,22730,10640,2179,12436,4870,2210,7674 +6744,2417,6738,21250,10803,2202,12485,4993,2210,7786 +6745,2611,6897,20260,11167,2255,12741,5163,2310,7921 +6746,2933,7440,20160,11767,2383,13258,5465,2430,8278 +6747,2963,7475,20720,11741,2421,13473,5637,2490,8521 +6748,2902,7274,21120,11514,2366,13286,5472,2400,8294 +6749,2796,7047,21430,11156,2287,12847,5355,2310,7966 +6750,2649,6749,22100,10843,2207,12217,5182,2200,7644 +6751,2558,6498,23690,10361,2137,11601,4959,2080,7394 +6752,2473,6267,26080,10022,2073,11183,4817,2060,7167 +6753,2356,6047,27800,9499,1969,10577,4655,1950,6756 +6754,2335,5953,28380,9158,1974,10186,4497,1920,6481 +6755,2422,6129,28270,9402,2113,10459,4634,2000,6754 +6756,2595,6453,27900,9899,2276,11059,5035,2210,7193 +6757,2693,6698,28030,10206,2374,11330,5406,2400,7738 +6758,2615,6786,28110,10366,2346,11207,5421,2400,7817 +6759,2603,6697,28120,10638,2226,10996,5208,2230,7431 +6760,2737,6960,28730,11722,2250,11657,5115,2220,7455 +6761,2876,7478,29790,13286,2423,12678,5261,2370,7841 +6762,2933,7889,29730,14290,2560,13348,5420,2460,8242 +6763,2955,7972,28840,14466,2571,13764,5411,2480,8496 +6764,2930,7983,27740,14313,2583,13790,5310,2540,8746 +6765,2825,7779,26400,13777,2520,13687,5332,2520,8687 +6766,2813,7765,25160,14287,2558,13891,5577,2530,8734 +6767,2688,7781,23970,14349,2552,13766,5650,2510,8669 +6768,2663,7769,22320,14221,2541,13840,5721,2520,8579 +6769,2852,7998,21390,14381,2576,14002,5893,2560,8737 +6770,3123,8264,21350,14688,2660,14425,6084,2650,9067 +6771,3119,8171,21850,14507,2679,14575,6165,2680,9230 +6772,3035,7907,22320,13979,2595,14149,5922,2580,8958 +6773,2898,7611,22870,13628,2510,13686,5728,2470,8632 +6774,2734,7264,24130,13142,2443,13007,5667,2340,8233 +6775,2600,6929,26180,12670,2403,12490,5348,2190,7866 +6776,2490,6675,29090,12353,2337,12077,5204,2170,7594 +6777,2403,6401,30860,11533,2233,11172,4981,2060,7045 +6778,2397,6347,32290,11088,2237,10629,4845,1980,6819 +6779,2502,6523,33410,11132,2388,10977,5014,2050,6990 +6780,2713,6830,33050,11426,2535,11639,5376,2230,7409 +6781,2799,7062,34340,11551,2632,11881,5678,2420,7916 +6782,2722,7173,34350,11709,2608,11834,5718,2480,8116 +6783,2884,7267,33520,11989,2550,12029,5634,2430,7933 +6784,3027,7575,33460,12965,2606,13245,5605,2450,7971 +6785,3234,8387,33030,14943,2923,14930,6049,2760,8656 +6786,3348,8967,32200,16527,3143,16300,6445,3010,9600 +6787,3397,9053,30750,16424,3226,16811,6459,3130,9950 +6788,3432,9105,29230,16691,3233,16484,6466,3210,10059 +6789,3221,8639,27650,15492,3044,15409,6046,3050,9693 +6790,3287,9041,26460,16346,3225,16218,6418,3170,10041 +6791,3209,8904,25190,16580,3205,16283,6465,3150,10120 +6792,3196,8896,23360,16343,3214,16013,6539,3060,9906 +6793,3279,9049,22200,16137,3159,15966,6710,3080,9945 +6794,3403,9003,21970,15641,3081,15725,6525,2960,9745 +6795,3344,8722,22340,15328,3039,15558,6448,2940,9789 +6796,3233,8326,22800,14538,2899,14823,6087,2780,9359 +6797,3040,7993,23220,13971,2786,14115,5953,2630,8909 +6798,2855,7580,23830,13478,2688,13483,5765,2490,8459 +6799,2691,7266,25830,12947,2651,12861,5486,2330,8191 +6800,2574,7010,28860,12527,2564,12346,5352,2290,7915 +6801,2481,6692,31260,11915,2425,11409,5130,2160,7386 +6802,2444,6594,32530,11304,2433,10958,4961,2090,7090 +6803,2549,6754,33070,11460,2568,11218,5152,2170,7283 +6804,2752,7047,31930,11735,2746,11792,5534,2350,7759 +6805,2816,7252,32610,11957,2836,12111,5786,2540,8259 +6806,2810,7374,32960,12124,2821,12139,5850,2610,8408 +6807,2857,7344,32560,12327,2744,12223,5732,2510,8237 +6808,2985,7558,32240,13074,2705,13058,5697,2530,8148 +6809,3229,8271,32160,14885,2902,14737,6059,2870,8590 +6810,3339,8874,31720,16063,3102,15768,6374,3040,9155 +6811,3336,8956,30590,16295,3170,16186,6414,3120,9521 +6812,3295,9028,29100,16274,3162,16277,6390,3200,9757 +6813,3064,8437,27570,15297,3033,15501,6118,3040,9389 +6814,3142,8902,26360,16269,3122,16199,6470,3150,9858 +6815,3072,8873,25010,16384,3195,16216,6569,3080,10008 +6816,3074,8826,23280,16292,3110,16041,6597,3040,9807 +6817,3224,8710,22120,16108,3112,16023,6648,3050,9859 +6818,3378,8860,21890,15684,3018,15739,6431,2930,9735 +6819,3311,8710,22340,15427,2997,15577,6383,2930,9746 +6820,3189,8308,22840,14515,2878,14878,6069,2770,9350 +6821,3012,7971,23400,13989,2756,14140,5817,2640,8858 +6822,2830,7542,24150,13407,2668,13601,5663,2480,8456 +6823,2691,7223,25950,13137,2621,13081,5438,2350,8207 +6824,2584,6946,28980,12669,2535,12602,5279,2290,7922 +6825,2483,6620,31570,11929,2420,11686,5147,2170,7396 +6826,2465,6549,32600,11441,2416,11089,4992,2090,7133 +6827,2598,6713,33230,11502,2546,11377,5135,2170,7329 +6828,2752,7045,32300,11846,2751,12067,5520,2380,7798 +6829,2865,7311,33370,12046,2841,12391,5812,2570,8304 +6830,2806,7509,33360,12275,2839,12459,5867,2630,8552 +6831,2852,7558,32880,12402,2754,12470,5836,2540,8300 +6832,2983,7663,32590,13203,2706,12988,5810,2560,8172 +6833,3145,8365,32390,15087,2907,14523,6065,2850,8593 +6834,3310,8859,31890,16319,3114,15906,6374,3010,9395 +6835,3378,8935,30630,16520,3179,16345,6561,3120,9641 +6836,3374,9000,29200,16597,3179,16494,6577,3090,9643 +6837,3103,8458,27670,15596,3039,15633,6279,2970,9336 +6838,3233,8905,26420,16478,3157,16458,6639,3130,9696 +6839,3105,8970,25080,16599,3211,16403,6643,3130,10055 +6840,3074,8917,23200,16332,3162,16130,6759,3070,9669 +6841,3239,8814,22120,16103,3157,16082,6879,3070,9824 +6842,3410,8920,21910,15764,3078,15895,6688,2950,9653 +6843,3341,8744,22380,15356,3033,15635,6621,2950,9697 +6844,3209,8325,22820,14568,2903,14839,6236,2780,9252 +6845,3041,7974,23420,14006,2787,14183,5996,2650,8817 +6846,2856,7574,24180,13477,2695,13664,5791,2490,8372 +6847,2737,7271,25680,12989,2643,13047,5490,2310,8133 +6848,2618,6987,28640,12639,2544,12516,5353,2260,7883 +6849,2514,6666,31190,11770,2416,11583,5090,2130,7356 +6850,2500,6592,32150,11307,2415,11040,4940,2070,7108 +6851,2610,6790,32690,11283,2564,11336,5102,2130,7328 +6852,2782,7111,31690,11666,2749,12030,5483,2330,7808 +6853,2850,7365,32820,11856,2851,12412,5814,2530,8290 +6854,2817,7533,32950,12040,2847,12401,5955,2590,8460 +6855,2837,7558,32130,12338,2760,12407,5783,2490,8228 +6856,2961,7700,32080,13114,2692,12951,5732,2450,8133 +6857,3124,8282,31830,14813,2862,14478,6048,2700,8428 +6858,3283,8830,31250,15951,3064,15736,6152,2960,9066 +6859,3296,8942,29980,16079,3134,16097,6201,3070,9463 +6860,3284,8944,28570,16102,3162,16212,6342,3100,9660 +6861,3057,8472,27090,15200,2970,15462,6094,2910,9363 +6862,3125,8829,25890,16076,3120,16199,6402,3050,9685 +6863,3019,8961,24720,16143,3127,16188,6511,3050,9748 +6864,3034,8834,22970,15895,3087,16045,6548,3010,9586 +6865,3206,8687,21830,15532,3072,15875,6459,2950,9701 +6866,3334,8813,21640,15148,3006,15537,6408,2860,9576 +6867,3261,8587,22140,14700,2961,15278,6399,2850,9705 +6868,3147,8247,22430,14135,2854,14642,6045,2690,9193 +6869,2981,7890,22560,13591,2743,13986,5819,2570,8825 +6870,2829,7497,22310,13169,2643,13450,5649,2420,8348 +6871,2726,7146,22890,12717,2570,12951,5419,2280,8072 +6872,2589,6908,25140,12417,2490,12474,5290,2240,7841 +6873,2482,6606,26080,11677,2381,11514,5063,2100,7197 +6874,2434,6472,26760,11155,2345,11031,5026,2050,6932 +6875,2532,6640,27930,11148,2492,11228,5134,2130,7225 +6876,2712,6917,27840,11443,2634,11828,5512,2310,7652 +6877,2763,7108,27760,11460,2705,12014,5755,2470,8071 +6878,2685,7116,27580,11352,2656,11811,5741,2470,8087 +6879,2595,6904,27130,10959,2453,11470,5465,2280,7676 +6880,2714,6962,27070,11016,2370,11809,5370,2260,7526 +6881,2863,7228,27990,11662,2398,12666,5593,2410,7806 +6882,2989,7483,28030,12029,2457,13244,5627,2470,8191 +6883,2969,7574,27310,12118,2508,13515,5662,2530,8468 +6884,2934,7600,26410,12145,2561,13579,5521,2520,8615 +6885,2778,7446,25110,11971,2495,13346,5436,2490,8624 +6886,2803,7440,24070,11920,2502,13449,5549,2490,8544 +6887,2739,7410,23120,11848,2460,13367,5664,2490,8450 +6888,2731,7378,21740,11775,2446,13578,5730,2500,8446 +6889,2916,7329,20720,12016,2459,13766,5764,2540,8492 +6890,3123,7771,20600,12424,2519,14071,5905,2590,8558 +6891,3076,7718,21030,12348,2535,14044,5938,2580,8782 +6892,2981,7467,21240,11928,2461,13598,5745,2480,8522 +6893,2823,7169,21290,11637,2367,13097,5563,2380,8146 +6894,2682,6871,21600,11155,2284,12537,5281,2260,7733 +6895,2550,6557,22750,10659,2205,11897,5048,2140,7415 +6896,2477,6388,24390,10391,2139,11677,4874,2120,7240 +6897,2409,6064,26090,9699,2049,10776,4747,2000,6776 +6898,2390,6006,26300,9325,2041,10283,4566,1940,6502 +6899,2501,6190,25860,9499,2187,10569,4682,2010,6669 +6900,2672,6499,25430,9926,2361,11214,5036,2200,7125 +6901,2730,6675,25410,9884,2420,11395,5374,2370,7591 +6902,2647,6639,25160,9916,2361,11138,5370,2360,7652 +6903,2581,6508,25470,9584,2137,10650,5116,2140,7119 +6904,2583,6656,26010,9765,2114,10956,5061,2070,6862 +6905,2628,6925,27650,10219,2163,11639,5011,2150,7092 +6906,2699,7137,28130,10587,2234,12430,5117,2250,7687 +6907,2734,7148,27530,10946,2248,12759,5269,2340,7854 +6908,2732,7222,26620,11067,2290,12823,5110,2340,7833 +6909,2686,7184,25430,10648,2282,12741,5101,2360,7813 +6910,2670,7069,24080,10835,2264,12729,5118,2330,7917 +6911,2582,7130,23030,10773,2220,12465,5124,2280,7987 +6912,2608,7174,21550,10837,2245,12313,5217,2260,7908 +6913,2721,7412,20580,10867,2286,12529,5367,2310,7822 +6914,2978,7867,20640,11608,2424,13269,5435,2390,8114 +6915,2955,7845,21170,11828,2468,13679,5652,2480,8453 +6916,2907,7605,21720,11595,2414,13322,5599,2400,8228 +6917,2771,7303,22500,11251,2323,12974,5379,2300,7853 +6918,2636,7014,23560,10854,2243,12421,5229,2190,7541 +6919,2516,6616,25260,10285,2165,11747,4866,2050,7235 +6920,2431,6360,28330,9955,2112,11361,4828,2030,6985 +6921,2321,6116,30970,9436,2037,10551,4645,1920,6421 +6922,2307,6090,32020,9162,2032,10049,4530,1880,6320 +6923,2411,6299,32650,9501,2199,10386,4751,1970,6604 +6924,2620,6643,31740,10033,2398,11094,5119,2190,7163 +6925,2707,6905,32820,10415,2506,11435,5483,2400,7749 +6926,2661,7062,33010,10761,2529,11555,5759,2460,7962 +6927,2768,7107,32700,11355,2460,11710,5707,2350,7872 +6928,2908,7351,32600,12459,2534,12710,5719,2390,7849 +6929,3124,8037,32470,14332,2818,14439,6108,2680,8210 +6930,3286,8681,31880,15511,3040,15710,6306,2880,9063 +6931,3301,8755,30500,15624,3184,16062,6451,2980,9375 +6932,3281,8789,29090,16039,3198,16193,6638,3010,9520 +6933,3049,8514,27540,15186,3001,15395,6216,2930,9221 +6934,3126,8709,26350,15957,3157,16244,6559,3080,9691 +6935,3096,8646,25020,16174,3127,16235,6597,3040,9891 +6936,3087,8670,23250,15993,3134,16084,6633,2970,9708 +6937,3261,8781,22120,15827,3134,16048,6763,2990,9726 +6938,3415,8875,21970,15584,3099,15774,6635,2870,9499 +6939,3319,8629,22390,15247,3017,15570,6578,2860,9564 +6940,3205,8286,22960,14512,2883,14876,6279,2710,9140 +6941,3040,7950,23530,13912,2777,14151,6017,2560,8665 +6942,2888,7534,24400,13350,2687,13516,5791,2420,8290 +6943,2745,7228,25890,13065,2642,12973,5523,2260,7894 +6944,2694,6979,28870,12775,2532,12461,5328,2240,7640 +6945,2557,6678,31500,11929,2412,11603,5050,2110,7187 +6946,2524,6636,32510,11609,2410,11089,4920,2050,6927 +6947,2656,6792,33170,11601,2545,11362,5127,2120,7178 +6948,2825,7080,32150,12003,2704,12033,5511,2310,7732 +6949,2891,7308,33240,12244,2777,12280,5845,2510,8244 +6950,2895,7479,33290,12404,2773,12320,5923,2570,8430 +6951,2962,7484,32940,12631,2688,12449,5815,2460,8174 +6952,3110,7659,32690,13345,2661,13186,5783,2480,8050 +6953,3327,8374,32510,15180,2878,14852,6203,2770,8327 +6954,3457,8920,31740,16325,3094,16104,6369,2970,9188 +6955,3553,8895,30450,16430,3202,16402,6535,3060,9593 +6956,3385,8889,29110,16319,3261,16378,6658,3140,9688 +6957,3236,8493,27520,15326,3013,15617,6288,3010,9341 +6958,3290,8879,26320,16197,3110,16438,6558,3120,9835 +6959,3226,8818,25030,16372,3154,16488,6729,3080,9957 +6960,3240,8792,23220,16212,3113,16316,6830,3020,9596 +6961,3451,8849,22140,16037,3121,16226,6863,3020,9663 +6962,3572,8971,22020,15750,3056,16091,6633,2920,9572 +6963,3491,8784,22540,15291,3021,15759,6510,2890,9639 +6964,3367,8445,22990,14550,2879,14981,6225,2710,9236 +6965,3197,8093,23650,14115,2775,14243,5892,2580,8816 +6966,3027,7667,24480,13458,2677,13652,5743,2450,8330 +6967,2817,7337,25970,13067,2620,13017,5414,2300,8034 +6968,2685,7050,29050,12719,2537,12487,5309,2270,7732 +6969,2609,6695,31380,11904,2425,11541,5135,2150,7215 +6970,2570,6641,32120,11460,2424,10998,4983,2100,6968 +6971,2692,6863,32800,11487,2573,11313,5103,2180,7203 +6972,2872,7143,32140,11900,2772,12055,5453,2400,7736 +6973,2953,7396,32980,12140,2852,12409,5781,2580,8236 +6974,2889,7574,32980,12399,2872,12385,5858,2630,8415 +6975,2933,7611,33010,12698,2745,12386,5735,2530,8185 +6976,3037,7716,32770,13502,2710,13031,5853,2540,8061 +6977,3164,8294,32650,15243,2893,14592,6214,2780,8355 +6978,3292,8807,31910,16227,3070,15834,6474,2950,9229 +6979,3328,8908,30610,16373,3132,16223,6530,3070,9704 +6980,3264,8999,29370,16285,3165,16535,6569,3140,9803 +6981,2975,8467,27760,15464,2993,15755,6171,2990,9595 +6982,3044,8800,26450,16317,3128,16545,6557,3120,9981 +6983,3068,8865,25120,16477,3148,16410,6606,3080,9956 +6984,3099,8819,23420,16272,3118,16282,6762,3060,9768 +6985,3288,8812,22320,16107,3113,16285,6870,3040,9835 +6986,3428,8949,22170,15775,3051,16002,6585,2940,9619 +6987,3359,8697,22570,15339,2998,15740,6521,2920,9664 +6988,3282,8373,23060,14483,2872,15023,6193,2760,9229 +6989,3091,7962,23610,13969,2755,14352,5943,2620,8775 +6990,2910,7560,24390,13504,2672,13666,5714,2440,8383 +6991,2753,7252,26060,13080,2612,12952,5402,2300,8033 +6992,2630,7001,29380,12649,2519,12461,5252,2260,7798 +6993,2493,6665,32240,11904,2409,11646,5034,2140,7251 +6994,2507,6627,33380,11465,2403,11179,4883,2090,7025 +6995,2640,6815,34150,11559,2567,11490,5037,2160,7252 +6996,2781,7118,33240,11941,2733,12166,5444,2370,7821 +6997,2882,7353,34340,12194,2801,12438,5805,2560,8321 +6998,2867,7501,33720,12316,2765,12420,5937,2600,8482 +6999,3008,7518,32960,12542,2674,12341,5807,2520,8232 +7000,3137,7736,33020,13280,2661,13071,5769,2540,8080 +7001,3292,8432,33100,15023,2889,14681,6113,2820,8305 +7002,3422,8988,32300,16208,3096,15922,6343,3020,9252 +7003,3532,9103,30930,16399,3161,16459,6406,3130,9751 +7004,3500,9170,29530,16451,3196,16760,6557,3200,9814 +7005,3304,8682,27900,15529,3032,16047,6245,3050,9573 +7006,3392,9082,26580,16336,3207,16673,6614,3210,10120 +7007,3347,8996,25260,16311,3228,16529,6740,3180,10006 +7008,3328,8937,23470,16076,3157,16258,6776,3140,9891 +7009,3419,9085,22410,16021,3147,16235,6788,3140,9911 +7010,3492,9127,22230,15857,3081,15981,6537,3020,9696 +7011,3400,8871,22680,15424,3017,15659,6455,2970,9701 +7012,3257,8425,23120,14641,2894,14890,6130,2800,9215 +7013,3071,8000,23720,14037,2777,14174,5898,2640,8813 +7014,2882,7584,24340,13514,2674,13655,5658,2480,8325 +7015,2736,7263,26230,13170,2593,13114,5421,2360,8100 +7016,2676,7042,29550,12770,2513,12523,5224,2320,7831 +7017,2530,6707,32680,12007,2398,11687,5003,2200,7347 +7018,2501,6646,34180,11463,2402,11093,4883,2140,7131 +7019,2648,6818,34860,11547,2532,11429,5019,2200,7322 +7020,2816,7119,33910,11943,2693,12047,5430,2380,7830 +7021,2921,7298,34640,12158,2783,12258,5748,2560,8290 +7022,2922,7414,34650,12216,2771,12208,5830,2610,8416 +7023,3058,7372,34370,12460,2665,12317,5745,2520,8252 +7024,3244,7631,33460,13193,2652,13219,5775,2570,8376 +7025,3422,8469,33240,15027,2919,14857,6480,2890,9073 +7026,3618,9022,32440,16344,3149,16361,6609,3040,9695 +7027,3627,9114,31130,16595,3187,16640,6629,3180,9733 +7028,3611,9054,29730,16452,3209,16612,6656,3220,9654 +7029,3404,8656,28150,15433,3039,15913,6272,3020,9228 +7030,3520,9008,26970,16153,3206,16875,6598,3140,9473 +7031,3524,8909,25620,16276,3219,16944,6573,3160,9238 +7032,3510,9016,23810,16057,3168,16691,6375,3080,9358 +7033,3584,9162,22480,16076,3164,16432,6460,3040,9305 +7034,3573,9055,22200,15474,3076,15897,6329,2920,9230 +7035,3462,8749,22450,14902,2989,15316,6225,2860,9353 +7036,3344,8415,22590,14155,2876,14675,5969,2710,8970 +7037,3165,8021,22610,13593,2765,14034,5757,2590,8569 +7038,2972,7608,22440,13122,2670,13490,5597,2440,8249 +7039,2801,7282,23320,12810,2614,12883,5455,2310,7966 +7040,2764,7000,24750,12395,2540,12535,5212,2280,7672 +7041,2654,6669,26060,11531,2400,11589,5018,2160,7127 +7042,2640,6576,26840,11044,2392,11008,4931,2100,6908 +7043,2776,6704,27530,11092,2522,11247,5106,2190,7146 +7044,2913,6961,27720,11437,2694,11927,5454,2400,7672 +7045,2980,7083,27650,11496,2750,12079,5774,2580,8120 +7046,2914,7060,27230,11304,2680,11905,5789,2600,8241 +7047,2865,6953,26840,10936,2496,11415,5588,2410,7783 +7048,2811,7029,27120,11143,2434,11706,5409,2290,7418 +7049,2905,7368,28060,11705,2517,12738,5335,2360,7413 +7050,3048,7622,27940,12005,2582,13406,5564,2520,7877 +7051,3152,7758,27100,12060,2612,13542,5626,2560,7963 +7052,3187,7744,26150,11966,2612,13397,5391,2570,7936 +7053,3053,7581,24920,11916,2531,13137,5160,2490,7794 +7054,3083,7653,23910,11643,2582,12995,5162,2470,7962 +7055,2982,7448,23030,11537,2578,12907,5228,2430,7939 +7056,2977,7619,21620,11601,2548,12795,5367,2390,7833 +7057,3161,7945,20690,11768,2579,12986,5507,2470,7907 +7058,3322,8360,20630,12254,2675,13557,5607,2530,8157 +7059,3297,8300,21180,12282,2694,13814,5772,2580,8460 +7060,3246,8057,21550,11965,2632,13558,5653,2490,8259 +7061,3111,7764,21850,11658,2546,13169,5493,2400,7978 +7062,2916,7414,21540,11184,2444,12516,5346,2290,7649 +7063,2829,7031,21560,10623,2370,11895,5014,2150,7411 +7064,2734,6777,22860,10317,2280,11531,4844,2120,7194 +7065,2625,6431,24240,9861,2167,10705,4574,2000,6756 +7066,2635,6341,25050,9464,2173,10254,4596,1960,6552 +7067,2735,6534,25480,9797,2327,10507,4766,2080,6868 +7068,2910,6865,25440,10231,2510,11257,5204,2330,7480 +7069,2983,7069,24980,10521,2620,11481,5471,2500,7918 +7070,2895,7123,24670,10454,2549,11250,5469,2480,7877 +7071,2813,7007,24860,10304,2389,10744,5199,2240,7369 +7072,2860,6989,25550,10285,2277,10822,5067,2110,6966 +7073,2958,7047,27160,10524,2218,11338,4762,2120,6801 +7074,3048,7196,27590,10769,2249,11676,4729,2170,7268 +7075,3108,7195,27110,10909,2260,11928,4767,2240,7423 +7076,3074,7235,26260,10859,2265,12114,4878,2260,7403 +7077,3011,7117,25110,10713,2230,12006,4838,2280,7483 +7078,2996,6966,23800,10541,2195,11926,4690,2240,7477 +7079,2896,6916,22780,10413,2129,11782,4763,2160,7463 +7080,2916,7017,21340,10546,2191,11918,4916,2180,7452 +7081,3110,7309,20390,10773,2275,12344,5144,2270,7566 +7082,3295,7985,20530,11627,2451,13177,5558,2400,7971 +7083,3274,8049,21110,11865,2518,13519,5731,2490,8325 +7084,3211,7906,21780,11689,2476,13251,5654,2400,8089 +7085,3053,7632,22700,11393,2424,13008,5502,2310,7823 +7086,2910,7308,23800,11029,2338,12388,5279,2200,7526 +7087,2769,6918,25490,10479,2262,11772,4968,2070,7212 +7088,2670,6640,28450,10199,2177,11408,4791,2050,6963 +7089,2555,6372,30880,9669,2082,10622,4526,1950,6551 +7090,2550,6340,31680,9453,2113,10157,4512,1920,6368 +7091,2675,6592,32010,9748,2285,10640,4735,2050,6705 +7092,2852,6979,31170,10376,2510,11368,5189,2300,7350 +7093,2962,7231,31690,10762,2597,11661,5608,2490,7924 +7094,2986,7493,31970,11131,2645,11791,5716,2520,8125 +7095,3020,7613,31550,11671,2620,11983,5719,2420,8022 +7096,3089,7844,31700,12703,2639,12840,5771,2430,8011 +7097,3272,8399,31870,14455,2932,14210,5915,2650,8025 +7098,3475,8873,31260,15746,3090,15267,6001,2840,8992 +7099,3525,8898,30080,15796,3103,15525,6084,2930,9269 +7100,3478,8848,28790,15650,3098,15525,6065,2980,9235 +7101,3203,8410,27280,14788,2901,14710,5799,2840,8976 +7102,3233,8776,26130,15810,3107,15496,6106,2960,9528 +7103,3186,8718,24740,15863,3109,15563,6096,2920,9505 +7104,3252,8656,23040,15742,3082,15460,6327,2900,9298 +7105,3450,8741,22030,15471,3096,15631,6524,2930,9347 +7106,3561,8934,21980,15294,3083,15591,6409,2850,9338 +7107,3477,8798,22590,15036,3032,15369,6371,2830,9450 +7108,3368,8469,23060,14332,2908,14667,6034,2690,9041 +7109,3183,8138,23790,13818,2800,14013,5903,2570,8606 +7110,2989,7684,24790,13365,2702,13466,5680,2430,8258 +7111,2826,7305,26220,12927,2635,12982,5526,2270,7928 +7112,2734,7065,29030,12505,2536,12395,5381,2230,7643 +7113,2634,6747,31370,11767,2434,11531,5116,2110,7205 +7114,2625,6704,32110,11370,2455,11065,5016,2060,6986 +7115,2780,6965,33010,11539,2602,11382,5273,2180,7291 +7116,2926,7292,31810,11978,2817,12113,5735,2410,7903 +7117,3024,7541,32620,12232,2898,12430,5998,2600,8432 +7118,3063,7736,32620,12440,2877,12434,6033,2640,8515 +7119,3120,7873,32320,12837,2802,12575,5876,2530,8353 +7120,3126,8006,32300,13592,2743,13180,5888,2550,8295 +7121,3319,8623,32300,15221,2911,14558,6221,2810,8322 +7122,3423,9024,31530,16277,3090,15583,6424,3000,8981 +7123,3352,9006,30280,16327,3159,15846,6372,3110,9373 +7124,3296,8986,28970,16360,3167,16021,6418,3170,9427 +7125,3095,8418,27380,15294,2983,15062,5935,3000,9213 +7126,3168,8760,26150,16154,3127,15842,6319,3140,9651 +7127,3164,8884,24800,16253,3148,15906,6384,3100,9599 +7128,3240,8830,23060,15977,3133,15799,6500,3050,9313 +7129,3440,8869,22020,15906,3139,15844,6567,3040,9349 +7130,3534,9001,21980,15714,3126,15825,6468,2950,9452 +7131,3455,8863,22420,15273,3057,15517,6402,2910,9492 +7132,3314,8484,22820,14584,2915,14794,6037,2750,9150 +7133,3126,8087,23450,14080,2797,14124,5838,2620,8715 +7134,2935,7666,24460,13593,2715,13394,5676,2460,8325 +7135,2762,7279,26280,13133,2653,12929,5332,2310,8001 +7136,2708,7008,29200,12691,2565,12388,5163,2270,7708 +7137,2586,6679,31800,11906,2453,11509,4940,2160,7204 +7138,2588,6651,32670,11543,2458,11052,4910,2110,7018 +7139,2709,6842,32490,11674,2625,11421,5100,2210,7305 +7140,2857,7125,30680,12039,2805,12107,5496,2430,7925 +7141,2951,7357,31760,12280,2880,12371,5909,2600,8402 +7142,2948,7521,32040,12441,2833,12351,6004,2640,8538 +7143,3024,7633,31560,12756,2734,12401,5823,2520,8400 +7144,3115,7865,31660,13493,2715,13157,5851,2580,8254 +7145,3243,8458,31940,15158,2921,14881,6047,2800,8214 +7146,3314,8930,31250,15991,3141,15879,6129,2930,8992 +7147,3333,8870,30090,16398,3198,16000,6272,3010,9462 +7148,3231,8848,28820,16370,3205,16009,6375,3070,9467 +7149,3038,8362,27300,15107,2969,15264,5948,2900,9227 +7150,3106,8802,26150,15952,3101,15977,6298,3030,9744 +7151,3066,8779,24740,16181,3132,16028,6344,3000,9806 +7152,3144,8774,23060,16086,3131,15791,6433,2960,9493 +7153,3366,8934,22040,15936,3132,15886,6547,2980,9498 +7154,3463,9002,22020,15739,3103,15814,6335,2910,9409 +7155,3356,8764,22490,15287,3048,15469,6277,2890,9518 +7156,3234,8431,23000,14671,2914,14818,5939,2730,9141 +7157,3061,8084,23670,14145,2824,14190,5725,2620,8752 +7158,2861,7673,24620,13638,2719,13679,5515,2460,8327 +7159,2691,7344,25960,13238,2653,13080,5307,2330,8035 +7160,2607,7122,28710,12848,2572,12549,5158,2290,7738 +7161,2489,6752,31060,12070,2459,11674,4962,2170,7298 +7162,2504,6738,31800,11688,2462,11137,4874,2120,7081 +7163,2630,6935,32270,11771,2637,11516,5133,2210,7379 +7164,2781,7235,31220,12193,2822,12172,5533,2430,7996 +7165,2891,7459,32320,12396,2907,12454,5797,2600,8457 +7166,2888,7651,32360,12533,2884,12502,5848,2640,8610 +7167,2989,7811,32150,12817,2807,12561,5686,2540,8418 +7168,3127,7905,32160,13617,2763,13197,5766,2560,8255 +7169,3319,8528,32190,15146,2910,14650,6066,2800,8278 +7170,3411,8881,31420,16243,3101,15653,6265,2960,8948 +7171,3303,8859,30190,16213,3145,15837,6126,3030,9341 +7172,3195,8813,28890,16140,3158,15993,6155,3080,9512 +7173,2963,8351,27390,15132,2989,15245,5939,2930,9201 +7174,3127,8727,26150,15952,3143,15989,6411,3130,9592 +7175,3168,8855,24860,16117,3157,16077,6578,3060,9477 +7176,3234,8831,23150,15972,3133,16098,6511,3070,9346 +7177,3420,8924,22140,15796,3139,16006,6533,2970,9448 +7178,3505,9018,21990,15671,3107,15975,6463,2950,9402 +7179,3400,8804,22490,15171,3052,15629,6289,2900,9498 +7180,3261,8454,22980,14425,2918,14883,5992,2740,9081 +7181,3077,8117,23710,13982,2819,14284,5761,2610,8634 +7182,2899,7658,24660,13582,2721,13767,5571,2460,8267 +7183,2764,7374,26110,13139,2623,13124,5398,2310,7964 +7184,2676,7128,28990,12632,2559,12679,5295,2260,7772 +7185,2547,6748,31400,11883,2424,11736,5045,2150,7235 +7186,2529,6712,32250,11583,2433,11227,4957,2120,7007 +7187,2714,6907,32890,11615,2604,11618,5070,2230,7300 +7188,2873,7206,31950,12036,2785,12308,5476,2460,7910 +7189,2948,7432,32940,12274,2836,12638,5803,2640,8358 +7190,2939,7626,32670,12477,2822,12655,5895,2690,8442 +7191,3031,7717,32070,12759,2742,12717,5916,2570,8258 +7192,3192,7780,31770,13472,2726,13476,5882,2600,8255 +7193,3403,8501,31740,15015,2892,14884,6324,2850,8504 +7194,3533,9029,30910,16045,3059,15867,6626,3010,9244 +7195,3466,8853,29690,16062,3124,16004,6658,3110,9422 +7196,3451,8904,28480,15984,3146,16129,6727,3190,9414 +7197,3332,8511,26980,14992,2997,15358,6434,3040,9130 +7198,3426,8866,25890,15817,3158,16171,6692,3200,9250 +7199,3417,8809,24650,15991,3146,16357,6479,3160,9076 +7200,3377,8788,22970,15528,3126,16258,6376,2970,9096 +7201,3510,8936,21890,15497,3128,16101,6475,2970,9262 +7202,3520,8949,21750,15245,3064,15875,6472,2900,9203 +7203,3388,8684,22120,14650,2997,15418,6396,2870,9302 +7204,3277,8389,22360,14019,2877,14785,6120,2730,8937 +7205,3064,8055,22470,13661,2774,14174,5920,2610,8564 +7206,2908,7635,22530,13261,2677,13557,5712,2470,8231 +7207,2752,7310,23790,12837,2577,13079,5474,2320,7819 +7208,2678,7055,25640,12483,2510,12579,5234,2270,7617 +7209,2536,6712,26840,11720,2372,11629,5029,2150,7120 +7210,2517,6606,27290,11209,2379,11082,4998,2110,6898 +7211,2643,6802,27300,11313,2529,11511,5207,2220,7191 +7212,2801,7092,26870,11593,2676,12082,5520,2450,7721 +7213,2848,7188,26930,11565,2732,12269,5623,2600,8115 +7214,2789,7197,26950,11339,2651,11985,5661,2580,8109 +7215,2797,7111,26530,10936,2468,11597,5390,2360,7642 +7216,2905,7104,26770,11163,2412,11867,5290,2320,7405 +7217,3029,7247,27840,11579,2537,12734,5319,2470,7207 +7218,3126,7388,27820,11922,2619,13300,5332,2560,7753 +7219,3133,7485,27150,12063,2630,13571,5458,2620,7956 +7220,3071,7446,26280,11919,2639,13315,5373,2670,8105 +7221,2938,7273,24980,11796,2583,12833,5186,2610,7861 +7222,2882,7257,23950,11762,2549,12878,5244,2580,7957 +7223,2855,7178,22990,11632,2537,12670,5174,2550,8018 +7224,2865,7281,21530,11579,2480,12680,5306,2510,7913 +7225,3053,7660,20620,11656,2537,12958,5449,2500,8047 +7226,3180,7942,20600,12261,2635,13701,5578,2560,8192 +7227,3110,7829,21080,12241,2637,13856,5694,2580,8425 +7228,3040,7613,21390,11895,2571,13583,5555,2490,8171 +7229,2898,7332,21540,11588,2505,13067,5446,2410,7863 +7230,2754,6949,21560,11102,2405,12494,5180,2280,7579 +7231,2690,6659,22460,10629,2316,11886,4965,2150,7270 +7232,2596,6465,24210,10226,2250,11489,4778,2120,7121 +7233,2491,6170,25140,9532,2134,10657,4582,2010,6640 +7234,2513,6132,25120,9408,2162,10281,4492,1990,6466 +7235,2648,6299,25580,9605,2318,10625,4743,2110,6759 +7236,2802,6601,25720,10002,2512,11369,5138,2350,7416 +7237,2875,6784,25540,10237,2582,11411,5462,2510,7864 +7238,2819,6755,25360,10188,2525,11258,5487,2500,7793 +7239,2771,6638,25210,9904,2337,10657,5209,2250,7274 +7240,2828,6749,25890,10082,2239,10688,4991,2160,6962 +7241,2703,6998,27590,10441,2233,11165,4766,2170,6848 +7242,2762,7193,27930,10671,2284,11707,4744,2180,7321 +7243,2918,7147,27430,10688,2296,11955,4792,2210,7381 +7244,2806,7114,26560,10593,2278,12028,4804,2230,7415 +7245,2691,7128,25330,10580,2289,11986,4865,2260,7449 +7246,2648,7015,24000,10531,2273,11863,4807,2200,7341 +7247,2709,6957,22940,10488,2239,11789,4785,2160,7351 +7248,2761,7077,21430,10604,2262,11891,4947,2220,7306 +7249,2984,7395,20570,10909,2364,12365,5153,2300,7433 +7250,3156,7941,20670,11785,2541,13362,5491,2440,7936 +7251,3147,7905,21220,11816,2585,13649,5600,2500,8279 +7252,3090,7737,21860,11677,2524,13458,5459,2440,8092 +7253,2968,7490,22820,11462,2461,13050,5309,2340,7836 +7254,2805,7155,24200,11030,2368,12523,5103,2240,7466 +7255,2684,6768,25530,10359,2276,11781,4752,2100,7247 +7256,2608,6507,28160,10186,2205,11307,4544,2080,6960 +7257,2474,6206,30530,9622,2148,10550,4440,1980,6539 +7258,2517,6210,31220,9381,2151,10134,4440,1970,6379 +7259,2644,6477,31660,9721,2344,10623,4613,2120,6804 +7260,2790,6845,30710,10266,2543,11416,5088,2380,7470 +7261,2920,7118,31690,10687,2644,11665,5496,2560,7990 +7262,2934,7403,31650,11209,2690,11871,5613,2610,8221 +7263,2962,7646,31550,11870,2701,12129,5682,2530,8212 +7264,3099,7871,31680,12946,2702,12895,5668,2530,8196 +7265,3236,8576,31860,14615,2935,14306,5935,2730,8258 +7266,3347,8824,31160,15641,3097,15269,6011,2870,8731 +7267,3346,8760,29970,15694,3136,15450,5891,2910,9058 +7268,3261,8847,28790,15535,3161,15497,5964,2970,9042 +7269,2991,8360,27310,14691,2935,14576,5650,2840,8850 +7270,3045,8864,26090,15633,3036,15350,5912,2930,9249 +7271,2993,8855,24780,15710,3019,15356,5959,2890,9194 +7272,3092,8691,23000,15580,3033,15312,6055,2890,8992 +7273,3412,8866,22060,15541,3095,15525,6411,2950,9158 +7274,3504,8991,21970,15347,3089,15678,6347,2910,9207 +7275,3406,8744,22510,14919,3045,15384,6299,2900,9356 +7276,3258,8393,22910,14246,2935,14789,6050,2750,9005 +7277,3076,8120,23620,13715,2858,14126,5890,2630,8687 +7278,2886,7723,24660,13266,2756,13498,5661,2480,8266 +7279,2752,7401,26150,12844,2678,12934,5373,2340,7941 +7280,2673,7147,28820,12507,2582,12301,5186,2270,7649 +7281,2532,6830,31200,11754,2462,11377,4995,2160,7160 +7282,2529,6771,32140,11427,2488,10990,4891,2130,6972 +7283,2670,7024,32600,11628,2654,11421,5177,2250,7327 +7284,2849,7351,31740,12133,2844,12141,5658,2490,8011 +7285,2944,7586,32330,12393,2913,12367,5944,2660,8492 +7286,2953,7760,31640,12631,2908,12307,5990,2680,8631 +7287,2969,7944,31380,12922,2869,12431,6006,2570,8567 +7288,3108,8172,31720,13664,2805,13044,6053,2590,8438 +7289,3357,8792,31980,15193,2930,14298,6184,2820,8332 +7290,3434,9118,31400,16033,3074,15138,6157,2960,8920 +7291,3341,9017,30190,15980,3094,15283,6190,2980,9290 +7292,3228,8971,29000,15985,3083,15458,6170,3030,9302 +7293,3015,8451,27490,15012,2913,14753,5760,2870,8953 +7294,3097,8873,26330,15688,3040,15404,6101,3000,9349 +7295,3070,8947,24990,15795,3113,15391,6179,2990,9409 +7296,3156,8733,23360,15595,3078,15334,6317,2950,9070 +7297,3433,8891,22290,15499,3119,15424,6486,2960,9297 +7298,3492,9024,22280,15431,3087,15573,6393,2910,9367 +7299,3401,8822,22710,14999,3038,15331,6356,2890,9434 +7300,3297,8466,23130,14392,2918,14724,6124,2770,9095 +7301,3124,8169,23770,13844,2819,14119,5876,2640,8717 +7302,2939,7754,24780,13375,2722,13603,5644,2490,8357 +7303,2750,7366,26260,12949,2629,12984,5544,2330,7998 +7304,2700,7076,28620,12565,2541,12395,5308,2300,7716 +7305,2571,6759,30780,11796,2422,11532,5086,2170,7174 +7306,2569,6736,31650,11393,2456,11176,5032,2140,7019 +7307,2700,6953,32180,11525,2636,11552,5299,2270,7370 +7308,2872,7274,31070,11889,2807,12281,5657,2510,7996 +7309,2981,7457,32170,12102,2908,12525,5988,2680,8479 +7310,2967,7650,32240,12363,2888,12485,6039,2710,8615 +7311,2952,7792,32030,12653,2843,12724,6109,2610,8531 +7312,3162,8036,32090,13358,2795,13324,6084,2610,8423 +7313,3552,8568,32200,14874,2941,14602,6225,2780,8240 +7314,3649,8941,31530,15902,3088,15593,6254,2910,9084 +7315,3584,8938,30340,15881,3136,15835,6215,2970,9289 +7316,3548,8937,29020,15799,3128,15893,6208,3000,9364 +7317,3327,8470,27560,14692,2958,15057,5858,2850,9101 +7318,3429,8921,26320,15531,3075,15799,6313,2990,9521 +7319,3390,9073,25010,15701,3121,15706,6427,2980,9508 +7320,3440,8882,23240,15580,3105,15573,6559,2960,9356 +7321,3603,9009,22240,15575,3111,15696,6653,3010,9423 +7322,3566,9005,22230,15437,3098,15708,6523,2960,9457 +7323,3440,8756,22780,15088,3030,15477,6495,2930,9523 +7324,3318,8405,23230,14444,2901,14903,6210,2780,9102 +7325,3121,8086,23940,14055,2804,14309,6002,2660,8714 +7326,2955,7754,24870,13550,2714,13689,5780,2490,8332 +7327,2761,7353,26570,13088,2651,13210,5572,2350,8015 +7328,2709,7096,29220,12682,2569,12671,5390,2300,7706 +7329,2598,6772,31360,11929,2452,11751,5186,2160,7211 +7330,2615,6745,31950,11486,2458,11290,5088,2130,7015 +7331,2723,6956,32370,11580,2635,11711,5355,2250,7312 +7332,2906,7222,31160,12000,2841,12428,5785,2500,7958 +7333,2988,7413,32330,12257,2880,12665,6062,2670,8429 +7334,2974,7501,32660,12441,2876,12655,5984,2700,8546 +7335,2993,7595,32430,12774,2796,12762,5913,2580,8398 +7336,3166,7845,32280,13492,2761,13412,5950,2620,8336 +7337,3412,8539,32170,15007,2962,14854,6327,2840,8287 +7338,3510,8978,31280,15969,3130,15933,6445,2970,9050 +7339,3428,9066,30060,15944,3199,16190,6331,3050,9342 +7340,3367,9111,28820,15897,3220,16310,6335,3090,9466 +7341,3094,8573,27330,14917,2990,15467,6037,2940,9183 +7342,3207,9009,26120,15865,3138,16129,6428,3080,9760 +7343,3114,9024,24880,15982,3160,16121,6480,3070,9675 +7344,3196,8862,23180,15814,3149,15830,6600,3050,9430 +7345,3505,9025,22230,15680,3127,15805,6639,3010,9539 +7346,3539,8998,22080,15509,3085,15803,6422,2940,9475 +7347,3449,8770,22450,15006,3001,15406,6317,2890,9459 +7348,3318,8416,22690,14325,2876,14732,6054,2730,9040 +7349,3124,8101,22980,13811,2756,14118,5903,2610,8607 +7350,2956,7743,23010,13436,2670,13491,5771,2470,8245 +7351,2761,7401,24000,13088,2622,13088,5603,2330,7932 +7352,2719,7122,25750,12671,2549,12590,5366,2270,7687 +7353,2629,6825,27350,11968,2421,11743,5131,2150,7188 +7354,2622,6742,28090,11546,2427,11351,5061,2120,6992 +7355,2723,6928,28610,11645,2567,11649,5282,2250,7287 +7356,2908,7183,28360,12039,2733,12338,5651,2460,7901 +7357,3001,7323,28690,12215,2757,12398,5940,2610,8255 +7358,2909,7330,28710,12220,2711,12100,5815,2600,8257 +7359,2875,7229,28420,12195,2523,11714,5549,2380,7856 +7360,2979,7385,28530,12817,2448,12030,5556,2370,7635 +7361,3104,7568,29370,13975,2488,12965,5742,2480,7573 +7362,3190,7821,29170,14606,2584,13673,5660,2550,8197 +7363,3038,7833,28390,14739,2638,13888,5592,2640,8415 +7364,2974,7837,27490,14686,2656,14083,5631,2680,8514 +7365,2952,7719,26150,14146,2592,13794,5527,2650,8491 +7366,2926,7847,24920,14699,2606,13954,5749,2680,8663 +7367,2883,7882,23800,14716,2611,13771,5770,2640,8671 +7368,2901,7737,22240,14494,2607,13589,5918,2620,8500 +7369,3126,7943,21370,14370,2601,13647,6029,2630,8654 +7370,3214,8232,21330,14490,2658,14235,6031,2690,8893 +7371,3146,8070,21670,14226,2641,14327,6063,2690,8980 +7372,3087,7880,21950,13730,2545,13923,5866,2580,8690 +7373,2963,7607,22090,13321,2467,13471,5748,2470,8350 +7374,2821,7247,22030,12893,2414,12976,5587,2340,8038 +7375,2682,6854,22840,12475,2366,12450,5373,2220,7687 +7376,2641,6643,24240,12156,2292,11946,5133,2180,7437 +7377,2570,6347,25860,11386,2207,11121,4894,2060,6967 +7378,2579,6310,27450,10975,2186,10712,4825,2040,6763 +7379,2719,6498,28010,11023,2350,11133,4998,2160,7063 +7380,2830,6773,27250,11382,2538,11806,5481,2380,7622 +7381,2902,6936,27410,11426,2580,11849,5745,2510,7963 +7382,2852,6965,27450,11201,2542,11507,5659,2500,7983 +7383,2828,6903,27070,10694,2349,11149,5391,2280,7551 +7384,3001,6961,27300,10710,2269,11509,5292,2270,7322 +7385,3044,7320,28340,11092,2301,12475,5432,2410,7226 +7386,2993,7508,28150,11552,2349,13245,5644,2460,7693 +7387,2972,7542,27380,11782,2398,13445,5506,2570,8134 +7388,2913,7571,26350,11860,2418,13563,5510,2610,8345 +7389,2812,7400,25030,11634,2352,13288,5392,2590,8269 +7390,2804,7457,24030,11589,2366,13487,5405,2590,8161 +7391,2700,7420,23100,11577,2354,13254,5397,2580,8143 +7392,2824,7412,21670,11339,2345,12948,5452,2520,8105 +7393,3111,7759,20770,11714,2397,13178,5565,2510,8290 +7394,3252,8037,20710,12220,2488,13912,5778,2600,8611 +7395,3207,7926,21020,12050,2480,13930,5798,2590,8658 +7396,3137,7664,21250,11737,2411,13622,5614,2500,8382 +7397,2991,7333,21290,11466,2321,13059,5504,2410,8030 +7398,2830,6982,21170,10990,2216,12436,5345,2270,7673 +7399,2724,6707,21980,10440,2138,11829,5068,2140,7379 +7400,2681,6488,23760,10152,2084,11412,4910,2110,7083 +7401,2590,6239,25260,9582,2010,10674,4684,2010,6695 +7402,2620,6185,26060,9292,2006,10206,4624,1980,6513 +7403,2704,6385,26500,9541,2174,10469,4809,2080,6790 +7404,2841,6695,26650,9953,2332,11179,5145,2300,7344 +7405,2921,6842,26660,10167,2379,11288,5453,2440,7693 +7406,2893,6870,26580,10084,2317,11014,5392,2410,7638 +7407,2799,6801,26220,9756,2131,10626,5112,2180,7039 +7408,2713,6857,26600,9768,2075,10998,5116,2170,6776 +7409,2827,6930,28120,10098,2071,11569,5022,2200,6635 +7410,2880,7075,28210,10599,2124,12227,5004,2260,7310 +7411,2891,7005,27660,10684,2166,12502,4993,2340,7592 +7412,2825,6991,26670,10873,2187,12757,5060,2410,7882 +7413,2709,7000,25410,11063,2201,12979,5087,2440,8153 +7414,2514,6982,24150,11004,2181,12936,5051,2400,8272 +7415,2476,6998,23080,10895,2171,12831,5185,2360,8045 +7416,2662,7051,21750,10864,2191,12696,5338,2350,7951 +7417,3011,7451,20870,11113,2251,12975,5485,2370,8049 +7418,3223,7964,20920,11945,2401,13767,5782,2500,8491 +7419,3238,7914,21370,11875,2404,13897,5852,2540,8676 +7420,3196,7763,21860,11696,2340,13545,5696,2460,8349 +7421,3062,7454,22530,11381,2262,13015,5539,2360,7998 +7422,2935,7147,23660,10907,2174,12421,5309,2250,7606 +7423,2745,6780,26150,10349,2094,11887,5116,2120,7308 +7424,2677,6559,29020,10243,2062,11432,4926,2110,7056 +7425,2556,6304,32000,9625,1996,10716,4683,2010,6631 +7426,2551,6309,33100,9431,2016,10344,4599,1990,6458 +7427,2679,6582,33160,9679,2188,10747,4774,2090,6786 +7428,2842,6883,32080,10173,2365,11345,5158,2300,7363 +7429,2931,7095,33250,10423,2442,11511,5507,2460,7844 +7430,2956,7223,32910,10826,2447,11528,5666,2480,7938 +7431,3052,7366,33110,11385,2427,11889,5438,2410,7917 +7432,3297,7650,33720,12673,2483,12948,5595,2500,8182 +7433,3528,8427,33630,14581,2805,14791,6183,2860,8850 +7434,3721,8914,32730,15975,3071,16085,6602,3080,9597 +7435,3701,8998,31330,16326,3157,16348,6607,3150,9895 +7436,3694,9078,29960,16102,3200,16551,6684,3240,9980 +7437,3506,8533,28470,15348,3013,15995,6187,3000,9612 +7438,3643,9025,27260,16211,3159,16866,6740,3220,9843 +7439,3605,9031,25960,16543,3211,16873,6729,3190,9894 +7440,3542,9057,24320,16336,3174,16674,6647,3150,9789 +7441,3680,9330,23310,16374,3185,16679,6649,3140,9878 +7442,3624,9222,23150,15947,3137,16482,6568,3110,9858 +7443,3493,8979,23570,15505,3060,15963,6287,3020,9707 +7444,3364,8595,23850,14789,2912,15216,5933,2860,9232 +7445,3189,8257,24260,14249,2771,14513,5773,2720,8777 +7446,2991,7835,25990,13792,2695,13957,5537,2570,8356 +7447,2817,7464,28640,13503,2634,13329,5361,2410,8000 +7448,2745,7218,31900,13179,2578,12843,5125,2350,7804 +7449,2659,6892,34010,12418,2485,11993,4933,2230,7275 +7450,2688,6872,34780,11970,2485,11387,4807,2180,7003 +7451,2761,7052,35000,12006,2617,11641,4951,2250,7229 +7452,2884,7295,34020,12338,2764,12254,5276,2440,7773 +7453,2973,7462,35040,12480,2787,12300,5624,2600,8260 +7454,2949,7493,33880,12555,2752,12228,5657,2620,8426 +7455,3000,7679,33560,12974,2691,12424,5721,2520,8271 +7456,3280,8064,33700,13872,2731,13226,5888,2550,8289 +7457,3469,8926,33460,15648,2987,14946,6089,2930,8437 +7458,3561,9393,32420,16688,3184,16099,6201,3030,8969 +7459,3531,9328,30890,16736,3142,16014,6086,3020,9153 +7460,3502,9215,29460,16583,3177,16052,6174,3010,9173 +7461,3416,8629,27780,15359,2974,15246,5833,2800,8882 +7462,3426,9119,26470,16201,3134,15936,6038,2940,9185 +7463,3284,9063,25130,16450,3168,15900,6129,2920,9106 +7464,3336,9025,23430,16125,3142,15777,6317,2940,8970 +7465,3544,9356,22350,16039,3158,15880,6499,2990,9205 +7466,3530,9260,22230,15837,3140,15994,6394,2930,9441 +7467,3423,8943,22590,15233,3062,15660,6278,2880,9499 +7468,3317,8651,23010,14566,2932,14919,5914,2760,9111 +7469,3134,8292,23640,14137,2829,14247,5726,2660,8759 +7470,2927,7826,24690,13700,2738,13601,5557,2540,8353 +7471,2775,7505,26080,13348,2674,12987,5310,2400,8069 +7472,2705,7194,28670,12917,2604,12386,5169,2350,7797 +7473,2600,6817,30880,12142,2481,11546,4958,2230,7306 +7474,2618,6795,31690,11756,2491,11121,4909,2200,7145 +7475,2738,6968,31950,11840,2658,11395,5126,2310,7488 +7476,2926,7276,30940,12243,2860,12065,5504,2530,8115 +7477,3042,7500,31970,12447,2928,12374,5871,2730,8600 +7478,3026,7659,32130,12682,2926,12408,6081,2790,8822 +7479,3025,7850,32010,13047,2851,12722,6078,2690,8683 +7480,3092,8047,32010,13837,2803,13110,6052,2680,8581 +7481,3335,8671,32060,15372,2942,14401,6110,2810,8365 +7482,3481,9197,31390,16342,3134,15356,6138,2910,8789 +7483,3426,9200,30260,16283,3197,15477,5988,2950,9071 +7484,3384,9100,29020,16083,3138,15512,5912,2980,9126 +7485,3169,8480,27480,14998,2943,14727,5582,2820,8775 +7486,3237,8870,26200,15895,3098,15493,5893,2940,9146 +7487,3201,8979,24840,16100,3112,15538,6041,2910,9103 +7488,3326,8820,23230,15952,3108,15486,6270,2930,8927 +7489,3564,9215,22180,15836,3127,15703,6438,2980,9246 +7490,3570,9258,22100,15648,3127,15779,6426,2970,9422 +7491,3478,9104,22610,15231,3068,15403,6322,2930,9409 +7492,3377,8804,22960,14581,2959,14790,6095,2800,9135 +7493,3224,8470,23600,14055,2858,14139,5845,2680,8790 +7494,3032,8068,24820,13558,2757,13636,5619,2530,8403 +7495,2893,7713,26350,13124,2705,13128,5393,2370,8063 +7496,2790,7418,29050,12723,2620,12614,5334,2330,7829 +7497,2684,7054,31130,12051,2489,11675,5089,2200,7300 +7498,2680,7087,31910,11634,2511,11239,4932,2190,7098 +7499,2800,7318,32810,11764,2683,11628,5155,2300,7436 +7500,2948,7654,31570,12116,2862,12369,5664,2550,8066 +7501,3043,7859,32480,12294,2956,12603,5984,2710,8477 +7502,3072,8075,32460,12468,2969,12565,6045,2720,8561 +7503,3125,8347,32060,12909,2934,12724,5953,2600,8473 +7504,3268,8463,32170,13530,2847,13410,5975,2630,8536 +7505,3435,8961,32330,15259,3007,14969,6335,2960,8754 +7506,3584,9215,31700,16283,3162,16155,6483,3140,9226 +7507,3634,9099,30510,16128,3160,16176,6324,3160,9231 +7508,3587,9019,29260,16106,3158,16214,6239,3120,9291 +7509,3329,8466,27770,15225,2998,15349,5902,3000,8986 +7510,3421,8854,26410,15897,3128,16261,6312,3140,9443 +7511,3332,8972,25090,16048,3163,16327,6375,3150,9495 +7512,3360,8772,23310,15798,3156,16041,6482,3040,9407 +7513,3628,9113,22270,15983,3167,16101,6475,3020,9624 +7514,3645,9207,22160,15752,3150,16118,6393,3020,9666 +7515,3578,9003,22620,15400,3066,15714,6307,2960,9644 +7516,3409,8709,23070,14609,2944,15025,6033,2820,9248 +7517,3225,8390,23760,14134,2841,14282,5867,2690,8841 +7518,3030,7973,24820,13630,2755,13752,5620,2540,8444 +7519,2865,7631,26770,13256,2687,13124,5275,2390,8218 +7520,2799,7318,29820,12946,2605,12621,5132,2360,7949 +7521,2686,6988,31740,12190,2497,11690,4854,2220,7447 +7522,2732,6937,32530,11783,2503,11302,4784,2200,7205 +7523,2824,7179,32680,11705,2649,11655,5020,2310,7489 +7524,2952,7489,31370,12191,2841,12242,5392,2530,8072 +7525,3062,7673,32550,12367,2890,12388,5648,2680,8466 +7526,3077,7814,32680,12470,2864,12367,5693,2680,8462 +7527,3123,8012,32700,12890,2774,12608,5645,2580,8336 +7528,3289,8210,33320,13754,2790,13802,5695,2650,8595 +7529,3496,8941,32840,15538,3061,15754,6300,2950,9261 +7530,3687,9284,31970,16797,3273,16929,6699,3090,9795 +7531,3781,9308,30700,16910,3303,16933,6664,3100,9750 +7532,3733,9297,29410,16745,3296,16739,6719,3110,9813 +7533,3600,8909,27890,15636,3114,15852,6311,2940,9362 +7534,3736,9334,26590,16542,3279,16627,6636,3090,9771 +7535,3693,9425,25210,16574,3281,16689,6662,3090,9756 +7536,3640,9423,23500,16275,3231,16482,6528,3060,9621 +7537,3789,9663,22390,16320,3245,16431,6624,3080,9686 +7538,3732,9383,22190,15817,3170,16038,6542,3020,9773 +7539,3626,9112,22540,15241,3080,15519,6371,2940,9661 +7540,3472,8798,22830,14517,2965,14920,6101,2790,9271 +7541,3301,8435,23040,14025,2867,14300,5865,2680,8880 +7542,3112,7974,23270,13544,2786,13738,5627,2530,8444 +7543,3018,7592,24320,13180,2720,13044,5311,2380,8129 +7544,2918,7300,26100,12764,2636,12596,5127,2310,7851 +7545,2849,6955,27490,11969,2503,11694,4863,2200,7345 +7546,2844,6905,28080,11478,2494,11101,4760,2170,7123 +7547,2996,7056,28180,11518,2611,11470,4970,2270,7444 +7548,3181,7332,27780,11796,2791,12196,5357,2480,7951 +7549,3300,7496,28090,11867,2866,12283,5600,2620,8376 +7550,3288,7583,27380,11641,2795,11933,5548,2610,8333 +7551,3262,7606,27650,11445,2618,11603,5350,2380,7964 +7552,3243,7569,28790,11428,2578,12146,5348,2380,7757 +7553,3351,8037,29660,11835,2631,13368,5428,2540,7714 +7554,3425,8116,29570,12346,2673,13753,5584,2660,7852 +7555,3362,8043,29010,12317,2687,13944,5497,2660,7918 +7556,3289,7989,28200,12198,2680,13494,5412,2630,8135 +7557,3168,7817,26840,12018,2609,12990,5128,2620,8000 +7558,3059,7860,25600,11992,2635,13216,5190,2570,7914 +7559,3037,7945,24350,11882,2601,13250,5160,2560,7851 +7560,3290,7969,22720,11690,2603,13256,5170,2490,7819 +7561,3591,8545,21700,12126,2689,13669,5446,2510,8021 +7562,3702,8885,21620,12743,2824,14371,5699,2610,8449 +7563,3680,8764,22020,12685,2829,14373,5725,2640,8572 +7564,3591,8598,22280,12434,2779,14099,5547,2560,8417 +7565,3439,8287,22580,12102,2707,13717,5368,2470,8157 +7566,3269,7903,23120,11591,2602,13062,5131,2350,7806 +7567,3152,7524,24300,11073,2521,12378,4916,2210,7499 +7568,3113,7256,26510,10803,2423,11974,4710,2190,7274 +7569,3003,6948,28310,10160,2297,11058,4517,2070,6840 +7570,3020,6960,28860,9921,2313,10698,4403,2050,6664 +7571,3148,7194,28570,10046,2481,11044,4620,2180,6982 +7572,3310,7485,28600,10353,2674,11729,5066,2420,7548 +7573,3393,7622,28220,10632,2735,11918,5241,2570,7949 +7574,3362,7679,28500,10590,2683,11573,5244,2540,7946 +7575,3224,7734,28640,10375,2537,11175,5012,2260,7362 +7576,3080,7790,29860,10333,2480,11602,4853,2200,7242 +7577,3158,8015,31310,10733,2527,12503,4852,2350,7389 +7578,3189,8108,31480,11092,2614,13116,5047,2350,7661 +7579,3207,8082,30890,11094,2608,13193,5047,2350,7865 +7580,3192,8036,29940,10938,2606,13102,4996,2410,7890 +7581,3214,8159,28500,10852,2625,13144,5087,2390,7809 +7582,3141,8054,26630,10874,2584,13215,4885,2340,7537 +7583,3053,8133,25020,10726,2594,13185,4909,2380,7395 +7584,3175,8283,23250,10968,2614,13226,4928,2410,7538 +7585,3490,8795,22230,11555,2736,13550,5277,2480,8011 +7586,3676,9219,22230,12357,2891,14400,5698,2640,8813 +7587,3663,9130,22750,12536,2901,14637,5865,2690,9127 +7588,3586,9016,23380,12322,2857,14412,5849,2640,8941 +7589,3453,8713,24680,12101,2788,13969,5665,2550,8710 +7590,3227,8275,27160,11599,2677,13450,5458,2420,8338 +7591,3081,7719,29440,10988,2540,12697,5172,2270,7881 +7592,3029,7417,32300,10693,2457,12126,4921,2230,7542 +7593,2921,7086,34590,10085,2338,11233,4727,2140,7085 +7594,2960,7143,34320,9886,2368,10831,4650,2130,6924 +7595,3110,7401,34290,10226,2569,11310,4948,2310,7350 +7596,3285,7706,32890,10833,2778,12092,5406,2570,8080 +7597,3413,7938,33110,11224,2876,12321,5707,2750,8542 +7598,3406,8370,32980,11632,2944,12486,5955,2800,8837 +7599,3446,8911,33220,12655,3040,13202,6268,2780,9046 +7600,3550,9193,34370,13754,3148,14625,6514,2840,9224 +7601,3756,9902,35400,15736,3466,16640,6944,3110,9230 +7602,3883,10198,35320,16903,3749,17893,7145,3240,9608 +7603,3898,10169,34520,16858,3718,18066,7018,3280,9557 +7604,3947,10092,33600,16483,3662,17844,7024,3310,9577 +7605,3794,9592,32060,15332,3472,16887,6451,3150,9190 +7606,3835,10003,30380,16227,3632,17266,6677,3270,9599 +7607,3839,10141,28420,16232,3655,17233,6731,3230,9566 +7608,3892,10152,26230,16127,3635,17219,6900,3150,9736 +7609,4055,10696,25050,16669,3707,17634,7019,3230,9990 +7610,3997,10723,25070,16866,3703,17993,7084,3300,10442 +7611,3881,10574,25440,16587,3671,17833,7107,3320,10739 +7612,3747,10162,26000,16081,3532,17218,6886,3180,10534 +7613,3579,9704,27450,15530,3395,16648,6670,3070,10200 +7614,3385,9151,30030,15117,3238,16049,6383,2890,9762 +7615,3168,8623,31760,14583,3142,15062,5970,2690,9272 +7616,3173,8231,33390,14027,3014,14188,5782,2580,8741 +7617,3068,7805,34590,13133,2837,13038,5478,2440,8154 +7618,3114,7868,34090,12635,2847,12554,5448,2440,8058 +7619,3227,8061,33660,12818,3035,12972,5731,2590,8471 +7620,3396,8333,32140,13230,3203,13609,6180,2840,9212 +7621,3558,8544,32910,13431,3294,13833,6518,2980,9593 +7622,3626,8792,32880,13826,3315,14039,6657,3030,9857 +7623,3710,9226,32900,14733,3335,14889,7005,3030,10261 +7624,3811,9442,33670,15616,3367,15819,7132,3070,10331 +7625,3920,10123,34400,16996,3565,17148,7159,3190,9795 +7626,4070,10492,34220,17663,3689,18001,6969,3190,9962 +7627,4039,10309,33400,17134,3613,17616,6669,3130,9769 +7628,3966,10151,32320,16874,3588,17346,6655,3130,9701 +7629,3800,9604,30780,15804,3369,16298,6145,2940,9285 +7630,3916,10024,29270,16422,3515,16780,6375,3020,9507 +7631,3887,9970,27500,16358,3481,16568,6431,2970,9222 +7632,3898,10009,25290,16351,3440,16439,6514,3030,9364 +7633,4066,10487,24150,16517,3504,16945,6778,3090,9807 +7634,4027,10458,24110,16673,3536,17379,6902,3170,10219 +7635,3911,10253,24450,16567,3501,17236,6959,3210,10464 +7636,3777,9914,24890,15963,3404,16736,6739,3110,10186 +7637,3612,9540,25940,15455,3287,16235,6518,3000,9845 +7638,3409,8984,28230,15059,3162,15668,6247,2820,9353 +7639,3275,8480,30470,14532,3079,14874,5888,2640,8809 +7640,3241,8115,33260,13960,2946,14053,5610,2560,8581 +7641,3105,7756,35450,13110,2757,12931,5397,2400,8007 +7642,3124,7846,35760,12799,2803,12459,5341,2380,7855 +7643,3287,8103,35180,12990,2988,12858,5649,2530,8284 +7644,3454,8413,33620,13308,3169,13543,6028,2780,8819 +7645,3536,8657,34580,13440,3249,13743,6296,2900,9054 +7646,3554,8961,34510,13857,3233,13963,6367,2930,9279 +7647,3610,9436,34380,14778,3259,14706,6586,2910,9445 +7648,3699,9644,35450,15504,3278,15912,6811,3020,9732 +7649,3874,10218,35880,17027,3470,17686,7145,3330,9620 +7650,3939,10258,35530,17855,3580,18536,7036,3410,9709 +7651,3827,9937,34550,17590,3542,18146,6656,3340,9449 +7652,3773,9748,33360,17223,3445,17287,6520,3300,9603 +7653,3520,9076,31630,15949,3246,16188,6183,3090,9109 +7654,3645,9457,29950,16765,3362,16798,6350,3130,9271 +7655,3623,9563,27950,16840,3453,16664,6447,3130,9323 +7656,3704,9488,25790,16574,3441,16472,6598,3090,9334 +7657,3968,10007,24590,16807,3501,16901,6722,3130,9724 +7658,3976,10099,24520,17069,3499,17214,6731,3170,10125 +7659,3874,10004,24910,16818,3459,17048,6760,3200,10414 +7660,3769,9728,25430,16294,3333,16618,6481,3100,10231 +7661,3617,9405,26890,15797,3220,16074,6254,2980,9967 +7662,3440,8934,29360,15314,3100,15502,6054,2820,9600 +7663,3274,8477,31350,14656,2982,14711,5720,2620,9102 +7664,3235,8125,33180,14116,2870,13882,5431,2540,8687 +7665,3103,7763,34490,13211,2737,12776,5201,2400,8095 +7666,3134,7850,34150,12895,2771,12278,5148,2410,7938 +7667,3299,8089,33710,13053,2953,12769,5480,2560,8374 +7668,3456,8393,32460,13450,3139,13404,5888,2800,8968 +7669,3560,8638,33910,13652,3204,13650,6145,2930,9397 +7670,3622,8964,33760,13963,3230,13782,6266,2980,9641 +7671,3677,9418,32710,14868,3227,14504,6495,2970,9892 +7672,3599,9548,34010,15719,3203,15446,6608,3000,10048 +7673,3695,10001,34710,17105,3342,16659,6952,3220,10145 +7674,3713,10111,34440,17651,3416,17416,6951,3300,10267 +7675,3631,9820,33430,17259,3359,17484,6669,3300,10107 +7676,3502,9557,32230,16771,3338,16992,6604,3280,10007 +7677,3277,8965,30600,15628,3163,15941,6278,3050,9857 +7678,3368,9249,28890,16402,3291,16646,6526,3170,10095 +7679,3426,9412,27100,16365,3303,16263,6623,3260,9980 +7680,3595,9346,25030,16293,3277,16506,6647,3160,9968 +7681,3899,9853,23970,16685,3351,16971,6827,3210,10246 +7682,3871,9882,23960,16735,3364,17125,6888,3240,10621 +7683,3730,9708,24440,16375,3312,16860,6821,3200,10689 +7684,3619,9384,24920,15740,3203,16238,6525,3070,10382 +7685,3480,8997,25930,15207,3086,15627,6291,2940,10012 +7686,3271,8541,28320,14614,2978,15004,6097,2780,9472 +7687,3126,8098,31080,14163,2929,14242,5706,2600,9037 +7688,3098,7763,34480,13583,2816,13490,5557,2530,8625 +7689,2996,7349,36760,12739,2688,12511,5301,2400,8078 +7690,3035,7365,37590,12382,2718,12093,5276,2380,7872 +7691,3132,7605,37910,12532,2877,12553,5516,2520,8211 +7692,3303,7889,36630,12814,3049,13134,5985,2750,8872 +7693,3450,8124,36310,12900,3126,13336,6207,2860,9262 +7694,3439,8316,35260,13030,3105,13252,6228,2850,9363 +7695,3468,8588,35220,13781,3052,13668,6336,2780,9508 +7696,3638,8975,35890,14979,3081,15026,6646,2910,9783 +7697,3885,9871,35880,16992,3403,16997,6929,3170,10105 +7698,4030,10400,35260,18212,3604,17905,6984,3240,10473 +7699,4025,10363,34170,18011,3586,17659,6852,3250,10593 +7700,4025,10275,32800,17411,3562,17494,6956,3220,10557 +7701,3823,9750,31010,15906,3379,16180,6638,3040,10104 +7702,3926,10146,29470,16843,3554,16494,6851,3190,10276 +7703,3897,10103,27620,16737,3549,16434,6715,3210,10027 +7704,3887,9937,25600,16436,3515,16479,6842,3210,10205 +7705,3993,10190,24420,16642,3558,16882,6958,3240,10411 +7706,3885,10019,24210,16588,3510,16975,6970,3270,10809 +7707,3745,9659,24450,16190,3427,16731,7005,3260,10985 +7708,3603,9276,24660,15566,3308,16317,6846,3130,10762 +7709,3447,8924,25040,15133,3186,15751,6696,2980,10400 +7710,3258,8447,26000,14656,3046,15138,6442,2830,9890 +7711,3092,7978,27160,14154,2952,14496,6137,2650,9381 +7712,3100,7656,28490,13661,2844,13793,5780,2560,8861 +7713,2979,7261,28950,12784,2706,12846,5461,2420,8249 +7714,2995,7243,29410,12440,2728,12380,5553,2410,8045 +7715,3104,7426,29210,12489,2885,12740,5750,2570,8420 +7716,3259,7739,29520,12815,3055,13243,6175,2780,8963 +7717,3362,7882,28990,12811,3136,13204,6419,2900,9340 +7718,3374,7975,28220,12644,3092,13084,6358,2900,9393 +7719,3253,7986,28740,12576,2959,13146,6393,2780,9197 +7720,3247,8038,30300,12929,2931,14067,6556,2820,9517 +7721,3268,8228,32020,13579,3119,15587,6866,3040,9927 +7722,3247,8348,32470,14026,3274,16364,6989,3170,10116 +7723,3128,8418,32250,13876,3290,16186,6871,3140,9831 +7724,3175,8312,31610,13640,3293,16225,6594,3200,9621 +7725,3080,8004,30350,13104,3211,15920,6365,3080,9361 +7726,2991,8172,28870,13134,3218,15702,6343,2990,9201 +7727,3029,8281,27360,13486,3188,15481,6333,2940,9132 +7728,3180,8390,25430,13589,3183,15435,6465,2990,9152 +7729,3454,9012,24290,14082,3284,16137,6639,3100,9572 +7730,3498,9197,24170,14801,3336,17054,6905,3240,10158 +7731,3445,9083,24340,14784,3286,17167,6962,3270,10465 +7732,3374,8863,24540,14535,3184,16801,6791,3180,10234 +7733,3268,8612,24970,14186,3070,16272,6646,3070,9997 +7734,3069,8227,25760,13571,2917,15414,6300,2880,9528 +7735,2984,7799,26600,12706,2795,14378,5836,2640,9001 +7736,2992,7577,27000,12182,2676,13477,5485,2550,8552 +7737,2901,7214,27340,11354,2529,12379,5249,2400,7945 +7738,2990,7186,27160,11057,2545,11908,5178,2390,7744 +7739,3075,7398,26820,11208,2733,12258,5375,2530,8134 +7740,3211,7592,26440,11505,2891,12697,5742,2740,8655 +7741,3282,7698,25990,11557,2944,12691,5859,2830,8917 +7742,3245,7695,25850,11481,2860,12505,5721,2780,8822 +7743,3156,7567,26350,11460,2690,12418,5634,2560,8495 +7744,3087,7568,27510,11734,2638,12790,5662,2520,8402 +7745,3069,7663,29540,12107,2671,13507,5549,2570,8184 +7746,3152,7727,30160,12141,2740,13622,5347,2520,8133 +7747,2990,7681,30000,11979,2715,13447,5245,2460,7918 +7748,2937,7706,29460,11665,2694,13383,5109,2450,8155 +7749,2895,7616,28340,11398,2680,13210,4979,2410,8098 +7750,2832,7494,26730,11127,2595,12966,4910,2320,7914 +7751,2788,7406,25240,11179,2562,12906,4977,2270,7597 +7752,2976,7534,23600,11329,2585,13031,5245,2360,7636 +7753,3255,8185,22740,11988,2717,13781,5524,2490,8108 +7754,3398,8615,22860,13077,2891,15042,6029,2730,9049 +7755,3390,8598,23350,13302,2907,15340,6188,2810,9471 +7756,3337,8436,24040,13168,2852,15142,6147,2770,9361 +7757,3230,8174,25470,12983,2784,14935,5985,2690,9100 +7758,3109,7792,28170,12572,2670,14321,5662,2560,8726 +7759,2933,7279,30450,11789,2577,13486,5343,2380,8264 +7760,2921,7055,32650,11462,2505,12809,5159,2300,7842 +7761,2836,6763,34040,10864,2389,11881,4899,2170,7369 +7762,2890,6847,33760,10753,2436,11510,4917,2180,7249 +7763,3042,7149,33460,11051,2646,11988,5303,2380,7706 +7764,3210,7465,32120,11496,2864,12607,5704,2620,8391 +7765,3327,7793,32970,11858,2968,12752,5893,2730,8763 +7766,3335,8109,32880,12382,2983,12877,5958,2750,9012 +7767,3369,8488,33370,13565,2988,13686,6197,2750,9271 +7768,3518,8818,34600,14950,3131,14991,6531,2850,9507 +7769,3773,9770,35540,16814,3444,16745,6936,3110,9506 +7770,3864,10230,35390,17743,3679,17579,6934,3160,9482 +7771,3819,10198,34520,17427,3680,17319,6837,3150,9581 +7772,3762,10025,33470,17155,3692,17117,6650,3130,9527 +7773,3567,9501,31890,16017,3495,16235,6197,2930,9109 +7774,3665,9971,30270,16892,3557,16875,6480,3030,9387 +7775,3672,10115,28320,16941,3520,16803,6540,3030,9269 +7776,3865,10217,26190,16854,3522,16776,6793,3010,9159 +7777,4063,10660,25170,17223,3590,17170,6775,3080,9637 +7778,4023,10584,25160,17456,3613,17576,6888,3150,10106 +7779,3900,10351,25580,17164,3566,17338,6919,3160,10325 +7780,3754,9947,26050,16566,3440,16850,6727,3050,10148 +7781,3566,9539,27490,16006,3322,16254,6515,2950,9816 +7782,3367,8971,30310,15492,3198,15600,6307,2780,9411 +7783,3190,8451,32330,14939,3122,14758,5875,2590,8977 +7784,3142,8080,34030,14387,3001,14042,5662,2510,8592 +7785,2994,7660,35160,13612,2883,12889,5526,2400,7998 +7786,3067,7745,34880,13284,2940,12564,5504,2410,7910 +7787,3218,8017,34420,13468,3139,12965,5855,2590,8380 +7788,3400,8312,32930,13782,3347,13644,6405,2830,9035 +7789,3532,8579,33680,13984,3429,13841,6652,2960,9452 +7790,3537,8841,33360,14395,3480,14146,6728,3000,9713 +7791,3562,9300,33470,15500,3523,15057,6963,3010,9954 +7792,3516,9471,34350,16369,3499,16064,7279,3080,10173 +7793,3580,9936,35130,17844,3600,17391,7367,3220,9843 +7794,3592,10039,34870,18616,3635,17893,7036,3180,9627 +7795,3525,9872,34000,18101,3514,17411,6600,3100,9739 +7796,3462,9667,32950,17618,3421,16989,6457,3090,9702 +7797,3275,9113,31350,16214,3199,15937,6006,2890,9256 +7798,3428,9413,29730,16972,3291,16395,6324,3000,9409 +7799,3478,9471,27990,16953,3300,16278,6384,2960,9261 +7800,3613,9428,25840,16772,3310,16237,6710,3010,9083 +7801,3807,9942,24750,17054,3413,16912,6942,3100,9577 +7802,3759,9989,24760,17151,3488,17357,7007,3180,9916 +7803,3664,9835,25130,16878,3472,17273,7057,3190,10146 +7804,3544,9585,25710,16206,3364,16795,6894,3090,9914 +7805,3395,9276,27120,15754,3272,16271,6686,2950,9553 +7806,3197,8808,29840,15257,3152,15629,6429,2800,9157 +7807,3003,8337,31760,14599,3088,14759,6124,2610,8727 +7808,2967,8003,33480,14044,2992,14019,5922,2530,8408 +7809,2843,7726,34550,13259,2859,12865,5621,2390,7834 +7810,2893,7818,34100,12866,2899,12509,5626,2400,7732 +7811,2993,8071,33560,13076,3099,12999,5959,2570,8187 +7812,3145,8355,32040,13361,3285,13584,6340,2820,8784 +7813,3257,8583,32730,13521,3360,13734,6564,2960,9178 +7814,3285,8879,32820,13871,3382,13885,6765,2990,9316 +7815,3315,9326,32860,14838,3412,14636,6966,2980,9406 +7816,3348,9507,33460,15817,3382,15733,7249,3040,9536 +7817,3470,9972,33890,17175,3443,17012,7429,3210,9263 +7818,3525,10038,33400,17697,3478,17476,7213,3180,9244 +7819,3455,9776,32500,17189,3377,17001,6782,3080,9362 +7820,3364,9566,31330,16726,3278,16601,6471,3070,9382 +7821,3164,9050,29900,15479,3075,15542,6047,2870,9014 +7822,3298,9376,28570,16237,3183,16116,6418,3000,9169 +7823,3304,9470,27020,16336,3207,16028,6473,2980,8918 +7824,3422,9282,25090,16217,3211,16003,6823,2990,8977 +7825,3692,9750,24140,16373,3261,16474,6869,3030,9362 +7826,3682,9789,24020,16387,3286,16875,6835,3080,9583 +7827,3566,9603,24230,16131,3272,16676,6787,3090,9700 +7828,3434,9309,24420,15556,3167,16259,6619,2980,9448 +7829,3264,9004,24850,15180,3081,15829,6492,2860,9096 +7830,3088,8586,25590,14660,3002,15215,6251,2700,8738 +7831,2966,8182,26860,14114,2925,14516,5901,2540,8449 +7832,2958,7943,28820,13764,2870,13869,5707,2470,8196 +7833,2802,7614,30580,12917,2745,12998,5525,2350,7701 +7834,2872,7667,30240,12536,2796,12499,5347,2350,7560 +7835,2957,7909,30520,12699,2993,12906,5720,2510,7979 +7836,3099,8165,29840,12996,3176,13497,6162,2730,8560 +7837,3198,8345,29320,13091,3208,13577,6334,2830,8887 +7838,3176,8450,29170,13145,3141,13363,6203,2790,8778 +7839,3101,8556,29150,13571,3007,13330,5963,2600,8458 +7840,3213,8714,30110,14359,2948,14077,5964,2620,8447 +7841,3347,9108,31290,15641,3022,15118,6301,2830,8368 +7842,3423,9228,31440,16222,3071,15620,6277,2840,8343 +7843,3399,8905,30830,15814,3041,15512,6053,2800,8677 +7844,3358,8758,30090,15433,2967,15310,5795,2720,8674 +7845,3263,8516,28900,14479,2837,14850,5598,2630,8466 +7846,3324,8492,27350,15051,2853,14711,5776,2640,8616 +7847,3255,8394,25980,15189,2868,14467,5789,2620,8245 +7848,3267,8429,24280,15023,2875,14447,5903,2630,8437 +7849,3473,8991,23360,15292,2939,14815,5999,2680,8736 +7850,3519,9307,23450,15601,3056,15639,6190,2800,9132 +7851,3465,9200,23890,15399,3043,15734,6221,2820,9323 +7852,3396,9015,24350,14895,2963,15429,6036,2750,9081 +7853,3308,8689,25380,14588,2898,15133,5942,2670,8798 +7854,3140,8283,27400,14063,2811,14520,5713,2540,8416 +7855,3000,7703,29140,13634,2739,13773,5489,2390,8057 +7856,2988,7454,31100,13176,2636,13178,5242,2340,7727 +7857,2874,7129,32560,12371,2541,12268,5097,2240,7257 +7858,2874,7194,32440,12079,2616,11974,5106,2250,7165 +7859,3023,7466,32240,12229,2808,12471,5345,2400,7608 +7860,3170,7758,31050,12583,2982,12997,5762,2610,8257 +7861,3269,7983,31890,12682,3027,13028,6062,2730,8572 +7862,3307,8163,31930,12839,2982,12973,6018,2730,8634 +7863,3360,8439,31690,13466,2889,13406,6025,2650,8705 +7864,3438,8637,32050,14227,2931,14363,6183,2750,8896 +7865,3743,9533,32360,15716,3225,15844,6756,3020,9150 +7866,4026,10076,31930,16542,3419,16649,6970,3110,9707 +7867,3976,9919,31020,16172,3441,16563,6751,3090,9697 +7868,3776,9825,30060,16086,3435,16420,6602,3110,9731 +7869,3599,9286,28890,15132,3301,15508,6120,2980,9436 +7870,3719,9724,27840,15849,3440,16136,6443,3080,9419 +7871,3741,9863,26560,15907,3436,16096,6585,3060,9162 +7872,3894,9914,24740,15694,3397,16178,6785,3050,9368 +7873,4116,10322,23730,16176,3484,16708,6946,3110,9908 +7874,4113,10268,23730,16137,3469,17050,7047,3180,10417 +7875,4010,10016,24160,15837,3427,16889,7095,3210,10634 +7876,3916,9782,24480,15406,3312,16511,6926,3110,10526 +7877,3778,9451,25040,14890,3197,16051,6695,3010,10154 +7878,3645,8967,26100,14547,3063,15495,6414,2850,9730 +7879,3529,8555,27300,14185,2997,14924,6074,2670,9307 +7880,3501,8366,28840,13722,2910,14295,5833,2580,8883 +7881,3441,8097,29860,12835,2784,13185,5506,2450,8314 +7882,3477,8165,30080,12439,2789,12627,5427,2460,8136 +7883,3600,8401,30090,12439,2976,13081,5634,2620,8542 +7884,3753,8626,29470,12713,3146,13602,6048,2860,9095 +7885,3836,8747,29220,12721,3212,13647,6295,2980,9497 +7886,3836,8824,29140,12683,3152,13519,6224,2990,9520 +7887,3778,9005,29460,12683,3024,13613,6158,2860,9543 +7888,3852,9279,30890,13128,2998,14252,6322,2850,9681 +7889,4058,9649,32340,13563,3068,15357,6448,2940,9417 +7890,4140,9825,32530,13681,3145,15717,6339,2870,9285 +7891,4162,9696,32070,13365,3130,15651,6133,2810,8977 +7892,4003,9526,31340,12882,3030,15466,6061,2760,8925 +7893,3890,9293,29980,12686,2951,14938,5825,2650,8794 +7894,3856,9336,28410,12711,2931,14805,5857,2620,8549 +7895,3816,9389,26840,12508,2901,14771,5729,2600,8169 +7896,3889,9497,24920,12659,2911,14863,6014,2650,8356 +7897,4053,10053,23820,13268,3036,15506,6285,2760,9020 +7898,4125,10218,23720,13998,3163,16442,6689,2960,9650 +7899,4077,10079,23990,14067,3162,16438,6795,3010,10050 +7900,3949,9755,24180,13927,3080,16242,6772,2940,9919 +7901,3836,9387,24690,13593,3011,15878,6630,2860,9714 +7902,3688,8903,25650,13095,2887,15114,6262,2720,9340 +7903,3521,8400,27360,12419,2835,14396,5860,2550,8966 +7904,3544,8159,29360,12038,2783,13802,5668,2490,8566 +7905,3485,7805,31120,11279,2689,12948,5519,2360,7985 +7906,3550,7855,31570,11039,2733,12543,5502,2390,7840 +7907,3661,8069,32060,11232,2918,12919,5827,2580,8252 +7908,3768,8255,31770,11588,3099,13419,6165,2800,8821 +7909,3831,8369,31170,11684,3123,13379,6325,2900,9178 +7910,3750,8349,31050,11709,3052,13164,6217,2870,9068 +7911,3572,8406,31530,11739,2956,13149,6111,2680,8807 +7912,3552,8483,33060,11941,2898,13500,6199,2640,8809 +7913,3635,8557,34450,12269,2835,14496,6268,2790,8457 +7914,3680,8495,34550,12300,2837,15086,5812,2820,8168 +7915,3608,8251,33870,12018,2742,14643,5517,2620,7946 +7916,3517,8071,32920,11870,2612,14034,5276,2530,8010 +7917,3475,8036,31290,11615,2528,13656,5195,2470,7995 +7918,3371,7992,29110,11292,2466,13361,5217,2350,7739 +7919,3424,7970,27160,11286,2460,13196,5279,2340,7626 +7920,3574,8093,24960,11462,2502,13439,5545,2410,7718 +7921,3785,8828,23830,12102,2664,14314,5810,2540,8202 +7922,3941,9297,23770,13152,2886,15673,6332,2810,9131 +7923,3965,9332,24170,13474,2960,16111,6473,2890,9505 +7924,3884,9164,24750,13359,2915,15961,6420,2850,9383 +7925,3812,8886,26360,13274,2851,15727,6250,2790,9178 +7926,3617,8430,29610,12695,2737,15049,6051,2650,8742 +7927,3434,7856,32360,12053,2644,14114,5537,2470,8338 +7928,3439,7632,34920,11588,2576,13310,5197,2410,7918 +7929,3313,7369,36100,10951,2481,12485,5041,2290,7338 +7930,3385,7477,35610,10785,2523,12165,5055,2330,7271 +7931,3498,7748,35160,11107,2752,12666,5371,2520,7757 +7932,3655,8060,33660,11622,2940,13205,5798,2750,8370 +7933,3750,8361,34160,11899,3038,13399,6070,2860,8776 +7934,3794,8726,34250,12553,3044,13750,6152,2880,8926 +7935,3839,9325,34280,13953,3087,14884,6493,2910,9148 +7936,3973,9497,35130,15508,3146,16373,6757,3020,9541 +7937,4113,10410,35820,17328,3362,18021,7270,3380,9782 +7938,4211,10769,35520,17906,3506,18801,7522,3520,9632 +7939,4106,10589,34580,17441,3405,18637,7333,3520,9472 +7940,3947,10391,33470,16947,3313,18721,7157,3500,9503 +7941,3779,9749,31790,15798,3140,18113,6571,3320,9052 +7942,3970,10033,30200,16556,3238,18683,6822,3420,9125 +7943,3904,10083,28170,16722,3285,18655,6806,3400,9337 +7944,3996,10002,25910,16806,3291,18567,6974,3310,9394 +7945,4184,10468,24810,17320,3340,18855,7010,3340,9776 +7946,4171,10431,24750,17078,3340,18672,7147,3400,9991 +7947,4065,10251,25080,16634,3289,18312,7118,3400,10055 +7948,3924,9928,25610,15977,3178,17614,6879,3270,9849 +7949,3755,9537,26730,15395,3068,16886,6659,3130,9427 +7950,3554,8995,29300,14779,2962,16162,6314,2930,8950 +7951,3372,8475,31350,14175,2909,15165,5989,2730,8539 +7952,3363,8201,33600,13639,2809,14207,5698,2630,8204 +7953,3285,7801,34720,12767,2674,13044,5521,2490,7700 +7954,3320,7903,34180,12459,2697,12610,5553,2480,7546 +7955,3450,8177,33860,12739,2886,13064,5778,2640,7956 +7956,3579,8421,32460,13077,3062,13533,6179,2840,8563 +7957,3668,8647,33320,13138,3159,13565,6335,2920,8932 +7958,3671,8870,33610,13406,3153,13615,6399,2950,8985 +7959,3687,9252,33370,14096,3083,14493,6523,2900,9114 +7960,3844,9493,34350,15088,3133,15794,6699,2990,9357 +7961,4066,10259,34890,16709,3440,17399,7093,3300,9425 +7962,4042,10520,34630,17443,3660,18121,7068,3310,9543 +7963,3866,10356,33780,17070,3674,17903,7158,3240,9556 +7964,3820,10316,32820,16944,3676,17454,7057,3290,9711 +7965,3692,9802,31380,16071,3451,16599,6484,3090,9272 +7966,3887,10261,29870,16618,3597,17428,7016,3210,9710 +7967,3840,10347,28080,16887,3629,17699,7111,3290,9621 +7968,3869,10346,26000,16957,3635,17606,7228,3240,9640 +7969,4044,10779,24960,17477,3673,18134,7374,3250,10132 +7970,4032,10695,25020,17452,3637,18367,7451,3320,10573 +7971,3975,10453,25500,17225,3583,18178,7402,3310,10844 +7972,3861,10177,26140,16617,3463,17653,7100,3190,10568 +7973,3733,9832,27590,16030,3349,17063,6944,3080,10234 +7974,3606,9335,30470,15506,3209,16445,6675,2910,9755 +7975,3444,8845,32730,14880,3125,15575,6329,2700,9304 +7976,3426,8499,34540,14320,2996,14653,6075,2610,8890 +7977,3374,8197,35400,13504,2858,13581,5814,2490,8303 +7978,3456,8288,34810,13151,2895,13230,5784,2510,8155 +7979,3594,8536,34320,13298,3074,13673,6119,2680,8599 +7980,3748,8767,32930,13648,3296,14234,6575,2910,9203 +7981,3833,9046,33710,13777,3355,14295,6693,3030,9537 +7982,3843,9301,33770,14159,3376,14499,6776,3060,9768 +7983,3883,9786,33830,15237,3375,15514,7161,3070,10047 +7984,3910,10109,34860,16268,3408,16768,7397,3120,10323 +7985,4214,11060,35550,17921,3669,18124,7798,3410,10354 +7986,4344,11487,35260,18508,3852,18622,7960,3480,10228 +7987,4336,11387,34470,17954,3861,18266,7656,3490,10163 +7988,4329,11279,33490,17356,3844,18013,7541,3410,10049 +7989,4101,10773,32010,16245,3673,17251,7014,3200,9685 +7990,4125,11153,30390,16886,3796,17889,7209,3300,9794 +7991,4139,11174,28530,16990,3797,17759,7343,3330,9695 +7992,4252,11260,26390,17104,3787,17835,7299,3220,9747 +7993,4422,11640,25300,17651,3831,18337,7442,3210,10148 +7994,4391,11469,25260,17643,3763,18564,7610,3310,10648 +7995,4292,11230,25650,17326,3695,18302,7662,3320,10876 +7996,4173,10841,26230,16776,3565,17806,7389,3210,10649 +7997,4041,10464,27720,16226,3442,17211,7194,3080,10294 +7998,3911,9914,30670,15565,3303,16451,6799,2880,9755 +7999,3696,9375,32910,14825,3210,15430,6288,2700,9268 +8000,3695,8966,35010,14258,3091,14489,5894,2620,8705 +8001,3620,8608,35900,13391,2931,13303,5605,2480,8088 +8002,3668,8744,35260,13052,2950,12892,5509,2460,7940 +8003,3756,8954,34800,13141,3150,13226,5820,2620,8306 +8004,3890,9184,33310,13304,3323,13697,6230,2840,8920 +8005,3985,9391,33900,13464,3395,13893,6532,2920,9254 +8006,3990,9773,34010,13777,3401,14069,6685,2940,9460 +8007,4059,10301,34450,14633,3399,14923,6893,2910,9599 +8008,4139,10585,35920,15577,3461,16448,7171,3040,10084 +8009,4437,11601,36890,17381,3753,18178,7628,3440,10597 +8010,4507,12036,36840,18478,3938,18678,7544,3570,10985 +8011,4483,11774,35970,18031,3911,17973,7294,3540,10887 +8012,4345,11540,35090,17604,3877,17634,7259,3500,10814 +8013,4167,11019,33420,16313,3678,16762,6908,3340,10584 +8014,4259,11399,31720,17245,3856,17393,7190,3440,10664 +8015,4241,11500,29680,17218,3892,17393,7247,3380,10766 +8016,4373,11702,27470,17095,3890,17464,7303,3370,10847 +8017,4537,12155,26390,17670,3968,18089,7512,3400,11262 +8018,4501,12117,26300,17791,3922,18501,7718,3490,11773 +8019,4425,11950,26510,17619,3849,18415,7787,3500,11931 +8020,4255,11565,27000,17093,3715,18043,7579,3380,11652 +8021,4132,11087,28460,16680,3599,17502,7328,3250,11239 +8022,3935,10527,31710,16059,3431,16967,6975,3050,10641 +8023,3751,9952,34000,15348,3329,15988,6535,2840,10042 +8024,3743,9554,36390,14698,3225,15097,6225,2720,9405 +8025,3652,9159,37600,13862,3105,13980,5992,2570,8743 +8026,3744,9188,37280,13486,3130,13528,6045,2570,8544 +8027,3866,9420,36960,13582,3345,14014,6285,2740,8918 +8028,4031,9570,35390,13812,3487,14431,6693,2970,9488 +8029,4114,9773,36140,13963,3514,14606,6909,3070,9889 +8030,4079,10172,36390,14411,3502,14846,6946,3140,10181 +8031,4119,10718,36380,15579,3571,15917,7335,3180,10618 +8032,4110,10824,37580,16626,3610,17149,7642,3270,11065 +8033,4326,11547,38290,18098,3818,18930,8095,3660,11477 +8034,4560,11839,38000,18792,3971,19769,8129,3790,11670 +8035,4481,11555,37150,18247,3981,19275,7782,3730,11417 +8036,4448,11384,36130,17726,3997,18855,7866,3590,11486 +8037,4219,10813,34490,16678,3843,18007,7409,3390,10964 +8038,4353,11158,32870,17263,3992,18570,7616,3510,11326 +8039,4315,11159,30950,17454,4020,18360,7650,3510,11324 +8040,4384,11235,28740,17305,3999,18324,7794,3510,11353 +8041,4549,11763,27530,17802,4031,18951,7930,3570,11712 +8042,4493,11665,27300,17797,3956,19265,8043,3660,12153 +8043,4395,11406,27310,17413,3863,19030,8016,3650,12188 +8044,4270,11028,27390,16849,3710,18519,7823,3530,11889 +8045,4117,10647,28160,16378,3588,17915,7548,3390,11423 +8046,3940,10105,30010,15834,3465,17262,7213,3190,10910 +8047,3759,9546,31620,15251,3389,16453,6787,2950,10243 +8048,3783,9249,32650,14643,3285,15525,6405,2820,9692 +8049,3681,8856,32780,13735,3122,14395,6098,2680,9018 +8050,3733,8904,32020,13229,3147,13874,6092,2690,8886 +8051,3873,9102,31420,13293,3297,14232,6282,2830,9268 +8052,3976,9244,30790,13462,3446,14610,6673,3030,9791 +8053,4027,9323,30420,13340,3421,14539,6767,3090,10077 +8054,3988,9374,30350,13196,3333,14332,6742,3080,10162 +8055,3928,9555,30650,13374,3207,14688,6801,2970,10191 +8056,3799,9619,32160,13766,3183,15408,6986,3050,10517 +8057,3964,9952,33920,14292,3331,16471,7223,3190,10162 +8058,4056,9946,34330,14325,3402,16867,6917,3050,9827 +8059,3967,9655,34050,13890,3361,16543,6673,2940,9447 +8060,3873,9594,33390,13678,3322,16167,6380,2900,9251 +8061,3732,9294,32110,13301,3171,15637,6169,2780,9153 +8062,3711,9295,30740,13043,3150,15396,6129,2810,8924 +8063,3709,9268,29130,13158,3084,15116,6060,2760,8617 +8064,3834,9358,27290,13287,3067,15165,6249,2810,8816 +8065,4019,9991,26180,13966,3166,15854,6480,2950,9383 +8066,4065,10246,25960,14681,3278,16817,6875,3180,10406 +8067,3985,10132,26070,14644,3296,16984,7023,3250,10729 +8068,3907,9897,26210,14410,3246,16779,6903,3210,10701 +8069,3802,9600,26700,14184,3175,16502,6805,3120,10408 +8070,3630,9134,28160,13733,3054,15933,6545,2970,10085 +8071,3506,8718,29780,13001,2975,15169,6130,2780,9659 +8072,3509,8549,30880,12645,2893,14421,6041,2690,9251 +8073,3446,8271,31010,12073,2787,13381,5832,2580,8714 +8074,3535,8320,30190,11861,2795,13156,5822,2590,8521 +8075,3667,8565,29590,12114,2957,13442,6057,2760,8874 +8076,3752,8777,29090,12356,3084,13768,6344,2950,9371 +8077,3811,8856,28470,12327,3102,13658,6414,2990,9618 +8078,3763,8908,28450,12339,2978,13344,6319,2920,9477 +8079,3649,8896,28950,12449,2815,13413,6239,2740,9222 +8080,3478,8860,30660,12901,2780,14084,6313,2740,9359 +8081,3609,9102,33130,13274,2918,15170,6425,2880,9239 +8082,3656,9213,33820,13202,3060,15761,6286,2910,8970 +8083,3601,8974,33750,12909,3072,15381,6051,2830,8888 +8084,3540,8863,33180,12570,3039,14981,5959,2780,8816 +8085,3454,8730,31950,12339,2976,14936,5804,2800,8699 +8086,3385,8558,30020,12208,2882,14649,5795,2640,8303 +8087,3250,8599,28190,12331,2854,14322,5734,2620,8131 +8088,3392,8774,26200,12445,2889,14504,5923,2640,8335 +8089,3677,9384,25390,13401,3016,15266,6245,2730,8837 +8090,3843,9708,25370,14519,3190,16735,6792,3010,9944 +8091,3852,9696,25770,14682,3206,17042,7022,3100,10500 +8092,3826,9586,26530,14650,3146,16969,6913,3080,10406 +8093,3736,9281,28450,14451,3066,16758,6825,3000,10308 +8094,3574,8883,32330,13860,2942,16070,6579,2870,9880 +8095,3391,8352,35210,12995,2866,15006,6123,2660,9325 +8096,3401,8175,37240,12577,2802,14238,5827,2580,8855 +8097,3308,7936,38120,12006,2712,13348,5718,2490,8382 +8098,3403,8131,37350,11914,2786,13052,5789,2550,8359 +8099,3533,8405,36520,12156,3001,13537,6160,2750,8874 +8100,3697,8661,34870,12527,3162,13957,6538,2950,9474 +8101,3817,8944,35720,12826,3238,14092,6817,3040,9861 +8102,3851,9359,35860,13503,3272,14544,6989,3120,10197 +8103,3930,10002,36180,15222,3395,16045,7528,3250,10806 +8104,3927,10256,37540,17015,3510,17649,7992,3420,11431 +8105,4155,10937,38620,18826,3775,19289,8407,3700,11296 +8106,4196,11221,38520,19361,3853,19928,8220,3630,10896 +8107,4095,10857,37800,18729,3723,19390,7627,3470,10614 +8108,4006,10656,36700,18203,3622,18862,7266,3380,10336 +8109,3833,9963,35070,16753,3425,17754,6695,3160,9895 +8110,3921,10275,33420,17452,3533,18133,6892,3250,9999 +8111,3900,10276,31160,17427,3545,17876,7010,3230,9834 +8112,3989,10352,28790,17482,3521,17860,7280,3270,9947 +8113,4179,11029,27630,17936,3623,18596,7551,3370,10515 +8114,4161,11083,27470,18283,3698,19286,7842,3510,11179 +8115,4078,10968,27570,17997,3690,19194,7923,3530,11511 +8116,3989,10687,28010,17594,3593,18775,7767,3430,11292 +8117,3872,10336,29620,17158,3500,18230,7567,3320,10931 +8118,3684,9833,33310,16589,3361,17546,7242,3140,10368 +8119,3491,9308,37260,15968,3298,16626,6861,2890,9757 +8120,3496,9042,41770,15270,3226,15650,6500,2770,9235 +8121,3355,8747,43350,14453,3145,14510,6205,2640,8698 +8122,3435,8860,42060,14179,3196,14149,6144,2630,8553 +8123,3556,9132,42340,14234,3391,14434,6480,2790,8924 +8124,3679,9357,40560,14346,3541,14720,6856,2980,9483 +8125,3779,9563,40660,14357,3549,14714,7163,3070,9813 +8126,3781,9928,40770,14802,3572,14963,7187,3110,10022 +8127,3813,10500,40710,16179,3630,16170,7570,3140,10350 +8128,3832,10762,41700,17411,3709,17828,7826,3280,10845 +8129,4039,11540,41510,19478,3960,19830,8299,3690,11497 +8130,4046,11775,40820,20358,4072,21030,8676,3890,11722 +8131,3937,11350,39570,20077,3980,20960,8556,3870,11233 +8132,3911,11031,38120,19833,3932,20757,8384,3860,10979 +8133,3634,10293,35920,18649,3726,19936,7948,3670,10625 +8134,3655,10596,33560,19701,3852,20617,8175,3850,10729 +8135,3687,10670,31020,19787,3851,20440,8112,3760,10542 +8136,3819,10741,28240,19658,3823,20211,8015,3710,10453 +8137,4080,11285,26920,20058,3892,20392,8074,3730,10766 +8138,4048,11194,26620,19585,3888,20239,8042,3730,11278 +8139,3977,11006,26710,19168,3826,19734,8037,3680,11437 +8140,3880,10639,27120,18273,3693,19065,7744,3520,11131 +8141,3727,10247,28500,17708,3577,18316,7503,3360,10808 +8142,3547,9664,31700,16983,3424,17525,7063,3120,10328 +8143,3380,9070,34580,16022,3314,16418,6555,2890,9751 +8144,3429,8762,36920,15233,3194,15308,6270,2760,9263 +8145,3358,8371,37290,14280,3044,14139,5968,2610,8703 +8146,3460,8460,36510,13826,3098,13653,5878,2610,8542 +8147,3579,8733,35790,13972,3292,13967,6304,2770,9007 +8148,3731,8936,34130,14157,3475,14468,6648,2970,9620 +8149,3831,9154,34700,14181,3555,14560,6865,3080,10004 +8150,3892,9436,34810,14702,3610,14748,7042,3120,10210 +8151,3953,9965,35120,15902,3652,15759,7501,3170,10608 +8152,3997,10262,36020,17045,3677,17162,7743,3280,11027 +8153,4258,11132,36760,18505,3798,18771,8248,3590,11126 +8154,4272,11419,36560,18810,3803,19438,8240,3610,10946 +8155,4219,11228,35810,18046,3641,18988,7734,3580,10699 +8156,4116,10921,34750,17411,3519,18602,7519,3560,10421 +8157,3848,10128,33060,16051,3287,17666,6948,3280,9921 +8158,3870,10222,31260,16665,3387,18075,7146,3410,10085 +8159,3873,10113,29210,16747,3404,17675,7207,3390,10133 +8160,3896,10121,26850,16604,3419,17727,7251,3310,10097 +8161,4111,10695,25820,17206,3529,18254,7387,3360,10488 +8162,4057,10726,25690,17370,3566,18595,7532,3450,11002 +8163,3955,10577,25930,17156,3529,18343,7541,3450,11221 +8164,3847,10294,26420,16595,3431,17865,7382,3330,10919 +8165,3701,9932,27830,16171,3326,17261,7119,3190,10554 +8166,3516,9452,30950,15610,3200,16545,6745,3000,10013 +8167,3321,8975,34030,14905,3125,15771,6390,2800,9469 +8168,3344,8663,35730,14392,3025,14936,6081,2690,8901 +8169,3213,8320,36490,13500,2876,13815,5712,2560,8314 +8170,3293,8421,35450,13167,2915,13299,5736,2560,8119 +8171,3452,8684,34510,13288,3117,13720,6031,2730,8607 +8172,3574,8943,33330,13565,3291,14143,6373,2930,9133 +8173,3673,9159,34050,13682,3360,14331,6586,3020,9457 +8174,3704,9448,34050,14026,3349,14393,6645,3010,9579 +8175,3739,9852,33710,15046,3309,15288,6928,3010,9843 +8176,3809,10076,35300,16096,3377,16548,7214,3150,10198 +8177,4125,10791,36210,17761,3700,18305,7870,3540,10295 +8178,4224,10981,36190,18271,3898,19311,7952,3570,9968 +8179,4168,10695,35500,17838,3909,19095,7658,3420,9848 +8180,4072,10663,34540,17596,3897,18722,7299,3400,9873 +8181,3953,10029,32980,16429,3693,17849,6719,3170,9433 +8182,4017,10658,31250,17257,3821,18348,6939,3180,9663 +8183,3967,10781,29340,17410,3814,17844,7053,3220,9567 +8184,3924,10774,27250,17254,3785,17821,7373,3230,9727 +8185,4109,11240,26210,17884,3855,18465,7492,3290,10291 +8186,4063,11118,26180,18036,3846,18840,7680,3420,10886 +8187,3981,10905,26440,17699,3756,18660,7731,3460,11198 +8188,3883,10553,27030,17079,3631,18216,7482,3350,11071 +8189,3744,10195,28620,16674,3517,17658,7291,3240,10767 +8190,3576,9664,31950,16148,3359,17099,6967,3070,10384 +8191,3474,9116,34210,15506,3264,16207,6636,2860,9924 +8192,3560,8780,36080,14917,3155,15369,6404,2760,9441 +8193,3463,8407,36670,14057,2996,14309,6204,2650,8896 +8194,3601,8480,35730,13735,3031,13917,6223,2690,8841 +8195,3766,8713,34940,13827,3245,14379,6573,2880,9318 +8196,3925,8933,33380,14089,3405,14842,6941,3100,9913 +8197,3988,9125,34110,14233,3472,14924,7179,3170,10241 +8198,4013,9377,34250,14745,3510,15207,7370,3240,10571 +8199,4067,9783,34240,15914,3527,16424,7775,3330,11109 +8200,4037,9935,34970,16980,3543,17747,8059,3450,11611 +8201,4217,10563,35600,18569,3667,19054,8452,3700,11394 +8202,4196,10763,35340,18838,3716,19461,8041,3570,10857 +8203,4077,10540,34540,18135,3587,18867,7427,3370,10438 +8204,3944,10421,33570,17456,3457,18268,7058,3290,10349 +8205,3637,9896,32040,16070,3225,17116,6549,3080,9786 +8206,3728,10186,30570,16746,3324,17443,6803,3180,9882 +8207,3774,10183,28840,16746,3334,17173,6867,3140,9619 +8208,4015,10100,26820,16629,3325,17151,7149,3190,9731 +8209,4216,10605,25770,16854,3386,17729,7284,3270,10141 +8210,4156,10530,25560,17025,3420,18200,7385,3360,10714 +8211,4044,10267,25650,16756,3386,18018,7426,3380,10911 +8212,3935,9980,25920,16308,3311,17674,7249,3280,10699 +8213,3794,9622,26470,16021,3233,17157,7006,3160,10390 +8214,3619,9191,27980,15628,3137,16569,6758,3000,9950 +8215,3454,8773,29480,15147,3098,15915,6368,2800,9529 +8216,3474,8474,30750,14627,3022,15226,6082,2740,9109 +8217,3410,8138,30780,13829,2889,14144,5829,2610,8501 +8218,3463,8241,30120,13366,2942,13684,5770,2620,8317 +8219,3535,8456,29520,13512,3128,13923,6085,2780,8738 +8220,3659,8669,28800,13661,3264,14275,6450,2990,9289 +8221,3719,8817,28650,13553,3317,14161,6590,3040,9506 +8222,3643,8943,28660,13529,3245,13930,6447,2980,9409 +8223,3587,8966,28900,13640,3105,14123,6487,2870,9198 +8224,3552,8968,29720,14048,3039,14847,6596,2920,9371 +8225,3812,9176,31200,14612,2963,15831,6663,3080,9391 +8226,3840,9077,31520,14418,2870,16066,6237,2960,8960 +8227,3783,8771,31240,13788,2748,15640,5849,2900,8898 +8228,3736,8482,30620,13122,2656,15340,5678,2890,8685 +8229,3526,8227,29410,12708,2562,14891,5443,2850,8427 +8230,3528,8105,28010,12567,2548,14805,5530,2800,8429 +8231,3476,8051,26700,12411,2555,14405,5474,2760,8214 +8232,3449,8071,24940,12443,2579,14167,5652,2700,8114 +8233,3658,8668,24040,13162,2668,14699,5790,2750,8552 +8234,3711,8984,23900,13898,2817,15602,6208,2920,9341 +8235,3665,8838,24180,13882,2831,15720,6278,2940,9499 +8236,3612,8657,24460,13641,2773,15661,6185,2900,9309 +8237,3476,8406,24910,13447,2705,15184,6003,2820,9083 +8238,3303,8012,25930,12931,2623,14550,5774,2680,8758 +8239,3197,7719,27200,12329,2557,13830,5501,2540,8452 +8240,3293,7514,28270,12027,2521,13241,5377,2480,8179 +8241,3301,7159,28410,11398,2415,12389,5194,2360,7738 +8242,3359,7258,27880,11177,2455,12033,5187,2400,7680 +8243,3494,7504,27430,11388,2679,12532,5424,2580,8082 +8244,3676,7777,27180,11723,2876,13038,5859,2780,8661 +8245,3794,7919,26890,11773,2931,12938,6049,2860,8907 +8246,3718,7893,26860,11804,2843,12697,5964,2800,8774 +8247,3596,7768,27050,11784,2621,12616,5792,2600,8371 +8248,3429,7684,28130,12147,2557,13116,5839,2600,8394 +8249,3472,7905,30230,12437,2539,13992,5916,2690,8019 +8250,3479,7986,30950,12209,2516,14285,5557,2570,7471 +8251,3368,7909,30860,11797,2497,13995,5097,2460,7683 +8252,3315,7865,30340,11409,2470,13634,4899,2430,7813 +8253,3280,7830,29130,11307,2503,13432,4931,2420,7747 +8254,3190,7752,27470,11068,2445,13208,4875,2370,7568 +8255,3288,7744,26070,10992,2444,12912,5026,2330,7430 +8256,3571,7885,24330,11149,2469,12983,5311,2400,7411 +8257,3857,8512,23550,11690,2590,13683,5518,2480,7868 +8258,4028,8884,23580,12727,2774,14897,5979,2730,8764 +8259,4060,8907,23960,12887,2802,15230,6127,2800,9072 +8260,4039,8782,24590,12796,2757,15060,6040,2770,8970 +8261,3950,8512,25870,12700,2704,14762,5851,2710,8687 +8262,3782,8096,28840,12320,2613,14167,5633,2580,8392 +8263,3606,7683,32090,11698,2554,13427,5232,2430,8031 +8264,3634,7459,35060,11306,2507,12829,5010,2380,7743 +8265,3520,7223,35810,10765,2427,12033,4798,2270,7378 +8266,3603,7404,35380,10650,2499,11807,4953,2280,7286 +8267,3729,7718,36630,11032,2713,12315,5311,2460,7775 +8268,3919,8082,35400,11514,2947,12797,5788,2670,8399 +8269,4066,8401,35340,11759,3046,12923,6053,2770,8696 +8270,4109,8806,35790,12314,3084,12969,6136,2740,8689 +8271,4130,9273,35870,13475,3072,13759,6221,2740,8827 +8272,4131,9547,36810,14942,3182,15185,6465,2900,9292 +8273,4306,10361,36810,16778,3502,16944,7004,3310,10022 +8274,4375,10716,36170,17608,3714,17726,7201,3460,10430 +8275,4270,10524,34980,17231,3701,17585,7104,3450,10354 +8276,4222,10367,33620,16866,3732,17403,7016,3380,10474 +8277,3954,9865,31800,15731,3512,16609,6671,3230,10054 +8278,4119,10069,30040,16611,3628,17203,7222,3350,10379 +8279,4173,10116,28150,16525,3623,17084,7249,3340,10335 +8280,4276,10182,26100,16351,3599,17032,7279,3310,10305 +8281,4482,10816,25050,16954,3648,17583,7448,3360,10566 +8282,4429,10768,25040,16866,3625,17642,7464,3350,10684 +8283,4335,10506,25310,16437,3555,17331,7314,3290,10642 +8284,4221,10132,25740,15830,3418,16751,7113,3150,10184 +8285,4081,9737,26790,15331,3305,16117,6839,3010,9797 +8286,3899,9237,29380,14860,3188,15546,6499,2830,9264 +8287,3609,8762,32550,14308,3093,14725,6080,2630,8802 +8288,3604,8440,35970,13845,2988,14015,5830,2550,8421 +8289,3551,8070,37570,13034,2827,13018,5549,2410,7951 +8290,3614,8195,37600,12659,2856,12605,5545,2420,7783 +8291,3756,8542,37120,12713,3060,13024,5884,2560,8178 +8292,3911,8853,34940,13017,3258,13561,6244,2750,8697 +8293,3998,9155,35880,13189,3323,13569,6465,2820,8942 +8294,4049,9450,35530,13322,3286,13444,6394,2790,8873 +8295,4214,9804,34950,14012,3225,14024,6407,2750,8823 +8296,4427,10110,36100,15099,3280,15336,6647,2870,9164 +8297,4896,11021,36310,16855,3569,17038,7090,3220,9753 +8298,4997,11529,35750,17806,3769,18221,7263,3370,10179 +8299,4842,11235,34730,17488,3762,18170,7271,3310,10235 +8300,4620,11132,33630,17149,3752,18116,7110,3300,10142 +8301,4326,10532,32110,16027,3563,17131,6685,3120,9776 +8302,4440,10770,30560,16827,3717,17770,7113,3260,10091 +8303,4396,10838,28750,16731,3696,17657,7027,3270,10068 +8304,4434,10861,26640,16606,3672,17551,6935,3210,9999 +8305,4534,11286,25570,17102,3723,17855,7086,3230,10285 +8306,4500,11171,25460,16943,3693,17861,7209,3250,10526 +8307,4456,10846,25730,16599,3623,17478,7195,3220,10533 +8308,4316,10523,26370,15942,3482,16857,6928,3090,10232 +8309,4197,10094,27790,15532,3362,16276,6710,2960,9827 +8310,4021,9572,30670,15052,3227,15760,6470,2790,9389 +8311,3790,9002,33030,14481,3149,14964,6139,2610,8982 +8312,3777,8674,35130,13991,3028,14161,5864,2530,8603 +8313,3682,8308,35950,13162,2907,13151,5616,2390,8112 +8314,3819,8396,35400,12854,2955,12791,5661,2390,7926 +8315,3921,8680,34860,12970,3167,13214,5907,2570,8334 +8316,4017,8922,33380,13361,3364,13671,6297,2790,8965 +8317,4122,9181,34270,13511,3458,13818,6561,2900,9315 +8318,4165,9531,34650,13846,3478,13980,6683,2950,9419 +8319,4210,9986,34950,14899,3499,14806,6859,2950,9590 +8320,4215,10209,36060,16012,3523,15918,7027,3040,9846 +8321,4456,11054,36960,17697,3730,17380,7382,3320,9790 +8322,4574,11307,36790,18215,3871,18089,7095,3310,9436 +8323,4459,10910,36090,17627,3736,17862,6606,3210,9344 +8324,4372,10741,35130,17129,3630,17567,6405,3160,9569 +8325,4137,10299,33510,15954,3381,16544,5945,2930,9301 +8326,4297,10628,31860,16738,3494,16997,6218,3010,9385 +8327,4354,10642,29870,16879,3488,16762,6443,2990,9156 +8328,4490,10819,27690,16907,3481,16878,6828,3050,9156 +8329,4595,11344,26580,17304,3575,17509,7134,3140,9683 +8330,4549,11285,26390,17508,3629,18033,7202,3240,10177 +8331,4448,11107,26620,17211,3616,17963,7268,3270,10382 +8332,4307,10707,27080,16739,3523,17544,7063,3190,10199 +8333,4204,10237,28640,16355,3436,17031,6827,3080,9866 +8334,4049,9787,32040,15841,3308,16457,6604,2930,9484 +8335,3824,9114,34640,15212,3250,15734,6295,2740,9143 +8336,3840,8803,37330,14694,3170,14884,5981,2640,8712 +8337,3736,8412,38040,13721,3043,13812,5830,2540,8080 +8338,3806,8516,37100,13441,3113,13417,5744,2550,7995 +8339,3947,8778,36430,13601,3309,13766,6077,2730,8405 +8340,4084,9040,34710,13978,3488,14273,6501,2950,8978 +8341,4183,9259,35430,14156,3559,14461,6764,3070,9337 +8342,4215,9595,35560,14591,3579,14765,6827,3120,9457 +8343,4289,10051,35680,15678,3650,15834,7096,3150,9606 +8344,4310,10309,36830,16690,3692,17084,7237,3200,9857 +8345,4553,11065,37540,18431,3830,18578,7622,3530,9996 +8346,4657,11300,37240,19007,3889,19208,7572,3550,10060 +8347,4572,11016,36300,18398,3753,18813,7334,3470,10195 +8348,4418,10797,35160,17619,3631,18310,7259,3400,10283 +8349,4090,10118,33530,16159,3399,17409,6792,3190,9932 +8350,4211,10389,31640,16811,3583,17803,7178,3300,10275 +8351,4281,10410,29490,16822,3640,17760,7316,3360,10334 +8352,4459,10524,27130,16667,3622,17684,7502,3290,10389 +8353,4614,11172,25950,17310,3693,18019,7530,3350,10593 +8354,4585,11179,25770,17417,3690,18200,7549,3410,10801 +8355,4486,11011,25930,16998,3632,17836,7514,3390,10786 +8356,4359,10679,26390,16414,3504,17250,7218,3240,10413 +8357,4182,10326,27780,15873,3403,16689,6979,3110,9935 +8358,4017,9850,30790,15451,3274,16154,6661,2920,9427 +8359,3759,9293,34050,14804,3205,15295,6218,2710,9014 +8360,3778,9029,37440,14236,3094,14495,6018,2620,8643 +8361,3707,8707,39420,13404,2940,13385,5712,2490,8077 +8362,3812,8801,39250,13094,2993,13035,5681,2480,7945 +8363,3949,9032,38740,13192,3173,13422,5912,2640,8266 +8364,4068,9251,37050,13440,3372,13818,6348,2860,8879 +8365,4150,9386,37710,13477,3433,13920,6577,2940,9141 +8366,4180,9710,37800,13735,3420,13897,6530,2920,9068 +8367,4244,10203,37590,14595,3369,14520,6670,2880,9026 +8368,4316,10637,38250,15888,3405,15974,6878,3010,9306 +8369,4701,11659,38020,17887,3682,17739,7382,3370,9732 +8370,4807,12131,37170,18868,3869,18677,7688,3440,10040 +8371,4708,11975,35900,18561,3851,18493,7410,3370,10026 +8372,4746,11934,34480,18236,3781,18269,7286,3300,9834 +8373,4477,11337,32560,17063,3537,17125,6806,3100,9336 +8374,4550,11800,30700,17795,3627,17444,6916,3230,9592 +8375,4490,11734,28860,17720,3567,16935,6958,3220,9865 +8376,4462,11744,26570,17452,3491,16667,7027,3130,9905 +8377,4548,12013,25330,17598,3485,16836,7039,3100,10084 +8378,4476,11687,25000,17177,3400,16906,6992,3130,10038 +8379,4385,11284,25070,16678,3275,16524,6939,3100,10045 +8380,4250,10852,25100,15986,3150,16048,6653,2970,9615 +8381,4145,10346,25170,15436,3040,15462,6391,2830,9260 +8382,4104,9814,26120,14998,2930,14928,6152,2690,8792 +8383,3933,9265,27710,14298,2900,14274,5773,2540,8608 +8384,3957,8815,29070,13741,2837,13687,5529,2480,8256 +8385,3773,8430,30340,12841,2721,12725,5296,2390,7832 +8386,3838,8399,30480,12430,2729,12400,5239,2370,7637 +8387,3933,8572,29600,12495,2916,12698,5486,2510,8013 +8388,4060,8793,29190,12646,3079,13166,5873,2700,8517 +8389,4079,8892,29340,12474,3101,13019,6054,2760,8787 +8390,4054,8897,28840,12090,2969,12448,5859,2650,8606 +8391,4095,8863,28050,11940,2748,12316,5644,2470,8219 +8392,4037,9026,28950,12285,2687,12951,5788,2520,8399 +8393,4251,9509,29920,13116,2806,13952,6235,2790,8958 +8394,4342,9725,29950,13509,2888,14445,6290,2830,9238 +8395,4293,9491,29400,13320,2869,14771,6233,2890,9398 +8396,4267,9281,28500,12911,2825,14867,6330,2860,9607 +8397,4307,9037,27340,12630,2774,14623,6177,2810,9589 +8398,4428,8962,26230,12767,2778,14718,6375,2900,9637 +8399,4355,8932,25200,12825,2777,14760,6291,2910,9576 +8400,4334,8962,23620,12922,2783,14800,6172,2900,9617 +8401,4312,9335,22870,13336,2884,15079,6354,2970,9992 +8402,4295,9390,22880,13508,2955,15396,6614,3040,10592 +8403,4228,9272,23180,13372,2955,15297,6690,3040,10740 +8404,4108,9049,23370,13067,2891,15106,6604,2970,10590 +8405,3987,8725,23630,12750,2834,14677,6431,2910,10304 +8406,3904,8269,24330,12256,2744,14216,6210,2760,9906 +8407,3776,7948,25630,11644,2725,13750,5906,2640,9519 +8408,3810,7758,27330,11429,2666,13225,5755,2580,9160 +8409,3754,7477,27580,10839,2610,12451,5597,2480,8647 +8410,3832,7596,27490,10602,2683,12055,5617,2500,8449 +8411,3908,7916,27520,10886,2926,12580,6018,2650,8875 +8412,4048,8271,27450,11314,3146,13146,6477,2880,9450 +8413,4091,8557,27170,11478,3180,13335,6631,3000,9761 +8414,4080,8624,27540,11539,3107,13139,6550,2990,9706 +8415,3975,8619,28320,11785,2984,13136,6518,2830,9523 +8416,3786,8680,30180,12109,3017,13875,6741,2830,9697 +8417,3824,9098,32660,12866,3097,14781,7055,3030,10065 +8418,3924,9316,33520,12995,3178,15210,7068,3030,9939 +8419,3959,9433,33650,12853,3173,15620,6909,2970,9852 +8420,3813,9488,33130,12750,3173,15140,6868,2960,9842 +8421,3743,9550,32010,12469,3163,15043,6779,2960,9858 +8422,3684,9518,30250,12505,3044,14906,6713,2900,9818 +8423,3775,9544,28610,12623,3082,14770,6743,2900,9715 +8424,3958,9959,26770,12965,3114,15147,6885,2970,9881 +8425,4101,10476,25870,13954,3277,16140,7210,3140,10564 +8426,4257,11116,25880,15103,3491,17709,7846,3460,11773 +8427,4266,11235,26220,15330,3589,18219,8043,3570,12213 +8428,4198,11088,26880,15279,3533,18282,7947,3520,12125 +8429,4140,10833,28820,15170,3454,18008,7748,3440,11867 +8430,4045,10417,32970,14719,3353,17427,7437,3270,11381 +8431,3873,9815,36700,13765,3260,16562,6941,3010,10689 +8432,3928,9682,39720,13329,3268,15714,6620,2930,10096 +8433,3843,9398,40430,12701,3194,14722,6494,2860,9548 +8434,3925,9493,39300,12514,3265,14331,6461,2890,9469 +8435,4047,9724,39120,12772,3437,14597,6651,3040,9823 +8436,4192,9919,36910,12952,3555,14782,6905,3140,10272 +8437,4298,10194,37500,13000,3585,14803,7120,3160,10523 +8438,4343,10735,37710,13678,3596,15199,7280,3180,10912 +8439,4460,11459,38330,15418,3760,16872,7813,3370,11658 +8440,4473,11816,39750,17404,3929,18991,8311,3620,12454 +8441,4675,12727,40730,19782,4249,21054,8977,4010,12925 +8442,4785,13143,40590,20717,4425,21832,9014,3940,12815 +8443,4719,12954,39700,19887,4391,21148,8643,3860,12449 +8444,4635,12747,38630,19572,4324,20676,8410,3790,12418 +8445,4408,12169,36930,18172,4074,19501,8039,3630,11854 +8446,4489,12618,35010,19061,4166,20056,8239,3740,12174 +8447,4590,12543,32630,19020,4187,19937,8293,3660,12244 +8448,4775,12800,30110,19000,4146,19861,8331,3620,12371 +8449,4839,13138,28850,19759,4254,20548,8571,3800,12869 +8450,4803,13048,28550,19915,4219,21021,8780,3930,13334 +8451,4734,12767,28500,19622,4157,20660,8795,3950,13497 +8452,4578,12318,28780,18980,4003,20064,8571,3810,13191 +8453,4470,11798,30470,18401,3893,19375,8221,3650,12679 +8454,4318,11246,34340,17756,3708,18705,7880,3410,11989 +8455,4094,10536,38130,16854,3593,17628,7389,3140,11220 +8456,4126,10202,41790,16150,3500,16557,6958,2990,10474 +8457,4017,9803,42910,15155,3397,15226,6676,2850,9714 +8458,4138,9908,41820,14723,3442,14745,6666,2860,9497 +8459,4272,10107,40950,14746,3605,14995,6862,3050,9847 +8460,4412,10216,38700,14897,3708,15279,7203,3200,10346 +8461,4487,10376,38990,14839,3728,15337,7396,3240,10625 +8462,4478,10772,39530,15313,3712,15584,7491,3290,10968 +8463,4567,11379,38820,16776,3812,16930,8013,3400,11653 +8464,4564,11673,40330,18142,3891,18666,8467,3580,12345 +8465,4745,12562,41040,19947,4154,20193,8946,3970,13205 +8466,4862,12796,40690,20459,4264,21049,9153,4020,13628 +8467,4754,12432,39740,19547,4192,20624,8975,3960,13350 +8468,4643,12212,38450,18951,4099,20275,8871,3950,13182 +8469,4378,11520,36630,17676,3884,19485,8325,3820,12669 +8470,4442,11681,34370,18421,4007,20152,8576,3990,12928 +8471,4481,11764,31910,18635,4010,20304,8685,4020,12938 +8472,4633,11884,29260,18667,3979,20401,8555,4000,12875 +8473,4757,12481,27920,19372,4042,20889,8739,4080,13049 +8474,4728,12441,27660,19293,4012,20942,8847,4090,13354 +8475,4658,12290,27740,18952,3956,20610,8818,4040,13355 +8476,4543,11929,28190,18270,3827,19981,8510,3880,12996 +8477,4415,11470,29870,17719,3681,19260,8256,3710,12453 +8478,4242,10919,33610,17042,3523,18411,7842,3480,11721 +8479,3991,10252,36850,16164,3444,17263,7362,3180,10934 +8480,4003,9970,39690,15361,3346,16216,7046,3040,10248 +8481,3936,9649,40210,14427,3215,14943,6776,2890,9578 +8482,4070,9721,38910,14024,3257,14547,6686,2920,9400 +8483,4167,9923,37740,14246,3449,14846,6940,3090,9732 +8484,4311,10108,35990,14415,3583,15204,7316,3230,10244 +8485,4375,10269,36780,14573,3638,15307,7514,3270,10524 +8486,4362,10656,36800,15003,3645,15576,7709,3340,10771 +8487,4425,11206,37020,16342,3697,16938,8104,3430,11337 +8488,4524,11451,38380,17474,3763,18562,8518,3570,11907 +8489,4742,12235,39330,19251,4021,20318,9074,3910,12366 +8490,4652,12403,39050,19892,4234,20758,9081,4090,12591 +8491,4516,12174,38410,18991,4207,20195,8862,3970,12329 +8492,4432,12077,37380,18517,4176,19783,8578,3960,12098 +8493,4156,11437,35700,17281,3979,18849,8001,3760,11530 +8494,4285,11757,33680,18287,4090,19457,8328,3840,11811 +8495,4354,11762,31570,18063,4090,19390,8376,3790,11782 +8496,4520,11908,29210,17832,4039,19501,8420,3790,12001 +8497,4701,12500,27970,18347,4101,20059,8539,3810,12546 +8498,4664,12466,27770,18511,4049,20281,8658,3870,13039 +8499,4627,12313,27850,18171,3993,20029,8618,3860,13188 +8500,4494,11996,28310,17911,3899,19531,8457,3730,12927 +8501,4373,11636,30020,17586,3791,18976,8305,3610,12556 +8502,4250,11158,34060,16924,3650,18265,7898,3420,11947 +8503,4048,10538,37200,16073,3575,17311,7397,3140,11293 +8504,4078,10253,39460,15431,3513,16304,7124,2990,10619 +8505,3995,9895,39780,14493,3418,15094,6857,2860,9927 +8506,4091,9985,38730,14081,3481,14668,6799,2870,9827 +8507,4275,10232,37980,14224,3677,15022,7098,3030,10223 +8508,4405,10461,36380,14427,3787,15309,7459,3230,10674 +8509,4465,10672,37190,14495,3792,15414,7629,3330,10983 +8510,4495,11163,37470,15006,3809,15705,7897,3400,11296 +8511,4612,11787,38100,16456,3916,17163,8280,3540,12088 +8512,4624,11988,39840,17785,4040,19069,8846,3740,12927 +8513,4845,12674,41050,19761,4425,20837,9582,4150,13635 +8514,4772,12881,40960,20426,4737,21566,9613,4240,13989 +8515,4554,12465,40230,19946,4741,21203,9295,4120,13798 +8516,4399,12208,39260,19547,4653,20874,9153,4050,13728 +8517,4100,11546,37720,18228,4482,19946,8785,3860,13251 +8518,4192,11999,35720,19193,4576,20578,9093,4010,13690 +8519,4309,12043,33490,19412,4566,20478,9030,4050,13807 +8520,4580,12432,31080,19497,4556,20668,9222,4080,13901 +8521,4768,12891,29780,20091,4643,21596,9343,4170,14236 +8522,4790,13110,29490,20346,4686,22273,9481,4290,14725 +8523,4707,12960,29470,20161,4650,22246,9584,4330,14911 +8524,4545,12638,29950,19647,4508,21757,9395,4230,14587 +8525,4422,12208,31970,19105,4379,21164,9203,4090,14128 +8526,4315,11742,36510,18478,4217,20558,8850,3870,13439 +8527,4090,11085,40010,17604,4135,19271,8206,3540,12723 +8528,4169,10859,42010,16905,4093,18249,7859,3430,11979 +8529,4077,10440,42040,16003,3951,17125,7599,3330,11216 +8530,4157,10537,40510,15502,3968,16521,7546,3340,10992 +8531,4257,10736,39540,15491,4103,16585,7819,3450,11250 +8532,4377,10788,37950,15543,4194,16531,8069,3510,11573 +8533,4438,10999,38610,15456,4155,16341,8162,3530,11728 +8534,4422,11488,38680,15967,4271,16662,8371,3550,12078 +8535,4473,12072,39050,17715,4426,18463,9057,3790,12970 +8536,4465,12176,40420,19354,4458,20633,9533,4040,13909 +8537,4547,12878,41500,21025,4736,22451,10084,4470,14546 +8538,4507,13050,41300,21525,5013,23027,10103,4500,14774 +8539,4343,12636,40790,20768,5001,22343,9527,4440,14887 +8540,4251,12388,39940,20092,4903,21895,9321,4360,14669 +8541,4102,11899,38360,18805,4851,21125,9055,4190,14087 +8542,4159,12266,36630,19691,4838,21567,9204,4330,13796 +8543,4292,12312,34740,19570,4846,21319,9232,4250,13604 +8544,4516,12791,32350,19668,4800,21523,9339,4250,13640 +8545,4685,13131,30990,20290,4897,22313,9683,4300,14133 +8546,4682,13277,30370,20422,4863,22731,9749,4390,14849 +8547,4616,13020,30070,20173,4686,22505,9843,4390,15004 +8548,4498,12598,30100,19615,4570,22027,9584,4260,14710 +8549,4391,12123,30980,19149,4440,21476,9351,4110,14206 +8550,4303,11682,33470,18593,4312,20767,8925,3890,13569 +8551,4078,11120,36110,17730,4225,19747,8392,3630,12766 +8552,4141,10914,37820,17010,4183,18806,8052,3540,12180 +8553,4018,10542,37350,16103,4060,17436,7675,3400,11415 +8554,4155,10552,35640,15505,4065,16791,7627,3400,11229 +8555,4258,10662,34420,15362,4171,16675,7743,3500,11429 +8556,4367,10680,33300,15237,4209,16571,7924,3530,11599 +8557,4427,10739,32890,14939,4129,16268,7948,3480,11610 +8558,4375,10917,32690,14739,4045,16038,7784,3400,11590 +8559,4315,11101,33350,15187,3986,16935,7841,3420,11793 +8560,4186,11252,35190,16170,3956,18388,8262,3600,12482 +8561,4203,11724,37420,17216,4060,19781,8713,3980,13040 +8562,4163,11843,38040,17113,4198,20162,8510,4000,12810 +8563,4157,11450,37850,16376,4130,19420,7849,3770,12532 +8564,4092,11223,37320,15690,4000,18740,7623,3590,12103 +8565,3858,10857,36190,15062,3874,18004,7444,3460,11620 +8566,3843,10747,34520,14844,3788,17692,7378,3410,11304 +8567,3928,10695,32770,14726,3681,17291,7377,3360,10970 +8568,4185,11022,30640,14871,3653,17419,7452,3320,10995 +8569,4348,11479,29360,15611,3766,18172,7678,3440,11627 +8570,4454,11892,28830,16485,3902,19255,8190,3710,12667 +8571,4478,11811,28450,16497,3892,19446,8263,3780,12995 +8572,4372,11484,28390,16288,3814,19342,8145,3720,12955 +8573,4316,11102,28940,15958,3725,18902,7909,3650,12639 +8574,4217,10714,30710,15525,3584,18309,7553,3480,12260 +8575,4061,10097,33180,14745,3454,17356,7122,3250,11688 +8576,4144,9923,35550,14241,3439,16619,6795,3170,11223 +8577,4116,9561,36830,13568,3347,15566,6653,3090,10629 +8578,4192,9526,36570,13296,3379,14984,6667,3100,10419 +8579,4337,9681,35050,13288,3521,15126,6867,3230,10676 +8580,4425,9783,34270,13342,3588,15088,7077,3280,10950 +8581,4441,9843,32980,13156,3538,14820,7005,3240,10944 +8582,4346,9857,32550,13026,3394,14460,6953,3130,10765 +8583,4231,9916,32810,13324,3284,14822,6989,3050,10790 +8584,4011,9936,34960,14024,3253,15920,7269,3170,11187 +8585,3980,10080,37610,14657,3338,17086,7542,3410,11406 +8586,3880,9992,38430,14365,3394,17328,7343,3260,11215 +8587,3801,9650,38280,13774,3339,16774,6902,3030,10728 +8588,3692,9448,37780,13289,3238,16237,6506,2920,10619 +8589,3629,9357,36530,12946,3194,15771,6368,2840,10425 +8590,3595,9133,34440,12621,3121,15344,6317,2730,10316 +8591,3641,9113,32560,12362,3118,14984,6486,2650,10012 +8592,3885,9360,30350,12805,3154,15249,6635,2740,10133 +8593,4099,10126,29100,13728,3283,16164,6920,2880,10768 +8594,4217,10690,28690,15049,3503,17822,7567,3240,11834 +8595,4195,10706,28670,15369,3559,18371,7747,3370,12173 +8596,4118,10548,29120,15428,3505,18366,7631,3320,11902 +8597,4047,10288,31330,15321,3438,18260,7461,3240,11719 +8598,3934,9925,35920,14901,3339,17734,7223,3070,11157 +8599,3778,9385,39940,14142,3254,16769,6767,2860,10554 +8600,3873,9240,42760,13748,3249,16138,6370,2770,10008 +8601,3834,9003,42840,13164,3190,15088,6175,2690,9478 +8602,3960,9102,41070,12991,3246,14593,6322,2730,9296 +8603,4115,9404,39730,13140,3423,14824,6603,2910,9731 +8604,4240,9630,37760,13234,3512,14888,6956,3060,10174 +8605,4338,9831,38050,13391,3518,14800,7157,3130,10410 +8606,4363,10358,37850,13975,3556,15055,7278,3160,10804 +8607,4444,10962,38130,15760,3699,16789,7769,3280,11429 +8608,4412,11234,39470,18018,3873,18835,8353,3500,12282 +8609,4513,12015,40710,20345,4238,21192,9095,3950,13002 +8610,4450,12260,40700,20754,4489,21822,9035,4030,13011 +8611,4408,11862,40030,19845,4450,21008,8565,3890,12639 +8612,4271,11582,39260,18894,4393,20416,8395,3820,12567 +8613,3949,10994,37700,17587,4211,19234,7782,3640,12200 +8614,4046,11223,35720,18388,4305,19599,7974,3750,12247 +8615,4145,11229,33370,18352,4299,19353,8082,3660,12064 +8616,4393,11424,30870,18264,4292,19408,8165,3640,12092 +8617,4540,11964,29640,18802,4346,19994,8337,3740,12470 +8618,4509,11915,29250,18992,4298,20383,8515,3830,13019 +8619,4414,11714,29190,18728,4230,20255,8530,3840,13280 +8620,4289,11369,29570,18176,4083,19795,8376,3740,13045 +8621,4181,10963,31540,17685,3958,19245,8224,3620,12685 +8622,4060,10497,35620,17088,3812,18653,7883,3430,12123 +8623,3858,9843,39030,16218,3686,17616,7495,3200,11436 +8624,3945,9614,41510,15578,3646,16643,7123,3140,10755 +8625,3880,9281,41450,14674,3507,15540,6927,3050,10140 +8626,4027,9410,39710,14340,3565,15101,6974,3080,10017 +8627,4212,9621,38320,14439,3692,15320,7215,3240,10384 +8628,4311,9796,36420,14546,3780,15469,7421,3350,10731 +8629,4370,9966,36690,14526,3737,15438,7566,3360,10900 +8630,4370,10368,36620,15062,3733,15630,7609,3370,11083 +8631,4395,10813,37090,16457,3813,17259,8098,3500,11630 +8632,4309,11104,38420,18035,3923,19087,8592,3710,12408 +8633,4517,11852,39560,20026,4233,21026,9176,4090,13133 +8634,4566,12056,39510,20356,4434,21459,9099,4010,13162 +8635,4471,11721,38930,19361,4343,20707,8550,3850,12684 +8636,4412,11456,38110,18542,4214,19951,8114,3750,12474 +8637,4195,10923,36690,17071,4002,18851,7490,3560,11777 +8638,4280,11146,34570,17628,4104,19179,7687,3590,11857 +8639,4331,11098,32440,17604,4054,18862,7732,3500,11473 +8640,4432,11200,30010,17601,4014,18842,7838,3500,11341 +8641,4522,11704,28630,18099,4083,19478,8056,3580,11727 +8642,4469,11550,28110,18397,4043,20041,8210,3670,12452 +8643,4433,11287,27870,18149,3977,19908,8346,3710,12776 +8644,4398,10923,28190,17581,3841,19431,8111,3600,12634 +8645,4318,10455,29860,17079,3710,18842,7956,3460,12296 +8646,4249,9965,33590,16492,3560,18124,7611,3260,11728 +8647,4074,9454,36860,15600,3434,16951,7050,3040,11074 +8648,4096,9133,39900,14879,3376,15836,6601,2930,10485 +8649,3971,8840,40580,13889,3265,14684,6332,2790,9814 +8650,4072,8951,38910,13486,3345,14191,6332,2810,9653 +8651,4180,9245,38300,13572,3480,14408,6550,2960,9982 +8652,4292,9445,36650,13716,3615,14556,6869,3100,10350 +8653,4378,9610,36650,13734,3611,14522,6994,3120,10613 +8654,4363,9921,36500,14155,3595,14631,7117,3140,10792 +8655,4403,10309,36580,15379,3655,15849,7398,3240,11332 +8656,4370,10676,37930,16701,3722,17404,7764,3370,11985 +8657,4556,11490,39070,18612,4053,19338,8354,3710,12226 +8658,4538,11734,38980,18943,4181,20150,8204,3720,11589 +8659,4390,11410,38340,18371,4102,19357,7519,3430,10976 +8660,4317,11262,37460,17730,4023,18696,7103,3300,10617 +8661,4139,10673,35740,16703,3826,17846,6671,3110,10146 +8662,4248,10908,33620,17057,3917,18113,6917,3120,9969 +8663,4394,11000,31330,16736,3882,17748,6873,3040,9703 +8664,4560,11112,28790,16707,3822,17740,7119,3080,9729 +8665,4601,11634,27450,17162,3889,18191,7281,3140,10278 +8666,4587,11630,27060,17445,3877,18691,7466,3300,11028 +8667,4539,11467,26970,17312,3827,18622,7615,3380,11491 +8668,4418,11131,27310,16902,3735,18324,7468,3320,11449 +8669,4294,10760,28780,16508,3651,17848,7314,3230,11176 +8670,4169,10262,32060,15918,3537,17242,6941,3060,10761 +8671,3943,9700,35600,15266,3438,16318,6580,2860,10383 +8672,3981,9478,38630,14678,3426,15416,6392,2800,9924 +8673,3879,9157,39160,13873,3353,14434,6274,2700,9303 +8674,3970,9252,37690,13549,3417,14035,6340,2730,9258 +8675,4074,9474,36600,13653,3564,14314,6610,2910,9648 +8676,4211,9636,34750,13737,3670,14477,6921,3030,10093 +8677,4289,9785,34530,13684,3648,14402,7029,3070,10334 +8678,4281,10085,34330,13963,3649,14482,6940,3070,10486 +8679,4316,10573,34280,15176,3721,15673,7261,3130,10889 +8680,4259,10830,35520,16444,3805,17281,7671,3300,11595 +8681,4482,11396,36990,18032,3952,19051,8259,3630,11719 +8682,4478,11324,37080,18196,3919,19228,7957,3460,10960 +8683,4331,10712,36570,17118,3742,18418,7225,3210,10169 +8684,4197,10483,35720,16379,3560,17616,6782,3060,9989 +8685,4029,9823,34170,14967,3298,16611,6243,2870,9539 +8686,4016,9848,32430,15158,3285,16342,6372,2860,9590 +8687,4025,9631,30560,14991,3233,15867,6410,2780,9427 +8688,4139,9718,28320,14775,3238,15692,6581,2780,9244 +8689,4241,10354,27130,15062,3318,16271,6647,2850,9628 +8690,4288,10596,26680,15660,3385,17179,6934,3040,10367 +8691,4231,10474,26470,15642,3355,17289,7101,3120,10725 +8692,4124,10192,26570,15429,3296,17083,6971,3080,10597 +8693,4004,9859,27570,15197,3215,16728,6726,2990,10321 +8694,3887,9405,30120,14746,3091,16168,6472,2850,9920 +8695,3697,8854,32430,13931,3012,15139,6042,2650,9533 +8696,3759,8682,33800,13417,2981,14303,5836,2580,9107 +8697,3697,8411,32730,12456,2847,13234,5650,2480,8595 +8698,3761,8460,31000,11992,2905,12759,5629,2490,8488 +8699,3882,8669,29760,12024,3055,12952,5910,2660,8868 +8700,4008,8819,28820,12042,3188,13122,6232,2800,9338 +8701,4055,8926,28300,11883,3184,13046,6420,2850,9561 +8702,4030,9040,28130,11923,3069,12873,6433,2810,9493 +8703,3987,9210,28500,12407,2942,13367,6454,2710,9566 +8704,3871,9322,29910,13007,2946,14434,6620,2760,9894 +8705,3999,9748,32360,13754,3095,15653,6798,3010,9925 +8706,3927,9661,32950,13502,3176,15780,6547,2880,9166 +8707,3722,9233,32780,12881,3087,15216,5935,2700,8655 +8708,3575,8924,32270,12163,2976,14823,5563,2640,8628 +8709,3449,8691,31100,11847,2864,14340,5341,2550,8325 +8710,3458,8578,29530,11700,2846,13914,5294,2450,8001 +8711,3517,8603,27860,11489,2750,13680,5354,2390,7816 +8712,3682,8661,25900,11529,2736,13620,5586,2430,7934 +8713,3900,9253,24870,12058,2816,14222,5816,2520,8354 +8714,3964,9520,24530,13180,3003,15599,6262,2780,9371 +8715,3963,9493,24390,13410,3045,16005,6470,2910,9926 +8716,3891,9316,24450,13330,3032,15913,6490,2890,9929 +8717,3786,9049,25130,13195,2991,15679,6430,2840,9726 +8718,3689,8632,26770,12755,2892,15115,6280,2740,9436 +8719,3581,8147,28630,12062,2796,14336,5795,2570,9141 +8720,3756,7962,29770,11652,2793,13673,5611,2520,8664 +8721,3697,7737,29020,11112,2726,12911,5576,2470,8255 +8722,3766,7869,27860,10898,2776,12543,5605,2530,8228 +8723,3858,8100,27010,11126,2930,12806,5910,2710,8617 +8724,3962,8291,26570,11261,3041,12993,6250,2860,9067 +8725,4006,8417,26080,11230,3038,12759,6371,2880,9290 +8726,3927,8490,26040,11263,2931,12594,6260,2820,9176 +8727,3834,8481,26160,11475,2792,12969,6285,2690,9019 +8728,3649,8451,27610,12061,2734,13768,6487,2750,9318 +8729,3656,8610,30160,12542,2681,14632,6654,2910,9370 +8730,3590,8531,30870,12112,2576,14639,6261,2730,9006 +8731,3413,8167,30780,11394,2440,13926,5767,2590,8373 +8732,3328,8023,30350,10888,2341,13460,5447,2570,8144 +8733,3295,7731,29280,10512,2300,13104,5325,2490,8142 +8734,3310,7597,27610,10196,2243,12747,5216,2390,8045 +8735,3391,7544,26110,10034,2214,12269,5128,2410,8031 +8736,3537,7663,24120,10270,2258,12342,5271,2440,8063 +8737,3719,8332,23080,10964,2412,13212,5466,2490,8586 +8738,3855,8901,22850,12252,2672,14661,5981,2730,9471 +8739,3887,8976,22790,12610,2746,15060,6254,2800,9701 +8740,3821,8852,22820,12553,2761,14976,6136,2750,9530 +8741,3743,8643,23170,12412,2729,14615,5933,2680,9271 +8742,3628,8292,24140,11899,2645,14064,5620,2560,8897 +8743,3473,7892,26170,11235,2570,13185,5225,2370,8432 +8744,3571,7787,28340,10798,2557,12569,5000,2310,8033 +8745,3546,7523,28940,10127,2474,11654,4846,2220,7577 +8746,3649,7637,28190,9883,2510,11303,4873,2250,7529 +8747,3797,7872,26800,10108,2650,11554,5189,2410,7869 +8748,3977,8069,25990,10297,2769,11750,5492,2560,8255 +8749,4005,8222,25460,10255,2784,11579,5627,2600,8371 +8750,4018,8185,25620,10037,2662,11236,5508,2490,8106 +8751,3880,8066,26010,9945,2463,11108,5199,2270,7628 +8752,3773,8042,27430,10384,2398,11739,5307,2270,7706 +8753,3896,8274,29310,10966,2458,12868,5519,2450,7895 +8754,3921,8395,29660,10976,2515,13509,5516,2470,7729 +8755,3881,8103,29190,10792,2483,13592,5439,2400,7792 +8756,3847,7931,28450,10490,2480,13452,5181,2480,7759 +8757,3823,7696,27540,10258,2449,13297,5112,2430,7850 +8758,3743,7537,26470,10018,2434,12878,5059,2410,7547 +8759,3704,7503,25830,9992,2432,12629,5093,2400,7466 diff --git a/tz_pypsa/constraints.py b/tz_pypsa/constraints.py index a8e1124..37385b8 100644 --- a/tz_pypsa/constraints.py +++ b/tz_pypsa/constraints.py @@ -606,9 +606,9 @@ def constr_max_cofiring_set_generation( network : pypsa.Network, lp_model, generator_1 : str, - generator_2: str, - rhs_max_generation_1 : float = 0.5, # split of capacity between two generators - rhs_max_generation_2 : float = 0.5, # split of capacity between two generators + generator_2 : str, + rhs_max_capacity_1 : float = 0.5, # split of capacity between two generators + rhs_max_capacity_2 : float = 0.5, # split of capacity between two generators sign : str = '<=', ): @@ -629,7 +629,7 @@ def constr_max_cofiring_set_generation( lhs_total_generation = lp_model.variables['Generator-p'].sel(Generator=generator_1) + lp_model.variables['Generator-p'].sel(Generator=generator_2) rhs_combined_capacity = ( - ((target_generator_capacity_1) * (rhs_max_generation_1)) + ((target_generator_capacity_2) * (rhs_max_generation_2)) + ((target_generator_capacity_1) * (rhs_max_capacity_1)) + ((target_generator_capacity_2) * (rhs_max_capacity_2)) ) lp_model.add_constraints(