diff --git a/src/load_inputs/load_dataframe.jl b/src/load_inputs/load_dataframe.jl index 62eab38b47..f5db648c42 100644 --- a/src/load_inputs/load_dataframe.jl +++ b/src/load_inputs/load_dataframe.jl @@ -188,7 +188,7 @@ function extract_matrix_from_dataframe(df::DataFrame, columnprefix::AbstractStri Matrix(dropmissing(df[:, sorted_columns])) end -function sort_dataframe_by_resource_names!(df::DataFrame, gen::Vector{<:AbstractResource}) +function sort_dataframe_by_resource_names!(df::DataFrame, gen::Vector{<:AbstractResource})::Vector{String} # get all resource names resource_names = resource_name.(gen) # get resources in dataframe diff --git a/src/load_inputs/load_resources_data.jl b/src/load_inputs/load_resources_data.jl index 96ae9e4270..b1ec7e605d 100644 --- a/src/load_inputs/load_resources_data.jl +++ b/src/load_inputs/load_resources_data.jl @@ -87,13 +87,13 @@ function ensure_columns!(df::DataFrame) end end -function _get_resource_df(path::AbstractString, scale_factor::Float64=1.0) +function _get_resource_df(path::AbstractString, scale_factor::Float64) # load dataframe with data of a given resource resource_in = load_dataframe(path) - # scale data if necessary - scale_resources_data!(resource_in, scale_factor) # rename columns lowercase rename!(resource_in, lowercase.(names(resource_in))) + # scale data if necessary + scale_resources_data!(resource_in, scale_factor) # ensure columns ensure_columns!(resource_in) # return dataframe @@ -124,24 +124,27 @@ end function _get_all_resources(resources_folder::AbstractString, resources_info::NamedTuple, scale_factor::Float64=1.0) resource_id_offset = 0 - resources = Vector(undef, length(resources_info)) + resources = [] # loop over available types and get all resources for (i,(filename, resource_type)) in enumerate(values(resources_info)) # path to resources data path = joinpath(resources_folder, filename) - # load resources data of a given type - resource_in = _get_resource_df(path, scale_factor) - # get indices of resources for later use - resources_indices = _get_resource_indices(resource_in, resource_id_offset) - # add indices to dataframe - _add_indices_to_resource_df!(resource_in, resources_indices) - # add resources of a given type to array of resources - resources_same_type = _get_resource_array(resource_in, resource_type) - resources[i] = resources_same_type - # update id offset for next type of resources - resource_id_offset += length(resources_same_type) - # print log - @info filename * " Successfully Read." + # if file exists, load resources + if isfile(path) + # load resources data of a given type + resource_in = _get_resource_df(path, scale_factor) + # get indices of resources for later use + resources_indices = _get_resource_indices(resource_in, resource_id_offset) + # add indices to dataframe + _add_indices_to_resource_df!(resource_in, resources_indices) + # add resources of a given type to array of resources + resources_same_type = _get_resource_array(resource_in, resource_type) + push!(resources, resources_same_type) + # update id offset for next type of resources + resource_id_offset += length(resources_same_type) + # print log + @info filename * " Successfully Read." + end end return reduce(vcat, resources) end @@ -390,8 +393,7 @@ function load_resources_data!(setup::Dict, case_path::AbstractString, input_data "The `Generators_data.csv` file was deprecated in release v0.4. " * "Please use the new interface for generators creation, and see the documentation for additional details.", :load_resources_data!, force=true) - @info "Exiting GenX..." - exit(-1) + error("Exiting GenX...") # load_generators_data!(setup, case_path, input_data) # translate_generators_data!(setup, input_data) else diff --git a/src/model/resources/hydrogen/electrolyzer.jl b/src/model/resources/hydrogen/electrolyzer.jl index e36c13fc20..7aa79ff077 100644 --- a/src/model/resources/hydrogen/electrolyzer.jl +++ b/src/model/resources/hydrogen/electrolyzer.jl @@ -150,7 +150,7 @@ function electrolyzer!(EP::Model, inputs::Dict, setup::Dict) # (and any charging by qualified storage within the zone used to help increase electrolyzer utilization). if setup["HydrogenHourlyMatching"] == 1 HYDROGEN_ZONES = unique(zone_id.(gen.ELECTROLYZER)) - QUALIFIED_SUPPLY = resources_with_qualified_hydrogen_supply(gen) + QUALIFIED_SUPPLY = has_qualified_hydrogen_supply(gen) @constraint(EP, cHourlyMatching[z in HYDROGEN_ZONES, t in 1:T], sum(EP[:vP][y,t] for y=intersect(resources_in_zone_by_rid(gen,z), QUALIFIED_SUPPLY)) >= sum(EP[:vUSE][y,t] for y=intersect(resources_in_zone_by_rid(gen,z), ELECTROLYZERS)) + sum(EP[:vCHARGE][y,t] for y=intersect(resources_in_zone_by_rid(gen,z), QUALIFIED_SUPPLY, STORAGE)) ) @@ -176,9 +176,4 @@ function electrolyzer!(EP::Model, inputs::Dict, setup::Dict) end -function resources_with_qualified_hydrogen_supply(rs::Vector{AbstractResource}) - electrolyzers = rs.ELECTROLYZER - condition::BitVector = qualified_hydrogen_supply.(electrolyzers) .== 1 - return resource_id.(electrolyzers[condition]) -end diff --git a/src/model/resources/resources.jl b/src/model/resources/resources.jl index 63d603ee3e..143082f74f 100644 --- a/src/model/resources/resources.jl +++ b/src/model/resources/resources.jl @@ -86,18 +86,20 @@ zone_id(rs::Vector{T}) where T <: AbstractResource = rs.zone # TODO: some of these are not required (use get() instead) max_capacity_mw(r::AbstractResource) = r.max_cap_mw min_capacity_mw(r::AbstractResource) = r.min_cap_mw -cap_size(r::AbstractResource) = r.cap_size existing_capacity_mw(r::AbstractResource) = r.existing_cap_mw +cap_size(r::AbstractResource) = get(r, :cap_size, default) + +qualified_hydrogen_supply(r::AbstractResource) = get(r, :qualified_hydrogen_supply, default) # costs -start_cost_per_mw(r::AbstractResource) = r.start_cost_per_mw reg_cost(r::AbstractResource) = get(r, :reg_cost, default) -reg_max(r::AbstractResource) = get(r, :reg_max, default) +reg_max(r::AbstractResource)::Float64 = get(r, :reg_max, default) rsv_cost(r::AbstractResource) = get(r, :rsv_cost, default) rsv_max(r::AbstractResource) = get(r, :rsv_max, default) -var_om_cost_per_mwh(r::AbstractResource) = get(r, :var_om_cost_per_mwh, default) inv_cost_per_mwyr(r::AbstractResource) = r.inv_cost_per_mwyr fixed_om_cost_per_mwyr(r::AbstractResource) = r.fixed_om_cost_per_mwyr +var_om_cost_per_mwh(r::AbstractResource) = get(r, :var_om_cost_per_mwh, default) +start_cost_per_mw(r::AbstractResource) = get(r, :start_cost_per_mw, default) # fuel fuel(r::AbstractResource) = get(r, :fuel, "None") @@ -114,9 +116,9 @@ efficiency_down(r::T) where T <: Union{HYDRO,STOR} = get(r, :eff_down, 1.0) # Ramp up and down const TCOMMIT = Union{ELECTROLYZER, HYDRO, THERM} -min_power(r::TCOMMIT) = r.min_power -ramp_up_percentage(r::TCOMMIT) = r.ramp_up_percentage -ramp_down_percentage(r::TCOMMIT) = r.ramp_dn_percentage +min_power(r::TCOMMIT) = get(r, :min_power, default) +ramp_up_percentage(r::TCOMMIT) = get(r, :ramp_up_percentage, 1.0) +ramp_down_percentage(r::TCOMMIT) = get(r, :ramp_down_percentage, 1.0) # Retrofit function has_retrofit(rs::Vector{T}) where T <: AbstractResource @@ -215,6 +217,11 @@ function has_existing_charge_capacity_mw(rs::Vector{T}) where T <: AbstractResou return findall(r -> get(r, :existing_charge_cap_mw, default) >= 0, rs) end +function has_qualified_hydrogen_supply(rs::Vector{T}) where T <: AbstractResource + condition::BitVector = qualified_hydrogen_supply.(rs) .== 1 + return resource_id.(rs[condition]) +end + ## policies # energy share requirement function has_esr(rs::Vector{T}; tag::Int64=1) where T <: AbstractResource @@ -269,23 +276,23 @@ inv_cost_per_mwhyr(r::STOR) = r.inv_cost_per_mwhyr existing_charge_capacity_mw(r::STOR) = get(r, :existing_charge_cap_mw, default) fixed_om_cost_charge_per_mwyr(r::STOR) = get(r, :fixed_om_cost_charge_per_mwyr, default) inv_cost_charge_per_mwyr(r::STOR) = r.inv_cost_charge_per_mwyr -max_charge_capacity_mw(r::STOR) = r.max_charge_cap_mw -min_charge_capacity_mw(r::STOR) = r.min_charge_cap_mw +max_charge_capacity_mw(r::STOR) = get(r, :max_charge_cap_mw, -1) +min_charge_capacity_mw(r::STOR) = get(r, :min_charge_cap_mw, default) var_om_cost_per_mwh_in(r::STOR) = get(r, :var_om_cost_per_mwh_in, default) function symmetric_storage(rs::Vector{T}) where T <: AbstractResource - return findall(r -> isa(r,STOR) && r.type == 1, rs) + return findall(r -> isa(r,STOR) && r.model == 1, rs) end function asymmetric_storage(rs::Vector{T}) where T <: AbstractResource - return findall(r -> isa(r,STOR) && r.type == 2, rs) + return findall(r -> isa(r,STOR) && r.model == 2, rs) end # HYDRO interface hydro(rs::Vector{T}) where T <: AbstractResource = findall(r -> isa(r,HYDRO), rs) -hydro_energy_to_power_ratio(r::HYDRO) = r.hydro_energy_to_power_ratio +hydro_energy_to_power_ratio(r::HYDRO) = get(r, :hydro_energy_to_power_ratio, default) function has_hydro_energy_to_power_ratio(rs::Vector{T}) where T <: AbstractResource return findall(r -> get(r, :hydro_energy_to_power_ratio, default) > 0, rs) @@ -298,11 +305,11 @@ thermal(rs::Vector{T}) where T <: AbstractResource = findall(r -> isa(r,THERM), up_time(r::THERM) = get(r, :up_time, default) down_time(r::THERM) = get(r, :down_time, default) function has_unit_commitment(rs::Vector{T}) where T <: AbstractResource - return findall(r -> isa(r,THERM) && r.type == 1, rs) + return findall(r -> isa(r,THERM) && r.model == 1, rs) end # Without unit commitment function no_unit_commitment(rs::Vector{T}) where T <: AbstractResource - return findall(r -> isa(r,THERM) && r.type == 2, rs) + return findall(r -> isa(r,THERM) && r.model == 2, rs) end @@ -319,7 +326,6 @@ electrolyzer(rs::Vector{T}) where T <: AbstractResource = findall(r -> isa(r,ELE electrolyzer_min_kt(r::ELECTROLYZER) = r.electrolyzer_min_kt hydrogen_mwh_per_tonne(r::ELECTROLYZER) = r.hydrogen_mwh_per_tonne hydrogen_price_per_tonne(r::ELECTROLYZER) = r.hydrogen_price_per_tonne -qualified_hydrogen_supply(r::ELECTROLYZER) = r.qualified_hydrogen_supply # FLEX interface @@ -382,7 +388,7 @@ function resources_in_zone_by_rid(rs::Vector{AbstractResource}, zone::Int) return resource_id.(rs[zone_id.(rs) .== zone]) end -function resource_by_name(rs::Vector{AbstractResource}, name::String) +function resource_by_name(rs::Vector{AbstractResource}, name::AbstractString) return rs[findfirst(r -> resource_name(r) == name, rs)] end diff --git a/src/multi_stage/endogenous_retirement.jl b/src/multi_stage/endogenous_retirement.jl index cf48a7e75e..465215a699 100644 --- a/src/multi_stage/endogenous_retirement.jl +++ b/src/multi_stage/endogenous_retirement.jl @@ -32,9 +32,9 @@ function update_cumulative_min_ret!(inputs_d::Dict,t::Int,Resource_Set::String,d if !isempty(inputs_d[1][Resource_Set]) gen_t = inputs_d[t][dfGen_Name] if t==1 - cum_ret_cap_api.(gen_t) = ret_cap_api.(gen_t) + gen_t.cum_ret_cap_api = ret_cap_api.(gen_t) else - cum_ret_cap_api.(gen_t) = cum_ret_cap_api.(inputs_d[t-1][dfGen_Name]) + ret_cap_api.(gen_t) + gen_t.cum_ret_cap_api = cum_ret_cap_api.(inputs_d[t-1][dfGen_Name]) + ret_cap_api.(gen_t) end end else @@ -135,7 +135,7 @@ function endogenous_retirement_discharge!(EP::Model, inputs::Dict, num_stages::I println("Endogenous Retirement (Discharge) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] NEW_CAP = inputs["NEW_CAP"] # Set of all resources eligible for new capacity RET_CAP = inputs["RET_CAP"] # Set of all resources eligible for capacity retirements @@ -190,7 +190,7 @@ function endogenous_retirement_charge!(EP::Model, inputs::Dict, num_stages::Int, println("Endogenous Retirement (Charge) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] STOR_ASYMMETRIC = inputs["STOR_ASYMMETRIC"] # Set of storage resources with asymmetric (separte) charge/discharge capacity components @@ -240,7 +240,7 @@ function endogenous_retirement_energy!(EP::Model, inputs::Dict, num_stages::Int, println("Endogenous Retirement (Energy) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] NEW_CAP_ENERGY = inputs["NEW_CAP_ENERGY"] # Set of all storage resources eligible for new energy capacity RET_CAP_ENERGY = inputs["RET_CAP_ENERGY"] # Set of all storage resources eligible for energy capacity retirements @@ -287,7 +287,7 @@ function endogenous_retirement_vre_stor_dc!(EP::Model, inputs::Dict, num_stages: println("Endogenous Retirement (VRE-Storage DC) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"]; @@ -336,7 +336,7 @@ function endogenous_retirement_vre_stor_solar!(EP::Model, inputs::Dict, num_stag println("Endogenous Retirement (VRE-Storage Solar) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"]; @@ -385,7 +385,7 @@ function endogenous_retirement_vre_stor_wind!(EP::Model, inputs::Dict, num_stage println("Endogenous Retirement (VRE-Storage Wind) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"]; @@ -434,7 +434,7 @@ function endogenous_retirement_vre_stor_stor!(EP::Model, inputs::Dict, num_stage println("Endogenous Retirement (VRE-Storage Storage) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] NEW_CAP_STOR = inputs["NEW_CAP_STOR"] # Set of all resources eligible for new capacity RET_CAP_STOR = inputs["RET_CAP_STOR"] # Set of all resources eligible for capacity retirements @@ -481,7 +481,7 @@ function endogenous_retirement_vre_stor_discharge_dc!(EP::Model, inputs::Dict, n println("Endogenous Retirement (VRE-Storage Discharge DC) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"] @@ -530,7 +530,7 @@ function endogenous_retirement_vre_stor_charge_dc!(EP::Model, inputs::Dict, num_ println("Endogenous Retirement (VRE-Storage Charge DC) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"]; NEW_CAP_CHARGE_DC = inputs["NEW_CAP_CHARGE_DC"] # Set of all resources eligible for new capacity RET_CAP_CHARGE_DC = inputs["RET_CAP_CHARGE_DC"] # Set of all resources eligible for capacity retirements @@ -577,7 +577,7 @@ function endogenous_retirement_vre_stor_discharge_ac!(EP::Model, inputs::Dict, n println("Endogenous Retirement (VRE-Storage Discharge AC) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"]; NEW_CAP_DISCHARGE_AC = inputs["NEW_CAP_DISCHARGE_AC"] # Set of all resources eligible for new capacity RET_CAP_DISCHARGE_AC = inputs["RET_CAP_DISCHARGE_AC"] # Set of all resources eligible for capacity retirements @@ -624,7 +624,7 @@ function endogenous_retirement_vre_stor_charge_ac!(EP::Model, inputs::Dict, num_ println("Endogenous Retirement (VRE-Storage Charge AC) Module") - gen = inputs["RESOURCES"] + res = inputs["RESOURCES"] dfVRE_STOR = inputs["dfVRE_STOR"] NEW_CAP_CHARGE_AC = inputs["NEW_CAP_CHARGE_AC"] # Set of all resources eligible for new capacity RET_CAP_CHARGE_AC = inputs["RET_CAP_CHARGE_AC"] # Set of all resources eligible for capacity retirements diff --git a/test/Electrolyzer/Generators_data.csv b/test/Electrolyzer/Generators_data_.csv similarity index 100% rename from test/Electrolyzer/Generators_data.csv rename to test/Electrolyzer/Generators_data_.csv diff --git a/test/Electrolyzer/Generators_variability.csv b/test/Electrolyzer/Generators_variability.csv index c2ac9b8ee4..1a6a2caf86 100644 --- a/test/Electrolyzer/Generators_variability.csv +++ b/test/Electrolyzer/Generators_variability.csv @@ -1,121 +1,121 @@ -Time_Index,natural_gas_combined_cycle,solar_pv,onshore_wind,battery,electrolyzer,battery_for_electrolyzer -1,1.0,0.0,0.523972332,1.0,1.0,1.0 -2,1.0,0.0,0.657110274,1.0,1.0,1.0 -3,1.0,0.0,0.757477045,1.0,1.0,1.0 -4,1.0,0.0,0.644009769,1.0,1.0,1.0 -5,1.0,0.0,0.467615873,1.0,1.0,1.0 -6,1.0,0.0,0.553678334,1.0,1.0,1.0 -7,1.0,0.0,0.77921623,1.0,1.0,1.0 -8,1.0,0.0,0.725531518,1.0,1.0,1.0 -9,1.0,0.0,0.786552846,1.0,1.0,1.0 -10,1.0,0.003,0.589495063,1.0,1.0,1.0 -11,1.0,0.0852,0.436854541,1.0,1.0,1.0 -12,1.0,0.1324,0.533977807,1.0,1.0,1.0 -13,1.0,0.1041,0.54939425,1.0,1.0,1.0 -14,1.0,0.1276,0.297182679,1.0,1.0,1.0 -15,1.0,0.1108,0.108885378,1.0,1.0,1.0 -16,1.0,0.0825,0.097908288,1.0,1.0,1.0 -17,1.0,0.0043,0.092191279,1.0,1.0,1.0 -18,1.0,0.0,0.112537816,1.0,1.0,1.0 -19,1.0,0.0,0.366680771,1.0,1.0,1.0 -20,1.0,0.0,0.794670165,1.0,1.0,1.0 -21,1.0,0.0,0.931621909,1.0,1.0,1.0 -22,1.0,0.0,1.0,1.0,1.0,1.0 -23,1.0,0.0,1.0,1.0,1.0,1.0 -24,1.0,0.0,1.0,1.0,1.0,1.0 -25,1.0,0.0,0.676885605,1.0,1.0,1.0 -26,1.0,0.0,0.738456726,1.0,1.0,1.0 -27,1.0,0.0,0.703836918,1.0,1.0,1.0 -28,1.0,0.0,0.697715104,1.0,1.0,1.0 -29,1.0,0.0,0.578294039,1.0,1.0,1.0 -30,1.0,0.0,0.478842616,1.0,1.0,1.0 -31,1.0,0.0,0.57159102,1.0,1.0,1.0 -32,1.0,0.0216,0.389114857,1.0,1.0,1.0 -33,1.0,0.1372,0.520889282,1.0,1.0,1.0 -34,1.0,0.3468,0.376534432,1.0,1.0,1.0 -35,1.0,0.3952,0.327963144,1.0,1.0,1.0 -36,1.0,0.4551,0.407575041,1.0,1.0,1.0 -37,1.0,0.5095,0.536571622,1.0,1.0,1.0 -38,1.0,0.5567,0.576452434,1.0,1.0,1.0 -39,1.0,0.5691,0.562025309,1.0,1.0,1.0 -40,1.0,0.4904,0.422575682,1.0,1.0,1.0 -41,1.0,0.3087,0.521396458,1.0,1.0,1.0 -42,1.0,0.1034,0.710955501,1.0,1.0,1.0 -43,1.0,0.0,0.683217525,1.0,1.0,1.0 -44,1.0,0.0,0.635520697,1.0,1.0,1.0 -45,1.0,0.0,0.5644238,1.0,1.0,1.0 -46,1.0,0.0,0.61978668,1.0,1.0,1.0 -47,1.0,0.0,0.516743779,1.0,1.0,1.0 -48,1.0,0.0,0.470443606,1.0,1.0,1.0 -49,1.0,0.0,0.500380576,1.0,1.0,1.0 -50,1.0,0.0,0.512022793,1.0,1.0,1.0 -51,1.0,0.0,0.404206336,1.0,1.0,1.0 -52,1.0,0.0,0.142279267,1.0,1.0,1.0 -53,1.0,0.0,0.133046106,1.0,1.0,1.0 -54,1.0,0.1356,0.133957967,1.0,1.0,1.0 -55,1.0,0.1041,0.041104347,1.0,1.0,1.0 -56,1.0,0.2399,0.029715812,1.0,1.0,1.0 -57,1.0,0.3785,0.064291924,1.0,1.0,1.0 -58,1.0,0.4837,0.043738909,1.0,1.0,1.0 -59,1.0,0.5323,0.056054953,1.0,1.0,1.0 -60,1.0,0.5114,0.101633437,1.0,1.0,1.0 -61,1.0,0.5175,0.238559932,1.0,1.0,1.0 -62,1.0,0.5099,0.194997847,1.0,1.0,1.0 -63,1.0,0.502,0.190832943,1.0,1.0,1.0 -64,1.0,0.4113,0.26438266,1.0,1.0,1.0 -65,1.0,0.3017,0.273810387,1.0,1.0,1.0 -66,1.0,0.1773,0.195969075,1.0,1.0,1.0 -67,1.0,0.0811,0.235671312,1.0,1.0,1.0 -68,1.0,0.0006,0.188544422,1.0,1.0,1.0 -69,1.0,0.0,0.179863051,1.0,1.0,1.0 -70,1.0,0.0,0.223087296,1.0,1.0,1.0 -71,1.0,0.0,0.457369655,1.0,1.0,1.0 -72,1.0,0.0,0.715852976,1.0,1.0,1.0 -73,1.0,0.0,0.280310601,1.0,1.0,1.0 -74,1.0,0.0,0.603805244,1.0,1.0,1.0 -75,1.0,0.0,0.741859972,1.0,1.0,1.0 -76,1.0,0.0,0.44207269,1.0,1.0,1.0 -77,1.0,0.0,0.534612,1.0,1.0,1.0 -78,1.0,0.0259,0.587511122,1.0,1.0,1.0 -79,1.0,0.096,0.48241505,1.0,1.0,1.0 -80,1.0,0.2133,0.226682097,1.0,1.0,1.0 -81,1.0,0.3624,0.376575917,1.0,1.0,1.0 -82,1.0,0.4795,0.272142261,1.0,1.0,1.0 -83,1.0,0.5633,0.132447034,1.0,1.0,1.0 -84,1.0,0.5708,0.091180928,1.0,1.0,1.0 -85,1.0,0.534,0.420845181,1.0,1.0,1.0 -86,1.0,0.5641,0.543866694,1.0,1.0,1.0 -87,1.0,0.5537,0.943579316,1.0,1.0,1.0 -88,1.0,0.457,0.83001256,1.0,1.0,1.0 -89,1.0,0.3439,0.698711514,1.0,1.0,1.0 -90,1.0,0.1642,0.536995411,1.0,1.0,1.0 -91,1.0,0.0638,0.770702124,1.0,1.0,1.0 -92,1.0,0.0,0.569594324,1.0,1.0,1.0 -93,1.0,0.0,0.668922722,1.0,1.0,1.0 -94,1.0,0.0,0.759383678,1.0,1.0,1.0 -95,1.0,0.0,0.672967851,1.0,1.0,1.0 -96,1.0,0.0,0.861851215,1.0,1.0,1.0 -97,1.0,0.0,0.000154842,1.0,1.0,1.0 -98,1.0,0.0,5.75e-5,1.0,1.0,1.0 -99,1.0,0.0,7.18e-5,1.0,1.0,1.0 -100,1.0,0.0,3.65e-5,1.0,1.0,1.0 -101,1.0,0.0,3.0e-5,1.0,1.0,1.0 -102,1.0,0.0,0.0,1.0,1.0,1.0 -103,1.0,0.0,0.000772537,1.0,1.0,1.0 -104,1.0,0.0,0.000930232,1.0,1.0,1.0 -105,1.0,0.1029,0.000778525,1.0,1.0,1.0 -106,1.0,0.2427,0.000131503,1.0,1.0,1.0 -107,1.0,0.3353,0.005792293,1.0,1.0,1.0 -108,1.0,0.3693,0.00257458,1.0,1.0,1.0 -109,1.0,0.321,1.01e-5,1.0,1.0,1.0 -110,1.0,0.2798,0.000134685,1.0,1.0,1.0 -111,1.0,0.2887,0.000516413,1.0,1.0,1.0 -112,1.0,0.1717,0.001232307,1.0,1.0,1.0 -113,1.0,0.0,0.002655152,1.0,1.0,1.0 -114,1.0,0.0,0.003173271,1.0,1.0,1.0 -115,1.0,0.0,0.003878384,1.0,1.0,1.0 -116,1.0,0.0,0.005781263,1.0,1.0,1.0 -117,1.0,0.0,0.006259252,1.0,1.0,1.0 -118,1.0,0.0,0.008088858,1.0,1.0,1.0 -119,1.0,0.0,0.008165604,1.0,1.0,1.0 -120,1.0,0.0,0.007110484,1.0,1.0,1.0 +Time_Index,solar_pv,onshore_wind +1,0,0.523972332 +2,0,0.657110274 +3,0,0.757477045 +4,0,0.644009769 +5,0,0.467615873 +6,0,0.553678334 +7,0,0.77921623 +8,0,0.725531518 +9,0,0.786552846 +10,0.003,0.589495063 +11,0.0852,0.436854541 +12,0.1324,0.533977807 +13,0.1041,0.54939425 +14,0.1276,0.297182679 +15,0.1108,0.108885378 +16,0.0825,0.097908288 +17,0.0043,0.092191279 +18,0,0.112537816 +19,0,0.366680771 +20,0,0.794670165 +21,0,0.931621909 +22,0,1 +23,0,1 +24,0,1 +25,0,0.676885605 +26,0,0.738456726 +27,0,0.703836918 +28,0,0.697715104 +29,0,0.578294039 +30,0,0.478842616 +31,0,0.57159102 +32,0.0216,0.389114857 +33,0.1372,0.520889282 +34,0.3468,0.376534432 +35,0.3952,0.327963144 +36,0.4551,0.407575041 +37,0.5095,0.536571622 +38,0.5567,0.576452434 +39,0.5691,0.562025309 +40,0.4904,0.422575682 +41,0.3087,0.521396458 +42,0.1034,0.710955501 +43,0,0.683217525 +44,0,0.635520697 +45,0,0.5644238 +46,0,0.61978668 +47,0,0.516743779 +48,0,0.470443606 +49,0,0.500380576 +50,0,0.512022793 +51,0,0.404206336 +52,0,0.142279267 +53,0,0.133046106 +54,0.1356,0.133957967 +55,0.1041,0.041104347 +56,0.2399,0.029715812 +57,0.3785,0.064291924 +58,0.4837,0.043738909 +59,0.5323,0.056054953 +60,0.5114,0.101633437 +61,0.5175,0.238559932 +62,0.5099,0.194997847 +63,0.502,0.190832943 +64,0.4113,0.26438266 +65,0.3017,0.273810387 +66,0.1773,0.195969075 +67,0.0811,0.235671312 +68,0.0006,0.188544422 +69,0,0.179863051 +70,0,0.223087296 +71,0,0.457369655 +72,0,0.715852976 +73,0,0.280310601 +74,0,0.603805244 +75,0,0.741859972 +76,0,0.44207269 +77,0,0.534612 +78,0.0259,0.587511122 +79,0.096,0.48241505 +80,0.2133,0.226682097 +81,0.3624,0.376575917 +82,0.4795,0.272142261 +83,0.5633,0.132447034 +84,0.5708,0.091180928 +85,0.534,0.420845181 +86,0.5641,0.543866694 +87,0.5537,0.943579316 +88,0.457,0.83001256 +89,0.3439,0.698711514 +90,0.1642,0.536995411 +91,0.0638,0.770702124 +92,0,0.569594324 +93,0,0.668922722 +94,0,0.759383678 +95,0,0.672967851 +96,0,0.861851215 +97,0,0.000154842 +98,0,5.75e-5 +99,0,7.18e-5 +100,0,3.65e-5 +101,0,3.0e-5 +102,0,0 +103,0,0.000772537 +104,0,0.000930232 +105,0.1029,0.000778525 +106,0.2427,0.000131503 +107,0.3353,0.005792293 +108,0.3693,0.00257458 +109,0.321,1.01e-5 +110,0.2798,0.000134685 +111,0.2887,0.000516413 +112,0.1717,0.001232307 +113,0,0.002655152 +114,0,0.003173271 +115,0,0.003878384 +116,0,0.005781263 +117,0,0.006259252 +118,0,0.008088858 +119,0,0.008165604 +120,0,0.007110484 \ No newline at end of file diff --git a/test/Electrolyzer/policies/esr.csv b/test/Electrolyzer/policies/esr.csv new file mode 100644 index 0000000000..cf003f74c5 --- /dev/null +++ b/test/Electrolyzer/policies/esr.csv @@ -0,0 +1,4 @@ +Resource,ESR_1,ESR_2 +solar_pv,1,1 +onshore_wind,1,1 +electrolyzer,0,1 \ No newline at end of file diff --git a/test/Electrolyzer/resources/electrolyzer.csv b/test/Electrolyzer/resources/electrolyzer.csv new file mode 100644 index 0000000000..cbb782c7ac --- /dev/null +++ b/test/Electrolyzer/resources/electrolyzer.csv @@ -0,0 +1,2 @@ +Resource,Zone,New_Build,Can_Retire,Existing_Cap_MW,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Fixed_OM_Cost_per_MWyr,Var_OM_Cost_per_MWh,Cap_Size,Resource_Type,ESR_1,ESR_2,region,cluster,Hydrogen_MWh_Per_Tonne,Electrolyzer_Min_kt,Hydrogen_Price_Per_Tonne +electrolyzer,1,1,1,0,-1,-1,125000,15000,0,1,hydrogen_electrolyzer,0,1,NE,0,55,1000,1000 \ No newline at end of file diff --git a/test/Electrolyzer/resources/storage.csv b/test/Electrolyzer/resources/storage.csv new file mode 100644 index 0000000000..462abd16f3 --- /dev/null +++ b/test/Electrolyzer/resources/storage.csv @@ -0,0 +1,3 @@ +Resource,Zone,Model,New_Build,Can_Retire,Existing_Cap_MW,Existing_Cap_MWh,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Inv_Cost_per_MWhyr,Fixed_OM_Cost_per_MWyr,Fixed_OM_Cost_per_MWhyr,Var_OM_Cost_per_MWh,Var_OM_Cost_per_MWh_In,Self_Disch,Eff_Up,Eff_Down,Min_Duration,Max_Duration,Qualified_Hydrogen_Supply,Resource_Type,region,cluster +battery,1,1,1,1,0,0,-1,0,19584,22494,4895,5622,0.15,0.15,0,0.92,0.92,1,10,0,battery_mid,NE,0 +battery_for_electrolyzer,1,1,1,1,0,0,-1,0,21542,24743,4895,5622,0.15,0.15,0,0.92,0.92,1,10,1,battery_mid,NE,0 \ No newline at end of file diff --git a/test/Electrolyzer/resources/thermal.csv b/test/Electrolyzer/resources/thermal.csv new file mode 100644 index 0000000000..6da8fe8786 --- /dev/null +++ b/test/Electrolyzer/resources/thermal.csv @@ -0,0 +1,2 @@ +Resource,Zone,Model,New_Build,Can_Retire,Existing_Cap_MW,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Fixed_OM_Cost_per_MWyr,Var_OM_Cost_per_MWh,Heat_Rate_MMBTU_per_MWh,Fuel,Cap_Size,Start_Cost_per_MW,Start_Fuel_MMBTU_per_MW,Up_Time,Down_Time,Ramp_Up_Percentage,Ramp_Dn_Percentage,Min_Power,Resource_Type,region,cluster +natural_gas_combined_cycle,1,1,1,1,0,-1,0,65400,10287,3.55,7.43,NG,250,91,2,6,6,0.64,0.64,0.468,natural_gas_fired_combined_cycle,NE,1 \ No newline at end of file diff --git a/test/Electrolyzer/resources/vre.csv b/test/Electrolyzer/resources/vre.csv new file mode 100644 index 0000000000..c470033ac3 --- /dev/null +++ b/test/Electrolyzer/resources/vre.csv @@ -0,0 +1,3 @@ +Resource,Zone,Num_VRE_Bins,New_Build,Can_Retire,Existing_Cap_MW,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Fixed_OM_Cost_per_MWyr,Var_OM_Cost_per_MWh,Heat_Rate_MMBTU_per_MWh,Resource_Type,region,cluster,Qualified_Hydrogen_Supply +solar_pv,1,1,1,1,0,-1,0,85300,18760,0,9.13,solar_photovoltaic,NE,1,1 +onshore_wind,1,1,1,1,0,-1,0,97200,43205,0.1,9.12,onshore_wind_turbine,NE,1,1 \ No newline at end of file diff --git a/test/Inputfiles/Generators_variability.csv b/test/Inputfiles/Generators_variability.csv index f9a8b5e4a3..2319762f6c 100644 --- a/test/Inputfiles/Generators_variability.csv +++ b/test/Inputfiles/Generators_variability.csv @@ -1,481 +1,481 @@ -Time_Index,NENGREST_biomass_1,NENGREST_conventional_hydroelectric_1,NENGREST_hydroelectric_pumped_storage_1,NENGREST_natural_gas_fired_combined_cycle_1,NENGREST_natural_gas_fired_combined_cycle_2,NENGREST_natural_gas_fired_combustion_turbine_1,NENGREST_natural_gas_fired_combustion_turbine_2,NENGREST_natural_gas_steam_turbine_1,NENGREST_nuclear_1,NENGREST_offshore_wind_turbine_1,NENGREST_onshore_wind_turbine_1,NENGREST_small_hydroelectric_1,NENGREST_solar_photovoltaic_1,NENG_CT_biomass_1,NENG_CT_conventional_hydroelectric_1,NENG_CT_hydroelectric_pumped_storage_1,NENG_CT_natural_gas_fired_combined_cycle_1,NENG_CT_natural_gas_fired_combined_cycle_2,NENG_CT_natural_gas_fired_combustion_turbine_1,NENG_CT_natural_gas_fired_combustion_turbine_2,NENG_CT_nuclear_1,NENG_CT_onshore_wind_turbine_1,NENG_CT_small_hydroelectric_1,NENG_CT_solar_photovoltaic_1,NENG_ME_biomass_1,NENG_ME_conventional_hydroelectric_1,NENG_ME_natural_gas_fired_combined_cycle_1,NENG_ME_natural_gas_fired_combined_cycle_2,NENG_ME_natural_gas_fired_combustion_turbine_1,NENG_ME_onshore_wind_turbine_1,NENG_ME_small_hydroelectric_1,NENG_ME_solar_photovoltaic_1,NENGREST_naturalgas_ccccsavgcf_mid_0,NENGREST_naturalgas_ccavgcf_mid_0,NENGREST_naturalgas_ctavgcf_mid_0,NENGREST_battery_mid_0,NENGREST_naturalgas_ccs100_mid_0,NENGREST_landbasedwind_ltrg1_mid_130_1,NENGREST_utilitypv_losangeles_mid_80_0_2_1,NENGREST_offshorewind_otrg3_mid_fixed_1_176_77_1,NENG_CT_naturalgas_ccccsavgcf_mid_0,NENG_CT_naturalgas_ccavgcf_mid_0,NENG_CT_naturalgas_ctavgcf_mid_0,NENG_CT_battery_mid_0,NENG_CT_naturalgas_ccs100_mid_0,NENG_CT_landbasedwind_ltrg1_mid_110_1,NENG_CT_utilitypv_losangeles_mid_80_0_2_1,NENG_CT_offshorewind_otrg3_mid_fixed_1_176_77_1,NENG_ME_naturalgas_ccccsavgcf_mid_0,NENG_ME_naturalgas_ccavgcf_mid_0,NENG_ME_naturalgas_ctavgcf_mid_0,NENG_ME_battery_mid_0,NENG_ME_naturalgas_ccs100_mid_0,NENG_ME_landbasedwind_ltrg1_mid_110_1,NENG_ME_utilitypv_losangeles_mid_100_0_2_1,NENGREST_heat_load_shifting_1,NENG_CT_heat_load_shifting_1,NENG_ME_heat_load_shifting_1,NENGREST_hydrogen_storage_1,NENG_CT_hydrogen_storage_1,NENG_ME_hydrogen_storage_1 -1,1,0.1531,1,1,1,1,1,1,1,1,0.0153,0.1531,0,1,0.2065,1,1,1,1,1,1,0.0626,0.2065,0,1,0.5201,1,1,1,0.2652,0.5201,0,1,1,1,1,1,0.065292753,0,0.01332443,1,1,1,1,1,0.103481233,0,0.000801047,1,1,1,1,1,0.376813948,0,0.547788787,0.547704675,0.54787234,1,1,1 -2,1,0.1529,1,1,1,1,1,1,1,1,0.0096,0.1529,0,1,0.2064,1,1,1,1,1,1,0.0741,0.2064,0,1,0.5199,1,1,1,0.2219,0.5199,0,1,1,1,1,1,0.052334037,0,0.003825564,1,1,1,1,1,0.122626804,0,0.015034294,1,1,1,1,1,0.364595324,0,0.51323103,0.513221917,0.513297872,1,1,1 -3,1,0.1528,1,1,1,1,1,1,1,1,0.0024,0.1528,0,1,0.2063,1,1,1,1,1,1,0.1111,0.2063,0,1,0.5198,1,1,1,0.2331,0.5198,0,1,1,1,1,1,0.040673904,0,0.000506716,1,1,1,1,1,0.161907911,0,0.026875654,1,1,1,1,1,0.402507216,0,0.490454326,0.490585995,0.490691489,1,1,1 -4,1,0.1527,1,1,1,1,1,1,1,1,0.0013,0.1527,0,1,0.2062,1,1,1,1,1,1,0.07,0.2062,0,1,0.5196,1,1,1,0.2218,0.5196,0,1,1,1,1,1,0.026909461,0,0,1,1,1,1,1,0.099254258,0,0.00276911,1,1,1,1,1,0.400019258,0,0.47661914,0.476835202,0.476950355,1,1,1 -5,1,0.1525,1,1,1,1,1,1,1,1,0.0033,0.1525,0,1,0.2061,1,1,1,1,1,1,0.0733,0.2061,0,1,0.5194,1,1,1,0.1759,0.5194,0,1,1,1,1,1,0.020325907,0,0,1,1,1,1,1,0.110299528,0,0.035911258,1,1,1,1,1,0.330832094,0,0.473537941,0.473661942,0.473404255,1,1,1 -6,1,0.1524,1,1,1,1,1,1,1,1,0,0.1524,0,1,0.206,1,1,1,1,1,1,0.0365,0.206,0,1,0.5193,1,1,1,0.1043,0.5193,0,1,1,1,1,1,0.007212133,3.65E-06,0,1,1,1,1,1,0.063602038,0,0.050005242,1,1,1,1,1,0.222387373,0.013533911,0.477706622,0.477681405,0.477836879,1,1,1 -7,1,0.1523,1,1,1,1,1,1,1,1,0,0.1523,0.0759,1,0.2059,1,1,1,1,1,1,0.0234,0.2059,0.0696,1,0.5191,1,1,1,0.0769,0.5191,0.0904,1,1,1,1,1,0.008170175,0.184360758,0.027611975,1,1,1,1,1,0.040593714,0.125903487,0.047288746,1,1,1,1,1,0.17746836,0.332922995,0.496012567,0.496086313,0.496010638,1,1,1 -8,1,0.1521,1,1,1,1,1,1,1,1,0,0.1521,0.1942,1,0.2058,1,1,1,1,1,1,0,0.2058,0.2154,1,0.5189,1,1,1,0.0447,0.5189,0.198,1,1,1,1,1,5.58E-05,0.392683566,0.051668573,1,1,1,1,1,0.011311333,0.391294956,0.030801307,1,1,1,1,1,0.131412923,0.529030442,0.539934751,0.539877301,0.540336879,1,1,1 -9,1,0.152,1,1,1,1,1,1,1,1,0,0.152,0.3388,1,0.2057,1,1,1,1,1,1,0.009,0.2057,0.3492,1,0.5188,1,1,1,0.0288,0.5188,0.2909,1,1,1,1,1,0.000133052,0.587511301,0.133093059,1,1,1,1,1,0.013711058,0.605442703,0.037334293,1,1,1,1,1,0.095543988,0.561009407,0.595396327,0.595515126,0.595301418,1,1,1 -10,1,0.1519,1,1,1,1,1,1,1,1,0.0041,0.1519,0.4434,1,0.2056,1,1,1,1,1,1,0.0158,0.2056,0.3816,1,0.5186,1,1,1,0.0346,0.5186,0.3935,1,1,1,1,1,0.002134913,0.685464025,0.234719694,1,1,1,1,1,0.018147571,0.618171573,0.107505769,1,1,1,1,1,0.07800559,0.567943335,0.644937168,0.645017982,0.645390071,1,1,1 -11,1,0.1517,1,1,1,1,1,1,1,1,0.0059,0.1517,0.5172,1,0.2055,1,1,1,1,1,1,0.0441,0.2055,0.3968,1,0.5184,1,1,1,0.0048,0.5184,0.4017,1,1,1,1,1,0.00234053,0.616370916,0.156284452,1,1,1,1,1,0.042958312,0.599574626,0.191954464,1,1,1,1,1,0.025781849,0.650587142,0.680280329,0.680346943,0.680407801,1,1,1 -12,1,0.1516,1,1,1,1,1,1,1,1,0.0191,0.1516,0.4947,1,0.2054,1,1,1,1,1,1,0.0771,0.2054,0.4368,1,0.5183,1,1,1,0.0143,0.5183,0.5062,1,1,1,1,1,0.008151108,0.622940779,0.242628396,1,1,1,1,1,0.073289946,0.644762218,0.31661284,1,1,1,1,1,0.048904218,0.58204931,0.699009183,0.698963402,0.699024823,1,1,1 -13,1,0.1515,1,1,1,1,1,1,1,1,0.0301,0.1515,0.4841,1,0.2053,1,1,1,1,1,1,0,0.2053,0.3948,1,0.5181,1,1,1,0.0453,0.5181,0.5072,1,1,1,1,1,0.006961724,0.623241484,0.406754732,1,1,1,1,1,0.020861842,0.588721633,0.293354213,1,1,1,1,1,0.083536409,0.61391294,0.706198647,0.706156124,0.706560284,1,1,1 -14,1,0.1513,1,1,1,1,1,1,1,1,0.0559,0.1513,0.4469,1,0.2052,1,1,1,1,1,1,0.0013,0.2052,0.3538,1,0.5179,1,1,1,0.0639,0.5179,0.5036,1,1,1,1,1,0.009078478,0.570706308,0.316491723,1,1,1,1,1,0.008775378,0.517868459,0.227496073,1,1,1,1,1,0.086366162,0.632317364,0.706681972,0.706579226,0.707003546,1,1,1 -15,1,0.1512,1,1,1,1,1,1,1,1,0.1051,0.1512,0.3442,1,0.2051,1,1,1,1,1,1,0.0821,0.2051,0.2453,1,0.5178,1,1,1,0.08,0.5178,0.3942,1,1,1,1,1,0.028089678,0.446025997,0.373291254,1,1,1,1,1,0.095363103,0.31654349,0.741438508,1,1,1,1,1,0.082046971,0.540764332,0.701123731,0.701078908,0.701241135,1,1,1 -16,1,0.1511,1,1,1,1,1,1,1,1,0.06,0.1511,0.2529,1,0.205,1,1,1,1,1,1,0.1972,0.205,0.1974,1,0.5176,1,1,1,0.0747,0.5176,0.3035,1,1,1,1,1,0.050746199,0.309538156,0.228688031,1,1,1,1,1,0.123457052,0.28948319,0.20311676,1,1,1,1,1,0.085125253,0.468044192,0.68499275,0.685001058,0.685283688,1,1,1 -17,1,0.1509,1,1,1,1,1,1,1,1,0.03,0.1509,0.1595,1,0.2049,1,1,1,1,1,1,0.1352,0.2049,0.0995,1,0.5174,1,1,1,0.0801,0.5174,0.1983,1,1,1,1,1,0.017428808,0.138130486,0.296999008,1,1,1,1,1,0.123827852,0.180463612,0.148169905,1,1,1,1,1,0.097150236,0.409677744,0.670976317,0.671038714,0.671099291,1,1,1 -18,1,0.1508,1,1,1,1,1,1,1,1,0.0069,0.1508,0.0649,1,0.2048,1,1,1,1,1,1,0.0565,0.2048,0.0488,1,0.5173,1,1,1,0.1059,0.5173,0.1037,1,1,1,1,1,0.007835865,0.061673351,0.292313695,1,1,1,1,1,0.06580779,0.134101063,0.099628538,1,1,1,1,1,0.117435888,0.165352792,0.664330595,0.664480643,0.664893617,1,1,1 -19,1,0.1507,1,1,1,1,1,1,1,1,0.0133,0.1507,0.0001,1,0.2047,1,1,1,1,1,1,0.047,0.2047,0.0018,1,0.5171,1,1,1,0.087,0.5171,0.0095,1,1,1,1,1,0.019914083,0.000127123,0.160788432,1,1,1,1,1,0.047395445,0.003018669,0.046998691,1,1,1,1,1,0.116367564,0.003531569,0.654120348,0.654114661,0.654255319,1,1,1 -20,1,0.1505,1,1,1,1,1,1,1,1,0.0333,0.1505,0,1,0.2046,1,1,1,1,1,1,0.1201,0.2046,0,1,0.5169,1,1,1,0.0334,0.5169,0,1,1,1,1,1,0.07540524,0,0.064300358,1,1,1,1,1,0.165233195,0,0.111020416,1,1,1,1,1,0.091881208,0,0.645480909,0.645441083,0.645833333,1,1,1 -21,1,0.1504,1,1,1,1,1,1,1,1,0.1005,0.1504,0,1,0.2045,1,1,1,1,1,1,0.203,0.2045,0,1,0.5168,1,1,1,0.0233,0.5168,0,1,1,1,1,1,0.052637972,0,0.231896117,1,1,1,1,1,0.236350656,0,0.010772513,1,1,1,1,1,0.085106082,0,0.645662156,0.645864185,0.645833333,1,1,1 -22,1,0.1503,1,1,1,1,1,1,1,1,0.0289,0.1503,0,1,0.2044,1,1,1,1,1,1,0.0707,0.2044,0,1,0.5166,1,1,1,0.0138,0.5166,0,1,1,1,1,1,0.026745947,0,0.126861706,1,1,1,1,1,0.070020534,0,0.319542706,1,1,1,1,1,0.020752296,0,0.622704205,0.622593611,0.622783688,1,1,1 -23,1,0.1501,1,1,1,1,1,1,1,1,0.0468,0.1501,0,1,0.2044,1,1,1,1,1,1,0.0188,0.2044,0,1,0.5164,1,1,1,0.0102,0.5164,0,1,1,1,1,1,0.025927531,0,0.152657956,1,1,1,1,1,0.013385094,0,0.034334295,1,1,1,1,1,0.017476626,0,0.581863219,0.581764333,0.582003546,1,1,1 -24,1,0.15,1,1,1,1,1,1,1,1,0.0744,0.15,0,1,0.2043,1,1,1,1,1,1,0.007,0.2043,0,1,0.5163,1,1,1,0.0101,0.5163,0,1,1,1,1,1,0.03693749,0,0.1048944,1,1,1,1,1,0.013921568,0,0.015131153,1,1,1,1,1,0.022096325,0,0.536249396,0.536280939,0.536347518,1,1,1 -25,1,0.1499,1,1,1,1,1,1,1,1,0.0421,0.1499,0,1,0.2042,1,1,1,1,1,1,0.0236,0.2042,0,1,0.5161,1,1,1,0.0183,0.5161,0,1,1,1,1,1,0.034658864,0,0.08944007,1,1,1,1,1,0.031985622,0,0.018787697,1,1,1,1,1,0.045628548,0,0.496495892,0.496509414,0.496453901,1,1,1 -26,1,0.1497,1,1,1,1,1,1,1,1,0.0615,0.1497,0,1,0.2041,1,1,1,1,1,1,0.0726,0.2041,0,1,0.5159,1,1,1,0.0196,0.5159,0,1,1,1,1,1,0.044860251,0,0.215190679,1,1,1,1,1,0.086156786,0,0.174672514,1,1,1,1,1,0.039953098,0,0.470577574,0.470700233,0.470301418,1,1,1 -27,1,0.1496,1,1,1,1,1,1,1,1,0.0948,0.1496,0,1,0.204,1,1,1,1,1,1,0.0582,0.204,0,1,0.5158,1,1,1,0.004,0.5158,0,1,1,1,1,1,0.052799776,0,0.411421448,1,1,1,1,1,0.097559929,0,0.201319903,1,1,1,1,1,0.019691244,0,0.453600773,0.453776179,0.453457447,1,1,1 -28,1,0.1495,1,1,1,1,1,1,1,1,0.1125,0.1495,0,1,0.2039,1,1,1,1,1,1,0.057,0.2039,0,1,0.5156,1,1,1,0.0056,0.5156,0,1,1,1,1,1,0.067824267,0,0.552116275,1,1,1,1,1,0.119017407,0,0.200681686,1,1,1,1,1,0.028433105,0,0.443813436,0.443833298,0.443705674,1,1,1 -29,1,0.1493,1,1,1,1,1,1,1,1,0.0796,0.1493,0,1,0.2038,1,1,1,1,1,1,0.0325,0.2038,0,1,0.5154,1,1,1,0.0158,0.5154,0,1,1,1,1,1,0.050243534,0,0.421252549,1,1,1,1,1,0.074381158,0,0.200313881,1,1,1,1,1,0.043670997,0,0.441517641,0.441506241,0.441489362,1,1,1 -30,1,0.1492,1,1,1,1,1,1,1,1,0.0155,0.1492,0,1,0.2037,1,1,1,1,1,1,0.0176,0.2037,0,1,0.5153,1,1,1,0.034,0.5153,0,1,1,1,1,1,0.017221928,0,0.220671773,1,1,1,1,1,0.074560687,0,0.16608718,1,1,1,1,1,0.074578553,0,0.444961334,0.444891051,0.445035461,1,1,1 -31,1,0.1491,1,1,1,1,1,1,1,1,0.0179,0.1491,0.0332,1,0.2036,1,1,1,1,1,1,0.019,0.2036,0.0514,1,0.5151,1,1,1,0.0306,0.5151,0.0403,1,1,1,1,1,0.010373427,0.066505551,0.27323544,1,1,1,1,1,0.043967955,0.200801462,0.080578797,1,1,1,1,1,0.072065502,0.057881795,0.452694538,0.452718426,0.452570922,1,1,1 -32,1,0.1489,1,1,1,1,1,1,1,1,0.0156,0.1489,0.1747,1,0.2035,1,1,1,1,1,1,0,0.2035,0.2047,1,0.5149,1,1,1,0.0121,0.5149,0.1587,1,1,1,1,1,0.002428631,0.32694453,0.200677544,1,1,1,1,1,0.006775284,0.378910482,0.060398959,1,1,1,1,1,0.035953183,0.217560619,0.482116965,0.482123969,0.482269504,1,1,1 -33,1,0.1488,1,1,1,1,1,1,1,1,0.0172,0.1488,0.2926,1,0.2034,1,1,1,1,1,1,0,0.2034,0.3065,1,0.5148,1,1,1,0.004,0.5148,0.2751,1,1,1,1,1,0.002566876,0.448335052,0.304661334,1,1,1,1,1,0.00093309,0.458124369,0.142086655,1,1,1,1,1,0.011958488,0.302506179,0.524105848,0.524011001,0.524379433,1,1,1 -34,1,0.1487,1,1,1,1,1,1,1,1,0.0241,0.1487,0.3854,1,0.2033,1,1,1,1,1,1,0,0.2033,0.3813,1,0.5146,1,1,1,0.015,0.5146,0.3408,1,1,1,1,1,0.003611403,0.531844318,0.226176024,1,1,1,1,1,0.000243986,0.539205372,0.096455775,1,1,1,1,1,0.025423488,0.448341131,0.561684389,0.561667019,0.561613475,1,1,1 -35,1,0.1485,1,1,1,1,1,1,1,1,0.032,0.1485,0.4568,1,0.2032,1,1,1,1,1,1,0.0101,0.2032,0.4341,1,0.5144,1,1,1,0.0204,0.5144,0.4201,1,1,1,1,1,0.005624436,0.601224899,0.243716806,1,1,1,1,1,0.005231365,0.601645231,0.201825649,1,1,1,1,1,0.042783734,0.532999754,0.587723538,0.587687751,0.587765957,1,1,1 -36,1,0.1484,1,1,1,1,1,1,1,1,0.0592,0.1484,0.4712,1,0.2031,1,1,1,1,1,1,0.0091,0.2031,0.441,1,0.5143,1,1,1,0.0138,0.5143,0.4445,1,1,1,1,1,0.012782884,0.621242821,0.156384543,1,1,1,1,1,0.013265309,0.61688453,0.206813097,1,1,1,1,1,0.038536161,0.556740463,0.607237796,0.607150413,0.607712766,1,1,1 -37,1,0.1483,1,1,1,1,1,1,1,1,0.0442,0.1483,0.4664,1,0.203,1,1,1,1,1,1,0.0012,0.203,0.4547,1,0.5141,1,1,1,0.0402,0.5141,0.438,1,1,1,1,1,0.017346889,0.61447376,0.074185491,1,1,1,1,1,0.015720278,0.650676727,0.138357863,1,1,1,1,1,0.079403915,0.538190424,0.61901885,0.61899725,0.619237589,1,1,1 -38,1,0.1481,1,1,1,1,1,1,1,1,0.0466,0.1481,0.5758,1,0.2029,1,1,1,1,1,1,0.0015,0.2029,0.5636,1,0.5139,1,1,1,0.0237,0.5139,0.5244,1,1,1,1,1,0.013750245,0.772060514,0.022568563,1,1,1,1,1,0.011008149,0.749152422,0.028026965,1,1,1,1,1,0.055592764,0.577705145,0.62040841,0.620478105,0.620567376,1,1,1 -39,1,0.148,1,1,1,1,1,1,1,1,0.0428,0.148,0.3979,1,0.2028,1,1,1,1,1,1,0.0023,0.2028,0.3996,1,0.5138,1,1,1,0.008,0.5138,0.4006,1,1,1,1,1,0.017138852,0.55417341,0.051447712,1,1,1,1,1,0.004268894,0.60099411,0,1,1,1,1,1,0.026709341,0.438920111,0.618475109,0.618574149,0.618351064,1,1,1 -40,1,0.1479,1,1,1,1,1,1,1,1,0.0379,0.1479,0.3435,1,0.2027,1,1,1,1,1,1,0,0.2027,0.3548,1,0.5136,1,1,1,0.0195,0.5136,0.348,1,1,1,1,1,0.014250422,0.512610257,0.035391368,1,1,1,1,1,0.000125251,0.582904279,0,1,1,1,1,1,0.036932766,0.385501057,0.615514741,0.615612439,0.615691489,1,1,1 -41,1,0.1477,1,1,1,1,1,1,1,1,0.0353,0.1477,0.2533,1,0.2026,1,1,1,1,1,1,0,0.2026,0.247,1,0.5134,1,1,1,0.0102,0.5134,0.2132,1,1,1,1,1,0.006402459,0.416100174,0.032427806,1,1,1,1,1,0.00053452,0.548698306,0.006775393,1,1,1,1,1,0.01535768,0.347824365,0.621495892,0.621747409,0.621897163,1,1,1 -42,1,0.1476,1,1,1,1,1,1,1,1,0.0441,0.1476,0.1416,1,0.2025,1,1,1,1,1,1,0,0.2025,0.1639,1,0.5133,1,1,1,0.0523,0.5133,0.1217,1,1,1,1,1,0.010903064,0.284536719,0.047829591,1,1,1,1,1,9.45E-05,0.431092978,0,1,1,1,1,1,0.047571044,0.2250451,0.630135331,0.630209435,0.630319149,1,1,1 -43,1,0.1475,1,1,1,1,1,1,1,1,0.0356,0.1475,0.037,1,0.2024,1,1,1,1,1,1,0,0.2024,0.0612,1,0.5131,1,1,1,0.064,0.5131,0.03,1,1,1,1,1,0.014553991,0.129970193,0.041080989,1,1,1,1,1,5.81E-05,0.285668582,0.000612566,1,1,1,1,1,0.077780418,0.057166476,0.626570807,0.626613074,0.62677305,1,1,1 -44,1,0.1473,1,1,1,1,1,1,1,1,0.0365,0.1473,0,1,0.2023,1,1,1,1,1,1,0,0.2023,0,1,0.5129,1,1,1,0.0507,0.5129,0,1,1,1,1,1,0.007713901,0,0.126314491,1,1,1,1,1,0.004635042,0,0.207087189,1,1,1,1,1,0.107284553,0,0.61762929,0.617727946,0.617907801,1,1,1 -45,1,0.1472,1,1,1,1,1,1,1,1,0.0129,0.1472,0,1,0.2022,1,1,1,1,1,1,0.0042,0.2022,0,1,0.5128,1,1,1,0.0535,0.5128,0,1,1,1,1,1,0.0058565,0,0.08200334,1,1,1,1,1,0.014006531,0,0.149906278,1,1,1,1,1,0.101532109,0,0.624395843,0.624497567,0.624556738,1,1,1 -46,1,0.1471,1,1,1,1,1,1,1,1,0.0357,0.1471,0,1,0.2021,1,1,1,1,1,1,0,0.2021,0,1,0.5126,1,1,1,0.0478,0.5126,0,1,1,1,1,1,0.022701541,0,0.111567095,1,1,1,1,1,0.017007494,0,0.040073823,1,1,1,1,1,0.086758919,0,0.605969067,0.605881109,0.605939716,1,1,1 -47,1,0.1469,1,1,1,1,1,1,1,1,0.0129,0.1469,0,1,0.202,1,1,1,1,1,1,0.0425,0.202,0,1,0.5124,1,1,1,0.0701,0.5124,0,1,1,1,1,1,0.020868678,0,0.083027355,1,1,1,1,1,0.061066702,0,0.016895551,1,1,1,1,1,0.152101591,0,0.560053166,0.560186165,0.560283688,1,1,1 -48,1,0.1468,1,1,1,1,1,1,1,1,0.004,0.1468,0,1,0.2019,1,1,1,1,1,1,0,0.2019,0,1,0.5123,1,1,1,0.0002,0.5123,0,1,1,1,1,1,8.66E-05,0,0.075362757,1,1,1,1,1,1.13E-05,0,0.080960475,1,1,1,1,1,0.000741268,0,0.510270662,0.510260207,0.510638298,1,1,1 -49,1,0.1467,1,1,1,1,1,1,1,1,0.0124,0.1467,0,1,0.2018,1,1,1,1,1,1,0.008,0.2018,0,1,0.5121,1,1,1,0.0677,0.5121,0,1,1,1,1,1,0.004744857,0,0.097618878,1,1,1,1,1,0.030100621,0,0.003839006,1,1,1,1,1,0.177268758,0,0.470940068,0.470911783,0.470744681,1,1,1 -50,1,0.1465,1,1,1,1,1,1,1,1,0.0114,0.1465,0,1,0.2018,1,1,1,1,1,1,0,0.2018,0,1,0.5119,1,1,1,0.0677,0.5119,0,1,1,1,1,1,0.002719705,0,0.225894779,1,1,1,1,1,0.019255322,0,0.029375395,1,1,1,1,1,0.197093874,0,0.446471726,0.446583457,0.446365248,1,1,1 -51,1,0.1464,1,1,1,1,1,1,1,1,0.002,0.1464,0,1,0.2017,1,1,1,1,1,1,0,0.2017,0,1,0.5118,1,1,1,0,0.5118,0,1,1,1,1,1,0.00010409,0,0.188784003,1,1,1,1,1,0.000033714,0,0.096268073,1,1,1,1,1,0.002023064,0,0.432576124,0.432621113,0.432624114,1,1,1 -52,1,0.1463,1,1,1,1,1,1,1,1,0.0056,0.1463,0,1,0.2016,1,1,1,1,1,1,0,0.2016,0,1,0.5116,1,1,1,0.0839,0.5116,0,1,1,1,1,1,0.006765652,0,0.20851934,1,1,1,1,1,0.005068693,0,0.042369112,1,1,1,1,1,0.214174733,0,0.426957467,0.426909245,0.426861702,1,1,1 -53,1,0.1461,1,1,1,1,1,1,1,1,0.0038,0.1461,0,1,0.2015,1,1,1,1,1,1,0,0.2015,0,1,0.5114,1,1,1,0.0612,0.5114,0,1,1,1,1,1,0.008018229,0,0.088911235,1,1,1,1,1,0.002749863,0,0.024419634,1,1,1,1,1,0.226037741,0,0.435838569,0.435794373,0.43572695,1,1,1 -54,1,0.146,1,1,1,1,1,1,1,1,0.0193,0.146,0.0006,1,0.2014,1,1,1,1,1,1,0.0045,0.2014,0,1,0.5113,1,1,1,0.0584,0.5113,0.0024,1,1,1,1,1,0.008957319,0.000240326,0.021473989,1,1,1,1,1,0.012861684,0,0.037380628,1,1,1,1,1,0.230653733,0.060233783,0.462119381,0.462238206,0.461879433,1,1,1 -55,1,0.1459,1,1,1,1,1,1,1,1,0.0081,0.1459,0.0743,1,0.2013,1,1,1,1,1,1,0,0.2013,0.1022,1,0.5111,1,1,1,0.0583,0.5111,0.0537,1,1,1,1,1,0.003660081,0.48990795,0,1,1,1,1,1,0.00046645,0.446400285,0,1,1,1,1,1,0.232023567,0.501660347,0.513291445,0.513433467,0.513297872,1,1,1 -56,1,0.1457,1,1,1,1,1,1,1,1,0.0012,0.1457,0.2155,1,0.2012,1,1,1,1,1,1,0,0.2012,0.2321,1,0.5109,1,1,1,0.0368,0.5109,0.1997,1,1,1,1,1,0.000613676,0.674091935,0.001419886,1,1,1,1,1,0,0.604865134,0,1,1,1,1,1,0.097109132,0.748290956,0.579144514,0.579225725,0.579343972,1,1,1 -57,1,0.1456,1,1,1,1,1,1,1,1,0,0.1456,0.3828,1,0.2011,1,1,1,1,1,1,0,0.2011,0.4014,1,0.5108,1,1,1,0.0202,0.5108,0.3758,1,1,1,1,1,0.00011487,0.816774249,0.001373258,1,1,1,1,1,0,0.744025827,0,1,1,1,1,1,0.042923428,0.832321525,0.629712422,0.629786334,0.629875887,1,1,1 -58,1,0.1455,1,1,1,1,1,1,1,1,0,0.1455,0.5145,1,0.201,1,1,1,1,1,1,0,0.201,0.5211,1,0.5106,1,1,1,0.0073,0.5106,0.5148,1,1,1,1,1,4.48E-06,0.876774967,0,1,1,1,1,1,0,0.799411118,0,1,1,1,1,1,0.013343919,0.872836471,0.667351378,0.667442352,0.667553192,1,1,1 -59,1,0.1453,1,1,1,1,1,1,1,1,0.0003,0.1453,0.6114,1,0.2009,1,1,1,1,1,1,0,0.2009,0.6106,1,0.5104,1,1,1,0.0077,0.5104,0.6151,1,1,1,1,1,0.000885552,0.891837001,0,1,1,1,1,1,0.000243949,0.836563349,0,1,1,1,1,1,0.006216149,0.894069552,0.700217496,0.700232706,0.70035461,1,1,1 -60,1,0.1452,1,1,1,1,1,1,1,1,0.0086,0.1452,0.6382,1,0.2008,1,1,1,1,1,1,0,0.2008,0.6374,1,0.5103,1,1,1,0.0061,0.5103,0.638,1,1,1,1,1,0.002429813,0.898506522,0,1,1,1,1,1,0.002871435,0.854514718,0,1,1,1,1,1,0.00786264,0.897833586,0.724262929,0.724349482,0.72429078,1,1,1 -61,1,0.1451,1,1,1,1,1,1,1,1,0.057,0.1451,0.6077,1,0.2007,1,1,1,1,1,1,0.0048,0.2007,0.6107,1,0.5101,1,1,1,0.0007,0.5101,0.5879,1,1,1,1,1,0.023022356,0.853422284,0.062501624,1,1,1,1,1,0.012987654,0.825059712,0.007581153,1,1,1,1,1,0.00919114,0.827724934,0.742266796,0.742331288,0.742464539,1,1,1 -62,1,0.1449,1,1,1,1,1,1,1,1,0.0394,0.1449,0.6255,1,0.2006,1,1,1,1,1,1,0.0393,0.2006,0.635,1,0.5099,1,1,1,0.0079,0.5099,0.6294,1,1,1,1,1,0.00606587,0.879794538,0.012417493,1,1,1,1,1,0.026892424,0.87692523,0.012503928,1,1,1,1,1,0.018922158,0.861542642,0.762143548,0.762217051,0.762411348,1,1,1 -63,1,0.1448,1,1,1,1,1,1,1,1,0.0549,0.1448,0.584,1,0.2005,1,1,1,1,1,1,0.0072,0.2005,0.6011,1,0.5098,1,1,1,0.0364,0.5098,0.5815,1,1,1,1,1,0.022713542,0.805331826,0.002281686,1,1,1,1,1,0.019087818,0.871758938,0.016798168,1,1,1,1,1,0.044150669,0.8518942,0.775012083,0.775121642,0.775265957,1,1,1 -64,1,0.1447,1,1,1,1,1,1,1,1,0.096,0.1447,0.4761,1,0.2004,1,1,1,1,1,1,0.0092,0.2004,0.5084,1,0.5096,1,1,1,0.0748,0.5096,0.4653,1,1,1,1,1,0.05813643,0.797433376,0.002159626,1,1,1,1,1,0.025647491,0.843530536,0,1,1,1,1,1,0.110258639,0.783786058,0.782201547,0.782314364,0.782801418,1,1,1 -65,1,0.1445,1,1,1,1,1,1,1,1,0.1858,0.1445,0.3395,1,0.2003,1,1,1,1,1,1,0.0145,0.2003,0.3821,1,0.5094,1,1,1,0.1496,0.5094,0.3204,1,1,1,1,1,0.115620852,0.763544381,0.000863487,1,1,1,1,1,0.0305652,0.802785814,0,1,1,1,1,1,0.255804598,0.741935492,0.788303528,0.788449334,0.78856383,1,1,1 -66,1,0.1444,1,1,1,1,1,1,1,1,0.1698,0.1444,0.168,1,0.2002,1,1,1,1,1,1,0.0265,0.2002,0.2194,1,0.5093,1,1,1,0.1903,0.5093,0.1469,1,1,1,1,1,0.111024849,0.681785107,0.002296204,1,1,1,1,1,0.054737903,0.697857201,0,1,1,1,1,1,0.229029477,0.62893939,0.783893185,0.783795219,0.784131206,1,1,1 -67,1,0.1443,1,1,1,1,1,1,1,1,0.1601,0.1443,0.0586,1,0.2001,1,1,1,1,1,1,0.0522,0.2001,0.0915,1,0.5091,1,1,1,0.2388,0.5091,0.0512,1,1,1,1,1,0.150710434,0.431306392,0.013319594,1,1,1,1,1,0.093738839,0.447823852,0,1,1,1,1,1,0.428741276,0.354201168,0.762928951,0.762851703,0.763297872,1,1,1 -68,1,0.1441,1,1,1,1,1,1,1,1,0.0452,0.1441,0,1,0.2,1,1,1,1,1,1,0.0607,0.2,0,1,0.5089,1,1,1,0.0047,0.5089,0,1,1,1,1,1,0.022967177,0,0.008663013,1,1,1,1,1,0.056786023,0,0.129303664,1,1,1,1,1,0.002968501,0,0.734473175,0.734503914,0.734485816,1,1,1 -69,1,0.144,1,1,1,1,1,1,1,1,0.0247,0.144,0,1,0.1999,1,1,1,1,1,1,0.0491,0.1999,0,1,0.5088,1,1,1,0.0089,0.5088,0,1,1,1,1,1,0.01622523,0,0.041881327,1,1,1,1,1,0.046015333,0,0.190009683,1,1,1,1,1,0.001798895,0,0.727706622,0.727734292,0.727836879,1,1,1 -70,1,0.1439,1,1,1,1,1,1,1,1,0.1295,0.1439,0,1,0.1998,1,1,1,1,1,1,0.1059,0.1998,0,1,0.5086,1,1,1,0.1427,0.5086,0,1,1,1,1,1,0.151130855,0,0.105958581,1,1,1,1,1,0.12655279,0,0.016958378,1,1,1,1,1,0.25828594,0,0.694417593,0.694520838,0.694592199,1,1,1 -71,1,0.1437,1,1,1,1,1,1,1,1,0.0856,0.1437,0,1,0.1997,1,1,1,1,1,1,0.0402,0.1997,0,1,0.5084,1,1,1,0.1061,0.5084,0,1,1,1,1,1,0.105697438,0,0.115842223,1,1,1,1,1,0.056476753,0,0.019089006,1,1,1,1,1,0.239348143,0,0.626147898,0.626189973,0.626329787,1,1,1 -72,1,0.1436,1,1,1,1,1,1,1,1,0.1058,0.1436,0,1,0.1996,1,1,1,1,1,1,0.0376,0.1996,0,1,0.5083,1,1,1,0.105,0.5083,0,1,1,1,1,1,0.157893077,0,0.062783882,1,1,1,1,1,0.049083069,0,0.008295288,1,1,1,1,1,0.210482791,0,0.558965684,0.558916861,0.558953901,1,1,1 -73,1,0.1435,1,1,1,1,1,1,1,1,0.0894,0.1435,0,1,0.1995,1,1,1,1,1,1,0.061,0.1995,0,1,0.5081,1,1,1,0.1314,0.5081,0,1,1,1,1,1,0.121989697,0,0.071597286,1,1,1,1,1,0.05584668,0,0.022780106,1,1,1,1,1,0.229862139,0,0.510149831,0.510260207,0.510638298,1,1,1 -74,1,0.1433,1,1,1,1,1,1,1,1,0.069,0.1433,0,1,0.1994,1,1,1,1,1,1,0.0494,0.1994,0,1,0.5079,1,1,1,0.1381,0.5079,0,1,1,1,1,1,0.086370833,0,0.062523902,1,1,1,1,1,0.06284716,0,0.021092933,1,1,1,1,1,0.244065851,0,0.479881585,0.479796911,0.480053192,1,1,1 -75,1,0.1432,1,1,1,1,1,1,1,1,0.0421,0.1432,0,1,0.1993,1,1,1,1,1,1,0.0302,0.1993,0,1,0.5078,1,1,1,0.1364,0.5078,0,1,1,1,1,1,0.055079069,0,0.063589878,1,1,1,1,1,0.047760159,0,0.080997132,1,1,1,1,1,0.288150966,0,0.461938134,0.461815105,0.461879433,1,1,1 -76,1,0.1431,1,1,1,1,1,1,1,1,0.0573,0.1431,0,1,0.1992,1,1,1,1,1,1,0.0391,0.1992,0,1,0.5076,1,1,1,0.1338,0.5076,0,1,1,1,1,1,0.081626386,0,0.047314398,1,1,1,1,1,0.055187594,0,0.056404978,1,1,1,1,1,0.307797253,0,0.452936201,0.452929977,0.453014184,1,1,1 -77,1,0.1429,1,1,1,1,1,1,1,1,0.0501,0.1429,0,1,0.1992,1,1,1,1,1,1,0.0121,0.1992,0,1,0.5074,1,1,1,0.1155,0.5074,0,1,1,1,1,1,0.085024893,0,0.006884417,1,1,1,1,1,0.032553703,0,0.007557592,1,1,1,1,1,0.297397137,0,0.45837361,0.458430294,0.458333333,1,1,1 -78,1,0.1428,1,1,1,1,1,1,1,1,0.0417,0.1428,0,1,0.1991,1,1,1,1,1,1,0.0237,0.1991,0,1,0.5073,1,1,1,0.0896,0.5073,0.0071,1,1,1,1,1,0.067074545,0.005700601,0.000363545,1,1,1,1,1,0.038894404,0,0,1,1,1,1,1,0.225422978,0.147618383,0.483687772,0.483816374,0.483599291,1,1,1 -79,1,0.1427,1,1,1,1,1,1,1,1,0.0406,0.1427,0.078,1,0.199,1,1,1,1,1,1,0,0.199,0.0684,1,0.5071,1,1,1,0.0597,0.5071,0.0689,1,1,1,1,1,0.08501289,0.297614873,0.003372176,1,1,1,1,1,0.015080798,0.204011172,0,1,1,1,1,1,0.1872949,0.534214973,0.53383277,0.533742331,0.533687943,1,1,1 -80,1,0.1425,1,1,1,1,1,1,1,1,0.0059,0.1425,0.1981,1,0.1989,1,1,1,1,1,1,0,0.1989,0.2084,1,0.5069,1,1,1,0.0498,0.5069,0.21,1,1,1,1,1,0.009664503,0.51723206,0.050063659,1,1,1,1,1,0.003296833,0.489236116,0.088157862,1,1,1,1,1,0.117109321,0.7558195,0.596302562,0.596361329,0.596631206,1,1,1 -81,1,0.1424,1,1,1,1,1,1,1,1,0.0017,0.1424,0.3184,1,0.1988,1,1,1,1,1,1,0.0077,0.1988,0.3294,1,0.5068,1,1,1,0.0327,0.5068,0.3768,1,1,1,1,1,0.005428661,0.595659673,0.12678875,1,1,1,1,1,0.008800596,0.613827229,0.135825932,1,1,1,1,1,0.060178876,0.837224662,0.640889319,0.640786969,0.640957447,1,1,1 -82,1,0.1423,1,1,1,1,1,1,1,1,0.008,0.1423,0.4295,1,0.1987,1,1,1,1,1,1,0.0126,0.1987,0.4428,1,0.5066,1,1,1,0.069,0.5066,0.5119,1,1,1,1,1,0.011832649,0.703888178,0.240806937,1,1,1,1,1,0.01555074,0.675319314,0.163486391,1,1,1,1,1,0.13457121,0.857886374,0.672728371,0.672731119,0.67287234,1,1,1 -83,1,0.1421,1,1,1,1,1,1,1,1,0.0323,0.1421,0.5029,1,0.1986,1,1,1,1,1,1,0.0695,0.1986,0.5,1,0.5064,1,1,1,0.0836,0.5064,0.6086,1,1,1,1,1,0.039269716,0.782315075,0.332892299,1,1,1,1,1,0.071022578,0.715933025,0.263014138,1,1,1,1,1,0.08217147,0.87527132,0.700277912,0.700444256,0.70035461,1,1,1 -84,1,0.142,1,1,1,1,1,1,1,1,0.063,0.142,0.5136,1,0.1985,1,1,1,1,1,1,0.0924,0.1985,0.4964,1,0.5063,1,1,1,0.1778,0.5063,0.6377,1,1,1,1,1,0.070254892,0.815530896,0.517871022,1,1,1,1,1,0.084203228,0.695111036,0.201307342,1,1,1,1,1,0.174124837,0.86837852,0.717194297,0.71736831,0.717641844,1,1,1 -85,1,0.1419,1,1,1,1,1,1,1,1,0.0794,0.1419,0.5054,1,0.1984,1,1,1,1,1,1,0.0943,0.1984,0.4662,1,0.5061,1,1,1,0.2392,0.5061,0.6434,1,1,1,1,1,0.103844516,0.750395536,0.559189439,1,1,1,1,1,0.107111625,0.681191266,0.179222241,1,1,1,1,1,0.183451787,0.819962442,0.727042049,0.72709964,0.727393617,1,1,1 -86,1,0.1417,1,1,1,1,1,1,1,1,0.0706,0.1417,0.4654,1,0.1983,1,1,1,1,1,1,0.0868,0.1983,0.4529,1,0.5059,1,1,1,0.3126,0.5059,0.6483,1,1,1,1,1,0.079616793,0.68530792,0.523985148,1,1,1,1,1,0.086829864,0.624842763,0.173315704,1,1,1,1,1,0.232415155,0.772307813,0.738037699,0.738100275,0.738475177,1,1,1 -87,1,0.1416,1,1,1,1,1,1,1,1,0.0599,0.1416,0.3574,1,0.1982,1,1,1,1,1,1,0.0255,0.1982,0.3612,1,0.5058,1,1,1,0.3643,0.5058,0.5868,1,1,1,1,1,0.070643783,0.55040139,0.401850343,1,1,1,1,1,0.03636989,0.511814416,0.034700003,1,1,1,1,1,0.308341652,0.666417122,0.738158531,0.738311826,0.738475177,1,1,1 -88,1,0.1415,1,1,1,1,1,1,1,1,0.0968,0.1415,0.2901,1,0.1981,1,1,1,1,1,1,0.0176,0.1981,0.2925,1,0.5056,1,1,1,0.412,0.5056,0.4739,1,1,1,1,1,0.083732612,0.40975219,0.542008042,1,1,1,1,1,0.018455712,0.451868504,0.034059163,1,1,1,1,1,0.528127968,0.62745589,0.730364911,0.730484451,0.730496454,1,1,1 -89,1,0.1413,1,1,1,1,1,1,1,1,0.0743,0.1413,0.1878,1,0.198,1,1,1,1,1,1,0.0073,0.198,0.2143,1,0.5054,1,1,1,0.3848,0.5054,0.3168,1,1,1,1,1,0.087176055,0.293204784,0.532647371,1,1,1,1,1,0.007658152,0.378451794,0.125816226,1,1,1,1,1,0.453720301,0.677511513,0.722812953,0.722868627,0.722960993,1,1,1 -90,1,0.1412,1,1,1,1,1,1,1,1,0.0477,0.1412,0.0768,1,0.1979,1,1,1,1,1,1,0.0093,0.1979,0.1306,1,0.5053,1,1,1,0.4928,0.5053,0.1457,1,1,1,1,1,0.108627126,0.156168059,0.153137118,1,1,1,1,1,0.014025279,0.312374681,0.460122794,1,1,1,1,1,0.6170789,0.324155748,0.71477767,0.714829702,0.71498227,1,1,1 -91,1,0.1411,1,1,1,1,1,1,1,1,0.0963,0.1411,0.005,1,0.1978,1,1,1,1,1,1,0,0.1978,0.038,1,0.5051,1,1,1,0.3902,0.5051,0.049,1,1,1,1,1,0.12583442,0.008683183,0.104900651,1,1,1,1,1,0.000561502,0.174553752,0.238817543,1,1,1,1,1,0.429712802,0.062938877,0.701727888,0.70171356,0.70212766,1,1,1 -92,1,0.1409,1,1,1,1,1,1,1,1,0.0976,0.1409,0,1,0.1977,1,1,1,1,1,1,0,0.1977,0,1,0.5049,1,1,1,0.2855,0.5049,0,1,1,1,1,1,0.048357926,0,0.093298458,1,1,1,1,1,0.000253321,0,0.152920947,1,1,1,1,1,0.496359825,0,0.691880135,0.69198223,0.691932624,1,1,1 -93,1,0.1408,1,1,1,1,1,1,1,1,0.0271,0.1408,0,1,0.1976,1,1,1,1,1,1,0,0.1976,0,1,0.5048,1,1,1,0.3208,0.5048,0,1,1,1,1,1,0.010211765,0,0.141792655,1,1,1,1,1,0.001588382,0,0.052405503,1,1,1,1,1,0.484939694,0,0.69641131,0.696424794,0.696365248,1,1,1 -94,1,0.1407,1,1,1,1,1,1,1,1,0.0104,0.1407,0,1,0.1975,1,1,1,1,1,1,0,0.1975,0,1,0.5046,1,1,1,0.2125,0.5046,0,1,1,1,1,1,0.008361611,0,0.09790536,1,1,1,1,1,0.002117226,0,0.091463879,1,1,1,1,1,0.323495626,0,0.665236829,0.665326846,0.665336879,1,1,1 -95,1,0.1405,1,1,1,1,1,1,1,1,0.0152,0.1405,0,1,0.1974,1,1,1,1,1,1,0,0.1974,0,1,0.5044,1,1,1,0.1682,0.5044,0,1,1,1,1,1,0.011755069,0,0.032598659,1,1,1,1,1,0.00792115,0,0,1,1,1,1,1,0.311031073,0,0.607116965,0.607150413,0.607269504,1,1,1 -96,1,0.1404,1,1,1,1,1,1,1,1,0.0172,0.1404,0,1,0.1973,1,1,1,1,1,1,0,0.1973,0,1,0.5043,1,1,1,0.1147,0.5043,0,1,1,1,1,1,0.028959088,0,0.000126581,1,1,1,1,1,0.011633929,0,0,1,1,1,1,1,0.229129672,0,0.55038666,0.550454834,0.550531915,1,1,1 -97,1,0.3353,1,1,1,1,1,1,1,1,0.2342,0.3353,0,1,0.2783,1,1,1,1,1,1,0.3328,0.2783,0,1,0.5992,1,1,1,0.0464,0.5992,0,1,1,1,1,1,0.340543807,0,0.951961637,1,1,1,1,1,0.396313548,0,1,1,1,1,1,1,0.057745896,0,0.483929435,0.483816374,0.484042553,1,1,1 -98,1,0.3353,1,1,1,1,1,1,1,1,0.3291,0.3353,0,1,0.2783,1,1,1,1,1,1,0.3303,0.2783,0,1,0.5992,1,1,1,0.0914,0.5992,0,1,1,1,1,1,0.47736305,0,0.723744631,1,1,1,1,1,0.344732225,0,0.674463391,1,1,1,1,1,0.210174009,0,0.467254712,0.467315422,0.467198582,1,1,1 -99,1,0.3353,1,1,1,1,1,1,1,1,0.2905,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1811,0.2783,0,1,0.5992,1,1,1,0.1582,0.5992,0,1,1,1,1,1,0.471031487,0,0.453945518,1,1,1,1,1,0.159885496,0,0.496303141,1,1,1,1,1,0.332458019,0,0.461152731,0.461180453,0.46143617,1,1,1 -100,1,0.3353,1,1,1,1,1,1,1,1,0.2069,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1306,0.2783,0,1,0.5992,1,1,1,0.2336,0.5992,0,1,1,1,1,1,0.398436338,0,0.282089144,1,1,1,1,1,0.091254428,0,0.341608644,1,1,1,1,1,0.458970815,0,0.4610319,0.460968902,0.460992908,1,1,1 -101,1,0.3353,1,1,1,1,1,1,1,1,0.0684,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0311,0.2783,0,1,0.5992,1,1,1,0.2549,0.5992,0,1,1,1,1,1,0.180473939,0,0.185217351,1,1,1,1,1,0.020236973,0,0.244839817,1,1,1,1,1,0.531448722,0,0.475169164,0.475142797,0.475177305,1,1,1 -102,1,0.3353,1,1,1,1,1,1,1,1,0.0999,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0115,0.2783,0,1,0.5992,1,1,1,0.201,0.5992,0,1,1,1,1,1,0.206174016,0,0.17999509,1,1,1,1,1,0.006590917,0,0.162442416,1,1,1,1,1,0.458401471,0,0.51921218,0.519145335,0.519060284,1,1,1 -103,1,0.3353,1,1,1,1,1,1,1,1,0.073,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0632,0.2783,0,1,0.5992,1,1,1,0.1695,0.5992,0,1,1,1,1,1,0.15341562,0,0.067971632,1,1,1,1,1,0.037877314,0,0.120555505,1,1,1,1,1,0.364987403,0,0.599565007,0.599746139,0.599734043,1,1,1 -104,1,0.3353,1,1,1,1,1,1,1,1,0.0613,0.3353,0.0062,1,0.2783,1,1,1,1,1,1,0.0268,0.2783,0,1,0.5992,1,1,1,0.1387,0.5992,0.0255,1,1,1,1,1,0.118538402,0.014192468,0.091725685,1,1,1,1,1,0.012939813,0,0.042171728,1,1,1,1,1,0.266541362,0.186134338,0.637566457,0.637613709,0.63785461,1,1,1 -105,1,0.3353,1,1,1,1,1,1,1,1,0.0495,0.3353,0.2119,1,0.2783,1,1,1,1,1,1,0.0074,0.2783,0.1959,1,0.5992,1,1,1,0.0777,0.5992,0.2837,1,1,1,1,1,0.102821335,0.339985967,0.011115281,1,1,1,1,1,0.004708333,0.310952276,0,1,1,1,1,1,0.106331267,0.525537193,0.640103915,0.640152317,0.640070922,1,1,1 -106,1,0.3353,1,1,1,1,1,1,1,1,0.0178,0.3353,0.3608,1,0.2783,1,1,1,1,1,1,0.0016,0.2783,0.3224,1,0.5992,1,1,1,0.0498,0.5992,0.4763,1,1,1,1,1,0.04687928,0.518666685,0.00168068,1,1,1,1,1,0.001076122,0.499693483,0.040739004,1,1,1,1,1,0.101931214,0.698534489,0.638110198,0.63803681,0.638297872,1,1,1 -107,1,0.3353,1,1,1,1,1,1,1,1,0.0057,0.3353,0.4334,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4463,1,0.5992,1,1,1,0.0473,0.5992,0.6271,1,1,1,1,1,0.006887558,0.595648408,0.001408386,1,1,1,1,1,0.000328184,0.61341995,0.010822514,1,1,1,1,1,0.086632088,0.757857621,0.636901885,0.636979057,0.637411348,1,1,1 -108,1,0.3353,1,1,1,1,1,1,1,1,0.0008,0.3353,0.496,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4513,1,0.5992,1,1,1,0.0389,0.5992,0.695,1,1,1,1,1,0.000104528,0.705536485,0.002444054,1,1,1,1,1,0,0.633169591,0.021018326,1,1,1,1,1,0.079875037,0.754530132,0.63140406,0.631478739,0.631648936,1,1,1 -109,1,0.3353,1,1,1,1,1,1,1,1,0,0.3353,0.4844,1,0.2783,1,1,1,1,1,1,0.0391,0.2783,0.4641,1,0.5992,1,1,1,0.0446,0.5992,0.6414,1,1,1,1,1,0.002018983,0.70180279,7.22E-05,1,1,1,1,1,0.037956238,0.632471561,0.002988744,1,1,1,1,1,0.105751939,0.828321338,0.624154181,0.624074466,0.624556738,1,1,1 -110,1,0.3353,1,1,1,1,1,1,1,1,0.0121,0.3353,0.5786,1,0.2783,1,1,1,1,1,1,0.0153,0.2783,0.6105,1,0.5992,1,1,1,0.0419,0.5992,0.7025,1,1,1,1,1,0.007209733,0.767341495,0.003048972,1,1,1,1,1,0.009417345,0.881190777,0,1,1,1,1,1,0.092641033,0.958709717,0.61859594,0.618574149,0.618794326,1,1,1 -111,1,0.3353,1,1,1,1,1,1,1,1,0.0395,0.3353,0.4078,1,0.2783,1,1,1,1,1,1,0.0327,0.2783,0.4214,1,0.5992,1,1,1,0.0602,0.5992,0.5202,1,1,1,1,1,0.052469421,0.575399458,0.01162939,1,1,1,1,1,0.034468301,0.621795774,0,1,1,1,1,1,0.103165664,0.839419246,0.611648139,0.611804527,0.611702128,1,1,1 -112,1,0.3353,1,1,1,1,1,1,1,1,0.036,0.3353,0.3444,1,0.2783,1,1,1,1,1,1,0.0099,0.2783,0.3846,1,0.5992,1,1,1,0.1176,0.5992,0.4177,1,1,1,1,1,0.053068925,0.546132028,0.089984819,1,1,1,1,1,0.022223983,0.65506351,0,1,1,1,1,1,0.173716277,0.687713146,0.608264862,0.608208166,0.608156028,1,1,1 -113,1,0.3353,1,1,1,1,1,1,1,1,0.0415,0.3353,0.2249,1,0.2783,1,1,1,1,1,1,0.0157,0.2783,0.2885,1,0.5992,1,1,1,0.1981,0.5992,0.2377,1,1,1,1,1,0.108836338,0.444707453,0.091163978,1,1,1,1,1,0.027305046,0.528101385,0,1,1,1,1,1,0.252788484,0.41919291,0.621072982,0.621112757,0.621010638,1,1,1 -114,1,0.3353,1,1,1,1,1,1,1,1,0.0367,0.3353,0.0122,1,0.2783,1,1,1,1,1,1,0.0208,0.2783,0.0337,1,0.5992,1,1,1,0.3519,0.5992,0,1,1,1,1,1,0.08615572,0.038480602,0.180393949,1,1,1,1,1,0.035222165,0.136732534,0,1,1,1,1,1,0.463289082,0,0.6689826,0.668923207,0.668882979,1,1,1 -115,1,0.3353,1,1,1,1,1,1,1,1,0.0721,0.3353,0,1,0.2783,1,1,1,1,1,1,0.061,0.2783,0,1,0.5992,1,1,1,0.3697,0.5992,0,1,1,1,1,1,0.135538846,0,0.139605165,1,1,1,1,1,0.088056445,0,0,1,1,1,1,1,0.527615786,0,0.687167714,0.687116564,0.6875,1,1,1 -116,1,0.3353,1,1,1,1,1,1,1,1,0.0678,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0396,0.2783,0,1,0.5992,1,1,1,0.3254,0.5992,0,1,1,1,1,1,0.043199215,0,0.53976059,1,1,1,1,1,0.088940099,0,0.039158117,1,1,1,1,1,0.453964204,0,0.669768004,0.66976941,0.669769504,1,1,1 -117,1,0.3353,1,1,1,1,1,1,1,1,0.0755,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0236,0.2783,0,1,0.5992,1,1,1,0.2045,0.5992,0,1,1,1,1,1,0.042970236,0,0.480655342,1,1,1,1,1,0.059755467,0,0.19911781,1,1,1,1,1,0.269749194,0,0.643728855,0.643748678,0.643617021,1,1,1 -118,1,0.3353,1,1,1,1,1,1,1,1,0.0509,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0371,0.2783,0,1,0.5992,1,1,1,0.132,0.5992,0,1,1,1,1,1,0.03064315,0,0.166967809,1,1,1,1,1,0.054738641,0,0.22547619,1,1,1,1,1,0.177533671,0,0.601558724,0.601650095,0.601507092,1,1,1 -119,1,0.3353,1,1,1,1,1,1,1,1,0.0503,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0521,0.2783,0,1,0.5992,1,1,1,0.1442,0.5992,0,1,1,1,1,1,0.049356826,0,0.098843873,1,1,1,1,1,0.097993136,0,0.278927267,1,1,1,1,1,0.170501396,0,0.546399227,0.546435371,0.546542553,1,1,1 -120,1,0.3353,1,1,1,1,1,1,1,1,0.0611,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0031,0.2783,0,1,0.5992,1,1,1,0.156,0.5992,0,1,1,1,1,1,0.051604521,0,0.161583245,1,1,1,1,1,0.029563505,0,0.389920473,1,1,1,1,1,0.147218838,0,0.497583374,0.497567167,0.497783688,1,1,1 -121,1,0.3353,1,1,1,1,1,1,1,1,0.0394,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0468,0.2783,0,1,0.5992,1,1,1,0.171,0.5992,0,1,1,1,1,1,0.029222723,0,0.162525415,1,1,1,1,1,0.075474158,0,0.313165724,1,1,1,1,1,0.194382474,0,0.464354761,0.464353713,0.464095745,1,1,1 -122,1,0.3353,1,1,1,1,1,1,1,1,0.0533,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1899,0.2783,0,1,0.5992,1,1,1,0.1461,0.5992,0,1,1,1,1,1,0.047840923,0,0.095295847,1,1,1,1,1,0.153759107,0,0.067757592,1,1,1,1,1,0.157280669,0,0.446592557,0.446583457,0.446808511,1,1,1 -123,1,0.3353,1,1,1,1,1,1,1,1,0.0469,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0194,0.2783,0,1,0.5992,1,1,1,0.095,0.5992,0,1,1,1,1,1,0.065937504,0,0.011147552,1,1,1,1,1,0.051554609,0,0.096064925,1,1,1,1,1,0.103672326,0,0.437953117,0.437909879,0.437943262,1,1,1 -124,1,0.3353,1,1,1,1,1,1,1,1,0.0487,0.3353,0,1,0.2783,1,1,1,1,1,1,0,0.2783,0,1,0.5992,1,1,1,0.0664,0.5992,0,1,1,1,1,1,0.070105247,0,0.006252729,1,1,1,1,1,0.002158957,0,0,1,1,1,1,1,0.06112304,0,0.437046883,0.437063677,0.437056738,1,1,1 -125,1,0.3353,1,1,1,1,1,1,1,1,0.0454,0.3353,0,1,0.2783,1,1,1,1,1,1,0,0.2783,0,1,0.5992,1,1,1,0.0515,0.5992,0,1,1,1,1,1,0.045880351,0,0,1,1,1,1,1,0.000149522,0,0,1,1,1,1,1,0.040833768,0,0.44919043,0.449122065,0.449468085,1,1,1 -126,1,0.3353,1,1,1,1,1,1,1,1,0.0353,0.3353,0,1,0.2783,1,1,1,1,1,1,0,0.2783,0,1,0.5992,1,1,1,0.0399,0.5992,0,1,1,1,1,1,0.017604046,0,0,1,1,1,1,1,0.000263594,0,0,1,1,1,1,1,0.059951149,0,0.49359594,0.493759255,0.493794326,1,1,1 -127,1,0.3353,1,1,1,1,1,1,1,1,0.0146,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0149,0.2783,0,1,0.5992,1,1,1,0.0214,0.5992,0,1,1,1,1,1,0.00301992,0,0.006769722,1,1,1,1,1,0.008667981,0,0.012625917,1,1,1,1,1,0.042005826,0,0.573102948,0.573090755,0.573138298,1,1,1 -128,1,0.3353,1,1,1,1,1,1,1,1,0.0174,0.3353,0,1,0.2783,1,1,1,1,1,1,0,0.2783,0,1,0.5992,1,1,1,0.0106,0.5992,0,1,1,1,1,1,0.00625662,0,0.014876311,1,1,1,1,1,0.005263689,0,0.080059424,1,1,1,1,1,0.03722835,0.013479548,0.615575157,0.615612439,0.615691489,1,1,1 -129,1,0.3353,1,1,1,1,1,1,1,1,0.0093,0.3353,0.142,1,0.2783,1,1,1,1,1,1,0,0.2783,0.2009,1,0.5992,1,1,1,0.0042,0.5992,0.202,1,1,1,1,1,0.003951265,0.349179506,0.015524953,1,1,1,1,1,0.000401821,0.291373551,0.061198957,1,1,1,1,1,0.022719318,0.434636295,0.623972934,0.623862915,0.624113475,1,1,1 -130,1,0.3353,1,1,1,1,1,1,1,1,0.0033,0.3353,0.2896,1,0.2783,1,1,1,1,1,1,0,0.2783,0.3639,1,0.5992,1,1,1,0.0012,0.5992,0.3615,1,1,1,1,1,0.004615302,0.514957786,0.010969135,1,1,1,1,1,0.003379712,0.534627438,0,1,1,1,1,1,0.007916736,0.58468765,0.625966651,0.625978422,0.626329787,1,1,1 -131,1,0.3353,1,1,1,1,1,1,1,1,0.0006,0.3353,0.3832,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4752,1,0.5992,1,1,1,0.001,0.5992,0.4506,1,1,1,1,1,0.005063584,0.558726788,0.017523618,1,1,1,1,1,0.003152695,0.647850692,0,1,1,1,1,1,0.001069679,0.608341456,0.62777912,0.627670827,0.628102837,1,1,1 -132,1,0.3353,1,1,1,1,1,1,1,1,0.0013,0.3353,0.4001,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4461,1,0.5992,1,1,1,0,0.5992,0.4365,1,1,1,1,1,0.004127369,0.582769394,0.025185499,1,1,1,1,1,0.003216317,0.642627358,0,1,1,1,1,1,0.000370599,0.611747623,0.625,0.624920669,0.625,1,1,1 -133,1,0.3353,1,1,1,1,1,1,1,1,0,0.3353,0.3979,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4694,1,0.5992,1,1,1,0.0025,0.5992,0.4185,1,1,1,1,1,0.000329846,0.602562308,0.015069776,1,1,1,1,1,0.002190562,0.662625432,0.008151309,1,1,1,1,1,0.004105932,0.595377803,0.617568874,0.617727946,0.617907801,1,1,1 -134,1,0.3353,1,1,1,1,1,1,1,1,0.001,0.3353,0.3975,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4491,1,0.5992,1,1,1,0.008,0.5992,0.3787,1,1,1,1,1,0,0.633594096,0.013273727,1,1,1,1,1,0.001052633,0.672993779,0.101724088,1,1,1,1,1,0.022061357,0.557721913,0.614064766,0.614131585,0.61391844,1,1,1 -135,1,0.3353,1,1,1,1,1,1,1,1,0.002,0.3353,0.4351,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4923,1,0.5992,1,1,1,0.0235,0.5992,0.4175,1,1,1,1,1,2.31E-06,0.671257675,0.071118698,1,1,1,1,1,0.000637823,0.694713473,0.156142414,1,1,1,1,1,0.046326287,0.546066582,0.607116965,0.607150413,0.607269504,1,1,1 -136,1,0.3353,1,1,1,1,1,1,1,1,0.0013,0.3353,0.3602,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4357,1,0.5992,1,1,1,0.0588,0.5992,0.3264,1,1,1,1,1,0.002965278,0.59887594,0.156938747,1,1,1,1,1,0.000722208,0.595216334,0.201426715,1,1,1,1,1,0.066430353,0.508017361,0.604760754,0.604823355,0.605053192,1,1,1 -137,1,0.3353,1,1,1,1,1,1,1,1,0.0048,0.3353,0.2179,1,0.2783,1,1,1,1,1,1,0,0.2783,0.2689,1,0.5992,1,1,1,0.087,0.5992,0.1731,1,1,1,1,1,0.003663415,0.423196405,0.235061526,1,1,1,1,1,0.000460288,0.453348726,0.132251054,1,1,1,1,1,0.084686771,0.337374985,0.619623006,0.619631902,0.620124114,1,1,1 -138,1,0.3353,1,1,1,1,1,1,1,1,0.0028,0.3353,0.0012,1,0.2783,1,1,1,1,1,1,0.0074,0.2783,0.0291,1,0.5992,1,1,1,0.1081,0.5992,0,1,1,1,1,1,0.010761268,0.028205086,0.254560232,1,1,1,1,1,0.013701504,0.093099222,0.135036409,1,1,1,1,1,0.077363201,0,0.663907685,0.663845991,0.664007092,1,1,1 -139,1,0.3353,1,1,1,1,1,1,1,1,0.0037,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0422,0.2783,0,1,0.5992,1,1,1,0.1147,0.5992,0,1,1,1,1,1,0.046665151,0,0.242791414,1,1,1,1,1,0.072233729,0,0.298220694,1,1,1,1,1,0.106213242,0,0.679253262,0.67928919,0.679521277,1,1,1 -140,1,0.3353,1,1,1,1,1,1,1,1,0.0048,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0909,0.2783,0,1,0.5992,1,1,1,0.1005,0.5992,0,1,1,1,1,1,0.055832595,0,0.059668772,1,1,1,1,1,0.136343688,0,0.192917556,1,1,1,1,1,0.113991655,0,0.663303528,0.66342289,0.66356383,1,1,1 -141,1,0.3353,1,1,1,1,1,1,1,1,0.0225,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1208,0.2783,0,1,0.5992,1,1,1,0.0787,0.5992,0,1,1,1,1,1,0.075337775,0,0.047003094,1,1,1,1,1,0.177106515,0,0.439277738,1,1,1,1,1,0.097335458,0,0.636176897,0.636132854,0.636524823,1,1,1 -142,1,0.3353,1,1,1,1,1,1,1,1,0.0683,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1202,0.2783,0,1,0.5992,1,1,1,0.0675,0.5992,0,1,1,1,1,1,0.082746476,0,0.020546136,1,1,1,1,1,0.168459937,0,0.275989294,1,1,1,1,1,0.125470683,0,0.59382552,0.593822721,0.593971631,1,1,1 -143,1,0.3353,1,1,1,1,1,1,1,1,0.1146,0.3353,0,1,0.2783,1,1,1,1,1,1,0.157,0.2783,0,1,0.5992,1,1,1,0.044,0.5992,0,1,1,1,1,1,0.11460375,0,0.008724602,1,1,1,1,1,0.209471554,0,0.3150644,1,1,1,1,1,0.085176602,0,0.537941034,0.537973345,0.538120567,1,1,1 -144,1,0.3353,1,1,1,1,1,1,1,1,0.0572,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1428,0.2783,0,1,0.5992,1,1,1,0.0343,0.5992,0,1,1,1,1,1,0.048893597,0,0.028796984,1,1,1,1,1,0.157406271,0,0.28583324,1,1,1,1,1,0.054507189,0,0.487010633,0.486989634,0.48714539,1,1,1 -145,1,0.3353,1,1,1,1,1,1,1,1,0.0689,0.3353,0,1,0.2783,1,1,1,1,1,1,0.079,0.2783,0,1,0.5992,1,1,1,0.0523,0.5992,0,1,1,1,1,1,0.081243813,0,0.071472019,1,1,1,1,1,0.109008879,0,0.205130637,1,1,1,1,1,0.071306929,0,0.456077815,0.456103237,0.456117021,1,1,1 -146,1,0.3353,1,1,1,1,1,1,1,1,0.0757,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0466,0.2783,0,1,0.5992,1,1,1,0.0731,0.5992,0,1,1,1,1,1,0.078676045,0,0.132356674,1,1,1,1,1,0.083080128,0,0.280035615,1,1,1,1,1,0.112381756,0,0.439765587,0.439813835,0.439716312,1,1,1 -147,1,0.3353,1,1,1,1,1,1,1,1,0.0796,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0425,0.2783,0,1,0.5992,1,1,1,0.0643,0.5992,0,1,1,1,1,1,0.106914848,0,0.117482096,1,1,1,1,1,0.079231285,0,0.12364766,1,1,1,1,1,0.10742867,0,0.433482359,0.433467315,0.433510638,1,1,1 -148,1,0.3353,1,1,1,1,1,1,1,1,0.0756,0.3353,0,1,0.2783,1,1,1,1,1,1,0.04,0.2783,0,1,0.5992,1,1,1,0.0536,0.5992,0,1,1,1,1,1,0.084026337,0,0.143809155,1,1,1,1,1,0.075666659,0,0.096530899,1,1,1,1,1,0.098277256,0,0.436503142,0.436640575,0.436613475,1,1,1 -149,1,0.3353,1,1,1,1,1,1,1,1,0.0874,0.3353,0,1,0.2783,1,1,1,1,1,1,0.038,0.2783,0,1,0.5992,1,1,1,0.0417,0.5992,0,1,1,1,1,1,0.107747838,0,0.181571946,1,1,1,1,1,0.072163574,0,0.170542941,1,1,1,1,1,0.071277931,0,0.450519575,0.450602919,0.450797872,1,1,1 -150,1,0.3353,1,1,1,1,1,1,1,1,0.0652,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0076,0.2783,0,1,0.5992,1,1,1,0.0264,0.5992,0,1,1,1,1,1,0.08012899,0,0.148158878,1,1,1,1,1,0.022536812,0,0.160324097,1,1,1,1,1,0.040680472,0,0.497341711,0.497355617,0.497340426,1,1,1 -151,1,0.3353,1,1,1,1,1,1,1,1,0.0332,0.3353,0,1,0.2783,1,1,1,1,1,1,0,0.2783,0,1,0.5992,1,1,1,0.0182,0.5992,0,1,1,1,1,1,0.042060122,0,0.060637206,1,1,1,1,1,0.011356694,0,0.052404717,1,1,1,1,1,0.03396637,0,0.576667472,0.576687117,0.576684397,1,1,1 -152,1,0.3353,1,1,1,1,1,1,1,1,0.008,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0185,0.2783,0,1,0.5992,1,1,1,0.0106,0.5992,0,1,1,1,1,1,0.011661833,0,0.026185583,1,1,1,1,1,0.014108179,0,0.030558117,1,1,1,1,1,0.023133211,0,0.615333494,0.615400889,0.615691489,1,1,1 -153,1,0.3353,1,1,1,1,1,1,1,1,0.0002,0.3353,0.251,1,0.2783,1,1,1,1,1,1,0,0.2783,0.2135,1,0.5992,1,1,1,0.0287,0.5992,0.2287,1,1,1,1,1,0.004216762,0.421669364,0.011390129,1,1,1,1,1,0.001075404,0.366246313,0.046053402,1,1,1,1,1,0.042276233,0.52107513,0.620287579,0.620266554,0.620567376,1,1,1 -154,1,0.3353,1,1,1,1,1,1,1,1,0,0.3353,0.398,1,0.2783,1,1,1,1,1,1,0,0.2783,0.3957,1,0.5992,1,1,1,0.0187,0.5992,0.36,1,1,1,1,1,0.000107081,0.624025583,0.003211733,1,1,1,1,1,0.000291988,0.569521368,0,1,1,1,1,1,0.020247368,0.771772504,0.621193813,0.621324307,0.621453901,1,1,1 -155,1,0.3353,1,1,1,1,1,1,1,1,0,0.3353,0.5777,1,0.2783,1,1,1,1,1,1,0.0231,0.2783,0.4714,1,0.5992,1,1,1,0.0105,0.5992,0.6638,1,1,1,1,1,0,0.830872178,0,1,1,1,1,1,0.035424843,0.608862341,0,1,1,1,1,1,0.01060041,0.999690712,0.6199855,0.620055003,0.620124114,1,1,1 -156,1,0.3353,1,1,1,1,1,1,1,1,0,0.3353,0.5222,1,0.2783,1,1,1,1,1,1,0,0.2783,0.446,1,0.5992,1,1,1,0.006,0.5992,0.5803,1,1,1,1,1,0,0.712612987,0,1,1,1,1,1,0.002315169,0.535365284,0,1,1,1,1,1,0.004428415,0.885320664,0.616723055,0.616670193,0.616578014,1,1,1 -157,1,0.3353,1,1,1,1,1,1,1,1,0.0026,0.3353,0.4391,1,0.2783,1,1,1,1,1,1,0,0.2783,0.4033,1,0.5992,1,1,1,0.0027,0.5992,0.585,1,1,1,1,1,0.000138794,0.62785691,0,1,1,1,1,1,0.005570313,0.554500699,0,1,1,1,1,1,0.000169873,0.855731487,0.612977284,0.612862281,0.613031915,1,1,1 -158,1,0.3353,1,1,1,1,1,1,1,1,0.0162,0.3353,0.4041,1,0.2783,1,1,1,1,1,1,0.0075,0.2783,0.4023,1,0.5992,1,1,1,0.0064,0.5992,0.5582,1,1,1,1,1,0.012443317,0.572152019,0.003454699,1,1,1,1,1,0.017332878,0.555582404,0.024717279,1,1,1,1,1,0.000638945,0.805173159,0.612796037,0.612862281,0.613031915,1,1,1 -159,1,0.3353,1,1,1,1,1,1,1,1,0.0418,0.3353,0.3776,1,0.2783,1,1,1,1,1,1,0,0.2783,0.3253,1,0.5992,1,1,1,0.0056,0.5992,0.5298,1,1,1,1,1,0.007533296,0.520351827,0.084458515,1,1,1,1,1,0.007419934,0.458313495,0.068899736,1,1,1,1,1,0.002452825,0.724157333,0.608264862,0.608208166,0.608156028,1,1,1 -160,1,0.3353,1,1,1,1,1,1,1,1,0.0384,0.3353,0.2577,1,0.2783,1,1,1,1,1,1,0.0017,0.2783,0.2138,1,0.5992,1,1,1,0.0174,0.5992,0.3695,1,1,1,1,1,0.008783901,0.413797915,0.062754475,1,1,1,1,1,0.010369309,0.320449889,0.05394372,1,1,1,1,1,0.006953084,0.616675735,0.61037941,0.610535223,0.61037234,1,1,1 -161,1,0.3353,1,1,1,1,1,1,1,1,0.0812,0.3353,0.0836,1,0.2783,1,1,1,1,1,1,0.0403,0.2783,0.0846,1,0.5992,1,1,1,0.047,0.5992,0.2124,1,1,1,1,1,0.079519555,0.127957165,0.054840323,1,1,1,1,1,0.058607429,0.130032092,0.009626178,1,1,1,1,1,0.041584462,0.378108114,0.632370711,0.632536493,0.632535461,1,1,1 -162,1,0.3353,1,1,1,1,1,1,1,1,0.0687,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0755,0.2783,0,1,0.5992,1,1,1,0.1222,0.5992,0,1,1,1,1,1,0.095078185,0,0.080111712,1,1,1,1,1,0.087329604,0,0.038936131,1,1,1,1,1,0.145138115,0,0.673513775,0.673577322,0.673758865,1,1,1 -163,1,0.3353,1,1,1,1,1,1,1,1,0.0442,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0938,0.2783,0,1,0.5992,1,1,1,0.2036,0.5992,0,1,1,1,1,1,0.06459564,0,0.048527647,1,1,1,1,1,0.108412832,0,0,1,1,1,1,1,0.304443628,0,0.682274045,0.682250899,0.682624114,1,1,1 -164,1,0.3353,1,1,1,1,1,1,1,1,0.0257,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0371,0.2783,0,1,0.5992,1,1,1,0.2666,0.5992,0,1,1,1,1,1,0.023319216,0,0.000567935,1,1,1,1,1,0.059193447,0,0,1,1,1,1,1,0.515886605,0,0.665236829,0.665326846,0.665336879,1,1,1 -165,1,0.3353,1,1,1,1,1,1,1,1,0.0221,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1563,0.2783,0,1,0.5992,1,1,1,0.1433,0.5992,0,1,1,1,1,1,0.039155327,0,0,1,1,1,1,1,0.180636972,0,0.006618849,1,1,1,1,1,0.31086725,0,0.63877477,0.638671462,0.639184397,1,1,1 -166,1,0.3353,1,1,1,1,1,1,1,1,0.013,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1412,0.2783,0,1,0.5992,1,1,1,0.1562,0.5992,0,1,1,1,1,1,0.012497285,0,0.001954996,1,1,1,1,1,0.158648685,0,0.003782199,1,1,1,1,1,0.356954515,0,0.59618173,0.596149778,0.596187943,1,1,1 -167,1,0.3353,1,1,1,1,1,1,1,1,0.0373,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1121,0.2783,0,1,0.5992,1,1,1,0.2046,0.5992,0,1,1,1,1,1,0.043758962,0,0.030432951,1,1,1,1,1,0.131980807,0,0.036523037,1,1,1,1,1,0.426760942,0,0.539874335,0.539877301,0.540336879,1,1,1 -168,1,0.3353,1,1,1,1,1,1,1,1,0.0718,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1073,0.2783,0,1,0.5992,1,1,1,0.2062,0.5992,0,1,1,1,1,1,0.061800312,0,0.072916091,1,1,1,1,1,0.147166222,0,0.21237959,1,1,1,1,1,0.395702064,0,0.489729338,0.489739793,0.489804965,1,1,1 -169,1,0.3353,1,1,1,1,1,1,1,1,0.0873,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1343,0.2783,0,1,0.5992,1,1,1,0.2341,0.5992,0,1,1,1,1,1,0.068880677,0,0.066637524,1,1,1,1,1,0.185943991,0,0.194197387,1,1,1,1,1,0.399948031,0,0.455231996,0.455257034,0.455673759,1,1,1 -170,1,0.3353,1,1,1,1,1,1,1,1,0.1224,0.3353,0,1,0.2783,1,1,1,1,1,1,0.2056,0.2783,0,1,0.5992,1,1,1,0.2438,0.5992,0,1,1,1,1,1,0.107841097,0,0.026773676,1,1,1,1,1,0.290738761,0,0.059220687,1,1,1,1,1,0.395727009,0,0.435717738,0.435794373,0.43572695,1,1,1 -171,1,0.3353,1,1,1,1,1,1,1,1,0.1607,0.3353,0,1,0.2783,1,1,1,1,1,1,0.3046,0.2783,0,1,0.5992,1,1,1,0.2289,0.5992,0,1,1,1,1,1,0.15782921,0,0.032786746,1,1,1,1,1,0.385691464,0,0.07835184,1,1,1,1,1,0.310579389,0,0.425326245,0.42542839,0.425531915,1,1,1 -172,1,0.3353,1,1,1,1,1,1,1,1,0.1622,0.3353,0,1,0.2783,1,1,1,1,1,1,0.2478,0.2783,0,1,0.5992,1,1,1,0.158,0.5992,0,1,1,1,1,1,0.197893649,0,0.054544114,1,1,1,1,1,0.310194105,0,0.007161519,1,1,1,1,1,0.257609129,0,0.423634606,0.423735985,0.423758865,1,1,1 -173,1,0.3353,1,1,1,1,1,1,1,1,0.1664,0.3353,0,1,0.2783,1,1,1,1,1,1,0.2256,0.2783,0,1,0.5992,1,1,1,0.1621,0.5992,0,1,1,1,1,1,0.178165928,0,0.036942624,1,1,1,1,1,0.216431111,0,0,1,1,1,1,1,0.207180604,0,0.434630256,0.434736619,0.434840426,1,1,1 -174,1,0.3353,1,1,1,1,1,1,1,1,0.1754,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0788,0.2783,0,1,0.5992,1,1,1,0.1834,0.5992,0,1,1,1,1,1,0.149377078,0,0.067278497,1,1,1,1,1,0.106815361,0,0.037470419,1,1,1,1,1,0.228798643,0,0.475048333,0.474931246,0.475177305,1,1,1 -175,1,0.3353,1,1,1,1,1,1,1,1,0.1451,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0726,0.2783,0,1,0.5992,1,1,1,0.1712,0.5992,0,1,1,1,1,1,0.108588591,0,0.1455497,1,1,1,1,1,0.095053226,0,0.053612571,1,1,1,1,1,0.231774837,0,0.549722088,0.549820182,0.550088653,1,1,1 -176,1,0.3353,1,1,1,1,1,1,1,1,0.1264,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0824,0.2783,0,1,0.5992,1,1,1,0.1808,0.5992,0,1,1,1,1,1,0.122287504,0,0.162636712,1,1,1,1,1,0.113910697,0,0,1,1,1,1,1,0.23295176,0,0.594308845,0.594245822,0.594414894,1,1,1 -177,1,0.3353,1,1,1,1,1,1,1,1,0.1382,0.3353,0.1131,1,0.2783,1,1,1,1,1,1,0.0955,0.2783,0.1509,1,0.5992,1,1,1,0.1763,0.5992,0.1502,1,1,1,1,1,0.138602197,0.273250043,0.3493644,1,1,1,1,1,0.10015589,0.314969033,0.009180104,1,1,1,1,1,0.147349984,0.222592801,0.606875302,0.606727311,0.607269504,1,1,1 -178,1,0.3353,1,1,1,1,1,1,1,1,0.0699,0.3353,0.3099,1,0.2783,1,1,1,1,1,1,0.0936,0.2783,0.3546,1,0.5992,1,1,1,0.1801,0.5992,0.2967,1,1,1,1,1,0.083995506,0.55990386,0.288135141,1,1,1,1,1,0.103539191,0.597141385,0.00792932,1,1,1,1,1,0.160080031,0.441352129,0.610077332,0.610112122,0.609929078,1,1,1 -179,1,0.3353,1,1,1,1,1,1,1,1,0.0934,0.3353,0.4462,1,0.2783,1,1,1,1,1,1,0.3774,0.2783,0.5514,1,0.5992,1,1,1,0.1307,0.5992,0.432,1,1,1,1,1,0.106427036,0.712844014,0.124160439,1,1,1,1,1,0.299305052,0.822447777,0,1,1,1,1,1,0.11868111,0.557519674,0.610923151,0.610958325,0.611258865,1,1,1 -180,1,0.3353,1,1,1,1,1,1,1,1,0.1113,0.3353,0.4971,1,0.2783,1,1,1,1,1,1,0.3909,0.2783,0.5828,1,0.5992,1,1,1,0.1105,0.5992,0.4349,1,1,1,1,1,0.146284461,0.745839894,0.083927713,1,1,1,1,1,0.340600729,0.788909257,0.07988482,1,1,1,1,1,0.10592211,0.721094608,0.606271146,0.60630421,0.606382979,1,1,1 -181,1,0.3353,1,1,1,1,1,1,1,1,0.1494,0.3353,0.5491,1,0.2783,1,1,1,1,1,1,0.4286,0.2783,0.5721,1,0.5992,1,1,1,0.1267,0.5992,0.4613,1,1,1,1,1,0.227206588,0.795065403,0.120059073,1,1,1,1,1,0.361115009,0.798173189,0.304969668,1,1,1,1,1,0.173086584,0.709834695,0.596060899,0.595938227,0.596187943,1,1,1 -182,1,0.3353,1,1,1,1,1,1,1,1,0.2268,0.3353,0.5788,1,0.2783,1,1,1,1,1,1,0.2547,0.2783,0.5944,1,0.5992,1,1,1,0.1659,0.5992,0.4651,1,1,1,1,1,0.325680584,0.81992197,0.215272263,1,1,1,1,1,0.223857179,0.829602122,0.281709433,1,1,1,1,1,0.261818111,0.696449697,0.588750604,0.588745505,0.588652482,1,1,1 -183,1,0.3353,1,1,1,1,1,1,1,1,0.1818,0.3353,0.5935,1,0.2783,1,1,1,1,1,1,0.4355,0.2783,0.5804,1,0.5992,1,1,1,0.1349,0.5992,0.4731,1,1,1,1,1,0.357862145,0.852696896,0.297833979,1,1,1,1,1,0.398809969,0.793542385,0.31898874,1,1,1,1,1,0.257945806,0.723677814,0.578842436,0.578802623,0.578900709,1,1,1 -184,1,0.3353,1,1,1,1,1,1,1,1,0.204,0.3353,0.4606,1,0.2783,1,1,1,1,1,1,0.266,0.2783,0.5083,1,0.5992,1,1,1,0.0952,0.5992,0.368,1,1,1,1,1,0.316188395,0.782290101,0.313831151,1,1,1,1,1,0.283590913,0.765566111,0.347253174,1,1,1,1,1,0.15048115,0.647790313,0.573525858,0.573725407,0.574024823,1,1,1 -185,1,0.3353,1,1,1,1,1,1,1,1,0.169,0.3353,0.2861,1,0.2783,1,1,1,1,1,1,0.4383,0.2783,0.3311,1,0.5992,1,1,1,0.1087,0.5992,0.1997,1,1,1,1,1,0.236047566,0.577710569,0.164843708,1,1,1,1,1,0.414026558,0.572428346,0.326350272,1,1,1,1,1,0.198451817,0.454336852,0.583615273,0.583668289,0.583776596,1,1,1 -186,1,0.3353,1,1,1,1,1,1,1,1,0.1969,0.3353,0.04,1,0.2783,1,1,1,1,1,1,0.246,0.2783,0.0839,1,0.5992,1,1,1,0.1683,0.5992,0,1,1,1,1,1,0.219240755,0.181716263,0.234954879,1,1,1,1,1,0.259087026,0.26353401,0.994571567,1,1,1,1,1,0.338978112,0.016318373,0.623489609,0.623439814,0.623670213,1,1,1 -187,1,0.3353,1,1,1,1,1,1,1,1,0.1917,0.3353,0,1,0.2783,1,1,1,1,1,1,0.0964,0.2783,0,1,0.5992,1,1,1,0.1426,0.5992,0,1,1,1,1,1,0.144899592,0,0.460470438,1,1,1,1,1,0.147896081,0,1,1,1,1,1,1,0.272070825,0,0.641916385,0.641844722,0.641843972,1,1,1 -188,1,0.3353,1,1,1,1,1,1,1,1,0.2034,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1788,0.2783,0,1,0.5992,1,1,1,0.2315,0.5992,0,1,1,1,1,1,0.218267709,0,0.595855176,1,1,1,1,1,0.210983038,0,0.999340415,1,1,1,1,1,0.247287497,0,0.625966651,0.625978422,0.626329787,1,1,1 -189,1,0.3353,1,1,1,1,1,1,1,1,0.2599,0.3353,0,1,0.2783,1,1,1,1,1,1,0.2117,0.2783,0,1,0.5992,1,1,1,0.1944,0.5992,0,1,1,1,1,1,0.231125847,0,0.991824508,1,1,1,1,1,0.242717549,0,0.991057634,1,1,1,1,1,0.294774503,0,0.604881585,0.604823355,0.605053192,1,1,1 -190,1,0.3353,1,1,1,1,1,1,1,1,0.2623,0.3353,0,1,0.2783,1,1,1,1,1,1,0.2868,0.2783,0,1,0.5992,1,1,1,0.1141,0.5992,0,1,1,1,1,1,0.257896334,0,0.977468252,1,1,1,1,1,0.375778914,0,0.82260704,1,1,1,1,1,0.182252407,0,0.574734171,0.574783161,0.574911348,1,1,1 -191,1,0.3353,1,1,1,1,1,1,1,1,0.3366,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1927,0.2783,0,1,0.5992,1,1,1,0.1659,0.5992,0,1,1,1,1,1,0.315684408,0,0.876997232,1,1,1,1,1,0.238841474,0,0.364857614,1,1,1,1,1,0.261173576,0,0.532503625,0.532684578,0.532801418,1,1,1 -192,1,0.3353,1,1,1,1,1,1,1,1,0.275,0.3353,0,1,0.2783,1,1,1,1,1,1,0.1699,0.2783,0,1,0.5992,1,1,1,0.2065,0.5992,0,1,1,1,1,1,0.219144747,0,0.755017519,1,1,1,1,1,0.237392083,0,0.300655782,1,1,1,1,1,0.340680182,0,0.488641856,0.488682039,0.48891844,1,1,1 -193,1,0.3901,1,1,1,1,1,1,1,1,0.1119,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0099,0.3178,0,1,0.6624,1,1,1,0.4984,0.6624,0,1,1,1,1,1,0.120503485,0,0.109031886,1,1,1,1,1,0.036232617,0,0.03731833,1,1,1,1,1,0.832992256,0,0.519816336,0.519779987,0.519946809,1,1,1 -194,1,0.3901,1,1,1,1,1,1,1,1,0.0794,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0128,0.3178,0,1,0.6624,1,1,1,0.3099,0.6624,0,1,1,1,1,1,0.057855781,0,0.073038578,1,1,1,1,1,0.042845599,0,0.037343461,1,1,1,1,1,0.606036305,0,0.501268729,0.501163529,0.501329787,1,1,1 -195,1,0.3901,1,1,1,1,1,1,1,1,0.0495,0.3901,0,1,0.3178,1,1,1,1,1,1,0,0.3178,0,1,0.6624,1,1,1,0.2899,0.6624,0,1,1,1,1,1,0.053303592,0,0.043719381,1,1,1,1,1,0.014324972,0,0.037011258,1,1,1,1,1,0.531005204,0,0.489910585,0.489951343,0.489804965,1,1,1 -196,1,0.3901,1,1,1,1,1,1,1,1,0.0548,0.3901,0,1,0.3178,1,1,1,1,1,1,0.006,0.3178,0,1,0.6624,1,1,1,0.2222,0.6624,0,1,1,1,1,1,0.026825195,0,0.077305451,1,1,1,1,1,0.036265694,0,0.040064924,1,1,1,1,1,0.471726447,0,0.485500242,0.485508779,0.48537234,1,1,1 -197,1,0.3901,1,1,1,1,1,1,1,1,0.0331,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0342,0.3178,0,1,0.6624,1,1,1,0.1204,0.6624,0,1,1,1,1,1,0.012255549,0,0.077560157,1,1,1,1,1,0.060173765,0,0.078937434,1,1,1,1,1,0.274086297,0,0.489608507,0.489739793,0.489361702,1,1,1 -198,1,0.3901,1,1,1,1,1,1,1,1,0.0221,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0501,0.3178,0,1,0.6624,1,1,1,0.0692,0.6624,0,1,1,1,1,1,0.01008457,0,0.091319233,1,1,1,1,1,0.063513756,0,0.155076712,1,1,1,1,1,0.189517856,0,0.505437409,0.505606093,0.505762411,1,1,1 -199,1,0.3901,1,1,1,1,1,1,1,1,0.006,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0687,0.3178,0,1,0.6624,1,1,1,0.0688,0.6624,0,1,1,1,1,1,0.004177272,0,0.089516357,1,1,1,1,1,0.089355812,0,0.307229847,1,1,1,1,1,0.148454115,0,0.536732721,0.536704041,0.53679078,1,1,1 -200,1,0.3901,1,1,1,1,1,1,1,1,0.0002,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0216,0.3178,0,1,0.6624,1,1,1,0.0359,0.6624,0,1,1,1,1,1,0.000670298,0,0.15081726,1,1,1,1,1,0.039953135,0,0.434677243,1,1,1,1,1,0.070686765,0,0.574009183,0.573936958,0.574024823,1,1,1 -201,1,0.3901,1,1,1,1,1,1,1,1,0.0113,0.3901,0.0338,1,0.3178,1,1,1,1,1,1,0.0774,0.3178,0.0205,1,0.6624,1,1,1,0.0199,0.6624,0.0959,1,1,1,1,1,0.004628616,0.053709865,0.419818997,1,1,1,1,1,0.109133691,0.018420931,0.63019973,1,1,1,1,1,0.045996632,0.078395985,0.615514741,0.615612439,0.615691489,1,1,1 -202,1,0.3901,1,1,1,1,1,1,1,1,0.0389,0.3901,0.1381,1,0.3178,1,1,1,1,1,1,0.0679,0.3178,0.109,1,0.6624,1,1,1,0.0099,0.6624,0.2689,1,1,1,1,1,0.014147854,0.192283168,0.760859013,1,1,1,1,1,0.120777823,0.144316495,1,1,1,1,1,1,0.032252479,0.304617047,0.651703722,0.651576053,0.652039007,1,1,1 -203,1,0.3901,1,1,1,1,1,1,1,1,0.0663,0.3901,0.2102,1,0.3178,1,1,1,1,1,1,0.1044,0.3178,0.1812,1,0.6624,1,1,1,0.0005,0.6624,0.3327,1,1,1,1,1,0.026046477,0.303351104,0.987595797,1,1,1,1,1,0.186181381,0.250372738,1,1,1,1,1,1,0.013428211,0.385682464,0.6739971,0.674000423,0.674202128,1,1,1 -204,1,0.3901,1,1,1,1,1,1,1,1,0.1178,0.3901,0.2284,1,0.3178,1,1,1,1,1,1,0.1631,0.3178,0.211,1,0.6624,1,1,1,0.0001,0.6624,0.4238,1,1,1,1,1,0.034658346,0.341895819,0.995827317,1,1,1,1,1,0.265076429,0.288601548,1,1,1,1,1,1,0.008641397,0.480376244,0.683482359,0.683520203,0.683510638,1,1,1 -205,1,0.3901,1,1,1,1,1,1,1,1,0.211,0.3901,0.2429,1,0.3178,1,1,1,1,1,1,0.1642,0.3178,0.2366,1,0.6624,1,1,1,0.0004,0.6624,0.4288,1,1,1,1,1,0.057607554,0.354768723,1,1,1,1,1,1,0.312806368,0.341011763,1,1,1,1,1,1,0.010712845,0.51420486,0.683421943,0.683520203,0.683510638,1,1,1 -206,1,0.3901,1,1,1,1,1,1,1,1,0.2425,0.3901,0.2345,1,0.3178,1,1,1,1,1,1,0.1714,0.3178,0.243,1,0.6624,1,1,1,0.0062,0.6624,0.4197,1,1,1,1,1,0.067297198,0.399075508,1,1,1,1,1,1,0.278471023,0.351463229,1,1,1,1,1,1,0.027082564,0.57644248,0.674782504,0.674846626,0.675088653,1,1,1 -207,1,0.3901,1,1,1,1,1,1,1,1,0.3825,0.3901,0.196,1,0.3178,1,1,1,1,1,1,0.2593,0.3178,0.2089,1,0.6624,1,1,1,0.0067,0.6624,0.4012,1,1,1,1,1,0.107579127,0.358603001,1,1,1,1,1,1,0.363505065,0.30205816,1,1,1,1,1,1,0.024522964,0.57705462,0.663726438,0.66363444,0.664007092,1,1,1 -208,1,0.3901,1,1,1,1,1,1,1,1,0.4625,0.3901,0.1088,1,0.3178,1,1,1,1,1,1,0.2369,0.3178,0.1287,1,0.6624,1,1,1,0.009,0.6624,0.3214,1,1,1,1,1,0.174622506,0.226323158,1,1,1,1,1,1,0.372528017,0.172121823,1,1,1,1,1,1,0.032747258,0.471946716,0.659074432,0.658980326,0.659131206,1,1,1 -209,1,0.3901,1,1,1,1,1,1,1,1,0.461,0.3901,0.0095,1,0.3178,1,1,1,1,1,1,0.2483,0.3178,0.0039,1,0.6624,1,1,1,0.03,0.6624,0.1402,1,1,1,1,1,0.179446012,0.054913122,1,1,1,1,1,1,0.404273152,0.00736948,1,1,1,1,1,1,0.069884099,0.234559417,0.684267762,0.684154855,0.684397163,1,1,1 -210,1,0.3901,1,1,1,1,1,1,1,1,0.467,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1636,0.3178,0,1,0.6624,1,1,1,0.0663,0.6624,0,1,1,1,1,1,0.211576432,0,1,1,1,1,1,1,0.251190245,0,1,1,1,1,1,1,0.12557368,0,0.727464959,0.727522742,0.727836879,1,1,1 -211,1,0.3901,1,1,1,1,1,1,1,1,0.4127,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1287,0.3178,0,1,0.6624,1,1,1,0.0988,0.6624,0,1,1,1,1,1,0.199717,0,1,1,1,1,1,1,0.21637997,0,1,1,1,1,1,1,0.168479249,0,0.719913001,0.719906918,0.719858156,1,1,1 -212,1,0.3901,1,1,1,1,1,1,1,1,0.3576,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0478,0.3178,0,1,0.6624,1,1,1,0.1317,0.6624,0,1,1,1,1,1,0.184474587,0,1,1,1,1,1,1,0.114194989,0,1,1,1,1,1,1,0.229773998,0,0.69502175,0.694943939,0.695035461,1,1,1 -213,1,0.3901,1,1,1,1,1,1,1,1,0.3696,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0305,0.3178,0,1,0.6624,1,1,1,0.2168,0.6624,0,1,1,1,1,1,0.152843535,0,1,1,1,1,1,1,0.113586158,0,1,1,1,1,1,1,0.363334149,0,0.669345094,0.669346308,0.669326241,1,1,1 -214,1,0.3901,1,1,1,1,1,1,1,1,0.3535,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0737,0.3178,0,1,0.6624,1,1,1,0.2153,0.6624,0,1,1,1,1,1,0.184802026,0,1,1,1,1,1,1,0.171696171,0,1,1,1,1,1,1,0.443449885,0,0.636116481,0.636132854,0.63608156,1,1,1 -215,1,0.3901,1,1,1,1,1,1,1,1,0.2283,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0515,0.3178,0,1,0.6624,1,1,1,0.2561,0.6624,0,1,1,1,1,1,0.067875408,0,1,1,1,1,1,1,0.133330569,0,1,1,1,1,1,1,0.476634681,0,0.595275495,0.595303575,0.595301418,1,1,1 -216,1,0.3901,1,1,1,1,1,1,1,1,0.3722,0.3901,0,1,0.3178,1,1,1,1,1,1,0.143,0.3178,0,1,0.6624,1,1,1,0.2426,0.6624,0,1,1,1,1,1,0.189117149,0,1,1,1,1,1,1,0.269549131,0,1,1,1,1,1,1,0.365168929,0,0.555280329,0.555320499,0.555407801,1,1,1 -217,1,0.3901,1,1,1,1,1,1,1,1,0.4256,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1096,0.3178,0,1,0.6624,1,1,1,0.29,0.6624,0,1,1,1,1,1,0.160570681,0,1,1,1,1,1,1,0.252668351,0,1,1,1,1,1,1,0.431885868,0,0.524105848,0.524011001,0.524379433,1,1,1 -218,1,0.3901,1,1,1,1,1,1,1,1,0.2923,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1097,0.3178,0,1,0.6624,1,1,1,0.2866,0.6624,0,1,1,1,1,1,0.109217495,0,1,1,1,1,1,1,0.23330684,0,1,1,1,1,1,1,0.45360738,0,0.506887385,0.506875397,0.507092199,1,1,1 -219,1,0.3901,1,1,1,1,1,1,1,1,0.1925,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1475,0.3178,0,1,0.6624,1,1,1,0.3085,0.6624,0,1,1,1,1,1,0.106418639,0,1,1,1,1,1,1,0.256683856,0,1,1,1,1,1,1,0.496107429,0,0.49861044,0.498624921,0.498670213,1,1,1 -220,1,0.3901,1,1,1,1,1,1,1,1,0.209,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1033,0.3178,0,1,0.6624,1,1,1,0.1829,0.6624,0,1,1,1,1,1,0.104868852,0,1,1,1,1,1,1,0.22366941,0,1,1,1,1,1,1,0.349143177,0,0.4949855,0.495028559,0.495124114,1,1,1 -221,1,0.3901,1,1,1,1,1,1,1,1,0.2068,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0775,0.3178,0,1,0.6624,1,1,1,0.1996,0.6624,0,1,1,1,1,1,0.107377291,0,1,1,1,1,1,1,0.177673981,0,1,1,1,1,1,1,0.314562023,0,0.498247946,0.498201819,0.49822695,1,1,1 -222,1,0.3901,1,1,1,1,1,1,1,1,0.2067,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0869,0.3178,0,1,0.6624,1,1,1,0.2681,0.6624,0,1,1,1,1,1,0.115992263,0,1,1,1,1,1,1,0.193624631,0,1,1,1,1,1,1,0.419279188,0,0.511841469,0.511741062,0.511968085,1,1,1 -223,1,0.3901,1,1,1,1,1,1,1,1,0.1446,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1155,0.3178,0,1,0.6624,1,1,1,0.2711,0.6624,0,1,1,1,1,1,0.077996135,0,0.964708924,1,1,1,1,1,0.223193497,0,0.981933296,1,1,1,1,1,0.457887143,0,0.535947318,0.535857838,0.535904255,1,1,1 -224,1,0.3901,1,1,1,1,1,1,1,1,0.1159,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1327,0.3178,0,1,0.6624,1,1,1,0.2358,0.6624,0,1,1,1,1,1,0.064411894,0,0.859868348,1,1,1,1,1,0.196382344,0,0.693728566,1,1,1,1,1,0.423730552,0,0.56222813,0.562301671,0.5625,1,1,1 -225,1,0.3901,1,1,1,1,1,1,1,1,0.1664,0.3901,0.2175,1,0.3178,1,1,1,1,1,1,0.1563,0.3178,0.2258,1,0.6624,1,1,1,0.2464,0.6624,0.1997,1,1,1,1,1,0.098334894,0.404655278,1,1,1,1,1,1,0.263617486,0.401312143,0.990814686,1,1,1,1,1,0.459070087,0.440780342,0.597087965,0.596995981,0.597074468,1,1,1 -226,1,0.3901,1,1,1,1,1,1,1,1,0.1006,0.3901,0.4081,1,0.3178,1,1,1,1,1,1,0.0155,0.3178,0.4428,1,0.6624,1,1,1,0.074,0.6624,0.4197,1,1,1,1,1,0.050663918,0.679540217,0.956516743,1,1,1,1,1,0.062423609,0.68576932,0.840303779,1,1,1,1,1,0.139345616,0.720973849,0.61859594,0.618574149,0.618794326,1,1,1 -227,1,0.3901,1,1,1,1,1,1,1,1,0.0487,0.3901,0.5613,1,0.3178,1,1,1,1,1,1,0,0.3178,0.5538,1,0.6624,1,1,1,0.0244,0.6624,0.5556,1,1,1,1,1,0.009933624,0.833085418,0.73586607,1,1,1,1,1,0.004825974,0.769854367,0.615973592,1,1,1,1,1,0.047255825,0.860327959,0.627054132,0.627036175,0.627216312,1,1,1 -228,1,0.3901,1,1,1,1,1,1,1,1,0.0376,0.3901,0.5322,1,0.3178,1,1,1,1,1,1,0.0065,0.3178,0.6097,1,0.6624,1,1,1,0.0085,0.6624,0.6247,1,1,1,1,1,0.009950076,0.780405462,0.693450689,1,1,1,1,1,0.01372513,0.854087532,0.560471773,1,1,1,1,1,0.025679257,0.950450242,0.626933301,0.626824625,0.62677305,1,1,1 -229,1,0.3901,1,1,1,1,1,1,1,1,0.0262,0.3901,0.5679,1,0.3178,1,1,1,1,1,1,0.0269,0.3178,0.6059,1,0.6624,1,1,1,0.008,0.6624,0.5837,1,1,1,1,1,0.004341427,0.86239183,0.582497954,1,1,1,1,1,0.031877942,0.823680341,0.259051323,1,1,1,1,1,0.029347412,0.900006175,0.62318753,0.623228263,0.62322695,1,1,1 -230,1,0.3901,1,1,1,1,1,1,1,1,0.0174,0.3901,0.5247,1,0.3178,1,1,1,1,1,1,0.0101,0.3178,0.5139,1,0.6624,1,1,1,0.0026,0.6624,0.5606,1,1,1,1,1,0.002885568,0.785116851,0.586721659,1,1,1,1,1,0.01491439,0.66516012,0.155594766,1,1,1,1,1,0.015595263,0.772518218,0.618475109,0.618574149,0.618351064,1,1,1 -231,1,0.3901,1,1,1,1,1,1,1,1,0.004,0.3901,0.4229,1,0.3178,1,1,1,1,1,1,0,0.3178,0.4232,1,0.6624,1,1,1,0.0138,0.6624,0.4619,1,1,1,1,1,0.002349213,0.637138128,0.539751291,1,1,1,1,1,0.00301314,0.593340457,0.220113367,1,1,1,1,1,0.033706091,0.706330597,0.616602223,0.616670193,0.616578014,1,1,1 -232,1,0.3901,1,1,1,1,1,1,1,1,0.0203,0.3901,0.3114,1,0.3178,1,1,1,1,1,1,0.0687,0.3178,0.363,1,0.6624,1,1,1,0.0296,0.6624,0.3161,1,1,1,1,1,0.025419714,0.509942234,0.364952117,1,1,1,1,1,0.071307533,0.568504334,0.21019949,1,1,1,1,1,0.067622408,0.520428538,0.617689705,0.617727946,0.617907801,1,1,1 -233,1,0.3901,1,1,1,1,1,1,1,1,0.0341,0.3901,0.109,1,0.3178,1,1,1,1,1,1,0.0981,0.3178,0.1806,1,0.6624,1,1,1,0.0849,0.6624,0.1138,1,1,1,1,1,0.058809057,0.282011777,0.308240444,1,1,1,1,1,0.104445308,0.306727648,0.153333008,1,1,1,1,1,0.17168577,0.25320223,0.646507975,0.646498837,0.646719858,1,1,1 -234,1,0.3901,1,1,1,1,1,1,1,1,0.0718,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1428,0.3178,0,1,0.6624,1,1,1,0.2129,0.6624,0,1,1,1,1,1,0.140464246,0,0.24397713,1,1,1,1,1,0.178153262,0,0.130465731,1,1,1,1,1,0.429364324,0,0.689523925,0.689655172,0.689716312,1,1,1 -235,1,0.3901,1,1,1,1,1,1,1,1,0.1569,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1886,0.3178,0,1,0.6624,1,1,1,0.3401,0.6624,0,1,1,1,1,1,0.338828415,0,0.160066932,1,1,1,1,1,0.295357883,0,0.063504189,1,1,1,1,1,0.642948687,0,0.689765587,0.689655172,0.689716312,1,1,1 -236,1,0.3901,1,1,1,1,1,1,1,1,0.1861,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0455,0.3178,0,1,0.6624,1,1,1,0.3487,0.6624,0,1,1,1,1,1,0.403424114,0,0.206176162,1,1,1,1,1,0.114362463,0,0.125471741,1,1,1,1,1,0.678964555,0,0.677138714,0.677173683,0.677304965,1,1,1 -237,1,0.3901,1,1,1,1,1,1,1,1,0.1315,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1484,0.3178,0,1,0.6624,1,1,1,0.3144,0.6624,0,1,1,1,1,1,0.382502914,0,0.229102075,1,1,1,1,1,0.231769681,0,0.195113361,1,1,1,1,1,0.532498121,0,0.652307878,0.652422255,0.65248227,1,1,1 -238,1,0.3901,1,1,1,1,1,1,1,1,0.1463,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1426,0.3178,0,1,0.6624,1,1,1,0.386,0.6624,0,1,1,1,1,1,0.389041603,0,0.192775786,1,1,1,1,1,0.207796887,0,0.23948063,1,1,1,1,1,0.677794218,0,0.611466892,0.611592977,0.611702128,1,1,1 -239,1,0.3901,1,1,1,1,1,1,1,1,0.1285,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1579,0.3178,0,1,0.6624,1,1,1,0.3647,0.6624,0,1,1,1,1,1,0.3803505,0,0.183335111,1,1,1,1,1,0.258410692,0,0.296441138,1,1,1,1,1,0.691874802,0,0.565732238,0.565686482,0.565602837,1,1,1 -240,1,0.3901,1,1,1,1,1,1,1,1,0.1069,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1479,0.3178,0,1,0.6624,1,1,1,0.3353,0.6624,0,1,1,1,1,1,0.289933115,0,0.137859643,1,1,1,1,1,0.243095577,0,0.177257091,1,1,1,1,1,0.699401915,0,0.519393427,0.519356886,0.519503546,1,1,1 -241,1,0.3901,1,1,1,1,1,1,1,1,0.136,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1693,0.3178,0,1,0.6624,1,1,1,0.3501,0.6624,0,1,1,1,1,1,0.315427333,0,0.084138379,1,1,1,1,1,0.274803817,0,0.148058385,1,1,1,1,1,0.718370974,0,0.486104398,0.486143431,0.486258865,1,1,1 -242,1,0.3901,1,1,1,1,1,1,1,1,0.1734,0.3901,0,1,0.3178,1,1,1,1,1,1,0.3006,0.3178,0,1,0.6624,1,1,1,0.3708,0.6624,0,1,1,1,1,1,0.413454682,0,0.213552058,1,1,1,1,1,0.433208376,0,0.109275922,1,1,1,1,1,0.700574815,0,0.469127598,0.469007827,0.468971631,1,1,1 -243,1,0.3901,1,1,1,1,1,1,1,1,0.1678,0.3901,0,1,0.3178,1,1,1,1,1,1,0.225,0.3178,0,1,0.6624,1,1,1,0.4118,0.6624,0,1,1,1,1,1,0.379670739,0,0.323283702,1,1,1,1,1,0.332038134,0,0.164830625,1,1,1,1,1,0.762360513,0,0.462240213,0.462238206,0.462322695,1,1,1 -244,1,0.3901,1,1,1,1,1,1,1,1,0.1565,0.3901,0,1,0.3178,1,1,1,1,1,1,0.2714,0.3178,0,1,0.6624,1,1,1,0.4473,0.6624,0,1,1,1,1,1,0.372016937,0,0.204186902,1,1,1,1,1,0.389134824,0,0.16150026,1,1,1,1,1,0.870534658,0,0.462602707,0.462661307,0.462765957,1,1,1 -245,1,0.3901,1,1,1,1,1,1,1,1,0.2762,0.3901,0,1,0.3178,1,1,1,1,1,1,0.3333,0.3178,0,1,0.6624,1,1,1,0.3735,0.6624,0,1,1,1,1,1,0.533230722,0,0.269460559,1,1,1,1,1,0.501860023,0,0.388051033,1,1,1,1,1,0.829701543,0,0.476921218,0.476835202,0.476950355,1,1,1 -246,1,0.3901,1,1,1,1,1,1,1,1,0.2992,0.3901,0,1,0.3178,1,1,1,1,1,1,0.2885,0.3178,0,1,0.6624,1,1,1,0.2641,0.6624,0,1,1,1,1,1,0.559709728,0,0.451925099,1,1,1,1,1,0.384678572,0,0.629839301,1,1,1,1,1,0.694203913,0,0.52060174,0.52062619,0.520833333,1,1,1 -247,1,0.3901,1,1,1,1,1,1,1,1,0.2145,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1549,0.3178,0,1,0.6624,1,1,1,0.2381,0.6624,0,1,1,1,1,1,0.392397463,0,0.559710622,1,1,1,1,1,0.246748239,0,0.879858136,1,1,1,1,1,0.636787057,0,0.60022958,0.600169241,0.600620567,1,1,1 -248,1,0.3901,1,1,1,1,1,1,1,1,0.1484,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0467,0.3178,0,1,0.6624,1,1,1,0.3623,0.6624,0,1,1,1,1,1,0.246410802,0,0.492618084,1,1,1,1,1,0.088999912,0,0.755990088,1,1,1,1,1,0.785576642,0,0.644876752,0.644806431,0.644946809,1,1,1 -249,1,0.3901,1,1,1,1,1,1,1,1,0.1407,0.3901,0.109,1,0.3178,1,1,1,1,1,1,0.0434,0.3178,0.1325,1,0.6624,1,1,1,0.3712,0.6624,0.1791,1,1,1,1,1,0.206950858,0.241210476,0.387375861,1,1,1,1,1,0.105640069,0.158013523,0.616167545,1,1,1,1,1,0.778141201,0.290976077,0.654543258,0.654749313,0.654698582,1,1,1 -250,1,0.3901,1,1,1,1,1,1,1,1,0.1245,0.3901,0.3235,1,0.3178,1,1,1,1,1,1,0.1744,0.3178,0.3044,1,0.6624,1,1,1,0.2961,0.6624,0.347,1,1,1,1,1,0.196065307,0.465222418,0.370672822,1,1,1,1,1,0.298146397,0.286300719,0.798244238,1,1,1,1,1,0.645206273,0.564218819,0.659980667,0.660038079,0.660460993,1,1,1 -251,1,0.3901,1,1,1,1,1,1,1,1,0.096,0.3901,0.3563,1,0.3178,1,1,1,1,1,1,0.0759,0.3178,0.3022,1,0.6624,1,1,1,0.2881,0.6624,0.4265,1,1,1,1,1,0.145341292,0.506199479,0.520363033,1,1,1,1,1,0.163800865,0.416147053,0.622791171,1,1,1,1,1,0.589344859,0.639770865,0.665115998,0.665115295,0.665336879,1,1,1 -252,1,0.3901,1,1,1,1,1,1,1,1,0.1166,0.3901,0.3784,1,0.3178,1,1,1,1,1,1,0.04,0.3178,0.4041,1,0.6624,1,1,1,0.1706,0.6624,0.3306,1,1,1,1,1,0.101395622,0.566710174,0.6584903,1,1,1,1,1,0.116298989,0.398162782,0.375435352,1,1,1,1,1,0.39519158,0.500069618,0.664149348,0.664057542,0.664450355,1,1,1 -253,1,0.3901,1,1,1,1,1,1,1,1,0.1044,0.3901,0.3346,1,0.3178,1,1,1,1,1,1,0.0816,0.3178,0.2614,1,0.6624,1,1,1,0.1698,0.6624,0.3834,1,1,1,1,1,0.086076871,0.433936596,0.579901576,1,1,1,1,1,0.220251709,0.365732104,0.236882731,1,1,1,1,1,0.385340095,0.380476654,0.657805703,0.657711022,0.658244681,1,1,1 -254,1,0.3901,1,1,1,1,1,1,1,1,0.2326,0.3901,0.2609,1,0.3178,1,1,1,1,1,1,0.1738,0.3178,0.2753,1,0.6624,1,1,1,0.1955,0.6624,0.2391,1,1,1,1,1,0.191405714,0.379352331,0.621176779,1,1,1,1,1,0.398240268,0.328983128,0.509845316,1,1,1,1,1,0.443078369,0.370686889,0.653214113,0.653268458,0.653368794,1,1,1 -255,1,0.3901,1,1,1,1,1,1,1,1,0.1805,0.3901,0.2381,1,0.3178,1,1,1,1,1,1,0.119,0.3178,0.1934,1,0.6624,1,1,1,0.3019,0.6624,0.2144,1,1,1,1,1,0.160513535,0.35280031,0.898490191,1,1,1,1,1,0.356975317,0.275281847,1,1,1,1,1,1,0.535503388,0.306617081,0.646205897,0.646287286,0.646276596,1,1,1 -256,1,0.3901,1,1,1,1,1,1,1,1,0.1597,0.3901,0.1307,1,0.3178,1,1,1,1,1,1,0.0979,0.3178,0.2166,1,0.6624,1,1,1,0.34,0.6624,0.0893,1,1,1,1,1,0.124228887,0.193886682,0.937764466,1,1,1,1,1,0.289872289,0.259687007,0.885226965,1,1,1,1,1,0.605705738,0.111397766,0.646507975,0.646498837,0.646719858,1,1,1 -257,1,0.3901,1,1,1,1,1,1,1,1,0.1483,0.3901,0.0266,1,0.3178,1,1,1,1,1,1,0.044,0.3178,0.0182,1,0.6624,1,1,1,0.4315,0.6624,0.0033,1,1,1,1,1,0.087120563,0.102469601,0.934247494,1,1,1,1,1,0.197817445,0.019180359,0.833556056,1,1,1,1,1,0.741962791,0,0.675990817,0.675904379,0.675975177,1,1,1 -258,1,0.3901,1,1,1,1,1,1,1,1,0.1784,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1346,0.3178,0,1,0.6624,1,1,1,0.5071,0.6624,0,1,1,1,1,1,0.147102803,0,0.984330416,1,1,1,1,1,0.392012477,0,0.997785449,1,1,1,1,1,0.791446865,0,0.718946351,0.718849164,0.719414894,1,1,1 -259,1,0.3901,1,1,1,1,1,1,1,1,0.2497,0.3901,0,1,0.3178,1,1,1,1,1,1,0.2903,0.3178,0,1,0.6624,1,1,1,0.3505,0.6624,0,1,1,1,1,1,0.212808251,0,1,1,1,1,1,1,0.556888342,0,1,1,1,1,1,1,0.657197833,0,0.712965201,0.712925746,0.71320922,1,1,1 -260,1,0.3901,1,1,1,1,1,1,1,1,0.1879,0.3901,0,1,0.3178,1,1,1,1,1,1,0.4373,0.3178,0,1,0.6624,1,1,1,0.473,0.6624,0,1,1,1,1,1,0.202867627,0,1,1,1,1,1,1,0.619576454,0,1,1,1,1,1,1,0.732649088,0,0.690369744,0.690289824,0.690602837,1,1,1 -261,1,0.3901,1,1,1,1,1,1,1,1,0.3712,0.3901,0,1,0.3178,1,1,1,1,1,1,0.6209,0.3178,0,1,0.6624,1,1,1,0.438,0.6624,0,1,1,1,1,1,0.416482389,0,1,1,1,1,1,1,0.701148629,0,1,1,1,1,1,1,0.644316316,0,0.657866119,0.657711022,0.658244681,1,1,1 -262,1,0.3901,1,1,1,1,1,1,1,1,0.3268,0.3901,0,1,0.3178,1,1,1,1,1,1,0.3763,0.3178,0,1,0.6624,1,1,1,0.4976,0.6624,0,1,1,1,1,1,0.427124679,0,1,1,1,1,1,1,0.519282937,0,1,1,1,1,1,1,0.766804516,0,0.609956501,0.609900571,0.609929078,1,1,1 -263,1,0.3901,1,1,1,1,1,1,1,1,0.4796,0.3901,0,1,0.3178,1,1,1,1,1,1,0.3135,0.3178,0,1,0.6624,1,1,1,0.5917,0.6624,0,1,1,1,1,1,0.539691865,0,1,1,1,1,1,1,0.442616165,0,1,1,1,1,1,1,0.82458663,0,0.549963751,0.549820182,0.550088653,1,1,1 -264,1,0.3901,1,1,1,1,1,1,1,1,0.4519,0.3901,0,1,0.3178,1,1,1,1,1,1,0.487,0.3178,0,1,0.6624,1,1,1,0.5097,0.6624,0,1,1,1,1,1,0.260195226,0,1,1,1,1,1,1,0.4927454,0,1,1,1,1,1,1,0.786526084,0,0.495589657,0.495663211,0.496010638,1,1,1 -265,1,0.3901,1,1,1,1,1,1,1,1,0.5536,0.3901,0,1,0.3178,1,1,1,1,1,1,0.64,0.3178,0,1,0.6624,1,1,1,0.4291,0.6624,0,1,1,1,1,1,0.216492117,0,1,1,1,1,1,1,0.625216007,0,1,1,1,1,1,1,0.639156282,0,0.4610319,0.460968902,0.460992908,1,1,1 -266,1,0.3901,1,1,1,1,1,1,1,1,0.5864,0.3901,0,1,0.3178,1,1,1,1,1,1,0.6807,0.3178,0,1,0.6624,1,1,1,0.3328,0.6624,0,1,1,1,1,1,0.214984268,0,1,1,1,1,1,1,0.661117792,0,1,1,1,1,1,1,0.516517222,0,0.439101015,0.439179183,0.438829787,1,1,1 -267,1,0.3901,1,1,1,1,1,1,1,1,0.6644,0.3901,0,1,0.3178,1,1,1,1,1,1,0.5887,0.3178,0,1,0.6624,1,1,1,0.3521,0.6624,0,1,1,1,1,1,0.352891088,0,1,1,1,1,1,1,0.618125498,0,1,1,1,1,1,1,0.549280345,0,0.428407443,0.428390099,0.428191489,1,1,1 -268,1,0.3901,1,1,1,1,1,1,1,1,0.7506,0.3901,0,1,0.3178,1,1,1,1,1,1,0.2931,0.3178,0,1,0.6624,1,1,1,0.2979,0.6624,0,1,1,1,1,1,0.442067266,0,1,1,1,1,1,1,0.368625552,0,1,1,1,1,1,1,0.507342696,0,0.425688739,0.425639941,0.425975177,1,1,1 -269,1,0.3901,1,1,1,1,1,1,1,1,0.5882,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1128,0.3178,0,1,0.6624,1,1,1,0.3221,0.6624,0,1,1,1,1,1,0.371072769,0,1,1,1,1,1,1,0.214122772,0,1,1,1,1,1,1,0.475048184,0,0.437771871,0.437909879,0.437943262,1,1,1 -270,1,0.3901,1,1,1,1,1,1,1,1,0.5954,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0639,0.3178,0,1,0.6624,1,1,1,0.3993,0.6624,0,1,1,1,1,1,0.399746835,0,1,1,1,1,1,1,0.143449828,0,1,1,1,1,1,1,0.624332368,0,0.478189947,0.478104506,0.478280142,1,1,1 -271,1,0.3901,1,1,1,1,1,1,1,1,0.3232,0.3901,0,1,0.3178,1,1,1,1,1,1,0.0905,0.3178,0,1,0.6624,1,1,1,0.393,0.6624,0,1,1,1,1,1,0.24813661,0,1,1,1,1,1,1,0.136806577,0,1,1,1,1,1,1,0.72884357,0,0.558482359,0.558493759,0.558953901,1,1,1 -272,1,0.3901,1,1,1,1,1,1,1,1,0.297,0.3901,0,1,0.3178,1,1,1,1,1,1,0.1307,0.3178,0,1,0.6624,1,1,1,0.2839,0.6624,0,1,1,1,1,1,0.282510638,0,1,1,1,1,1,1,0.165759057,0,1,1,1,1,1,1,0.579252362,0,0.602887869,0.602707849,0.603280142,1,1,1 -273,1,0.3899,1,1,1,1,1,1,1,1,0.1826,0.3899,0.1008,1,0.3177,1,1,1,1,1,1,0.3306,0.3177,0.1563,1,0.6622,1,1,1,0.2003,0.6622,0.0817,1,1,1,1,1,0.182465851,0.236937389,1,1,1,1,1,1,0.299337328,0.362588108,0.560800374,1,1,1,1,1,0.442220718,0.255904913,0.607358627,0.607361963,0.607712766,1,1,1 -274,1,0.3898,1,1,1,1,1,1,1,1,0.1408,0.3898,0.3571,1,0.3176,1,1,1,1,1,1,0.2714,0.3176,0.4284,1,0.6621,1,1,1,0.1738,0.6621,0.3005,1,1,1,1,1,0.131159633,0.612088859,0.958232522,1,1,1,1,1,0.191371769,0.682959735,0.373580128,1,1,1,1,1,0.422047854,0.593546093,0.60482117,0.604823355,0.605053192,1,1,1 -275,1,0.3896,1,1,1,1,1,1,1,1,0.1367,0.3896,0.5425,1,0.3175,1,1,1,1,1,1,0.3441,0.3175,0.5777,1,0.6619,1,1,1,0.1747,0.6619,0.3797,1,1,1,1,1,0.143900737,0.780409455,0.730005682,1,1,1,1,1,0.303414434,0.831908643,0.360524356,1,1,1,1,1,0.3751598,0.751739025,0.605546158,0.605669558,0.605496454,1,1,1 -276,1,0.3895,1,1,1,1,1,1,1,1,0.2209,0.3895,0.6327,1,0.3174,1,1,1,1,1,1,0.1898,0.3174,0.6501,1,0.6617,1,1,1,0.165,0.6617,0.4315,1,1,1,1,1,0.198314294,0.858942092,0.920607209,1,1,1,1,1,0.21737963,0.910569906,0.537046909,1,1,1,1,1,0.259621054,0.79437846,0.6030087,0.602919399,0.603280142,1,1,1 -277,1,0.3893,1,1,1,1,1,1,1,1,0.2392,0.3893,0.6563,1,0.3173,1,1,1,1,1,1,0.2485,0.3173,0.6632,1,0.6615,1,1,1,0.2132,0.6615,0.4191,1,1,1,1,1,0.218283534,0.897629023,0.974759162,1,1,1,1,1,0.276159108,0.94185859,0.58096838,1,1,1,1,1,0.343196511,0.823120117,0.596121315,0.596149778,0.596187943,1,1,1 -278,1,0.3892,1,1,1,1,1,1,1,1,0.2848,0.3892,0.6462,1,0.3172,1,1,1,1,1,1,0.1227,0.3172,0.6461,1,0.6614,1,1,1,0.2082,0.6614,0.4222,1,1,1,1,1,0.254532039,0.900672555,1,1,1,1,1,1,0.185802132,0.896925211,0.582921743,1,1,1,1,1,0.438845277,0.863766789,0.59159014,0.591707214,0.591755319,1,1,1 -279,1,0.389,1,1,1,1,1,1,1,1,0.2453,0.389,0.5642,1,0.3171,1,1,1,1,1,1,0.2346,0.3171,0.5617,1,0.6612,1,1,1,0.4143,0.6612,0.4058,1,1,1,1,1,0.247006446,0.795192599,0.99453032,1,1,1,1,1,0.283673108,0.775765479,0.68333137,1,1,1,1,1,0.596738219,0.748500109,0.58518608,0.585149143,0.585106383,1,1,1 -280,1,0.3889,1,1,1,1,1,1,1,1,0.2811,0.3889,0.3954,1,0.317,1,1,1,1,1,1,0.1022,0.317,0.3732,1,0.661,1,1,1,0.4471,0.661,0.3121,1,1,1,1,1,0.209499329,0.584593952,1,1,1,1,1,1,0.122582026,0.593517125,0.626590669,1,1,1,1,1,0.588526428,0.574264288,0.585669406,0.585572245,0.585992908,1,1,1 -281,1,0.3887,1,1,1,1,1,1,1,1,0.3158,0.3887,0.1551,1,0.3169,1,1,1,1,1,1,0.3814,0.3169,0.1768,1,0.6608,1,1,1,0.3686,0.6608,0.0905,1,1,1,1,1,0.383485586,0.310923249,0.932848334,1,1,1,1,1,0.395263761,0.305663049,0.687052906,1,1,1,1,1,0.538321972,0.267084718,0.614971001,0.614977787,0.615248227,1,1,1 -282,1,0.3886,1,1,1,1,1,1,1,1,0.3149,0.3886,0,1,0.3167,1,1,1,1,1,1,0.1815,0.3167,0,1,0.6607,1,1,1,0.3004,0.6607,0,1,1,1,1,1,0.426643223,0,0.928340018,1,1,1,1,1,0.225260541,0,0.999099612,1,1,1,1,1,0.471244842,0,0.668861769,0.668923207,0.668882979,1,1,1 -283,1,0.3884,1,1,1,1,1,1,1,1,0.3414,0.3884,0,1,0.3166,1,1,1,1,1,1,0.1595,0.3166,0,1,0.6605,1,1,1,0.3144,0.6605,0,1,1,1,1,1,0.368312597,0,0.959610164,1,1,1,1,1,0.244742572,0,1,1,1,1,1,1,0.457496494,0,0.669465926,0.669557859,0.669769504,1,1,1 -284,1,0.3883,1,1,1,1,1,1,1,1,0.2419,0.3883,0,1,0.3165,1,1,1,1,1,1,0.1428,0.3165,0,1,0.6603,1,1,1,0.3457,0.6603,0,1,1,1,1,1,0.233646572,0,0.994261146,1,1,1,1,1,0.196254939,0,1,1,1,1,1,1,0.486181587,0,0.653576607,0.653691559,0.653812057,1,1,1 -285,1,0.3881,1,1,1,1,1,1,1,1,0.1498,0.3881,0,1,0.3164,1,1,1,1,1,1,0.1519,0.3164,0,1,0.6601,1,1,1,0.4419,0.6601,0,1,1,1,1,1,0.174997136,0,0.985978961,1,1,1,1,1,0.17046386,0,1,1,1,1,1,1,0.631752074,0,0.627658289,0.627670827,0.627659575,1,1,1 -286,1,0.388,1,1,1,1,1,1,1,1,0.2856,0.388,0,1,0.3163,1,1,1,1,1,1,0.2419,0.3163,0,1,0.66,1,1,1,0.3133,0.66,0,1,1,1,1,1,0.394229263,0,0.99136734,1,1,1,1,1,0.286830157,0,1,1,1,1,1,1,0.574119985,0,0.584763171,0.584726042,0.584663121,1,1,1 -287,1,0.3878,1,1,1,1,1,1,1,1,0.4486,0.3878,0,1,0.3162,1,1,1,1,1,1,0.3086,0.3162,0,1,0.6598,1,1,1,0.1992,0.6598,0,1,1,1,1,1,0.462068379,0,0.628719449,1,1,1,1,1,0.333986431,0,0.995685935,1,1,1,1,1,0.437746197,0,0.53117448,0.531203723,0.531471631,1,1,1 -288,1,0.3876,1,1,1,1,1,1,1,1,0.3611,0.3876,0,1,0.3161,1,1,1,1,1,1,0.4669,0.3161,0,1,0.6596,1,1,1,0.2688,0.6596,0,1,1,1,1,1,0.333746761,0,0.774292469,1,1,1,1,1,0.38871792,0,0.996052384,1,1,1,1,1,0.521710396,0,0.481029483,0.481066215,0.480939716,1,1,1 -289,1,0.5428,1,1,1,1,1,1,1,1,0.0554,0.5428,0,1,0.368,1,1,1,1,1,1,0.0509,0.368,0,1,0.613,1,1,1,0.2436,0.613,0,1,1,1,1,1,0.102929287,0,0.28655833,1,1,1,1,1,0.067501307,0,0.306544006,1,1,1,1,1,0.360672176,0,0.436865636,0.436852126,0.436613475,1,1,1 -290,1,0.5423,1,1,1,1,1,1,1,1,0.0335,0.5423,0,1,0.3678,1,1,1,1,1,1,0.0245,0.3678,0,1,0.613,1,1,1,0.2548,0.613,0,1,1,1,1,1,0.070069149,0,0.244399473,1,1,1,1,1,0.03964423,0,0.445659459,1,1,1,1,1,0.358865291,0,0.414934751,0.414850857,0.414893617,1,1,1 -291,1,0.5418,1,1,1,1,1,1,1,1,0.0298,0.5418,0,1,0.3677,1,1,1,1,1,1,0.0196,0.3677,0,1,0.6131,1,1,1,0.148,0.6131,0,1,1,1,1,1,0.069911592,0,0.244833529,1,1,1,1,1,0.040781193,0,0.689976454,1,1,1,1,1,0.262341768,0,0.401764137,0.401734716,0.401595745,1,1,1 -292,1,0.5412,1,1,1,1,1,1,1,1,0.0084,0.5412,0,1,0.3675,1,1,1,1,1,1,0.0156,0.3675,0,1,0.6131,1,1,1,0.1111,0.6131,0,1,1,1,1,1,0.014961205,0,0.244127989,1,1,1,1,1,0.03616431,0,0.791790605,1,1,1,1,1,0.221059725,0,0.397655872,0.397715253,0.397606383,1,1,1 -293,1,0.5407,1,1,1,1,1,1,1,1,0.0085,0.5407,0,1,0.3674,1,1,1,1,1,1,0,0.3674,0,1,0.6131,1,1,1,0.125,0.6131,0,1,1,1,1,1,0.020019906,0,0.211876005,1,1,1,1,1,0.014359617,0,0.465516508,1,1,1,1,1,0.230596468,0,0.406053649,0.405965729,0.406028369,1,1,1 -294,1,0.5402,1,1,1,1,1,1,1,1,0.0021,0.5402,0.0049,1,0.3672,1,1,1,1,1,1,0,0.3672,0.0008,1,0.6131,1,1,1,0.1131,0.6131,0.0136,1,1,1,1,1,0.007520093,0.004839725,0.289745718,1,1,1,1,1,0.007557144,0,0.460135877,1,1,1,1,1,0.226175949,0.008954303,0.436019816,0.436005923,0.436170213,1,1,1 -295,1,0.5397,1,1,1,1,1,1,1,1,0.0029,0.5397,0.0941,1,0.367,1,1,1,1,1,1,0.0049,0.367,0.0735,1,0.6131,1,1,1,0.1255,0.6131,0.0987,1,1,1,1,1,0.007531909,0.163497344,0.223146796,1,1,1,1,1,0.016487908,0.124448769,0.405033797,1,1,1,1,1,0.204162121,0.166514278,0.500966651,0.500951978,0.500886525,1,1,1 -296,1,0.5392,1,1,1,1,1,1,1,1,0.0095,0.5392,0.2171,1,0.3669,1,1,1,1,1,1,0.0036,0.3669,0.1971,1,0.6131,1,1,1,0.1218,0.6131,0.2353,1,1,1,1,1,0.020222772,0.366256326,0.399918079,1,1,1,1,1,0.017013889,0.339877576,0.214261025,1,1,1,1,1,0.217606798,0.377554804,0.557455292,0.557436006,0.557624114,1,1,1 -297,1,0.5387,1,1,1,1,1,1,1,1,0.0202,0.5387,0.338,1,0.3667,1,1,1,1,1,1,0,0.3667,0.352,1,0.6131,1,1,1,0.1588,0.6131,0.3624,1,1,1,1,1,0.012131217,0.51266861,0.372137129,1,1,1,1,1,0.01705572,0.548357666,0.205175936,1,1,1,1,1,0.246868596,0.564755321,0.585065249,0.585149143,0.585106383,1,1,1 -298,1,0.5382,1,1,1,1,1,1,1,1,0.0118,0.5382,0.4496,1,0.3666,1,1,1,1,1,1,0.003,0.3666,0.4415,1,0.6131,1,1,1,0.1834,0.6131,0.4693,1,1,1,1,1,0.015408306,0.641467035,0.271962106,1,1,1,1,1,0.021653213,0.667341054,0.148014396,1,1,1,1,1,0.319478989,0.682289004,0.602162881,0.602073197,0.602393617,1,1,1 -299,1,0.5377,1,1,1,1,1,1,1,1,0.0115,0.5377,0.6574,1,0.3664,1,1,1,1,1,1,0.0112,0.3664,0.6511,1,0.6131,1,1,1,0.1882,0.6131,0.6499,1,1,1,1,1,0.012474523,0.944623053,0.297082424,1,1,1,1,1,0.024686296,0.929904997,0.127350539,1,1,1,1,1,0.321994692,0.959149838,0.614850169,0.614766237,0.615248227,1,1,1 -300,1,0.5372,1,1,1,1,1,1,1,1,0.0167,0.5372,0.5304,1,0.3662,1,1,1,1,1,1,0.0051,0.3662,0.5241,1,0.6131,1,1,1,0.2792,0.6131,0.5302,1,1,1,1,1,0.03286979,0.763183296,0.365212739,1,1,1,1,1,0.016091846,0.713555157,0.460607886,1,1,1,1,1,0.464787126,0.736581981,0.623489609,0.623651365,0.623670213,1,1,1 -301,1,0.5367,1,1,1,1,1,1,1,1,0.0139,0.5367,0.518,1,0.3661,1,1,1,1,1,1,0.0277,0.3661,0.5291,1,0.6131,1,1,1,0.2951,0.6131,0.5243,1,1,1,1,1,0.021454006,0.752946496,0.472586632,1,1,1,1,1,0.040691424,0.725884199,1,1,1,1,1,1,0.486889899,0.747741342,0.624818753,0.624920669,0.625,1,1,1 -302,1,0.5362,1,1,1,1,1,1,1,1,0.0296,0.5362,0.5066,1,0.3659,1,1,1,1,1,1,0.0879,0.3659,0.5035,1,0.6131,1,1,1,0.3901,0.6131,0.5014,1,1,1,1,1,0.082228646,0.733274221,0.558043897,1,1,1,1,1,0.089652121,0.732926846,1,1,1,1,1,1,0.637303412,0.747792244,0.627235379,0.627247726,0.627216312,1,1,1 -303,1,0.5357,1,1,1,1,1,1,1,1,0.0675,0.5357,0.4998,1,0.3658,1,1,1,1,1,1,0.2124,0.3658,0.5097,1,0.6131,1,1,1,0.4318,0.6131,0.5092,1,1,1,1,1,0.147074938,0.716671348,0.273781955,1,1,1,1,1,0.210959673,0.731348395,0.453748465,1,1,1,1,1,0.659193039,0.715080202,0.624033349,0.624074466,0.624113475,1,1,1 -304,1,0.5352,1,1,1,1,1,1,1,1,0.0874,0.5352,0.4264,1,0.3656,1,1,1,1,1,1,0.1334,0.3656,0.4509,1,0.6131,1,1,1,0.3482,0.6131,0.3765,1,1,1,1,1,0.160640761,0.693377793,0.213523984,1,1,1,1,1,0.137134001,0.705526233,0.311781704,1,1,1,1,1,0.529499769,0.698079467,0.620952151,0.621112757,0.621010638,1,1,1 -305,1,0.5347,1,1,1,1,1,1,1,1,0.0934,0.5347,0.2974,1,0.3655,1,1,1,1,1,1,0.0398,0.3655,0.3258,1,0.6131,1,1,1,0.3334,0.6131,0.2584,1,1,1,1,1,0.129200593,0.586790562,0.138957962,1,1,1,1,1,0.050490655,0.63049984,0.185062319,1,1,1,1,1,0.503858209,0.581993341,0.620770904,0.620689655,0.621010638,1,1,1 -306,1,0.5342,1,1,1,1,1,1,1,1,0.0969,0.5342,0.1493,1,0.3653,1,1,1,1,1,1,0.0497,0.3653,0.1867,1,0.6131,1,1,1,0.3284,0.6131,0.1442,1,1,1,1,1,0.114053294,0.403389722,0.092829756,1,1,1,1,1,0.061868861,0.513354957,0.176666498,1,1,1,1,1,0.515562952,0.306327373,0.615756404,0.61582399,0.616134752,1,1,1 -307,1,0.5337,1,1,1,1,1,1,1,1,0.1098,0.5337,0.0488,1,0.3651,1,1,1,1,1,1,0.0749,0.3651,0.0732,1,0.6131,1,1,1,0.358,0.6131,0.0591,1,1,1,1,1,0.127998903,0.22100696,0.117127135,1,1,1,1,1,0.085354745,0.287998051,0.125957608,1,1,1,1,1,0.495559037,0.070040196,0.604639923,0.604823355,0.605053192,1,1,1 -308,1,0.5332,1,1,1,1,1,1,1,1,0.1264,0.5332,0,1,0.365,1,1,1,1,1,1,0.0365,0.365,0,1,0.6131,1,1,1,0.4554,0.6131,0,1,1,1,1,1,0.103152841,0,0.117953621,1,1,1,1,1,0.060099483,0,0.039143719,1,1,1,1,1,0.6747877,0,0.595275495,0.595303575,0.595301418,1,1,1 -309,1,0.5327,1,1,1,1,1,1,1,1,0.1441,0.5327,0,1,0.3648,1,1,1,1,1,1,0.0602,0.3648,0,1,0.6131,1,1,1,0.455,0.6131,0,1,1,1,1,1,0.143746465,0,0.147683203,1,1,1,1,1,0.090489812,0,0.059764139,1,1,1,1,1,0.623450279,0,0.603129531,0.60313095,0.603280142,1,1,1 -310,1,0.5322,1,1,1,1,1,1,1,1,0.1966,0.5322,0,1,0.3647,1,1,1,1,1,1,0.0289,0.3647,0,1,0.6131,1,1,1,0.3671,0.6131,0,1,1,1,1,1,0.192906633,0,0.37370503,1,1,1,1,1,0.039535411,0,0.138283253,1,1,1,1,1,0.560451567,0,0.585850653,0.585783795,0.585992908,1,1,1 -311,1,0.5316,1,1,1,1,1,1,1,1,0.1432,0.5316,0,1,0.3645,1,1,1,1,1,1,0.0601,0.3645,0,1,0.6131,1,1,1,0.3246,0.6131,0,1,1,1,1,1,0.18569909,0,0.575402319,1,1,1,1,1,0.076915391,0,0.194575399,1,1,1,1,1,0.552035093,0,0.539088932,0.539031098,0.539007092,1,1,1 -312,1,0.5311,1,1,1,1,1,1,1,1,0.1587,0.5311,0,1,0.3643,1,1,1,1,1,1,0.0983,0.3643,0,1,0.6131,1,1,1,0.3508,0.6131,0,1,1,1,1,1,0.17065762,0,0.666500807,1,1,1,1,1,0.12334802,0,0.305845827,1,1,1,1,1,0.653798878,0,0.48622523,0.486143431,0.486258865,1,1,1 -313,1,0.5306,1,1,1,1,1,1,1,1,0.2148,0.5306,0,1,0.3642,1,1,1,1,1,1,0.1068,0.3642,0,1,0.6131,1,1,1,0.3604,0.6131,0,1,1,1,1,1,0.201032296,0,0.954202414,1,1,1,1,1,0.123919778,0,0.3628833,1,1,1,1,1,0.672906995,0,0.4459884,0.445948805,0.445921986,1,1,1 -314,1,0.5301,1,1,1,1,1,1,1,1,0.2955,0.5301,0,1,0.364,1,1,1,1,1,1,0.1037,0.364,0,1,0.6132,1,1,1,0.3634,0.6132,0,1,1,1,1,1,0.236418411,0,0.979016721,1,1,1,1,1,0.103414245,0,0.396931976,1,1,1,1,1,0.68204242,0,0.421640889,0.421832029,0.421985816,1,1,1 -315,1,0.5296,1,1,1,1,1,1,1,1,0.332,0.5296,0,1,0.3639,1,1,1,1,1,1,0.0938,0.3639,0,1,0.6132,1,1,1,0.3532,0.6132,0,1,1,1,1,1,0.301238269,0,0.955985069,1,1,1,1,1,0.089088917,0,0.432177484,1,1,1,1,1,0.731578231,0,0.406839053,0.406811932,0.406914894,1,1,1 -316,1,0.5291,1,1,1,1,1,1,1,1,0.4087,0.5291,0,1,0.3637,1,1,1,1,1,1,0.1876,0.3637,0,1,0.6132,1,1,1,0.2717,0.6132,0,1,1,1,1,1,0.39020884,0,0.993632317,1,1,1,1,1,0.210339248,0,0.387375653,1,1,1,1,1,0.558156729,0,0.399347511,0.399407658,0.399379433,1,1,1 -317,1,0.5286,1,1,1,1,1,1,1,1,0.349,0.5286,0,1,0.3636,1,1,1,1,1,1,0.1478,0.3636,0,1,0.6132,1,1,1,0.2064,0.6132,0,1,1,1,1,1,0.380123615,0,0.918339968,1,1,1,1,1,0.176655948,0,0.334295839,1,1,1,1,1,0.441318661,0,0.400253746,0.400253861,0.400265957,1,1,1 -318,1,0.5281,1,1,1,1,1,1,1,1,0.1797,0.5281,0.026,1,0.3634,1,1,1,1,1,1,0.1886,0.3634,0.0121,1,0.6132,1,1,1,0.1902,0.6132,0.0409,1,1,1,1,1,0.235861972,0.049373325,0.466329932,1,1,1,1,1,0.192031875,0.022724975,0.339601845,1,1,1,1,1,0.45386827,0.152818382,0.406295312,0.40617728,0.406471631,1,1,1 -319,1,0.5276,1,1,1,1,1,1,1,1,0.1659,0.5276,0.1018,1,0.3632,1,1,1,1,1,1,0.1399,0.3632,0.13,1,0.6132,1,1,1,0.1876,0.6132,0.0873,1,1,1,1,1,0.183815897,0.458189815,0.338065684,1,1,1,1,1,0.108884692,0.487261832,0.352346093,1,1,1,1,1,0.440796673,0.420681775,0.429494925,0.429659403,0.429521277,1,1,1 -320,1,0.5271,1,1,1,1,1,1,1,1,0.1331,0.5271,0.2433,1,0.3631,1,1,1,1,1,1,0.0987,0.3631,0.2585,1,0.6132,1,1,1,0.0837,0.6132,0.1897,1,1,1,1,1,0.089953058,0.603047133,0.594026804,1,1,1,1,1,0.081454344,0.610282898,0.403067827,1,1,1,1,1,0.192150861,0.466695249,0.47341711,0.473450391,0.473404255,1,1,1 -321,1,0.5266,1,1,1,1,1,1,1,1,0.128,0.5266,0.3818,1,0.3629,1,1,1,1,1,1,0.0154,0.3629,0.3965,1,0.6132,1,1,1,0.0755,0.6132,0.3086,1,1,1,1,1,0.054063726,0.670013547,0.604393601,1,1,1,1,1,0.015007132,0.726192355,0.381297648,1,1,1,1,1,0.196360469,0.658982933,0.525132915,0.525068754,0.525265957,1,1,1 -322,1,0.5261,1,1,1,1,1,1,1,1,0.0712,0.5261,0.4982,1,0.3628,1,1,1,1,1,1,0.0061,0.3628,0.4937,1,0.6132,1,1,1,0.0858,0.6132,0.3997,1,1,1,1,1,0.020784948,0.770968735,0.401578367,1,1,1,1,1,0.012040151,0.772229612,0.591825485,1,1,1,1,1,0.164881259,0.673514366,0.567363461,0.567378887,0.567375887,1,1,1 -323,1,0.5256,1,1,1,1,1,1,1,1,0.0862,0.5256,0.5353,1,0.3626,1,1,1,1,1,1,0.0043,0.3626,0.5335,1,0.6132,1,1,1,0.0808,0.6132,0.5139,1,1,1,1,1,0.016812757,0.697871029,0.580888927,1,1,1,1,1,0.009310487,0.794491172,0.598218679,1,1,1,1,1,0.114012696,0.597352088,0.596483809,0.596572879,0.596631206,1,1,1 -324,1,0.5251,1,1,1,1,1,1,1,1,0.1196,0.5251,0.5261,1,0.3624,1,1,1,1,1,1,0.0594,0.3624,0.539,1,0.6132,1,1,1,0.1086,0.6132,0.582,1,1,1,1,1,0.068726257,0.74565649,0.828314841,1,1,1,1,1,0.043812402,0.794821799,0.682179809,1,1,1,1,1,0.12996468,0.606385469,0.615152248,0.615189338,0.615248227,1,1,1 -325,1,0.5246,1,1,1,1,1,1,1,1,0.1109,0.5246,0.5122,1,0.3623,1,1,1,1,1,1,0.0492,0.3623,0.5061,1,0.6132,1,1,1,0.2391,0.6132,0.6627,1,1,1,1,1,0.071737021,0.684711933,0.73906374,1,1,1,1,1,0.039249744,0.753941178,0.780026496,1,1,1,1,1,0.252119541,0.737015903,0.626329145,0.626401523,0.62677305,1,1,1 -326,1,0.5241,1,1,1,1,1,1,1,1,0.1518,0.5241,0.6212,1,0.3621,1,1,1,1,1,1,0.0035,0.3621,0.6245,1,0.6132,1,1,1,0.277,0.6132,0.7799,1,1,1,1,1,0.073892027,0.868428469,1,1,1,1,1,1,0.011705987,0.874346674,1,1,1,1,1,1,0.298006117,0.994849503,0.629954084,0.629786334,0.630319149,1,1,1 -327,1,0.5236,1,1,1,1,1,1,1,1,0.1656,0.5236,0.4165,1,0.362,1,1,1,1,1,1,0.0012,0.362,0.3972,1,0.6132,1,1,1,0.2761,0.6132,0.5856,1,1,1,1,1,0.059361372,0.639644206,0.995629609,1,1,1,1,1,0.015990097,0.549309194,0.671295524,1,1,1,1,1,0.283086956,0.914367557,0.632310295,0.632324942,0.632535461,1,1,1 -328,1,0.5231,1,1,1,1,1,1,1,1,0.2013,0.5231,0.3874,1,0.3618,1,1,1,1,1,1,0.0066,0.3618,0.3532,1,0.6132,1,1,1,0.347,0.6132,0.4619,1,1,1,1,1,0.084108204,0.702865779,0.998854637,1,1,1,1,1,0.028533269,0.520966053,0.786381781,1,1,1,1,1,0.340696096,0.89767617,0.632310295,0.632324942,0.632535461,1,1,1 -329,1,0.5226,1,1,1,1,1,1,1,1,0.1814,0.5226,0.2828,1,0.3617,1,1,1,1,1,1,0,0.3617,0.2343,1,0.6132,1,1,1,0.4828,0.6132,0.3078,1,1,1,1,1,0.061644688,0.633072138,0.977961302,1,1,1,1,1,0.015878014,0.335467786,0.738582492,1,1,1,1,1,0.539063335,0.852163374,0.636781054,0.636767506,0.636968085,1,1,1 -330,1,0.5221,1,1,1,1,1,1,1,1,0.175,0.5221,0.1567,1,0.3615,1,1,1,1,1,1,0.044,0.3615,0.1124,1,0.6132,1,1,1,0.3649,0.6132,0.1234,1,1,1,1,1,0.08750321,0.476917625,0.963040888,1,1,1,1,1,0.057438612,0.174902946,0.750400543,1,1,1,1,1,0.430850416,0.733914018,0.636781054,0.636767506,0.636968085,1,1,1 -331,1,0.5215,1,1,1,1,1,1,1,1,0.2286,0.5215,0.0604,1,0.3613,1,1,1,1,1,1,0.0109,0.3613,0.0397,1,0.6132,1,1,1,0.2706,0.6132,0.0769,1,1,1,1,1,0.110712282,0.242785856,1,1,1,1,1,1,0.082583472,0.041037187,1,1,1,1,1,1,0.307669967,0.490603566,0.627899952,0.627882378,0.628102837,1,1,1 -332,1,0.521,1,1,1,1,1,1,1,1,0.0939,0.521,0.0018,1,0.3612,1,1,1,1,1,1,0.0113,0.3612,0,1,0.6132,1,1,1,0.2094,0.6132,0.0408,1,1,1,1,1,0.06268514,0,0.791789591,1,1,1,1,1,0.030916506,0,0.591982544,1,1,1,1,1,0.280342639,0,0.616179314,0.616247091,0.616134752,1,1,1 -333,1,0.5205,1,1,1,1,1,1,1,1,0.1196,0.5205,0,1,0.361,1,1,1,1,1,1,0.0207,0.361,0,1,0.6132,1,1,1,0.2086,0.6132,0,1,1,1,1,1,0.079687506,0,0.690502524,1,1,1,1,1,0.035293765,0,0.387329578,1,1,1,1,1,0.32381013,0,0.622100048,0.62217051,0.622340426,1,1,1 -334,1,0.52,1,1,1,1,1,1,1,1,0.1163,0.52,0,1,0.3609,1,1,1,1,1,1,0.0913,0.3609,0,1,0.6132,1,1,1,0.2564,0.6132,0,1,1,1,1,1,0.209309652,0,0.371470213,1,1,1,1,1,0.118508779,0,0.186375141,1,1,1,1,1,0.345559239,0,0.604519091,0.604611805,0.604609929,1,1,1 -335,1,0.5195,1,1,1,1,1,1,1,1,0.1461,0.5195,0,1,0.3607,1,1,1,1,1,1,0.2797,0.3607,0,1,0.6132,1,1,1,0.3102,0.6132,0,1,1,1,1,1,0.347161263,0,0.235487819,1,1,1,1,1,0.293499112,0,0.287831694,1,1,1,1,1,0.48878479,0,0.554917835,0.554897398,0.554964539,1,1,1 -336,1,0.519,1,1,1,1,1,1,1,1,0.2864,0.519,0,1,0.3605,1,1,1,1,1,1,0.5674,0.3605,0,1,0.6132,1,1,1,0.3171,0.6132,0,1,1,1,1,1,0.426779628,0,0.24946785,1,1,1,1,1,0.531790853,0,0.560889304,1,1,1,1,1,0.432373047,0,0.501510392,0.50158663,0.50177305,1,1,1 -337,1,0.5185,1,1,1,1,1,1,1,1,0.2711,0.5185,0,1,0.3604,1,1,1,1,1,1,0.2931,0.3604,0,1,0.6132,1,1,1,0.1866,0.6132,0,1,1,1,1,1,0.34032023,0,0.653070331,1,1,1,1,1,0.393169761,0,0.617837012,1,1,1,1,1,0.343333662,0,0.457044466,0.456949439,0.457003546,1,1,1 -338,1,0.518,1,1,1,1,1,1,1,1,0.1829,0.518,0,1,0.3602,1,1,1,1,1,1,0.2742,0.3602,0,1,0.6133,1,1,1,0.1478,0.6133,0,1,1,1,1,1,0.209819675,0,0.869526088,1,1,1,1,1,0.371684939,0,0.72388792,1,1,1,1,1,0.284313917,0,0.428407443,0.428390099,0.428191489,1,1,1 -339,1,0.5175,1,1,1,1,1,1,1,1,0.1844,0.5175,0,1,0.3601,1,1,1,1,1,1,0.5432,0.3601,0,1,0.6133,1,1,1,0.1773,0.6133,0,1,1,1,1,1,0.228416383,0,0.928739488,1,1,1,1,1,0.457418025,0,0.751158357,1,1,1,1,1,0.241683677,0,0.409255679,0.409138989,0.409131206,1,1,1 -340,1,0.517,1,1,1,1,1,1,1,1,0.2522,0.517,0,1,0.3599,1,1,1,1,1,1,0.33,0.3599,0,1,0.6133,1,1,1,0.1432,0.6133,0,1,1,1,1,1,0.207252786,0,0.845790386,1,1,1,1,1,0.43018651,0,0.829544604,1,1,1,1,1,0.22548914,0,0.397655872,0.397715253,0.397606383,1,1,1 -341,1,0.5165,1,1,1,1,1,1,1,1,0.2607,0.5165,0,1,0.3598,1,1,1,1,1,1,0.2193,0.3598,0,1,0.6133,1,1,1,0.1329,0.6133,0,1,1,1,1,1,0.195063695,0,0.479269803,1,1,1,1,1,0.330451816,0,0.775633276,1,1,1,1,1,0.221389622,0,0.392278879,0.392214936,0.392287234,1,1,1 -342,1,0.516,1,1,1,1,1,1,1,1,0.2212,0.516,0.0973,1,0.3596,1,1,1,1,1,1,0.2581,0.3596,0.0752,1,0.6133,1,1,1,0.0723,0.6133,0.059,1,1,1,1,1,0.195275858,0.248310834,0.218139723,1,1,1,1,1,0.33224842,0.115721382,0.579433203,1,1,1,1,1,0.13964197,0.231346116,0.386237313,0.386291517,0.38608156,1,1,1 -343,1,0.5155,1,1,1,1,1,1,1,1,0.1456,0.5155,0.1144,1,0.3594,1,1,1,1,1,1,0.164,0.3594,0.138,1,0.6133,1,1,1,0.0453,0.6133,0.1168,1,1,1,1,1,0.109856688,0.525692761,0.150333703,1,1,1,1,1,0.206480548,0.31754446,0.140880883,1,1,1,1,1,0.076125711,0.655412436,0.399830836,0.39983076,0.399822695,1,1,1 -344,1,0.515,1,1,1,1,1,1,1,1,0.0674,0.515,0.2496,1,0.3593,1,1,1,1,1,1,0.0309,0.3593,0.2598,1,0.6133,1,1,1,0.0091,0.6133,0.2575,1,1,1,1,1,0.020254515,0.707271993,0.119932413,1,1,1,1,1,0.052579988,0.485493958,0.044088483,1,1,1,1,1,0.006525885,0.772856474,0.434630256,0.434736619,0.434840426,1,1,1 -345,1,0.5145,1,1,1,1,1,1,1,1,0.0287,0.5145,0.4063,1,0.3591,1,1,1,1,1,1,0,0.3591,0.4016,1,0.6133,1,1,1,0.0063,0.6133,0.416,1,1,1,1,1,0.006522118,0.818332374,0.115701422,1,1,1,1,1,0.002567487,0.668443859,0.057944506,1,1,1,1,1,0.002153539,0.882645607,0.478250363,0.478316057,0.478280142,1,1,1 -346,1,0.514,1,1,1,1,1,1,1,1,0.0344,0.514,0.5217,1,0.359,1,1,1,1,1,1,0,0.359,0.5187,1,0.6133,1,1,1,0.0061,0.6133,0.5489,1,1,1,1,1,0.00640721,0.858387113,0.094033748,1,1,1,1,1,0.001303967,0.821421921,0.033942148,1,1,1,1,1,0.001924694,0.91635406,0.516916385,0.516818278,0.516843972,1,1,1 -347,1,0.5135,1,1,1,1,1,1,1,1,0.0279,0.5135,0.6837,1,0.3588,1,1,1,1,1,1,0,0.3588,0.6685,1,0.6133,1,1,1,0.0053,0.6133,0.7417,1,1,1,1,1,0.005469657,0.990906656,0.089679062,1,1,1,1,1,0.002256513,0.980414927,0.069912314,1,1,1,1,1,0.009007787,1,0.541868052,0.541781257,0.542109929,1,1,1 -348,1,0.513,1,1,1,1,1,1,1,1,0.0209,0.513,0.6141,1,0.3586,1,1,1,1,1,1,0,0.3586,0.5887,1,0.6133,1,1,1,0.0099,0.6133,0.6676,1,1,1,1,1,0.005807847,0.866961598,0.052571714,1,1,1,1,1,0.000736253,0.781377852,0.003317539,1,1,1,1,1,0.00634783,0.915979266,0.558724021,0.55870531,0.558953901,1,1,1 -349,1,0.5125,1,1,1,1,1,1,1,1,0.0305,0.5125,0.6254,1,0.3585,1,1,1,1,1,1,0,0.3585,0.5841,1,0.6133,1,1,1,0.0158,0.6133,0.61,1,1,1,1,1,0.009198739,0.88501215,0.048186928,1,1,1,1,1,0.002049996,0.801012933,0,1,1,1,1,1,0.028446689,0.920965672,0.568753021,0.568648191,0.568705674,1,1,1 -350,1,0.5119,1,1,1,1,1,1,1,1,0.0314,0.5119,0.6295,1,0.3583,1,1,1,1,1,1,0,0.3583,0.5947,1,0.6133,1,1,1,0.017,0.6133,0.527,1,1,1,1,1,0.010839716,0.867754877,0.028566901,1,1,1,1,1,0.006953634,0.824292362,0.009132199,1,1,1,1,1,0.045451026,0.90958482,0.570323828,0.570340597,0.570478723,1,1,1 -351,1,0.5114,1,1,1,1,1,1,1,1,0.0375,0.5114,0.5713,1,0.3582,1,1,1,1,1,1,0.0108,0.3582,0.5658,1,0.6133,1,1,1,0.0292,0.6133,0.4364,1,1,1,1,1,0.029926123,0.866189599,0.090105362,1,1,1,1,1,0.019025767,0.844137788,0.069604456,1,1,1,1,1,0.042708278,0.542909801,0.571532141,0.571609901,0.571808511,1,1,1 -352,1,0.5109,1,1,1,1,1,1,1,1,0.0911,0.5109,0.4664,1,0.358,1,1,1,1,1,1,0.0329,0.358,0.4846,1,0.6133,1,1,1,0.015,0.6133,0.4434,1,1,1,1,1,0.054838117,0.855623722,0.175722048,1,1,1,1,1,0.048079811,0.831098139,0.020941624,1,1,1,1,1,0.044498995,0.443953484,0.574552924,0.57457161,0.574468085,1,1,1 -353,1,0.5104,1,1,1,1,1,1,1,1,0.1296,0.5104,0.3225,1,0.3578,1,1,1,1,1,1,0.0352,0.3578,0.357,1,0.6133,1,1,1,0.0328,0.6133,0.29,1,1,1,1,1,0.07538908,0.792096496,0.200383514,1,1,1,1,1,0.06945663,0.765474975,0.040855758,1,1,1,1,1,0.071649931,0.638964295,0.579990334,0.579860377,0.580230497,1,1,1 -354,1,0.5099,1,1,1,1,1,1,1,1,0.1024,0.5099,0.1542,1,0.3577,1,1,1,1,1,1,0.0063,0.3577,0.1974,1,0.6133,1,1,1,0.0373,0.6133,0.1523,1,1,1,1,1,0.08161626,0.6482867,0.156256527,1,1,1,1,1,0.038182136,0.617378116,0.041342147,1,1,1,1,1,0.087772548,0.638399243,0.58240696,0.582398985,0.582446809,1,1,1 -355,1,0.5094,1,1,1,1,1,1,1,1,0.0762,0.5094,0.0734,1,0.3575,1,1,1,1,1,1,0.0553,0.3575,0.0874,1,0.6133,1,1,1,0.0424,0.6133,0.0676,1,1,1,1,1,0.07382483,0.326692373,0.046422366,1,1,1,1,1,0.084147491,0.315512568,0.045055497,1,1,1,1,1,0.085680999,0.305667967,0.573042533,0.573090755,0.573138298,1,1,1 -356,1,0.5089,1,1,1,1,1,1,1,1,0.104,0.5089,0,1,0.3574,1,1,1,1,1,1,0.0847,0.3574,0,1,0.6133,1,1,1,0.0541,0.6133,0,1,1,1,1,1,0.161338687,0,0.067104608,1,1,1,1,1,0.132098615,0,0.146847129,1,1,1,1,1,0.085918419,0,0.562167714,0.562090121,0.562056738,1,1,1 -357,1,0.5084,1,1,1,1,1,1,1,1,0.1042,0.5084,0,1,0.3572,1,1,1,1,1,1,0.1265,0.3572,0,1,0.6133,1,1,1,0.04,0.6133,0,1,1,1,1,1,0.15919514,0,0.039689653,1,1,1,1,1,0.163268238,0,0.123765454,1,1,1,1,1,0.058647409,0,0.57280087,0.572667654,0.573138298,1,1,1 -358,1,0.5079,1,1,1,1,1,1,1,1,0.087,0.5079,0,1,0.3571,1,1,1,1,1,1,0.1107,0.3571,0,1,0.6133,1,1,1,0.0466,0.6133,0,1,1,1,1,1,0.108535186,0,0.065212756,1,1,1,1,1,0.142740086,0,0.338499755,1,1,1,1,1,0.067917563,0,0.561080232,0.561032367,0.561170213,1,1,1 -359,1,0.5074,1,1,1,1,1,1,1,1,0.0581,0.5074,0,1,0.3569,1,1,1,1,1,1,0.1212,0.3569,0,1,0.6133,1,1,1,0.0512,0.6133,0,1,1,1,1,1,0.071472719,0,0.217857033,1,1,1,1,1,0.138909176,0,0.244642153,1,1,1,1,1,0.092894673,0,0.522353794,0.522318595,0.522606383,1,1,1 -360,1,0.5069,1,1,1,1,1,1,1,1,0.0925,0.5069,0,1,0.3567,1,1,1,1,1,1,0.2,0.3567,0,1,0.6133,1,1,1,0.0627,0.6133,0,1,1,1,1,1,0.111822933,0,0.349852622,1,1,1,1,1,0.214631125,0,0.414055526,1,1,1,1,1,0.148355186,0,0.476739971,0.476835202,0.476950355,1,1,1 -361,1,0.5064,1,1,1,1,1,1,1,1,0.0786,0.5064,0,1,0.3566,1,1,1,1,1,1,0.1856,0.3566,0,1,0.6134,1,1,1,0.0398,0.6134,0,1,1,1,1,1,0.110325836,0,0.327212632,1,1,1,1,1,0.184857607,0,0.563972533,1,1,1,1,1,0.099001825,0,0.440188497,0.440236937,0.440159575,1,1,1 -362,1,0.5059,1,1,1,1,1,1,1,1,0.0609,0.5059,0,1,0.3564,1,1,1,1,1,1,0.1325,0.3564,0,1,0.6134,1,1,1,0.0292,0.6134,0,1,1,1,1,1,0.093629137,0,0.378330529,1,1,1,1,1,0.166632116,0,0.674354196,1,1,1,1,1,0.125508308,0,0.416082649,0.416120161,0.416223404,1,1,1 -363,1,0.5054,1,1,1,1,1,1,1,1,0.0554,0.5054,0,1,0.3563,1,1,1,1,1,1,0.1046,0.3563,0,1,0.6134,1,1,1,0.0325,0.6134,0,1,1,1,1,1,0.047552854,0,0.675056875,1,1,1,1,1,0.142442837,0,0.82370317,1,1,1,1,1,0.152086809,0,0.402549541,0.402580918,0.402925532,1,1,1 -364,1,0.5049,1,1,1,1,1,1,1,1,0.0389,0.5049,0,1,0.3561,1,1,1,1,1,1,0.0672,0.3561,0,1,0.6134,1,1,1,0.0299,0.6134,0,1,1,1,1,1,0.035386208,0,0.779412627,1,1,1,1,1,0.093350187,0,1,1,1,1,1,1,0.082653493,0,0.395903818,0.395811297,0.395833333,1,1,1 -365,1,0.5044,1,1,1,1,1,1,1,1,0.0278,0.5044,0,1,0.3559,1,1,1,1,1,1,0.043,0.3559,0,1,0.6134,1,1,1,0.0299,0.6134,0,1,1,1,1,1,0.044179618,0,0.970574141,1,1,1,1,1,0.075678729,0,1,1,1,1,1,1,0.051712863,0,0.396749638,0.39686905,0.396719858,1,1,1 -366,1,0.5039,1,1,1,1,1,1,1,1,0.0018,0.5039,0.0359,1,0.3558,1,1,1,1,1,1,0.046,0.3558,0.0118,1,0.6134,1,1,1,0.0385,0.6134,0.0436,1,1,1,1,1,0.050887093,0.096717402,0.811164498,1,1,1,1,1,0.057695933,0.069058806,1,1,1,1,1,1,0.053232022,0.136604279,0.400495408,0.400676962,0.40070922,1,1,1 -367,1,0.5034,1,1,1,1,1,1,1,1,0.0034,0.5034,0.1068,1,0.3556,1,1,1,1,1,1,0.005,0.3556,0.1206,1,0.6134,1,1,1,0.0259,0.6134,0.1378,1,1,1,1,1,0.011802151,0.445279241,0.798115969,1,1,1,1,1,0.012516349,0.452267677,0.873755574,1,1,1,1,1,0.056437861,0.427904367,0.418861769,0.418870319,0.418882979,1,1,1 -368,1,0.5029,1,1,1,1,1,1,1,1,0.0048,0.5029,0.2425,1,0.3555,1,1,1,1,1,1,0,0.3555,0.2677,1,0.6134,1,1,1,0.0286,0.6134,0.248,1,1,1,1,1,0.010198699,0.683956683,0.860122562,1,1,1,1,1,0,0.708063066,0.443921745,1,1,1,1,1,0.056191221,0.709809661,0.456440309,0.456526338,0.456560284,1,1,1 -369,1,0.5023,1,1,1,1,1,1,1,1,0.0012,0.5023,0.3923,1,0.3553,1,1,1,1,1,1,0,0.3553,0.4168,1,0.6134,1,1,1,0.0205,0.6134,0.3691,1,1,1,1,1,0.002185003,0.78157872,0.587973356,1,1,1,1,1,4.14E-06,0.817111433,0.803598762,1,1,1,1,1,0.017246964,0.820502579,0.507068632,0.507086947,0.507092199,1,1,1 -370,1,0.5018,1,1,1,1,1,1,1,1,0.0087,0.5018,0.5074,1,0.3552,1,1,1,1,1,1,0,0.3552,0.5283,1,0.6134,1,1,1,0.0351,0.6134,0.4759,1,1,1,1,1,0.003054135,0.843060255,0.593473434,1,1,1,1,1,0,0.858579099,0.628719926,1,1,1,1,1,0.012483159,0.880974174,0.549117931,0.54918553,0.549202128,1,1,1 -371,1,0.5013,1,1,1,1,1,1,1,1,0.0083,0.5013,0.6026,1,0.355,1,1,1,1,1,1,0,0.355,0.6076,1,0.6134,1,1,1,0.0482,0.6134,0.47,1,1,1,1,1,0.001627549,0.880451083,0.41860193,1,1,1,1,1,0.000109725,0.877711237,0.17581363,1,1,1,1,1,0.018060023,0.881064296,0.581138231,0.581129681,0.581117021,1,1,1 -372,1,0.5008,1,1,1,1,1,1,1,1,0.0145,0.5008,0.6293,1,0.3548,1,1,1,1,1,1,0,0.3548,0.6221,1,0.6134,1,1,1,0.0367,0.6134,0.521,1,1,1,1,1,0.002265822,0.880549073,0.187907904,1,1,1,1,1,0.002390011,0.876857698,0.130292937,1,1,1,1,1,0.002811063,0.880626679,0.605062832,0.605034906,0.605496454,1,1,1 -373,1,0.5003,1,1,1,1,1,1,1,1,0.0189,0.5003,0.6032,1,0.3547,1,1,1,1,1,1,0,0.3547,0.5993,1,0.6134,1,1,1,0.0405,0.6134,0.5412,1,1,1,1,1,0.004129499,0.82160759,0.064052969,1,1,1,1,1,0.002647798,0.859360158,0.097917542,1,1,1,1,1,0.005518335,0.911264956,0.622160464,0.62217051,0.622340426,1,1,1 -374,1,0.4998,1,1,1,1,1,1,1,1,0.0219,0.4998,0.5956,1,0.3545,1,1,1,1,1,1,0,0.3545,0.5694,1,0.6134,1,1,1,0.0526,0.6134,0.4555,1,1,1,1,1,0.007144081,0.804832161,0.088177927,1,1,1,1,1,0.004862648,0.765307427,0.012381938,1,1,1,1,1,0.051187784,0.865523696,0.628383277,0.62851703,0.628546099,1,1,1 -375,1,0.4993,1,1,1,1,1,1,1,1,0.0499,0.4993,0.5497,1,0.3544,1,1,1,1,1,1,0,0.3544,0.5184,1,0.6134,1,1,1,0.1268,0.6134,0.4178,1,1,1,1,1,0.020478513,0.803928673,0.069377817,1,1,1,1,1,0.013637004,0.728534877,0.009062566,1,1,1,1,1,0.125595883,0.733185232,0.632612373,0.632748043,0.632978723,1,1,1 -376,1,0.4988,1,1,1,1,1,1,1,1,0.077,0.4988,0.4475,1,0.3542,1,1,1,1,1,1,0,0.3542,0.4624,1,0.6134,1,1,1,0.2036,0.6134,0.3587,1,1,1,1,1,0.078456752,0.806182385,0.043587331,1,1,1,1,1,0.040330511,0.784437716,0.061906025,1,1,1,1,1,0.230736941,0.637027204,0.63738521,0.637613709,0.637411348,1,1,1 -377,1,0.4983,1,1,1,1,1,1,1,1,0.0979,0.4983,0.3146,1,0.354,1,1,1,1,1,1,0,0.354,0.3444,1,0.6134,1,1,1,0.1319,0.6134,0.2848,1,1,1,1,1,0.145345926,0.754471779,0.033999901,1,1,1,1,1,0.068920702,0.731807947,0.021825396,1,1,1,1,1,0.1605739,0.685909629,0.646145481,0.646287286,0.646276596,1,1,1 -378,1,0.4978,1,1,1,1,1,1,1,1,0.1186,0.4978,0.1529,1,0.3539,1,1,1,1,1,1,0.1888,0.3539,0.1995,1,0.6134,1,1,1,0.1342,0.6134,0.134,1,1,1,1,1,0.250567436,0.6176669,0.015773797,1,1,1,1,1,0.280011445,0.514961958,0,1,1,1,1,1,0.161806598,0.586301327,0.652549541,0.652633806,0.65248227,1,1,1 -379,1,0.4973,1,1,1,1,1,1,1,1,0.1807,0.4973,0.0686,1,0.3537,1,1,1,1,1,1,0.2795,0.3537,0.0905,1,0.6134,1,1,1,0.1234,0.6134,0.0714,1,1,1,1,1,0.293726653,0.340904981,0.018532129,1,1,1,1,1,0.338294953,0.294265181,0,1,1,1,1,1,0.174860343,0.342638254,0.64517883,0.645229533,0.645390071,1,1,1 -380,1,0.4968,1,1,1,1,1,1,1,1,0.0655,0.4968,0,1,0.3536,1,1,1,1,1,1,0.0233,0.3536,0,1,0.6134,1,1,1,0.176,0.6134,0,1,1,1,1,1,0.129458889,0,0.00505148,1,1,1,1,1,0.041073062,0,0,1,1,1,1,1,0.268521637,0.0000196,0.637143548,0.637190607,0.637411348,1,1,1 -381,1,0.4963,1,1,1,1,1,1,1,1,0.0918,0.4963,0,1,0.3534,1,1,1,1,1,1,0.1062,0.3534,0,1,0.6134,1,1,1,0.1566,0.6134,0,1,1,1,1,1,0.165676624,0,0.010476673,1,1,1,1,1,0.148222417,0,0.053382203,1,1,1,1,1,0.233442634,0,0.645843403,0.645864185,0.645833333,1,1,1 -382,1,0.4958,1,1,1,1,1,1,1,1,0.0698,0.4958,0,1,0.3533,1,1,1,1,1,1,0.222,0.3533,0,1,0.6134,1,1,1,0.1314,0.6134,0,1,1,1,1,1,0.198202223,0,0.014508187,1,1,1,1,1,0.238910809,0,0.098121733,1,1,1,1,1,0.265107542,0,0.617025133,0.617093294,0.617021277,1,1,1 -383,1,0.4953,1,1,1,1,1,1,1,1,0.0486,0.4953,0,1,0.3531,1,1,1,1,1,1,0.175,0.3531,0,1,0.6134,1,1,1,0.1383,0.6134,0,1,1,1,1,1,0.161508367,0,0.045076083,1,1,1,1,1,0.196971089,0,0.138786927,1,1,1,1,1,0.306821913,0,0.554253262,0.554262746,0.554521277,1,1,1 -384,1,0.4948,1,1,1,1,1,1,1,1,0.0422,0.4948,0,1,0.3529,1,1,1,1,1,1,0.1053,0.3529,0,1,0.6135,1,1,1,0.1693,0.6135,0,1,1,1,1,1,0.127100974,0,0.161075637,1,1,1,1,1,0.140977368,0,0.392001361,1,1,1,1,1,0.321119994,0,0.494139681,0.494182357,0.494237589,1,1,1 -385,1,0.1649,1,1,1,1,1,1,1,1,0.0966,0.1649,0,1,0.215,1,1,1,1,1,1,0.0302,0.215,0,1,0.5349,1,1,1,0.0151,0.5349,0,1,1,1,1,1,0.023907624,0,0.417306423,1,1,1,1,1,0.034292813,0,1,1,1,1,1,1,0.020571349,0,0.59618173,0.596149778,0.596187943,1,1,1 -386,1,0.1649,1,1,1,1,1,1,1,1,0.1738,0.1649,0,1,0.215,1,1,1,1,1,1,0.0737,0.215,0,1,0.5349,1,1,1,0.0282,0.5349,0,1,1,1,1,1,0.068487756,0,0.915883303,1,1,1,1,1,0.079222478,0,0.99107337,1,1,1,1,1,0.025771072,0,0.567544708,0.567590438,0.567375887,1,1,1 -387,1,0.1649,1,1,1,1,1,1,1,1,0.1676,0.1649,0,1,0.215,1,1,1,1,1,1,0.1417,0.215,0,1,0.5349,1,1,1,0.0371,0.5349,0,1,1,1,1,1,0.080683127,0,0.804368138,1,1,1,1,1,0.145942792,0,0.662275672,1,1,1,1,1,0.027744928,0,0.549238763,0.54918553,0.549202128,1,1,1 -388,1,0.1649,1,1,1,1,1,1,1,1,0.0604,0.1649,0,1,0.215,1,1,1,1,1,1,0.2023,0.215,0,1,0.5349,1,1,1,0.0232,0.5349,0,1,1,1,1,1,0.085766658,0,0.669743061,1,1,1,1,1,0.214158848,0,0.993282795,1,1,1,1,1,0.03124867,0,0.539632673,0.53966575,0.539893617,1,1,1 -389,1,0.1649,1,1,1,1,1,1,1,1,0.0876,0.1649,0,1,0.215,1,1,1,1,1,1,0.2069,0.215,0,1,0.5349,1,1,1,0.0179,0.5349,0,1,1,1,1,1,0.109562613,0,0.857402027,1,1,1,1,1,0.223272532,0,0.995654464,1,1,1,1,1,0.023975259,0,0.543318028,0.543473662,0.543439716,1,1,1 -390,1,0.1649,1,1,1,1,1,1,1,1,0.0716,0.1649,0.0316,1,0.215,1,1,1,1,1,1,0.201,0.215,0.0168,1,0.5349,1,1,1,0.0059,0.5349,0,1,1,1,1,1,0.104910389,0.048925817,0.622618437,1,1,1,1,1,0.21813342,0.028234283,0.676141143,1,1,1,1,1,0.014987183,0.005167271,0.568088449,0.568013539,0.568262411,1,1,1 -391,1,0.1649,1,1,1,1,1,1,1,1,0.0503,0.1649,0.0805,1,0.215,1,1,1,1,1,1,0.0923,0.215,0.1067,1,0.5349,1,1,1,0.0101,0.5349,0.086,1,1,1,1,1,0.044781681,0.382301807,0.735658586,1,1,1,1,1,0.081565261,0.424099892,0.372645557,1,1,1,1,1,0.038940638,0.238480106,0.627537458,0.627670827,0.627659575,1,1,1 -392,1,0.1649,1,1,1,1,1,1,1,1,0.1238,0.1649,0.2149,1,0.215,1,1,1,1,1,1,0.131,0.215,0.2393,1,0.5349,1,1,1,0.004,0.5349,0.2077,1,1,1,1,1,0.098245755,0.654169679,0.725578904,1,1,1,1,1,0.137218773,0.562330484,0.44511205,1,1,1,1,1,0.011610627,0.511969805,0.706319478,0.706367675,0.706560284,1,1,1 -393,1,0.1649,1,1,1,1,1,1,1,1,0.0824,0.1649,0.3659,1,0.215,1,1,1,1,1,1,0.1469,0.215,0.3837,1,0.5349,1,1,1,0.0017,0.5349,0.3529,1,1,1,1,1,0.071114846,0.757350922,0.579348803,1,1,1,1,1,0.114812493,0.752826154,0.30573538,1,1,1,1,1,0.009155178,0.727080345,0.767520541,0.767717368,0.767730497,1,1,1 -394,1,0.1649,1,1,1,1,1,1,1,1,0.0601,0.1649,0.4898,1,0.215,1,1,1,1,1,1,0.115,0.215,0.4951,1,0.5349,1,1,1,0.0039,0.5349,0.4723,1,1,1,1,1,0.032162994,0.805259585,0.530722499,1,1,1,1,1,0.09734036,0.810123205,0.275747657,1,1,1,1,1,0.007694993,0.788729906,0.816698888,0.816797123,0.816932624,1,1,1 -395,1,0.1649,1,1,1,1,1,1,1,1,0.1055,0.1649,0.5831,1,0.215,1,1,1,1,1,1,0.1406,0.215,0.5785,1,0.5349,1,1,1,0.0134,0.5349,0.5436,1,1,1,1,1,0.091004223,0.82989347,0.433776796,1,1,1,1,1,0.143119335,0.837365151,0.264700264,1,1,1,1,1,0.025805254,0.830189049,0.859956501,0.859953459,0.86037234,1,1,1 -396,1,0.1649,1,1,1,1,1,1,1,1,0.0853,0.1649,0.6085,1,0.215,1,1,1,1,1,1,0.2261,0.215,0.6126,1,0.5349,1,1,1,0.0451,0.5349,0.5843,1,1,1,1,1,0.092592314,0.849625409,0.373571277,1,1,1,1,1,0.198024914,0.863726378,0.238614678,1,1,1,1,1,0.089819893,0.84804672,0.894755921,0.894647768,0.894946809,1,1,1 -397,1,0.1649,1,1,1,1,1,1,1,1,0.1433,0.1649,0.5999,1,0.215,1,1,1,1,1,1,0.1885,0.215,0.6174,1,0.5349,1,1,1,0.0418,0.5349,0.5893,1,1,1,1,1,0.173794836,0.837577999,0.433625162,1,1,1,1,1,0.168830335,0.871693909,0.227770433,1,1,1,1,1,0.055512808,0.841647446,0.921640889,0.921726253,0.921985816,1,1,1 -398,1,0.1649,1,1,1,1,1,1,1,1,0.1712,0.1649,0.5772,1,0.215,1,1,1,1,1,1,0.1281,0.215,0.6044,1,0.5349,1,1,1,0.129,0.5349,0.5534,1,1,1,1,1,0.132632583,0.814279378,0.79791081,1,1,1,1,1,0.134183258,0.845688641,0.409148991,1,1,1,1,1,0.191790685,0.798665047,0.944719671,0.944785276,0.945035461,1,1,1 -399,1,0.1649,1,1,1,1,1,1,1,1,0.1848,0.1649,0.5188,1,0.215,1,1,1,1,1,1,0.1351,0.215,0.5663,1,0.5349,1,1,1,0.0866,0.5349,0.5003,1,1,1,1,1,0.152588874,0.773287952,1,1,1,1,1,1,0.130121231,0.795576215,0.439282239,1,1,1,1,1,0.096225865,0.698141456,0.94961334,0.949650941,0.949911348,1,1,1 -400,1,0.1649,1,1,1,1,1,1,1,1,0.1469,0.1649,0.4201,1,0.215,1,1,1,1,1,1,0.1776,0.215,0.4586,1,0.5349,1,1,1,0.0651,0.5349,0.4107,1,1,1,1,1,0.137453303,0.696662486,1,1,1,1,1,1,0.176341489,0.707151115,0.486715198,1,1,1,1,1,0.051740754,0.596123815,0.951486225,0.951554897,0.951684397,1,1,1 -401,1,0.1649,1,1,1,1,1,1,1,1,0.1033,0.1649,0.3017,1,0.215,1,1,1,1,1,1,0.1491,0.215,0.3374,1,0.5349,1,1,1,0.0463,0.5349,0.2813,1,1,1,1,1,0.096672967,0.611576557,1,1,1,1,1,1,0.148207724,0.601497173,0.705397964,1,1,1,1,1,0.054552019,0.579768598,0.949734171,0.949650941,0.949911348,1,1,1 -402,1,0.1649,1,1,1,1,1,1,1,1,0.218,0.1649,0.1691,1,0.215,1,1,1,1,1,1,0.267,0.215,0.2068,1,0.5349,1,1,1,0.0428,0.5349,0.1628,1,1,1,1,1,0.246728316,0.466124952,1,1,1,1,1,1,0.235715553,0.509555697,0.762290359,1,1,1,1,1,0.041651979,0.466523498,0.942665539,0.942669769,0.943262411,1,1,1 -403,1,0.1649,1,1,1,1,1,1,1,1,0.0872,0.1649,0.0705,1,0.215,1,1,1,1,1,1,0.0681,0.215,0.0937,1,0.5349,1,1,1,0.0372,0.5349,0.0507,1,1,1,1,1,0.117695704,0.194905758,1,1,1,1,1,1,0.059019528,0.3035146,0.570949793,1,1,1,1,1,0.034362815,0.137939692,0.920734654,0.9206685,0.921099291,1,1,1 -404,1,0.1649,1,1,1,1,1,1,1,1,0.0529,0.1649,0,1,0.215,1,1,1,1,1,1,0.0314,0.215,0,1,0.5349,1,1,1,0.0362,0.5349,0,1,1,1,1,1,0.100484103,0,1,1,1,1,1,1,0.037133232,0,0.491913617,1,1,1,1,1,0.057075974,0,0.891795553,0.89189761,0.892287234,1,1,1 -405,1,0.1649,1,1,1,1,1,1,1,1,0.0325,0.1649,0,1,0.215,1,1,1,1,1,1,0.0175,0.215,0,1,0.5349,1,1,1,0.0411,0.5349,0,1,1,1,1,1,0.059404828,0,0.998141885,1,1,1,1,1,0.026813105,0,0.682712853,1,1,1,1,1,0.099441372,0,0.880497825,0.880685424,0.880762411,1,1,1 -406,1,0.1649,1,1,1,1,1,1,1,1,0.0519,0.1649,0,1,0.215,1,1,1,1,1,1,0.0503,0.215,0,1,0.5349,1,1,1,0.0617,0.5349,0,1,1,1,1,1,0.107082434,0,0.723340154,1,1,1,1,1,0.06148164,0,0.634384334,1,1,1,1,1,0.148364067,0,0.845517158,0.845568014,0.845744681,1,1,1 -407,1,0.1649,1,1,1,1,1,1,1,1,0.0295,0.1649,0,1,0.215,1,1,1,1,1,1,0.0333,0.215,0,1,0.5349,1,1,1,0.0466,0.5349,0,1,1,1,1,1,0.067474082,0,0.636288285,1,1,1,1,1,0.048424825,0,0.577560782,1,1,1,1,1,0.103087641,0,0.764741421,0.764755659,0.765070922,1,1,1 -408,1,0.1649,1,1,1,1,1,1,1,1,0.0343,0.1649,0,1,0.215,1,1,1,1,1,1,0.1177,0.215,0,1,0.5349,1,1,1,0.0177,0.5349,0,1,1,1,1,1,0.076981142,0,0.689040303,1,1,1,1,1,0.100923747,0,1,1,1,1,1,1,0.047065575,0,0.684871919,0.684789507,0.685283688,1,1,1 -409,1,0.1649,1,1,1,1,1,1,1,1,0.04,0.1649,0,1,0.215,1,1,1,1,1,1,0.1587,0.215,0,1,0.5349,1,1,1,0.0209,0.5349,0,1,1,1,1,1,0.088664487,0,0.95889777,1,1,1,1,1,0.190048918,0,1,1,1,1,1,1,0.038112242,0,0.628262446,0.628305479,0.628546099,1,1,1 -410,1,0.1649,1,1,1,1,1,1,1,1,0.102,0.1649,0,1,0.215,1,1,1,1,1,1,0.2127,0.215,0,1,0.5349,1,1,1,0.0415,0.5349,0,1,1,1,1,1,0.196175486,0,0.973448098,1,1,1,1,1,0.253231585,0,1,1,1,1,1,1,0.042202726,0,0.59159014,0.591707214,0.591755319,1,1,1 -411,1,0.1649,1,1,1,1,1,1,1,1,0.1432,0.1649,0,1,0.215,1,1,1,1,1,1,0.2058,0.215,0,1,0.5349,1,1,1,0.0451,0.5349,0,1,1,1,1,1,0.255708128,0,0.82672441,1,1,1,1,1,0.296434999,0,0.279786944,1,1,1,1,1,0.042854957,0,0.567846786,0.567801989,0.567819149,1,1,1 -412,1,0.1649,1,1,1,1,1,1,1,1,0.1592,0.1649,0,1,0.215,1,1,1,1,1,1,0.1181,0.215,0,1,0.5349,1,1,1,0.0462,0.5349,0,1,1,1,1,1,0.142633662,0,0.596264303,1,1,1,1,1,0.179559961,0,0.178385884,1,1,1,1,1,0.059922714,0,0.553044949,0.552993442,0.553191489,1,1,1 -413,1,0.1649,1,1,1,1,1,1,1,1,0.1248,0.1649,0,1,0.215,1,1,1,1,1,1,0.11,0.215,0,1,0.5349,1,1,1,0.053,0.5349,0,1,1,1,1,1,0.161802918,0,0.586191595,1,1,1,1,1,0.127627045,0,0.15827696,1,1,1,1,1,0.076737471,0,0.554374094,0.554474297,0.554521277,1,1,1 -414,1,0.1649,1,1,1,1,1,1,1,1,0.1249,0.1649,0.0259,1,0.215,1,1,1,1,1,1,0.0505,0.215,0.0003,1,0.5349,1,1,1,0.0455,0.5349,0.0083,1,1,1,1,1,0.191856578,0.034566909,0.498638719,1,1,1,1,1,0.061767213,0.001520546,0.067278281,1,1,1,1,1,0.060737375,0.138037294,0.576788304,0.576687117,0.57712766,1,1,1 -415,1,0.1649,1,1,1,1,1,1,1,1,0.088,0.1649,0.096,1,0.215,1,1,1,1,1,1,0.0136,0.215,0.0996,1,0.5349,1,1,1,0.0247,0.5349,0.0608,1,1,1,1,1,0.145739317,0.34051609,0.377310753,1,1,1,1,1,0.021560257,0.306335449,0.000539267,1,1,1,1,1,0.037652876,0.473481745,0.639076849,0.639094563,0.639184397,1,1,1 -416,1,0.1649,1,1,1,1,1,1,1,1,0.0553,0.1649,0.2133,1,0.215,1,1,1,1,1,1,0.0031,0.215,0.2184,1,0.5349,1,1,1,0.0244,0.5349,0.0906,1,1,1,1,1,0.063441776,0.547159135,0.388509452,1,1,1,1,1,0.00647525,0.54831779,0.000329843,1,1,1,1,1,0.050226711,0.462442458,0.719973417,0.719906918,0.720301418,1,1,1 -417,1,0.1649,1,1,1,1,1,1,1,1,0.0608,0.1649,0.3624,1,0.215,1,1,1,1,1,1,0.0035,0.215,0.3801,1,0.5349,1,1,1,0.0266,0.5349,0.157,1,1,1,1,1,0.107709236,0.747829616,0.260568708,1,1,1,1,1,0.003027687,0.758825243,0.023841623,1,1,1,1,1,0.04504494,0.412879914,0.784859836,0.784852972,0.785017731,1,1,1 -418,1,0.1649,1,1,1,1,1,1,1,1,0.0483,0.1649,0.4795,1,0.215,1,1,1,1,1,1,0.0187,0.215,0.497,1,0.5349,1,1,1,0.0347,0.5349,0.3141,1,1,1,1,1,0.077111453,0.776483536,0.065477707,1,1,1,1,1,0.016431429,0.81982255,0.04393246,1,1,1,1,1,0.124877751,0.471285522,0.842194297,0.842183203,0.842198582,1,1,1 -419,1,0.1649,1,1,1,1,1,1,1,1,0.0521,0.1649,0.5633,1,0.215,1,1,1,1,1,1,0.0611,0.215,0.566,1,0.5349,1,1,1,0.0441,0.5349,0.3079,1,1,1,1,1,0.041601107,0.7407341,0.070179462,1,1,1,1,1,0.04828972,0.813200533,0.017215969,1,1,1,1,1,0.188969538,0.488849372,0.891855969,0.89189761,0.892287234,1,1,1 -420,1,0.1649,1,1,1,1,1,1,1,1,0.1347,0.1649,0.5708,1,0.215,1,1,1,1,1,1,0.1496,0.215,0.5632,1,0.5349,1,1,1,0.0817,0.5349,0.4452,1,1,1,1,1,0.034508858,0.721973896,0.095890448,1,1,1,1,1,0.122549281,0.76173687,0.032446075,1,1,1,1,1,0.224277183,0.530159354,0.925869986,0.925957267,0.92641844,1,1,1 -421,1,0.1649,1,1,1,1,1,1,1,1,0.3076,0.1649,0.534,1,0.215,1,1,1,1,1,1,0.199,0.215,0.5305,1,0.5349,1,1,1,0.0563,0.5349,0.4428,1,1,1,1,1,0.153099567,0.781870365,0.205791622,1,1,1,1,1,0.199565381,0.770466328,0.120509699,1,1,1,1,1,0.177167088,0.664518833,0.949311262,0.949439391,0.949468085,1,1,1 -422,1,0.1649,1,1,1,1,1,1,1,1,0.3513,0.1649,0.5641,1,0.215,1,1,1,1,1,1,0.2721,0.215,0.5783,1,0.5349,1,1,1,0.0923,0.5349,0.4834,1,1,1,1,1,0.191757113,0.821734905,0.377977192,1,1,1,1,1,0.273406863,0.844895959,0.295387983,1,1,1,1,1,0.146371976,0.715889216,0.970517158,0.970594457,0.970744681,1,1,1 -423,1,0.1649,1,1,1,1,1,1,1,1,0.5379,0.1649,0.5537,1,0.215,1,1,1,1,1,1,0.2836,0.215,0.5735,1,0.5349,1,1,1,0.0596,0.5349,0.4119,1,1,1,1,1,0.377724767,0.827906728,0.513582945,1,1,1,1,1,0.281844467,0.849149346,0.440620959,1,1,1,1,1,0.133162469,0.748334169,0.983929435,0.983922149,0.984042553,1,1,1 -424,1,0.1649,1,1,1,1,1,1,1,1,0.5602,0.1649,0.457,1,0.215,1,1,1,1,1,1,0.2746,0.215,0.4853,1,0.5349,1,1,1,0.054,0.5349,0.3376,1,1,1,1,1,0.354122341,0.795335829,0.714232802,1,1,1,1,1,0.308719426,0.822357357,0.799556851,1,1,1,1,1,0.152271077,0.724883318,0.99401885,0.994076581,0.994237589,1,1,1 -425,1,0.1649,1,1,1,1,1,1,1,1,0.573,0.1649,0.3439,1,0.215,1,1,1,1,1,1,0.2808,0.215,0.4051,1,0.5349,1,1,1,0.0413,0.5349,0.1446,1,1,1,1,1,0.322912455,0.916427732,0.975401282,1,1,1,1,1,0.337165982,0.947162032,1,1,1,1,1,1,0.119346462,0.805045307,1,1,1,1,1,1 -426,1,0.1649,1,1,1,1,1,1,1,1,0.5305,0.1649,0.1642,1,0.215,1,1,1,1,1,1,0.2359,0.215,0.2135,1,0.5349,1,1,1,0.0691,0.5349,0.0666,1,1,1,1,1,0.23743692,0.592885971,1,1,1,1,1,1,0.277880848,0.630017042,1,1,1,1,1,1,0.124509253,0.148911506,0.991723055,0.991749524,0.992021277,1,1,1 -427,1,0.1649,1,1,1,1,1,1,1,1,0.4565,0.1649,0.0638,1,0.215,1,1,1,1,1,1,0.1028,0.215,0.0909,1,0.5349,1,1,1,0.0799,0.5349,0.0064,1,1,1,1,1,0.273301721,0.291396022,1,1,1,1,1,1,0.126930207,0.36169523,1,1,1,1,1,1,0.183063909,0.001705564,0.968946351,0.968902052,0.969414894,1,1,1 -428,1,0.1649,1,1,1,1,1,1,1,1,0.3317,0.1649,0,1,0.215,1,1,1,1,1,1,0.0481,0.215,0,1,0.5349,1,1,1,0.0853,0.5349,0,1,1,1,1,1,0.196990103,0,1,1,1,1,1,1,0.092703208,0,1,1,1,1,1,1,0.188168913,0,0.939221846,0.939284959,0.93927305,1,1,1 -429,1,0.1649,1,1,1,1,1,1,1,1,0.2588,0.1649,0,1,0.215,1,1,1,1,1,1,0.1203,0.215,0,1,0.5349,1,1,1,0.1128,0.5349,0,1,1,1,1,1,0.243232921,0,1,1,1,1,1,1,0.192564219,0,1,1,1,1,1,1,0.278062165,0,0.92218463,0.922360905,0.922429078,1,1,1 -430,1,0.1649,1,1,1,1,1,1,1,1,0.3635,0.1649,0,1,0.215,1,1,1,1,1,1,0.1436,0.215,0,1,0.5349,1,1,1,0.136,0.5349,0,1,1,1,1,1,0.398288399,0,1,1,1,1,1,1,0.21815072,0,1,1,1,1,1,1,0.305683553,0,0.888533108,0.88872435,0.888741135,1,1,1 -431,1,0.1649,1,1,1,1,1,1,1,1,0.358,0.1649,0,1,0.215,1,1,1,1,1,1,0.1599,0.215,0,1,0.5349,1,1,1,0.2111,0.5349,0,1,1,1,1,1,0.299076855,0,1,1,1,1,1,1,0.2167622,0,1,1,1,1,1,1,0.479759544,0,0.812409377,0.812354559,0.8125,1,1,1 -432,1,0.1649,1,1,1,1,1,1,1,1,0.5364,0.1649,0,1,0.215,1,1,1,1,1,1,0.2532,0.215,0,1,0.5349,1,1,1,0.1774,0.5349,0,1,1,1,1,1,0.428693622,0,1,1,1,1,1,1,0.351906925,0,1,1,1,1,1,1,0.506558478,0,0.736768971,0.736830971,0.736702128,1,1,1 -433,1,0.1649,1,1,1,1,1,1,1,1,0.5554,0.1649,0,1,0.215,1,1,1,1,1,1,0.285,0.215,0,1,0.5349,1,1,1,0.1791,0.5349,0,1,1,1,1,1,0.446920902,0,1,1,1,1,1,1,0.369857788,0,1,1,1,1,1,1,0.434830606,0,0.68360319,0.683731754,0.683510638,1,1,1 -434,1,0.1649,1,1,1,1,1,1,1,1,0.6115,0.1649,0,1,0.215,1,1,1,1,1,1,0.2766,0.215,0,1,0.5349,1,1,1,0.2365,0.5349,0,1,1,1,1,1,0.520143688,0,1,1,1,1,1,1,0.392075658,0,1,1,1,1,1,1,0.462207615,0,0.650555824,0.65072985,0.65070922,1,1,1 -435,1,0.1649,1,1,1,1,1,1,1,1,0.5166,0.1649,0,1,0.215,1,1,1,1,1,1,0.2303,0.215,0,1,0.5349,1,1,1,0.265,0.5349,0,1,1,1,1,1,0.462805867,0,1,1,1,1,1,1,0.345716238,0,1,1,1,1,1,1,0.454005748,0,0.629712422,0.629786334,0.629875887,1,1,1 -436,1,0.1649,1,1,1,1,1,1,1,1,0.2835,0.1649,0,1,0.215,1,1,1,1,1,1,0.1009,0.215,0,1,0.5349,1,1,1,0.2695,0.5349,0,1,1,1,1,1,0.200760424,0,1,1,1,1,1,1,0.15580602,0,1,1,1,1,1,1,0.439529955,0,0.617085549,0.617093294,0.617464539,1,1,1 -437,1,0.1649,1,1,1,1,1,1,1,1,0.2476,0.1649,0,1,0.215,1,1,1,1,1,1,0.0649,0.215,0,1,0.5349,1,1,1,0.2045,0.5349,0,1,1,1,1,1,0.218583316,0,1,1,1,1,1,1,0.107753277,0,1,1,1,1,1,1,0.371108502,0,0.616420976,0.616458642,0.616578014,1,1,1 -438,1,0.1649,1,1,1,1,1,1,1,1,0.1892,0.1649,0.0054,1,0.215,1,1,1,1,1,1,0.0957,0.215,0.0003,1,0.5349,1,1,1,0.1657,0.5349,0.0115,1,1,1,1,1,0.230784699,0.014356065,1,1,1,1,1,1,0.144820839,0.001643444,1,1,1,1,1,1,0.310442865,0.043553945,0.637989367,0.63803681,0.638297872,1,1,1 -439,1,0.1649,1,1,1,1,1,1,1,1,0.1257,0.1649,0.0826,1,0.215,1,1,1,1,1,1,0.0842,0.215,0.1088,1,0.5349,1,1,1,0.1622,0.5349,0.0819,1,1,1,1,1,0.115110144,0.408010691,1,1,1,1,1,1,0.133617148,0.337741107,1,1,1,1,1,1,0.284077495,0.292382002,0.694478009,0.694520838,0.694592199,1,1,1 -440,1,0.1649,1,1,1,1,1,1,1,1,0.0923,0.1649,0.2036,1,0.215,1,1,1,1,1,1,0.0415,0.215,0.2241,1,0.5349,1,1,1,0.0704,0.5349,0.1882,1,1,1,1,1,0.09064839,0.500300586,1,1,1,1,1,1,0.057466157,0.492300063,1,1,1,1,1,1,0.125205591,0.4777928,0.777489125,0.77766025,0.777925532,1,1,1 -441,1,0.1649,1,1,1,1,1,1,1,1,0.0996,0.1649,0.3215,1,0.215,1,1,1,1,1,1,0.0653,0.215,0.3379,1,0.5349,1,1,1,0.0518,0.5349,0.2889,1,1,1,1,1,0.101875342,0.572936118,1,1,1,1,1,1,0.040974785,0.621728003,1,1,1,1,1,1,0.104450181,0.384502202,0.835729821,0.835625132,0.835992908,1,1,1 -442,1,0.1649,1,1,1,1,1,1,1,1,0.029,0.1649,0.4199,1,0.215,1,1,1,1,1,1,0.0273,0.215,0.4303,1,0.5349,1,1,1,0.0807,0.5349,0.4314,1,1,1,1,1,0.037748117,0.643825829,0.982930124,1,1,1,1,1,0.012773825,0.708128691,0.776718855,1,1,1,1,1,0.160246581,0.471451998,0.882672789,0.88258938,0.882978723,1,1,1 -443,1,0.1649,1,1,1,1,1,1,1,1,0.0736,0.1649,0.5034,1,0.215,1,1,1,1,1,1,0.0701,0.215,0.5516,1,0.5349,1,1,1,0.0721,0.5349,0.5286,1,1,1,1,1,0.090113364,0.691235483,0.944338918,1,1,1,1,1,0.058362749,0.803988457,0.69870472,1,1,1,1,1,0.151949063,0.701848865,0.931005317,0.931034483,0.931294326,1,1,1 -444,1,0.1649,1,1,1,1,1,1,1,1,0.0823,0.1649,0.5322,1,0.215,1,1,1,1,1,1,0.0938,0.215,0.5807,1,0.5349,1,1,1,0.0992,0.5349,0.6059,1,1,1,1,1,0.058706414,0.728465676,0.89212358,1,1,1,1,1,0.091590725,0.831256807,0.408814937,1,1,1,1,1,0.221775517,0.788343072,0.967858869,0.967844299,0.968085106,1,1,1 -445,1,0.1649,1,1,1,1,1,1,1,1,0.0944,0.1649,0.5403,1,0.215,1,1,1,1,1,1,0.1569,0.215,0.5564,1,0.5349,1,1,1,0.0835,0.5349,0.5827,1,1,1,1,1,0.104665354,0.751403451,0.815032542,1,1,1,1,1,0.209645316,0.791470885,0.291341901,1,1,1,1,1,0.176887646,0.826405048,0.990998067,0.991114872,0.991578014,1,1,1 -446,1,0.1649,1,1,1,1,1,1,1,1,0.3264,0.1649,0.4716,1,0.215,1,1,1,1,1,1,0.2171,0.215,0.4414,1,0.5349,1,1,1,0.1483,0.5349,0.5847,1,1,1,1,1,0.134735078,0.733063757,0.996589541,1,1,1,1,1,0.28378588,0.524960578,0.436626196,1,1,1,1,1,0.233327001,0.807368279,0.991723055,0.991749524,0.992021277,1,1,1 -447,1,0.1649,1,1,1,1,1,1,1,1,0.3717,0.1649,0.3179,1,0.215,1,1,1,1,1,1,0.6722,0.215,0.2005,1,0.5349,1,1,1,0.2132,0.5349,0.5537,1,1,1,1,1,0.23368378,0.4913477,1,1,1,1,1,1,0.584838092,0.310497671,1,1,1,1,1,1,0.35360831,0.779829025,0.968463026,0.968478951,0.968528369,1,1,1 -448,1,0.1649,1,1,1,1,1,1,1,1,0.3871,0.1649,0.1481,1,0.215,1,1,1,1,1,1,0.1198,0.215,0.201,1,0.5349,1,1,1,0.2665,0.5349,0.4275,1,1,1,1,1,0.193673953,0.276577056,1,1,1,1,1,1,0.138526395,0.359608442,1,1,1,1,1,1,0.321805239,0.748753369,0.923272112,0.923418659,0.923758865,1,1,1 -449,1,0.1649,1,1,1,1,1,1,1,1,0.265,0.1649,0.1209,1,0.215,1,1,1,1,1,1,0,0.215,0.2205,1,0.5349,1,1,1,0.2383,0.5349,0.3,1,1,1,1,1,0.128874421,0.364836365,1,1,1,1,1,1,0.015718777,0.300126106,1,1,1,1,1,1,0.392843694,0.63640517,0.889016433,0.8889359,0.889184397,1,1,1 -450,1,0.1649,1,1,1,1,1,1,1,1,0.1447,0.1649,0.1182,1,0.215,1,1,1,1,1,1,0,0.215,0.1106,1,0.5349,1,1,1,0.2359,0.5349,0.1539,1,1,1,1,1,0.148247615,0.360952109,0.782070756,1,1,1,1,1,0.003871796,0.122339971,0.919652998,1,1,1,1,1,0.395749539,0.481694907,0.874275012,0.874338904,0.874556738,1,1,1 -451,1,0.1649,1,1,1,1,1,1,1,1,0.0631,0.1649,0.0209,1,0.215,1,1,1,1,1,1,0.0081,0.215,0.0083,1,0.5349,1,1,1,0.2236,0.5349,0.0663,1,1,1,1,1,0.134407207,0.105237834,0.525878906,1,1,1,1,1,0.010777082,0.011056531,0.142133504,1,1,1,1,1,0.319491208,0.215907306,0.852042049,0.852126084,0.852393617,1,1,1 -452,1,0.1649,1,1,1,1,1,1,1,1,0.0738,0.1649,0,1,0.215,1,1,1,1,1,1,0.0061,0.215,0,1,0.5349,1,1,1,0.2269,0.5349,0,1,1,1,1,1,0.151918814,0,0.24867934,1,1,1,1,1,0.026775681,0,0.167484552,1,1,1,1,1,0.262148351,0,0.830715321,0.830759467,0.831117021,1,1,1 -453,1,0.1649,1,1,1,1,1,1,1,1,0.108,0.1649,0,1,0.215,1,1,1,1,1,1,0.0388,0.215,0,1,0.5349,1,1,1,0.2488,0.5349,0,1,1,1,1,1,0.219351977,0,0.086771652,1,1,1,1,1,0.062072091,0,0.497421801,1,1,1,1,1,0.302593887,0,0.824371677,0.824624498,0.824911348,1,1,1 -454,1,0.1649,1,1,1,1,1,1,1,1,0.154,0.1649,0,1,0.215,1,1,1,1,1,1,0.0381,0.215,0,1,0.5349,1,1,1,0.3402,0.5349,0,1,1,1,1,1,0.300874442,0,0.376271904,1,1,1,1,1,0.077332281,0,0.109956294,1,1,1,1,1,0.542058647,0,0.79760754,0.797546012,0.79787234,1,1,1 -455,1,0.1649,1,1,1,1,1,1,1,1,0.0907,0.1649,0,1,0.215,1,1,1,1,1,1,0.0832,0.215,0,1,0.5349,1,1,1,0.3945,0.5349,0,1,1,1,1,1,0.170339525,0,0.577430666,1,1,1,1,1,0.142371073,0,0.281535387,1,1,1,1,1,0.614292502,0,0.729942001,0.729849799,0.730053192,1,1,1 -456,1,0.1649,1,1,1,1,1,1,1,1,0.1312,0.1649,0,1,0.215,1,1,1,1,1,1,0.0742,0.215,0,1,0.5349,1,1,1,0.2117,0.5349,0,1,1,1,1,1,0.226485148,0,0.698540628,1,1,1,1,1,0.106692657,0,0.597258151,1,1,1,1,1,0.355144262,0,0.659195263,0.659191877,0.659574468,1,1,1 -457,1,0.1649,1,1,1,1,1,1,1,1,0.2031,0.1649,0,1,0.215,1,1,1,1,1,1,0.0598,0.215,0,1,0.5349,1,1,1,0.161,0.5349,0,1,1,1,1,1,0.203092501,0,1,1,1,1,1,1,0.115914375,0,0.858946085,1,1,1,1,1,0.352015317,0,0.604942001,0.604823355,0.605053192,1,1,1 -458,1,0.1649,1,1,1,1,1,1,1,1,0.0693,0.1649,0,1,0.215,1,1,1,1,1,1,0.0785,0.215,0,1,0.5349,1,1,1,0.1218,0.5349,0,1,1,1,1,1,0.073014692,0,0.553786516,1,1,1,1,1,0.092836194,0,0.573802888,1,1,1,1,1,0.315606326,0,0.565853069,0.565898033,0.566046099,1,1,1 -459,1,0.1649,1,1,1,1,1,1,1,1,0.0595,0.1649,0,1,0.215,1,1,1,1,1,1,0.0612,0.215,0,1,0.5349,1,1,1,0.1712,0.5349,0,1,1,1,1,1,0.048557453,0,0.182125241,1,1,1,1,1,0.061029151,0,0.097973824,1,1,1,1,1,0.356773734,0,0.541082649,0.540935054,0.541223404,1,1,1 -460,1,0.1649,1,1,1,1,1,1,1,1,0.1433,0.1649,0,1,0.215,1,1,1,1,1,1,0.1281,0.215,0,1,0.5349,1,1,1,0.1274,0.5349,0,1,1,1,1,1,0.081252858,0,0.084433675,1,1,1,1,1,0.155295983,0,0.00937932,1,1,1,1,1,0.261457473,0,0.525857902,0.525914957,0.52570922,1,1,1 -461,1,0.1649,1,1,1,1,1,1,1,1,0.1611,0.1649,0,1,0.215,1,1,1,1,1,1,0.1147,0.215,0,1,0.5349,1,1,1,0.1015,0.5349,0,1,1,1,1,1,0.056756094,0,0.155232966,1,1,1,1,1,0.160338864,0,0.056475923,1,1,1,1,1,0.23646307,0,0.525012083,0.524857203,0.525265957,1,1,1 -462,1,0.1649,1,1,1,1,1,1,1,1,0.1142,0.1649,0.0124,1,0.215,1,1,1,1,1,1,0.0704,0.215,0,1,0.5349,1,1,1,0.1133,0.5349,0.1712,1,1,1,1,1,0.039480805,0.034734808,0.344614059,1,1,1,1,1,0.101018563,0,0.220993727,1,1,1,1,1,0.273359031,0.333132505,0.543499275,0.543685213,0.543882979,1,1,1 -463,1,0.1649,1,1,1,1,1,1,1,1,0.0537,0.1649,0.0858,1,0.215,1,1,1,1,1,1,0.0337,0.215,0.0708,1,0.5349,1,1,1,0.0853,0.5349,0.0746,1,1,1,1,1,0.033044539,0.288021117,0.550334752,1,1,1,1,1,0.058161687,0.090551943,0.317995071,1,1,1,1,1,0.163404182,0.64150548,0.588629773,0.588745505,0.588652482,1,1,1 -464,1,0.1649,1,1,1,1,1,1,1,1,0.0204,0.1649,0.1993,1,0.215,1,1,1,1,1,1,0.0069,0.215,0.1866,1,0.5349,1,1,1,0.0704,0.5349,0.2154,1,1,1,1,1,0.010854188,0.448916018,0.546161592,1,1,1,1,1,0.029836489,0.332579553,0.352932483,1,1,1,1,1,0.141204849,0.82897234,0.643426776,0.643537127,0.643617021,1,1,1 -465,1,0.1649,1,1,1,1,1,1,1,1,0.012,0.1649,0.3012,1,0.215,1,1,1,1,1,1,0.0129,0.215,0.3088,1,0.5349,1,1,1,0.0809,0.5349,0.3946,1,1,1,1,1,0.004625168,0.554099262,0.459402621,1,1,1,1,1,0.019468248,0.387813836,0.457070947,1,1,1,1,1,0.147696659,0.880127192,0.675326245,0.675481278,0.675531915,1,1,1 -466,1,0.1649,1,1,1,1,1,1,1,1,0.0131,0.1649,0.4181,1,0.215,1,1,1,1,1,1,0,0.215,0.41,1,0.5349,1,1,1,0.0827,0.5349,0.5318,1,1,1,1,1,0.001710013,0.669843435,0.331966072,1,1,1,1,1,0.002571994,0.513942123,0.341971219,1,1,1,1,1,0.179438919,0.91497761,0.697498792,0.697694098,0.697695036,1,1,1 -467,1,0.1649,1,1,1,1,1,1,1,1,0.0392,0.1649,0.5171,1,0.215,1,1,1,1,1,1,0,0.215,0.4767,1,0.5349,1,1,1,0.0657,0.5349,0.5926,1,1,1,1,1,0.009030138,0.758770585,0.416693121,1,1,1,1,1,0.006532928,0.623589337,0.5023458,1,1,1,1,1,0.093943827,0.908989847,0.719188014,0.719272266,0.719414894,1,1,1 -468,1,0.1649,1,1,1,1,1,1,1,1,0.0337,0.1649,0.5313,1,0.215,1,1,1,1,1,1,0,0.215,0.5248,1,0.5349,1,1,1,0.1638,0.5349,0.5996,1,1,1,1,1,0.013189962,0.790840447,0.331713498,1,1,1,1,1,0.003781874,0.71173346,0.4322474,1,1,1,1,1,0.266508639,0.903005779,0.734171097,0.734292363,0.734485816,1,1,1 -469,1,0.1649,1,1,1,1,1,1,1,1,0.0232,0.1649,0.5773,1,0.215,1,1,1,1,1,1,0.0038,0.215,0.5645,1,0.5349,1,1,1,0.1372,0.5349,0.604,1,1,1,1,1,0.024710197,0.82169652,0.148988813,1,1,1,1,1,0.005695872,0.800025225,0.254680365,1,1,1,1,1,0.177739739,0.881454289,0.743233446,0.743389042,0.743351064,1,1,1 -470,1,0.1649,1,1,1,1,1,1,1,1,0.0262,0.1649,0.5196,1,0.215,1,1,1,1,1,1,0.0344,0.215,0.5172,1,0.5349,1,1,1,0.2062,0.5349,0.5363,1,1,1,1,1,0.046252828,0.744971216,0.400914371,1,1,1,1,1,0.026595816,0.767799616,0.131301835,1,1,1,1,1,0.240302816,0.755365968,0.756343644,0.756293632,0.756648936,1,1,1 -471,1,0.1649,1,1,1,1,1,1,1,1,0.0394,0.1649,0.4946,1,0.215,1,1,1,1,1,1,0.042,0.215,0.5145,1,0.5349,1,1,1,0.293,0.5349,0.4946,1,1,1,1,1,0.048311885,0.759233892,0.346616268,1,1,1,1,1,0.023692181,0.753026187,0.060074352,1,1,1,1,1,0.398055136,0.758140385,0.76099565,0.760947747,0.761524823,1,1,1 -472,1,0.1649,1,1,1,1,1,1,1,1,0.0395,0.1649,0.4443,1,0.215,1,1,1,1,1,1,0.0601,0.215,0.4684,1,0.5349,1,1,1,0.3,0.5349,0.4206,1,1,1,1,1,0.052704442,0.769900858,0.04904097,1,1,1,1,1,0.048752945,0.782815218,0.113629326,1,1,1,1,1,0.276938498,0.67558521,0.766855969,0.766871166,0.767287234,1,1,1 -473,1,0.1649,1,1,1,1,1,1,1,1,0.0734,0.1649,0.3279,1,0.215,1,1,1,1,1,1,0.0188,0.215,0.3687,1,0.5349,1,1,1,0.3075,0.5349,0.3049,1,1,1,1,1,0.071964227,0.745966792,0.101872809,1,1,1,1,1,0.03249548,0.766022027,0.113960475,1,1,1,1,1,0.386607349,0.673641264,0.772897535,0.772794584,0.773049645,1,1,1 -474,1,0.1649,1,1,1,1,1,1,1,1,0.0658,0.1649,0.1745,1,0.215,1,1,1,1,1,1,0.0076,0.215,0.2197,1,0.5349,1,1,1,0.268,0.5349,0.1543,1,1,1,1,1,0.08904288,0.641563058,0.160282776,1,1,1,1,1,0.035651691,0.655197084,0.033726703,1,1,1,1,1,0.300646275,0.584378064,0.770722571,0.770679078,0.770833333,1,1,1 -475,1,0.1649,1,1,1,1,1,1,1,1,0.0757,0.1649,0.071,1,0.215,1,1,1,1,1,1,0,0.215,0.0928,1,0.5349,1,1,1,0.2591,0.5349,0.0691,1,1,1,1,1,0.144742221,0.330304802,0.192567304,1,1,1,1,1,0.005692022,0.279427737,0.062466234,1,1,1,1,1,0.317055255,0.406945348,0.748550024,0.748677808,0.749113475,1,1,1 -476,1,0.1649,1,1,1,1,1,1,1,1,0.0515,0.1649,0.0002,1,0.215,1,1,1,1,1,1,0.0888,0.215,0,1,0.5349,1,1,1,0.1143,0.5349,0.0478,1,1,1,1,1,0.078745119,0,0.225619927,1,1,1,1,1,0.109765127,0,0.179941356,1,1,1,1,1,0.209791765,0,0.721906718,0.721810874,0.722074468,1,1,1 -477,1,0.1649,1,1,1,1,1,1,1,1,0.0704,0.1649,0,1,0.215,1,1,1,1,1,1,0.14,0.215,0,1,0.5349,1,1,1,0.1777,0.5349,0,1,1,1,1,1,0.173726961,0,0.187185794,1,1,1,1,1,0.140384704,0,0.267715991,1,1,1,1,1,0.318446577,0,0.717435959,0.71757986,0.717641844,1,1,1 -478,1,0.1649,1,1,1,1,1,1,1,1,0.0026,0.1649,0,1,0.215,1,1,1,1,1,1,0,0.215,0,1,0.5349,1,1,1,0.0053,0.5349,0,1,1,1,1,1,0.001307457,0,0.172808588,1,1,1,1,1,0.000122102,0,0.264530391,1,1,1,1,1,0.007717164,0,0.692544708,0.692616882,0.692819149,1,1,1 -479,1,0.1649,1,1,1,1,1,1,1,1,0.0211,0.1649,0,1,0.215,1,1,1,1,1,1,0,0.215,0,1,0.5349,1,1,1,0.1874,0.5349,0,1,1,1,1,1,0.082256749,0,0.071840972,1,1,1,1,1,0.029596476,0,0.12061806,1,1,1,1,1,0.388096631,0,0.632189464,0.632113391,0.632535461,1,1,1 -480,1,0.1649,1,1,1,1,1,1,1,1,0.0279,0.1649,0,1,0.215,1,1,1,1,1,1,0.0349,0.215,0,1,0.5349,1,1,1,0.2378,0.5349,0,1,1,1,1,1,0.074167073,0,0.126893818,1,1,1,1,1,0.048897166,0,0.179285884,1,1,1,1,1,0.479969114,0,0.56863219,0.568648191,0.568705674,1,1,1 \ No newline at end of file +Time_Index,NENGREST_conventional_hydroelectric_1,NENGREST_onshore_wind_turbine_1,NENGREST_small_hydroelectric_1,NENGREST_solar_photovoltaic_1,NENG_CT_conventional_hydroelectric_1,NENG_CT_onshore_wind_turbine_1,NENG_CT_small_hydroelectric_1,NENG_CT_solar_photovoltaic_1,NENG_ME_conventional_hydroelectric_1,NENG_ME_onshore_wind_turbine_1,NENG_ME_small_hydroelectric_1,NENG_ME_solar_photovoltaic_1,NENGREST_landbasedwind_ltrg1_mid_130_1,NENGREST_utilitypv_losangeles_mid_80_0_2_1,NENGREST_offshorewind_otrg3_mid_fixed_1_176_77_1,NENG_CT_landbasedwind_ltrg1_mid_110_1,NENG_CT_utilitypv_losangeles_mid_80_0_2_1,NENG_CT_offshorewind_otrg3_mid_fixed_1_176_77_1,NENG_ME_landbasedwind_ltrg1_mid_110_1,NENG_ME_utilitypv_losangeles_mid_100_0_2_1,NENGREST_heat_load_shifting_1,NENG_CT_heat_load_shifting_1,NENG_ME_heat_load_shifting_1 +1,0.1531,0.0153,0.1531,0,0.2065,0.0626,0.2065,0,0.5201,0.2652,0.5201,0,0.065292753,0,0.01332443,0.103481233,0,0.000801047,0.376813948,0,0.547788787,0.547704675,0.54787234 +2,0.1529,0.0096,0.1529,0,0.2064,0.0741,0.2064,0,0.5199,0.2219,0.5199,0,0.052334037,0,0.003825564,0.122626804,0,0.015034294,0.364595324,0,0.51323103,0.513221917,0.513297872 +3,0.1528,0.0024,0.1528,0,0.2063,0.1111,0.2063,0,0.5198,0.2331,0.5198,0,0.040673904,0,0.000506716,0.161907911,0,0.026875654,0.402507216,0,0.490454326,0.490585995,0.490691489 +4,0.1527,0.0013,0.1527,0,0.2062,0.07,0.2062,0,0.5196,0.2218,0.5196,0,0.026909461,0,0,0.099254258,0,0.00276911,0.400019258,0,0.47661914,0.476835202,0.476950355 +5,0.1525,0.0033,0.1525,0,0.2061,0.0733,0.2061,0,0.5194,0.1759,0.5194,0,0.020325907,0,0,0.110299528,0,0.035911258,0.330832094,0,0.473537941,0.473661942,0.473404255 +6,0.1524,0,0.1524,0,0.206,0.0365,0.206,0,0.5193,0.1043,0.5193,0,0.007212133,3.65E-06,0,0.063602038,0,0.050005242,0.222387373,0.013533911,0.477706622,0.477681405,0.477836879 +7,0.1523,0,0.1523,0.0759,0.2059,0.0234,0.2059,0.0696,0.5191,0.0769,0.5191,0.0904,0.008170175,0.184360758,0.027611975,0.040593714,0.125903487,0.047288746,0.17746836,0.332922995,0.496012567,0.496086313,0.496010638 +8,0.1521,0,0.1521,0.1942,0.2058,0,0.2058,0.2154,0.5189,0.0447,0.5189,0.198,5.58E-05,0.392683566,0.051668573,0.011311333,0.391294956,0.030801307,0.131412923,0.529030442,0.539934751,0.539877301,0.540336879 +9,0.152,0,0.152,0.3388,0.2057,0.009,0.2057,0.3492,0.5188,0.0288,0.5188,0.2909,0.000133052,0.587511301,0.133093059,0.013711058,0.605442703,0.037334293,0.095543988,0.561009407,0.595396327,0.595515126,0.595301418 +10,0.1519,0.0041,0.1519,0.4434,0.2056,0.0158,0.2056,0.3816,0.5186,0.0346,0.5186,0.3935,0.002134913,0.685464025,0.234719694,0.018147571,0.618171573,0.107505769,0.07800559,0.567943335,0.644937168,0.645017982,0.645390071 +11,0.1517,0.0059,0.1517,0.5172,0.2055,0.0441,0.2055,0.3968,0.5184,0.0048,0.5184,0.4017,0.00234053,0.616370916,0.156284452,0.042958312,0.599574626,0.191954464,0.025781849,0.650587142,0.680280329,0.680346943,0.680407801 +12,0.1516,0.0191,0.1516,0.4947,0.2054,0.0771,0.2054,0.4368,0.5183,0.0143,0.5183,0.5062,0.008151108,0.622940779,0.242628396,0.073289946,0.644762218,0.31661284,0.048904218,0.58204931,0.699009183,0.698963402,0.699024823 +13,0.1515,0.0301,0.1515,0.4841,0.2053,0,0.2053,0.3948,0.5181,0.0453,0.5181,0.5072,0.006961724,0.623241484,0.406754732,0.020861842,0.588721633,0.293354213,0.083536409,0.61391294,0.706198647,0.706156124,0.706560284 +14,0.1513,0.0559,0.1513,0.4469,0.2052,0.0013,0.2052,0.3538,0.5179,0.0639,0.5179,0.5036,0.009078478,0.570706308,0.316491723,0.008775378,0.517868459,0.227496073,0.086366162,0.632317364,0.706681972,0.706579226,0.707003546 +15,0.1512,0.1051,0.1512,0.3442,0.2051,0.0821,0.2051,0.2453,0.5178,0.08,0.5178,0.3942,0.028089678,0.446025997,0.373291254,0.095363103,0.31654349,0.741438508,0.082046971,0.540764332,0.701123731,0.701078908,0.701241135 +16,0.1511,0.06,0.1511,0.2529,0.205,0.1972,0.205,0.1974,0.5176,0.0747,0.5176,0.3035,0.050746199,0.309538156,0.228688031,0.123457052,0.28948319,0.20311676,0.085125253,0.468044192,0.68499275,0.685001058,0.685283688 +17,0.1509,0.03,0.1509,0.1595,0.2049,0.1352,0.2049,0.0995,0.5174,0.0801,0.5174,0.1983,0.017428808,0.138130486,0.296999008,0.123827852,0.180463612,0.148169905,0.097150236,0.409677744,0.670976317,0.671038714,0.671099291 +18,0.1508,0.0069,0.1508,0.0649,0.2048,0.0565,0.2048,0.0488,0.5173,0.1059,0.5173,0.1037,0.007835865,0.061673351,0.292313695,0.06580779,0.134101063,0.099628538,0.117435888,0.165352792,0.664330595,0.664480643,0.664893617 +19,0.1507,0.0133,0.1507,0.0001,0.2047,0.047,0.2047,0.0018,0.5171,0.087,0.5171,0.0095,0.019914083,0.000127123,0.160788432,0.047395445,0.003018669,0.046998691,0.116367564,0.003531569,0.654120348,0.654114661,0.654255319 +20,0.1505,0.0333,0.1505,0,0.2046,0.1201,0.2046,0,0.5169,0.0334,0.5169,0,0.07540524,0,0.064300358,0.165233195,0,0.111020416,0.091881208,0,0.645480909,0.645441083,0.645833333 +21,0.1504,0.1005,0.1504,0,0.2045,0.203,0.2045,0,0.5168,0.0233,0.5168,0,0.052637972,0,0.231896117,0.236350656,0,0.010772513,0.085106082,0,0.645662156,0.645864185,0.645833333 +22,0.1503,0.0289,0.1503,0,0.2044,0.0707,0.2044,0,0.5166,0.0138,0.5166,0,0.026745947,0,0.126861706,0.070020534,0,0.319542706,0.020752296,0,0.622704205,0.622593611,0.622783688 +23,0.1501,0.0468,0.1501,0,0.2044,0.0188,0.2044,0,0.5164,0.0102,0.5164,0,0.025927531,0,0.152657956,0.013385094,0,0.034334295,0.017476626,0,0.581863219,0.581764333,0.582003546 +24,0.15,0.0744,0.15,0,0.2043,0.007,0.2043,0,0.5163,0.0101,0.5163,0,0.03693749,0,0.1048944,0.013921568,0,0.015131153,0.022096325,0,0.536249396,0.536280939,0.536347518 +25,0.1499,0.0421,0.1499,0,0.2042,0.0236,0.2042,0,0.5161,0.0183,0.5161,0,0.034658864,0,0.08944007,0.031985622,0,0.018787697,0.045628548,0,0.496495892,0.496509414,0.496453901 +26,0.1497,0.0615,0.1497,0,0.2041,0.0726,0.2041,0,0.5159,0.0196,0.5159,0,0.044860251,0,0.215190679,0.086156786,0,0.174672514,0.039953098,0,0.470577574,0.470700233,0.470301418 +27,0.1496,0.0948,0.1496,0,0.204,0.0582,0.204,0,0.5158,0.004,0.5158,0,0.052799776,0,0.411421448,0.097559929,0,0.201319903,0.019691244,0,0.453600773,0.453776179,0.453457447 +28,0.1495,0.1125,0.1495,0,0.2039,0.057,0.2039,0,0.5156,0.0056,0.5156,0,0.067824267,0,0.552116275,0.119017407,0,0.200681686,0.028433105,0,0.443813436,0.443833298,0.443705674 +29,0.1493,0.0796,0.1493,0,0.2038,0.0325,0.2038,0,0.5154,0.0158,0.5154,0,0.050243534,0,0.421252549,0.074381158,0,0.200313881,0.043670997,0,0.441517641,0.441506241,0.441489362 +30,0.1492,0.0155,0.1492,0,0.2037,0.0176,0.2037,0,0.5153,0.034,0.5153,0,0.017221928,0,0.220671773,0.074560687,0,0.16608718,0.074578553,0,0.444961334,0.444891051,0.445035461 +31,0.1491,0.0179,0.1491,0.0332,0.2036,0.019,0.2036,0.0514,0.5151,0.0306,0.5151,0.0403,0.010373427,0.066505551,0.27323544,0.043967955,0.200801462,0.080578797,0.072065502,0.057881795,0.452694538,0.452718426,0.452570922 +32,0.1489,0.0156,0.1489,0.1747,0.2035,0,0.2035,0.2047,0.5149,0.0121,0.5149,0.1587,0.002428631,0.32694453,0.200677544,0.006775284,0.378910482,0.060398959,0.035953183,0.217560619,0.482116965,0.482123969,0.482269504 +33,0.1488,0.0172,0.1488,0.2926,0.2034,0,0.2034,0.3065,0.5148,0.004,0.5148,0.2751,0.002566876,0.448335052,0.304661334,0.00093309,0.458124369,0.142086655,0.011958488,0.302506179,0.524105848,0.524011001,0.524379433 +34,0.1487,0.0241,0.1487,0.3854,0.2033,0,0.2033,0.3813,0.5146,0.015,0.5146,0.3408,0.003611403,0.531844318,0.226176024,0.000243986,0.539205372,0.096455775,0.025423488,0.448341131,0.561684389,0.561667019,0.561613475 +35,0.1485,0.032,0.1485,0.4568,0.2032,0.0101,0.2032,0.4341,0.5144,0.0204,0.5144,0.4201,0.005624436,0.601224899,0.243716806,0.005231365,0.601645231,0.201825649,0.042783734,0.532999754,0.587723538,0.587687751,0.587765957 +36,0.1484,0.0592,0.1484,0.4712,0.2031,0.0091,0.2031,0.441,0.5143,0.0138,0.5143,0.4445,0.012782884,0.621242821,0.156384543,0.013265309,0.61688453,0.206813097,0.038536161,0.556740463,0.607237796,0.607150413,0.607712766 +37,0.1483,0.0442,0.1483,0.4664,0.203,0.0012,0.203,0.4547,0.5141,0.0402,0.5141,0.438,0.017346889,0.61447376,0.074185491,0.015720278,0.650676727,0.138357863,0.079403915,0.538190424,0.61901885,0.61899725,0.619237589 +38,0.1481,0.0466,0.1481,0.5758,0.2029,0.0015,0.2029,0.5636,0.5139,0.0237,0.5139,0.5244,0.013750245,0.772060514,0.022568563,0.011008149,0.749152422,0.028026965,0.055592764,0.577705145,0.62040841,0.620478105,0.620567376 +39,0.148,0.0428,0.148,0.3979,0.2028,0.0023,0.2028,0.3996,0.5138,0.008,0.5138,0.4006,0.017138852,0.55417341,0.051447712,0.004268894,0.60099411,0,0.026709341,0.438920111,0.618475109,0.618574149,0.618351064 +40,0.1479,0.0379,0.1479,0.3435,0.2027,0,0.2027,0.3548,0.5136,0.0195,0.5136,0.348,0.014250422,0.512610257,0.035391368,0.000125251,0.582904279,0,0.036932766,0.385501057,0.615514741,0.615612439,0.615691489 +41,0.1477,0.0353,0.1477,0.2533,0.2026,0,0.2026,0.247,0.5134,0.0102,0.5134,0.2132,0.006402459,0.416100174,0.032427806,0.00053452,0.548698306,0.006775393,0.01535768,0.347824365,0.621495892,0.621747409,0.621897163 +42,0.1476,0.0441,0.1476,0.1416,0.2025,0,0.2025,0.1639,0.5133,0.0523,0.5133,0.1217,0.010903064,0.284536719,0.047829591,9.45E-05,0.431092978,0,0.047571044,0.2250451,0.630135331,0.630209435,0.630319149 +43,0.1475,0.0356,0.1475,0.037,0.2024,0,0.2024,0.0612,0.5131,0.064,0.5131,0.03,0.014553991,0.129970193,0.041080989,5.81E-05,0.285668582,0.000612566,0.077780418,0.057166476,0.626570807,0.626613074,0.62677305 +44,0.1473,0.0365,0.1473,0,0.2023,0,0.2023,0,0.5129,0.0507,0.5129,0,0.007713901,0,0.126314491,0.004635042,0,0.207087189,0.107284553,0,0.61762929,0.617727946,0.617907801 +45,0.1472,0.0129,0.1472,0,0.2022,0.0042,0.2022,0,0.5128,0.0535,0.5128,0,0.0058565,0,0.08200334,0.014006531,0,0.149906278,0.101532109,0,0.624395843,0.624497567,0.624556738 +46,0.1471,0.0357,0.1471,0,0.2021,0,0.2021,0,0.5126,0.0478,0.5126,0,0.022701541,0,0.111567095,0.017007494,0,0.040073823,0.086758919,0,0.605969067,0.605881109,0.605939716 +47,0.1469,0.0129,0.1469,0,0.202,0.0425,0.202,0,0.5124,0.0701,0.5124,0,0.020868678,0,0.083027355,0.061066702,0,0.016895551,0.152101591,0,0.560053166,0.560186165,0.560283688 +48,0.1468,0.004,0.1468,0,0.2019,0,0.2019,0,0.5123,0.0002,0.5123,0,8.66E-05,0,0.075362757,1.13E-05,0,0.080960475,0.000741268,0,0.510270662,0.510260207,0.510638298 +49,0.1467,0.0124,0.1467,0,0.2018,0.008,0.2018,0,0.5121,0.0677,0.5121,0,0.004744857,0,0.097618878,0.030100621,0,0.003839006,0.177268758,0,0.470940068,0.470911783,0.470744681 +50,0.1465,0.0114,0.1465,0,0.2018,0,0.2018,0,0.5119,0.0677,0.5119,0,0.002719705,0,0.225894779,0.019255322,0,0.029375395,0.197093874,0,0.446471726,0.446583457,0.446365248 +51,0.1464,0.002,0.1464,0,0.2017,0,0.2017,0,0.5118,0,0.5118,0,0.00010409,0,0.188784003,0.000033714,0,0.096268073,0.002023064,0,0.432576124,0.432621113,0.432624114 +52,0.1463,0.0056,0.1463,0,0.2016,0,0.2016,0,0.5116,0.0839,0.5116,0,0.006765652,0,0.20851934,0.005068693,0,0.042369112,0.214174733,0,0.426957467,0.426909245,0.426861702 +53,0.1461,0.0038,0.1461,0,0.2015,0,0.2015,0,0.5114,0.0612,0.5114,0,0.008018229,0,0.088911235,0.002749863,0,0.024419634,0.226037741,0,0.435838569,0.435794373,0.43572695 +54,0.146,0.0193,0.146,0.0006,0.2014,0.0045,0.2014,0,0.5113,0.0584,0.5113,0.0024,0.008957319,0.000240326,0.021473989,0.012861684,0,0.037380628,0.230653733,0.060233783,0.462119381,0.462238206,0.461879433 +55,0.1459,0.0081,0.1459,0.0743,0.2013,0,0.2013,0.1022,0.5111,0.0583,0.5111,0.0537,0.003660081,0.48990795,0,0.00046645,0.446400285,0,0.232023567,0.501660347,0.513291445,0.513433467,0.513297872 +56,0.1457,0.0012,0.1457,0.2155,0.2012,0,0.2012,0.2321,0.5109,0.0368,0.5109,0.1997,0.000613676,0.674091935,0.001419886,0,0.604865134,0,0.097109132,0.748290956,0.579144514,0.579225725,0.579343972 +57,0.1456,0,0.1456,0.3828,0.2011,0,0.2011,0.4014,0.5108,0.0202,0.5108,0.3758,0.00011487,0.816774249,0.001373258,0,0.744025827,0,0.042923428,0.832321525,0.629712422,0.629786334,0.629875887 +58,0.1455,0,0.1455,0.5145,0.201,0,0.201,0.5211,0.5106,0.0073,0.5106,0.5148,4.48E-06,0.876774967,0,0,0.799411118,0,0.013343919,0.872836471,0.667351378,0.667442352,0.667553192 +59,0.1453,0.0003,0.1453,0.6114,0.2009,0,0.2009,0.6106,0.5104,0.0077,0.5104,0.6151,0.000885552,0.891837001,0,0.000243949,0.836563349,0,0.006216149,0.894069552,0.700217496,0.700232706,0.70035461 +60,0.1452,0.0086,0.1452,0.6382,0.2008,0,0.2008,0.6374,0.5103,0.0061,0.5103,0.638,0.002429813,0.898506522,0,0.002871435,0.854514718,0,0.00786264,0.897833586,0.724262929,0.724349482,0.72429078 +61,0.1451,0.057,0.1451,0.6077,0.2007,0.0048,0.2007,0.6107,0.5101,0.0007,0.5101,0.5879,0.023022356,0.853422284,0.062501624,0.012987654,0.825059712,0.007581153,0.00919114,0.827724934,0.742266796,0.742331288,0.742464539 +62,0.1449,0.0394,0.1449,0.6255,0.2006,0.0393,0.2006,0.635,0.5099,0.0079,0.5099,0.6294,0.00606587,0.879794538,0.012417493,0.026892424,0.87692523,0.012503928,0.018922158,0.861542642,0.762143548,0.762217051,0.762411348 +63,0.1448,0.0549,0.1448,0.584,0.2005,0.0072,0.2005,0.6011,0.5098,0.0364,0.5098,0.5815,0.022713542,0.805331826,0.002281686,0.019087818,0.871758938,0.016798168,0.044150669,0.8518942,0.775012083,0.775121642,0.775265957 +64,0.1447,0.096,0.1447,0.4761,0.2004,0.0092,0.2004,0.5084,0.5096,0.0748,0.5096,0.4653,0.05813643,0.797433376,0.002159626,0.025647491,0.843530536,0,0.110258639,0.783786058,0.782201547,0.782314364,0.782801418 +65,0.1445,0.1858,0.1445,0.3395,0.2003,0.0145,0.2003,0.3821,0.5094,0.1496,0.5094,0.3204,0.115620852,0.763544381,0.000863487,0.0305652,0.802785814,0,0.255804598,0.741935492,0.788303528,0.788449334,0.78856383 +66,0.1444,0.1698,0.1444,0.168,0.2002,0.0265,0.2002,0.2194,0.5093,0.1903,0.5093,0.1469,0.111024849,0.681785107,0.002296204,0.054737903,0.697857201,0,0.229029477,0.62893939,0.783893185,0.783795219,0.784131206 +67,0.1443,0.1601,0.1443,0.0586,0.2001,0.0522,0.2001,0.0915,0.5091,0.2388,0.5091,0.0512,0.150710434,0.431306392,0.013319594,0.093738839,0.447823852,0,0.428741276,0.354201168,0.762928951,0.762851703,0.763297872 +68,0.1441,0.0452,0.1441,0,0.2,0.0607,0.2,0,0.5089,0.0047,0.5089,0,0.022967177,0,0.008663013,0.056786023,0,0.129303664,0.002968501,0,0.734473175,0.734503914,0.734485816 +69,0.144,0.0247,0.144,0,0.1999,0.0491,0.1999,0,0.5088,0.0089,0.5088,0,0.01622523,0,0.041881327,0.046015333,0,0.190009683,0.001798895,0,0.727706622,0.727734292,0.727836879 +70,0.1439,0.1295,0.1439,0,0.1998,0.1059,0.1998,0,0.5086,0.1427,0.5086,0,0.151130855,0,0.105958581,0.12655279,0,0.016958378,0.25828594,0,0.694417593,0.694520838,0.694592199 +71,0.1437,0.0856,0.1437,0,0.1997,0.0402,0.1997,0,0.5084,0.1061,0.5084,0,0.105697438,0,0.115842223,0.056476753,0,0.019089006,0.239348143,0,0.626147898,0.626189973,0.626329787 +72,0.1436,0.1058,0.1436,0,0.1996,0.0376,0.1996,0,0.5083,0.105,0.5083,0,0.157893077,0,0.062783882,0.049083069,0,0.008295288,0.210482791,0,0.558965684,0.558916861,0.558953901 +73,0.1435,0.0894,0.1435,0,0.1995,0.061,0.1995,0,0.5081,0.1314,0.5081,0,0.121989697,0,0.071597286,0.05584668,0,0.022780106,0.229862139,0,0.510149831,0.510260207,0.510638298 +74,0.1433,0.069,0.1433,0,0.1994,0.0494,0.1994,0,0.5079,0.1381,0.5079,0,0.086370833,0,0.062523902,0.06284716,0,0.021092933,0.244065851,0,0.479881585,0.479796911,0.480053192 +75,0.1432,0.0421,0.1432,0,0.1993,0.0302,0.1993,0,0.5078,0.1364,0.5078,0,0.055079069,0,0.063589878,0.047760159,0,0.080997132,0.288150966,0,0.461938134,0.461815105,0.461879433 +76,0.1431,0.0573,0.1431,0,0.1992,0.0391,0.1992,0,0.5076,0.1338,0.5076,0,0.081626386,0,0.047314398,0.055187594,0,0.056404978,0.307797253,0,0.452936201,0.452929977,0.453014184 +77,0.1429,0.0501,0.1429,0,0.1992,0.0121,0.1992,0,0.5074,0.1155,0.5074,0,0.085024893,0,0.006884417,0.032553703,0,0.007557592,0.297397137,0,0.45837361,0.458430294,0.458333333 +78,0.1428,0.0417,0.1428,0,0.1991,0.0237,0.1991,0,0.5073,0.0896,0.5073,0.0071,0.067074545,0.005700601,0.000363545,0.038894404,0,0,0.225422978,0.147618383,0.483687772,0.483816374,0.483599291 +79,0.1427,0.0406,0.1427,0.078,0.199,0,0.199,0.0684,0.5071,0.0597,0.5071,0.0689,0.08501289,0.297614873,0.003372176,0.015080798,0.204011172,0,0.1872949,0.534214973,0.53383277,0.533742331,0.533687943 +80,0.1425,0.0059,0.1425,0.1981,0.1989,0,0.1989,0.2084,0.5069,0.0498,0.5069,0.21,0.009664503,0.51723206,0.050063659,0.003296833,0.489236116,0.088157862,0.117109321,0.7558195,0.596302562,0.596361329,0.596631206 +81,0.1424,0.0017,0.1424,0.3184,0.1988,0.0077,0.1988,0.3294,0.5068,0.0327,0.5068,0.3768,0.005428661,0.595659673,0.12678875,0.008800596,0.613827229,0.135825932,0.060178876,0.837224662,0.640889319,0.640786969,0.640957447 +82,0.1423,0.008,0.1423,0.4295,0.1987,0.0126,0.1987,0.4428,0.5066,0.069,0.5066,0.5119,0.011832649,0.703888178,0.240806937,0.01555074,0.675319314,0.163486391,0.13457121,0.857886374,0.672728371,0.672731119,0.67287234 +83,0.1421,0.0323,0.1421,0.5029,0.1986,0.0695,0.1986,0.5,0.5064,0.0836,0.5064,0.6086,0.039269716,0.782315075,0.332892299,0.071022578,0.715933025,0.263014138,0.08217147,0.87527132,0.700277912,0.700444256,0.70035461 +84,0.142,0.063,0.142,0.5136,0.1985,0.0924,0.1985,0.4964,0.5063,0.1778,0.5063,0.6377,0.070254892,0.815530896,0.517871022,0.084203228,0.695111036,0.201307342,0.174124837,0.86837852,0.717194297,0.71736831,0.717641844 +85,0.1419,0.0794,0.1419,0.5054,0.1984,0.0943,0.1984,0.4662,0.5061,0.2392,0.5061,0.6434,0.103844516,0.750395536,0.559189439,0.107111625,0.681191266,0.179222241,0.183451787,0.819962442,0.727042049,0.72709964,0.727393617 +86,0.1417,0.0706,0.1417,0.4654,0.1983,0.0868,0.1983,0.4529,0.5059,0.3126,0.5059,0.6483,0.079616793,0.68530792,0.523985148,0.086829864,0.624842763,0.173315704,0.232415155,0.772307813,0.738037699,0.738100275,0.738475177 +87,0.1416,0.0599,0.1416,0.3574,0.1982,0.0255,0.1982,0.3612,0.5058,0.3643,0.5058,0.5868,0.070643783,0.55040139,0.401850343,0.03636989,0.511814416,0.034700003,0.308341652,0.666417122,0.738158531,0.738311826,0.738475177 +88,0.1415,0.0968,0.1415,0.2901,0.1981,0.0176,0.1981,0.2925,0.5056,0.412,0.5056,0.4739,0.083732612,0.40975219,0.542008042,0.018455712,0.451868504,0.034059163,0.528127968,0.62745589,0.730364911,0.730484451,0.730496454 +89,0.1413,0.0743,0.1413,0.1878,0.198,0.0073,0.198,0.2143,0.5054,0.3848,0.5054,0.3168,0.087176055,0.293204784,0.532647371,0.007658152,0.378451794,0.125816226,0.453720301,0.677511513,0.722812953,0.722868627,0.722960993 +90,0.1412,0.0477,0.1412,0.0768,0.1979,0.0093,0.1979,0.1306,0.5053,0.4928,0.5053,0.1457,0.108627126,0.156168059,0.153137118,0.014025279,0.312374681,0.460122794,0.6170789,0.324155748,0.71477767,0.714829702,0.71498227 +91,0.1411,0.0963,0.1411,0.005,0.1978,0,0.1978,0.038,0.5051,0.3902,0.5051,0.049,0.12583442,0.008683183,0.104900651,0.000561502,0.174553752,0.238817543,0.429712802,0.062938877,0.701727888,0.70171356,0.70212766 +92,0.1409,0.0976,0.1409,0,0.1977,0,0.1977,0,0.5049,0.2855,0.5049,0,0.048357926,0,0.093298458,0.000253321,0,0.152920947,0.496359825,0,0.691880135,0.69198223,0.691932624 +93,0.1408,0.0271,0.1408,0,0.1976,0,0.1976,0,0.5048,0.3208,0.5048,0,0.010211765,0,0.141792655,0.001588382,0,0.052405503,0.484939694,0,0.69641131,0.696424794,0.696365248 +94,0.1407,0.0104,0.1407,0,0.1975,0,0.1975,0,0.5046,0.2125,0.5046,0,0.008361611,0,0.09790536,0.002117226,0,0.091463879,0.323495626,0,0.665236829,0.665326846,0.665336879 +95,0.1405,0.0152,0.1405,0,0.1974,0,0.1974,0,0.5044,0.1682,0.5044,0,0.011755069,0,0.032598659,0.00792115,0,0,0.311031073,0,0.607116965,0.607150413,0.607269504 +96,0.1404,0.0172,0.1404,0,0.1973,0,0.1973,0,0.5043,0.1147,0.5043,0,0.028959088,0,0.000126581,0.011633929,0,0,0.229129672,0,0.55038666,0.550454834,0.550531915 +97,0.3353,0.2342,0.3353,0,0.2783,0.3328,0.2783,0,0.5992,0.0464,0.5992,0,0.340543807,0,0.951961637,0.396313548,0,1,0.057745896,0,0.483929435,0.483816374,0.484042553 +98,0.3353,0.3291,0.3353,0,0.2783,0.3303,0.2783,0,0.5992,0.0914,0.5992,0,0.47736305,0,0.723744631,0.344732225,0,0.674463391,0.210174009,0,0.467254712,0.467315422,0.467198582 +99,0.3353,0.2905,0.3353,0,0.2783,0.1811,0.2783,0,0.5992,0.1582,0.5992,0,0.471031487,0,0.453945518,0.159885496,0,0.496303141,0.332458019,0,0.461152731,0.461180453,0.46143617 +100,0.3353,0.2069,0.3353,0,0.2783,0.1306,0.2783,0,0.5992,0.2336,0.5992,0,0.398436338,0,0.282089144,0.091254428,0,0.341608644,0.458970815,0,0.4610319,0.460968902,0.460992908 +101,0.3353,0.0684,0.3353,0,0.2783,0.0311,0.2783,0,0.5992,0.2549,0.5992,0,0.180473939,0,0.185217351,0.020236973,0,0.244839817,0.531448722,0,0.475169164,0.475142797,0.475177305 +102,0.3353,0.0999,0.3353,0,0.2783,0.0115,0.2783,0,0.5992,0.201,0.5992,0,0.206174016,0,0.17999509,0.006590917,0,0.162442416,0.458401471,0,0.51921218,0.519145335,0.519060284 +103,0.3353,0.073,0.3353,0,0.2783,0.0632,0.2783,0,0.5992,0.1695,0.5992,0,0.15341562,0,0.067971632,0.037877314,0,0.120555505,0.364987403,0,0.599565007,0.599746139,0.599734043 +104,0.3353,0.0613,0.3353,0.0062,0.2783,0.0268,0.2783,0,0.5992,0.1387,0.5992,0.0255,0.118538402,0.014192468,0.091725685,0.012939813,0,0.042171728,0.266541362,0.186134338,0.637566457,0.637613709,0.63785461 +105,0.3353,0.0495,0.3353,0.2119,0.2783,0.0074,0.2783,0.1959,0.5992,0.0777,0.5992,0.2837,0.102821335,0.339985967,0.011115281,0.004708333,0.310952276,0,0.106331267,0.525537193,0.640103915,0.640152317,0.640070922 +106,0.3353,0.0178,0.3353,0.3608,0.2783,0.0016,0.2783,0.3224,0.5992,0.0498,0.5992,0.4763,0.04687928,0.518666685,0.00168068,0.001076122,0.499693483,0.040739004,0.101931214,0.698534489,0.638110198,0.63803681,0.638297872 +107,0.3353,0.0057,0.3353,0.4334,0.2783,0,0.2783,0.4463,0.5992,0.0473,0.5992,0.6271,0.006887558,0.595648408,0.001408386,0.000328184,0.61341995,0.010822514,0.086632088,0.757857621,0.636901885,0.636979057,0.637411348 +108,0.3353,0.0008,0.3353,0.496,0.2783,0,0.2783,0.4513,0.5992,0.0389,0.5992,0.695,0.000104528,0.705536485,0.002444054,0,0.633169591,0.021018326,0.079875037,0.754530132,0.63140406,0.631478739,0.631648936 +109,0.3353,0,0.3353,0.4844,0.2783,0.0391,0.2783,0.4641,0.5992,0.0446,0.5992,0.6414,0.002018983,0.70180279,7.22E-05,0.037956238,0.632471561,0.002988744,0.105751939,0.828321338,0.624154181,0.624074466,0.624556738 +110,0.3353,0.0121,0.3353,0.5786,0.2783,0.0153,0.2783,0.6105,0.5992,0.0419,0.5992,0.7025,0.007209733,0.767341495,0.003048972,0.009417345,0.881190777,0,0.092641033,0.958709717,0.61859594,0.618574149,0.618794326 +111,0.3353,0.0395,0.3353,0.4078,0.2783,0.0327,0.2783,0.4214,0.5992,0.0602,0.5992,0.5202,0.052469421,0.575399458,0.01162939,0.034468301,0.621795774,0,0.103165664,0.839419246,0.611648139,0.611804527,0.611702128 +112,0.3353,0.036,0.3353,0.3444,0.2783,0.0099,0.2783,0.3846,0.5992,0.1176,0.5992,0.4177,0.053068925,0.546132028,0.089984819,0.022223983,0.65506351,0,0.173716277,0.687713146,0.608264862,0.608208166,0.608156028 +113,0.3353,0.0415,0.3353,0.2249,0.2783,0.0157,0.2783,0.2885,0.5992,0.1981,0.5992,0.2377,0.108836338,0.444707453,0.091163978,0.027305046,0.528101385,0,0.252788484,0.41919291,0.621072982,0.621112757,0.621010638 +114,0.3353,0.0367,0.3353,0.0122,0.2783,0.0208,0.2783,0.0337,0.5992,0.3519,0.5992,0,0.08615572,0.038480602,0.180393949,0.035222165,0.136732534,0,0.463289082,0,0.6689826,0.668923207,0.668882979 +115,0.3353,0.0721,0.3353,0,0.2783,0.061,0.2783,0,0.5992,0.3697,0.5992,0,0.135538846,0,0.139605165,0.088056445,0,0,0.527615786,0,0.687167714,0.687116564,0.6875 +116,0.3353,0.0678,0.3353,0,0.2783,0.0396,0.2783,0,0.5992,0.3254,0.5992,0,0.043199215,0,0.53976059,0.088940099,0,0.039158117,0.453964204,0,0.669768004,0.66976941,0.669769504 +117,0.3353,0.0755,0.3353,0,0.2783,0.0236,0.2783,0,0.5992,0.2045,0.5992,0,0.042970236,0,0.480655342,0.059755467,0,0.19911781,0.269749194,0,0.643728855,0.643748678,0.643617021 +118,0.3353,0.0509,0.3353,0,0.2783,0.0371,0.2783,0,0.5992,0.132,0.5992,0,0.03064315,0,0.166967809,0.054738641,0,0.22547619,0.177533671,0,0.601558724,0.601650095,0.601507092 +119,0.3353,0.0503,0.3353,0,0.2783,0.0521,0.2783,0,0.5992,0.1442,0.5992,0,0.049356826,0,0.098843873,0.097993136,0,0.278927267,0.170501396,0,0.546399227,0.546435371,0.546542553 +120,0.3353,0.0611,0.3353,0,0.2783,0.0031,0.2783,0,0.5992,0.156,0.5992,0,0.051604521,0,0.161583245,0.029563505,0,0.389920473,0.147218838,0,0.497583374,0.497567167,0.497783688 +121,0.3353,0.0394,0.3353,0,0.2783,0.0468,0.2783,0,0.5992,0.171,0.5992,0,0.029222723,0,0.162525415,0.075474158,0,0.313165724,0.194382474,0,0.464354761,0.464353713,0.464095745 +122,0.3353,0.0533,0.3353,0,0.2783,0.1899,0.2783,0,0.5992,0.1461,0.5992,0,0.047840923,0,0.095295847,0.153759107,0,0.067757592,0.157280669,0,0.446592557,0.446583457,0.446808511 +123,0.3353,0.0469,0.3353,0,0.2783,0.0194,0.2783,0,0.5992,0.095,0.5992,0,0.065937504,0,0.011147552,0.051554609,0,0.096064925,0.103672326,0,0.437953117,0.437909879,0.437943262 +124,0.3353,0.0487,0.3353,0,0.2783,0,0.2783,0,0.5992,0.0664,0.5992,0,0.070105247,0,0.006252729,0.002158957,0,0,0.06112304,0,0.437046883,0.437063677,0.437056738 +125,0.3353,0.0454,0.3353,0,0.2783,0,0.2783,0,0.5992,0.0515,0.5992,0,0.045880351,0,0,0.000149522,0,0,0.040833768,0,0.44919043,0.449122065,0.449468085 +126,0.3353,0.0353,0.3353,0,0.2783,0,0.2783,0,0.5992,0.0399,0.5992,0,0.017604046,0,0,0.000263594,0,0,0.059951149,0,0.49359594,0.493759255,0.493794326 +127,0.3353,0.0146,0.3353,0,0.2783,0.0149,0.2783,0,0.5992,0.0214,0.5992,0,0.00301992,0,0.006769722,0.008667981,0,0.012625917,0.042005826,0,0.573102948,0.573090755,0.573138298 +128,0.3353,0.0174,0.3353,0,0.2783,0,0.2783,0,0.5992,0.0106,0.5992,0,0.00625662,0,0.014876311,0.005263689,0,0.080059424,0.03722835,0.013479548,0.615575157,0.615612439,0.615691489 +129,0.3353,0.0093,0.3353,0.142,0.2783,0,0.2783,0.2009,0.5992,0.0042,0.5992,0.202,0.003951265,0.349179506,0.015524953,0.000401821,0.291373551,0.061198957,0.022719318,0.434636295,0.623972934,0.623862915,0.624113475 +130,0.3353,0.0033,0.3353,0.2896,0.2783,0,0.2783,0.3639,0.5992,0.0012,0.5992,0.3615,0.004615302,0.514957786,0.010969135,0.003379712,0.534627438,0,0.007916736,0.58468765,0.625966651,0.625978422,0.626329787 +131,0.3353,0.0006,0.3353,0.3832,0.2783,0,0.2783,0.4752,0.5992,0.001,0.5992,0.4506,0.005063584,0.558726788,0.017523618,0.003152695,0.647850692,0,0.001069679,0.608341456,0.62777912,0.627670827,0.628102837 +132,0.3353,0.0013,0.3353,0.4001,0.2783,0,0.2783,0.4461,0.5992,0,0.5992,0.4365,0.004127369,0.582769394,0.025185499,0.003216317,0.642627358,0,0.000370599,0.611747623,0.625,0.624920669,0.625 +133,0.3353,0,0.3353,0.3979,0.2783,0,0.2783,0.4694,0.5992,0.0025,0.5992,0.4185,0.000329846,0.602562308,0.015069776,0.002190562,0.662625432,0.008151309,0.004105932,0.595377803,0.617568874,0.617727946,0.617907801 +134,0.3353,0.001,0.3353,0.3975,0.2783,0,0.2783,0.4491,0.5992,0.008,0.5992,0.3787,0,0.633594096,0.013273727,0.001052633,0.672993779,0.101724088,0.022061357,0.557721913,0.614064766,0.614131585,0.61391844 +135,0.3353,0.002,0.3353,0.4351,0.2783,0,0.2783,0.4923,0.5992,0.0235,0.5992,0.4175,2.31E-06,0.671257675,0.071118698,0.000637823,0.694713473,0.156142414,0.046326287,0.546066582,0.607116965,0.607150413,0.607269504 +136,0.3353,0.0013,0.3353,0.3602,0.2783,0,0.2783,0.4357,0.5992,0.0588,0.5992,0.3264,0.002965278,0.59887594,0.156938747,0.000722208,0.595216334,0.201426715,0.066430353,0.508017361,0.604760754,0.604823355,0.605053192 +137,0.3353,0.0048,0.3353,0.2179,0.2783,0,0.2783,0.2689,0.5992,0.087,0.5992,0.1731,0.003663415,0.423196405,0.235061526,0.000460288,0.453348726,0.132251054,0.084686771,0.337374985,0.619623006,0.619631902,0.620124114 +138,0.3353,0.0028,0.3353,0.0012,0.2783,0.0074,0.2783,0.0291,0.5992,0.1081,0.5992,0,0.010761268,0.028205086,0.254560232,0.013701504,0.093099222,0.135036409,0.077363201,0,0.663907685,0.663845991,0.664007092 +139,0.3353,0.0037,0.3353,0,0.2783,0.0422,0.2783,0,0.5992,0.1147,0.5992,0,0.046665151,0,0.242791414,0.072233729,0,0.298220694,0.106213242,0,0.679253262,0.67928919,0.679521277 +140,0.3353,0.0048,0.3353,0,0.2783,0.0909,0.2783,0,0.5992,0.1005,0.5992,0,0.055832595,0,0.059668772,0.136343688,0,0.192917556,0.113991655,0,0.663303528,0.66342289,0.66356383 +141,0.3353,0.0225,0.3353,0,0.2783,0.1208,0.2783,0,0.5992,0.0787,0.5992,0,0.075337775,0,0.047003094,0.177106515,0,0.439277738,0.097335458,0,0.636176897,0.636132854,0.636524823 +142,0.3353,0.0683,0.3353,0,0.2783,0.1202,0.2783,0,0.5992,0.0675,0.5992,0,0.082746476,0,0.020546136,0.168459937,0,0.275989294,0.125470683,0,0.59382552,0.593822721,0.593971631 +143,0.3353,0.1146,0.3353,0,0.2783,0.157,0.2783,0,0.5992,0.044,0.5992,0,0.11460375,0,0.008724602,0.209471554,0,0.3150644,0.085176602,0,0.537941034,0.537973345,0.538120567 +144,0.3353,0.0572,0.3353,0,0.2783,0.1428,0.2783,0,0.5992,0.0343,0.5992,0,0.048893597,0,0.028796984,0.157406271,0,0.28583324,0.054507189,0,0.487010633,0.486989634,0.48714539 +145,0.3353,0.0689,0.3353,0,0.2783,0.079,0.2783,0,0.5992,0.0523,0.5992,0,0.081243813,0,0.071472019,0.109008879,0,0.205130637,0.071306929,0,0.456077815,0.456103237,0.456117021 +146,0.3353,0.0757,0.3353,0,0.2783,0.0466,0.2783,0,0.5992,0.0731,0.5992,0,0.078676045,0,0.132356674,0.083080128,0,0.280035615,0.112381756,0,0.439765587,0.439813835,0.439716312 +147,0.3353,0.0796,0.3353,0,0.2783,0.0425,0.2783,0,0.5992,0.0643,0.5992,0,0.106914848,0,0.117482096,0.079231285,0,0.12364766,0.10742867,0,0.433482359,0.433467315,0.433510638 +148,0.3353,0.0756,0.3353,0,0.2783,0.04,0.2783,0,0.5992,0.0536,0.5992,0,0.084026337,0,0.143809155,0.075666659,0,0.096530899,0.098277256,0,0.436503142,0.436640575,0.436613475 +149,0.3353,0.0874,0.3353,0,0.2783,0.038,0.2783,0,0.5992,0.0417,0.5992,0,0.107747838,0,0.181571946,0.072163574,0,0.170542941,0.071277931,0,0.450519575,0.450602919,0.450797872 +150,0.3353,0.0652,0.3353,0,0.2783,0.0076,0.2783,0,0.5992,0.0264,0.5992,0,0.08012899,0,0.148158878,0.022536812,0,0.160324097,0.040680472,0,0.497341711,0.497355617,0.497340426 +151,0.3353,0.0332,0.3353,0,0.2783,0,0.2783,0,0.5992,0.0182,0.5992,0,0.042060122,0,0.060637206,0.011356694,0,0.052404717,0.03396637,0,0.576667472,0.576687117,0.576684397 +152,0.3353,0.008,0.3353,0,0.2783,0.0185,0.2783,0,0.5992,0.0106,0.5992,0,0.011661833,0,0.026185583,0.014108179,0,0.030558117,0.023133211,0,0.615333494,0.615400889,0.615691489 +153,0.3353,0.0002,0.3353,0.251,0.2783,0,0.2783,0.2135,0.5992,0.0287,0.5992,0.2287,0.004216762,0.421669364,0.011390129,0.001075404,0.366246313,0.046053402,0.042276233,0.52107513,0.620287579,0.620266554,0.620567376 +154,0.3353,0,0.3353,0.398,0.2783,0,0.2783,0.3957,0.5992,0.0187,0.5992,0.36,0.000107081,0.624025583,0.003211733,0.000291988,0.569521368,0,0.020247368,0.771772504,0.621193813,0.621324307,0.621453901 +155,0.3353,0,0.3353,0.5777,0.2783,0.0231,0.2783,0.4714,0.5992,0.0105,0.5992,0.6638,0,0.830872178,0,0.035424843,0.608862341,0,0.01060041,0.999690712,0.6199855,0.620055003,0.620124114 +156,0.3353,0,0.3353,0.5222,0.2783,0,0.2783,0.446,0.5992,0.006,0.5992,0.5803,0,0.712612987,0,0.002315169,0.535365284,0,0.004428415,0.885320664,0.616723055,0.616670193,0.616578014 +157,0.3353,0.0026,0.3353,0.4391,0.2783,0,0.2783,0.4033,0.5992,0.0027,0.5992,0.585,0.000138794,0.62785691,0,0.005570313,0.554500699,0,0.000169873,0.855731487,0.612977284,0.612862281,0.613031915 +158,0.3353,0.0162,0.3353,0.4041,0.2783,0.0075,0.2783,0.4023,0.5992,0.0064,0.5992,0.5582,0.012443317,0.572152019,0.003454699,0.017332878,0.555582404,0.024717279,0.000638945,0.805173159,0.612796037,0.612862281,0.613031915 +159,0.3353,0.0418,0.3353,0.3776,0.2783,0,0.2783,0.3253,0.5992,0.0056,0.5992,0.5298,0.007533296,0.520351827,0.084458515,0.007419934,0.458313495,0.068899736,0.002452825,0.724157333,0.608264862,0.608208166,0.608156028 +160,0.3353,0.0384,0.3353,0.2577,0.2783,0.0017,0.2783,0.2138,0.5992,0.0174,0.5992,0.3695,0.008783901,0.413797915,0.062754475,0.010369309,0.320449889,0.05394372,0.006953084,0.616675735,0.61037941,0.610535223,0.61037234 +161,0.3353,0.0812,0.3353,0.0836,0.2783,0.0403,0.2783,0.0846,0.5992,0.047,0.5992,0.2124,0.079519555,0.127957165,0.054840323,0.058607429,0.130032092,0.009626178,0.041584462,0.378108114,0.632370711,0.632536493,0.632535461 +162,0.3353,0.0687,0.3353,0,0.2783,0.0755,0.2783,0,0.5992,0.1222,0.5992,0,0.095078185,0,0.080111712,0.087329604,0,0.038936131,0.145138115,0,0.673513775,0.673577322,0.673758865 +163,0.3353,0.0442,0.3353,0,0.2783,0.0938,0.2783,0,0.5992,0.2036,0.5992,0,0.06459564,0,0.048527647,0.108412832,0,0,0.304443628,0,0.682274045,0.682250899,0.682624114 +164,0.3353,0.0257,0.3353,0,0.2783,0.0371,0.2783,0,0.5992,0.2666,0.5992,0,0.023319216,0,0.000567935,0.059193447,0,0,0.515886605,0,0.665236829,0.665326846,0.665336879 +165,0.3353,0.0221,0.3353,0,0.2783,0.1563,0.2783,0,0.5992,0.1433,0.5992,0,0.039155327,0,0,0.180636972,0,0.006618849,0.31086725,0,0.63877477,0.638671462,0.639184397 +166,0.3353,0.013,0.3353,0,0.2783,0.1412,0.2783,0,0.5992,0.1562,0.5992,0,0.012497285,0,0.001954996,0.158648685,0,0.003782199,0.356954515,0,0.59618173,0.596149778,0.596187943 +167,0.3353,0.0373,0.3353,0,0.2783,0.1121,0.2783,0,0.5992,0.2046,0.5992,0,0.043758962,0,0.030432951,0.131980807,0,0.036523037,0.426760942,0,0.539874335,0.539877301,0.540336879 +168,0.3353,0.0718,0.3353,0,0.2783,0.1073,0.2783,0,0.5992,0.2062,0.5992,0,0.061800312,0,0.072916091,0.147166222,0,0.21237959,0.395702064,0,0.489729338,0.489739793,0.489804965 +169,0.3353,0.0873,0.3353,0,0.2783,0.1343,0.2783,0,0.5992,0.2341,0.5992,0,0.068880677,0,0.066637524,0.185943991,0,0.194197387,0.399948031,0,0.455231996,0.455257034,0.455673759 +170,0.3353,0.1224,0.3353,0,0.2783,0.2056,0.2783,0,0.5992,0.2438,0.5992,0,0.107841097,0,0.026773676,0.290738761,0,0.059220687,0.395727009,0,0.435717738,0.435794373,0.43572695 +171,0.3353,0.1607,0.3353,0,0.2783,0.3046,0.2783,0,0.5992,0.2289,0.5992,0,0.15782921,0,0.032786746,0.385691464,0,0.07835184,0.310579389,0,0.425326245,0.42542839,0.425531915 +172,0.3353,0.1622,0.3353,0,0.2783,0.2478,0.2783,0,0.5992,0.158,0.5992,0,0.197893649,0,0.054544114,0.310194105,0,0.007161519,0.257609129,0,0.423634606,0.423735985,0.423758865 +173,0.3353,0.1664,0.3353,0,0.2783,0.2256,0.2783,0,0.5992,0.1621,0.5992,0,0.178165928,0,0.036942624,0.216431111,0,0,0.207180604,0,0.434630256,0.434736619,0.434840426 +174,0.3353,0.1754,0.3353,0,0.2783,0.0788,0.2783,0,0.5992,0.1834,0.5992,0,0.149377078,0,0.067278497,0.106815361,0,0.037470419,0.228798643,0,0.475048333,0.474931246,0.475177305 +175,0.3353,0.1451,0.3353,0,0.2783,0.0726,0.2783,0,0.5992,0.1712,0.5992,0,0.108588591,0,0.1455497,0.095053226,0,0.053612571,0.231774837,0,0.549722088,0.549820182,0.550088653 +176,0.3353,0.1264,0.3353,0,0.2783,0.0824,0.2783,0,0.5992,0.1808,0.5992,0,0.122287504,0,0.162636712,0.113910697,0,0,0.23295176,0,0.594308845,0.594245822,0.594414894 +177,0.3353,0.1382,0.3353,0.1131,0.2783,0.0955,0.2783,0.1509,0.5992,0.1763,0.5992,0.1502,0.138602197,0.273250043,0.3493644,0.10015589,0.314969033,0.009180104,0.147349984,0.222592801,0.606875302,0.606727311,0.607269504 +178,0.3353,0.0699,0.3353,0.3099,0.2783,0.0936,0.2783,0.3546,0.5992,0.1801,0.5992,0.2967,0.083995506,0.55990386,0.288135141,0.103539191,0.597141385,0.00792932,0.160080031,0.441352129,0.610077332,0.610112122,0.609929078 +179,0.3353,0.0934,0.3353,0.4462,0.2783,0.3774,0.2783,0.5514,0.5992,0.1307,0.5992,0.432,0.106427036,0.712844014,0.124160439,0.299305052,0.822447777,0,0.11868111,0.557519674,0.610923151,0.610958325,0.611258865 +180,0.3353,0.1113,0.3353,0.4971,0.2783,0.3909,0.2783,0.5828,0.5992,0.1105,0.5992,0.4349,0.146284461,0.745839894,0.083927713,0.340600729,0.788909257,0.07988482,0.10592211,0.721094608,0.606271146,0.60630421,0.606382979 +181,0.3353,0.1494,0.3353,0.5491,0.2783,0.4286,0.2783,0.5721,0.5992,0.1267,0.5992,0.4613,0.227206588,0.795065403,0.120059073,0.361115009,0.798173189,0.304969668,0.173086584,0.709834695,0.596060899,0.595938227,0.596187943 +182,0.3353,0.2268,0.3353,0.5788,0.2783,0.2547,0.2783,0.5944,0.5992,0.1659,0.5992,0.4651,0.325680584,0.81992197,0.215272263,0.223857179,0.829602122,0.281709433,0.261818111,0.696449697,0.588750604,0.588745505,0.588652482 +183,0.3353,0.1818,0.3353,0.5935,0.2783,0.4355,0.2783,0.5804,0.5992,0.1349,0.5992,0.4731,0.357862145,0.852696896,0.297833979,0.398809969,0.793542385,0.31898874,0.257945806,0.723677814,0.578842436,0.578802623,0.578900709 +184,0.3353,0.204,0.3353,0.4606,0.2783,0.266,0.2783,0.5083,0.5992,0.0952,0.5992,0.368,0.316188395,0.782290101,0.313831151,0.283590913,0.765566111,0.347253174,0.15048115,0.647790313,0.573525858,0.573725407,0.574024823 +185,0.3353,0.169,0.3353,0.2861,0.2783,0.4383,0.2783,0.3311,0.5992,0.1087,0.5992,0.1997,0.236047566,0.577710569,0.164843708,0.414026558,0.572428346,0.326350272,0.198451817,0.454336852,0.583615273,0.583668289,0.583776596 +186,0.3353,0.1969,0.3353,0.04,0.2783,0.246,0.2783,0.0839,0.5992,0.1683,0.5992,0,0.219240755,0.181716263,0.234954879,0.259087026,0.26353401,0.994571567,0.338978112,0.016318373,0.623489609,0.623439814,0.623670213 +187,0.3353,0.1917,0.3353,0,0.2783,0.0964,0.2783,0,0.5992,0.1426,0.5992,0,0.144899592,0,0.460470438,0.147896081,0,1,0.272070825,0,0.641916385,0.641844722,0.641843972 +188,0.3353,0.2034,0.3353,0,0.2783,0.1788,0.2783,0,0.5992,0.2315,0.5992,0,0.218267709,0,0.595855176,0.210983038,0,0.999340415,0.247287497,0,0.625966651,0.625978422,0.626329787 +189,0.3353,0.2599,0.3353,0,0.2783,0.2117,0.2783,0,0.5992,0.1944,0.5992,0,0.231125847,0,0.991824508,0.242717549,0,0.991057634,0.294774503,0,0.604881585,0.604823355,0.605053192 +190,0.3353,0.2623,0.3353,0,0.2783,0.2868,0.2783,0,0.5992,0.1141,0.5992,0,0.257896334,0,0.977468252,0.375778914,0,0.82260704,0.182252407,0,0.574734171,0.574783161,0.574911348 +191,0.3353,0.3366,0.3353,0,0.2783,0.1927,0.2783,0,0.5992,0.1659,0.5992,0,0.315684408,0,0.876997232,0.238841474,0,0.364857614,0.261173576,0,0.532503625,0.532684578,0.532801418 +192,0.3353,0.275,0.3353,0,0.2783,0.1699,0.2783,0,0.5992,0.2065,0.5992,0,0.219144747,0,0.755017519,0.237392083,0,0.300655782,0.340680182,0,0.488641856,0.488682039,0.48891844 +193,0.3901,0.1119,0.3901,0,0.3178,0.0099,0.3178,0,0.6624,0.4984,0.6624,0,0.120503485,0,0.109031886,0.036232617,0,0.03731833,0.832992256,0,0.519816336,0.519779987,0.519946809 +194,0.3901,0.0794,0.3901,0,0.3178,0.0128,0.3178,0,0.6624,0.3099,0.6624,0,0.057855781,0,0.073038578,0.042845599,0,0.037343461,0.606036305,0,0.501268729,0.501163529,0.501329787 +195,0.3901,0.0495,0.3901,0,0.3178,0,0.3178,0,0.6624,0.2899,0.6624,0,0.053303592,0,0.043719381,0.014324972,0,0.037011258,0.531005204,0,0.489910585,0.489951343,0.489804965 +196,0.3901,0.0548,0.3901,0,0.3178,0.006,0.3178,0,0.6624,0.2222,0.6624,0,0.026825195,0,0.077305451,0.036265694,0,0.040064924,0.471726447,0,0.485500242,0.485508779,0.48537234 +197,0.3901,0.0331,0.3901,0,0.3178,0.0342,0.3178,0,0.6624,0.1204,0.6624,0,0.012255549,0,0.077560157,0.060173765,0,0.078937434,0.274086297,0,0.489608507,0.489739793,0.489361702 +198,0.3901,0.0221,0.3901,0,0.3178,0.0501,0.3178,0,0.6624,0.0692,0.6624,0,0.01008457,0,0.091319233,0.063513756,0,0.155076712,0.189517856,0,0.505437409,0.505606093,0.505762411 +199,0.3901,0.006,0.3901,0,0.3178,0.0687,0.3178,0,0.6624,0.0688,0.6624,0,0.004177272,0,0.089516357,0.089355812,0,0.307229847,0.148454115,0,0.536732721,0.536704041,0.53679078 +200,0.3901,0.0002,0.3901,0,0.3178,0.0216,0.3178,0,0.6624,0.0359,0.6624,0,0.000670298,0,0.15081726,0.039953135,0,0.434677243,0.070686765,0,0.574009183,0.573936958,0.574024823 +201,0.3901,0.0113,0.3901,0.0338,0.3178,0.0774,0.3178,0.0205,0.6624,0.0199,0.6624,0.0959,0.004628616,0.053709865,0.419818997,0.109133691,0.018420931,0.63019973,0.045996632,0.078395985,0.615514741,0.615612439,0.615691489 +202,0.3901,0.0389,0.3901,0.1381,0.3178,0.0679,0.3178,0.109,0.6624,0.0099,0.6624,0.2689,0.014147854,0.192283168,0.760859013,0.120777823,0.144316495,1,0.032252479,0.304617047,0.651703722,0.651576053,0.652039007 +203,0.3901,0.0663,0.3901,0.2102,0.3178,0.1044,0.3178,0.1812,0.6624,0.0005,0.6624,0.3327,0.026046477,0.303351104,0.987595797,0.186181381,0.250372738,1,0.013428211,0.385682464,0.6739971,0.674000423,0.674202128 +204,0.3901,0.1178,0.3901,0.2284,0.3178,0.1631,0.3178,0.211,0.6624,0.0001,0.6624,0.4238,0.034658346,0.341895819,0.995827317,0.265076429,0.288601548,1,0.008641397,0.480376244,0.683482359,0.683520203,0.683510638 +205,0.3901,0.211,0.3901,0.2429,0.3178,0.1642,0.3178,0.2366,0.6624,0.0004,0.6624,0.4288,0.057607554,0.354768723,1,0.312806368,0.341011763,1,0.010712845,0.51420486,0.683421943,0.683520203,0.683510638 +206,0.3901,0.2425,0.3901,0.2345,0.3178,0.1714,0.3178,0.243,0.6624,0.0062,0.6624,0.4197,0.067297198,0.399075508,1,0.278471023,0.351463229,1,0.027082564,0.57644248,0.674782504,0.674846626,0.675088653 +207,0.3901,0.3825,0.3901,0.196,0.3178,0.2593,0.3178,0.2089,0.6624,0.0067,0.6624,0.4012,0.107579127,0.358603001,1,0.363505065,0.30205816,1,0.024522964,0.57705462,0.663726438,0.66363444,0.664007092 +208,0.3901,0.4625,0.3901,0.1088,0.3178,0.2369,0.3178,0.1287,0.6624,0.009,0.6624,0.3214,0.174622506,0.226323158,1,0.372528017,0.172121823,1,0.032747258,0.471946716,0.659074432,0.658980326,0.659131206 +209,0.3901,0.461,0.3901,0.0095,0.3178,0.2483,0.3178,0.0039,0.6624,0.03,0.6624,0.1402,0.179446012,0.054913122,1,0.404273152,0.00736948,1,0.069884099,0.234559417,0.684267762,0.684154855,0.684397163 +210,0.3901,0.467,0.3901,0,0.3178,0.1636,0.3178,0,0.6624,0.0663,0.6624,0,0.211576432,0,1,0.251190245,0,1,0.12557368,0,0.727464959,0.727522742,0.727836879 +211,0.3901,0.4127,0.3901,0,0.3178,0.1287,0.3178,0,0.6624,0.0988,0.6624,0,0.199717,0,1,0.21637997,0,1,0.168479249,0,0.719913001,0.719906918,0.719858156 +212,0.3901,0.3576,0.3901,0,0.3178,0.0478,0.3178,0,0.6624,0.1317,0.6624,0,0.184474587,0,1,0.114194989,0,1,0.229773998,0,0.69502175,0.694943939,0.695035461 +213,0.3901,0.3696,0.3901,0,0.3178,0.0305,0.3178,0,0.6624,0.2168,0.6624,0,0.152843535,0,1,0.113586158,0,1,0.363334149,0,0.669345094,0.669346308,0.669326241 +214,0.3901,0.3535,0.3901,0,0.3178,0.0737,0.3178,0,0.6624,0.2153,0.6624,0,0.184802026,0,1,0.171696171,0,1,0.443449885,0,0.636116481,0.636132854,0.63608156 +215,0.3901,0.2283,0.3901,0,0.3178,0.0515,0.3178,0,0.6624,0.2561,0.6624,0,0.067875408,0,1,0.133330569,0,1,0.476634681,0,0.595275495,0.595303575,0.595301418 +216,0.3901,0.3722,0.3901,0,0.3178,0.143,0.3178,0,0.6624,0.2426,0.6624,0,0.189117149,0,1,0.269549131,0,1,0.365168929,0,0.555280329,0.555320499,0.555407801 +217,0.3901,0.4256,0.3901,0,0.3178,0.1096,0.3178,0,0.6624,0.29,0.6624,0,0.160570681,0,1,0.252668351,0,1,0.431885868,0,0.524105848,0.524011001,0.524379433 +218,0.3901,0.2923,0.3901,0,0.3178,0.1097,0.3178,0,0.6624,0.2866,0.6624,0,0.109217495,0,1,0.23330684,0,1,0.45360738,0,0.506887385,0.506875397,0.507092199 +219,0.3901,0.1925,0.3901,0,0.3178,0.1475,0.3178,0,0.6624,0.3085,0.6624,0,0.106418639,0,1,0.256683856,0,1,0.496107429,0,0.49861044,0.498624921,0.498670213 +220,0.3901,0.209,0.3901,0,0.3178,0.1033,0.3178,0,0.6624,0.1829,0.6624,0,0.104868852,0,1,0.22366941,0,1,0.349143177,0,0.4949855,0.495028559,0.495124114 +221,0.3901,0.2068,0.3901,0,0.3178,0.0775,0.3178,0,0.6624,0.1996,0.6624,0,0.107377291,0,1,0.177673981,0,1,0.314562023,0,0.498247946,0.498201819,0.49822695 +222,0.3901,0.2067,0.3901,0,0.3178,0.0869,0.3178,0,0.6624,0.2681,0.6624,0,0.115992263,0,1,0.193624631,0,1,0.419279188,0,0.511841469,0.511741062,0.511968085 +223,0.3901,0.1446,0.3901,0,0.3178,0.1155,0.3178,0,0.6624,0.2711,0.6624,0,0.077996135,0,0.964708924,0.223193497,0,0.981933296,0.457887143,0,0.535947318,0.535857838,0.535904255 +224,0.3901,0.1159,0.3901,0,0.3178,0.1327,0.3178,0,0.6624,0.2358,0.6624,0,0.064411894,0,0.859868348,0.196382344,0,0.693728566,0.423730552,0,0.56222813,0.562301671,0.5625 +225,0.3901,0.1664,0.3901,0.2175,0.3178,0.1563,0.3178,0.2258,0.6624,0.2464,0.6624,0.1997,0.098334894,0.404655278,1,0.263617486,0.401312143,0.990814686,0.459070087,0.440780342,0.597087965,0.596995981,0.597074468 +226,0.3901,0.1006,0.3901,0.4081,0.3178,0.0155,0.3178,0.4428,0.6624,0.074,0.6624,0.4197,0.050663918,0.679540217,0.956516743,0.062423609,0.68576932,0.840303779,0.139345616,0.720973849,0.61859594,0.618574149,0.618794326 +227,0.3901,0.0487,0.3901,0.5613,0.3178,0,0.3178,0.5538,0.6624,0.0244,0.6624,0.5556,0.009933624,0.833085418,0.73586607,0.004825974,0.769854367,0.615973592,0.047255825,0.860327959,0.627054132,0.627036175,0.627216312 +228,0.3901,0.0376,0.3901,0.5322,0.3178,0.0065,0.3178,0.6097,0.6624,0.0085,0.6624,0.6247,0.009950076,0.780405462,0.693450689,0.01372513,0.854087532,0.560471773,0.025679257,0.950450242,0.626933301,0.626824625,0.62677305 +229,0.3901,0.0262,0.3901,0.5679,0.3178,0.0269,0.3178,0.6059,0.6624,0.008,0.6624,0.5837,0.004341427,0.86239183,0.582497954,0.031877942,0.823680341,0.259051323,0.029347412,0.900006175,0.62318753,0.623228263,0.62322695 +230,0.3901,0.0174,0.3901,0.5247,0.3178,0.0101,0.3178,0.5139,0.6624,0.0026,0.6624,0.5606,0.002885568,0.785116851,0.586721659,0.01491439,0.66516012,0.155594766,0.015595263,0.772518218,0.618475109,0.618574149,0.618351064 +231,0.3901,0.004,0.3901,0.4229,0.3178,0,0.3178,0.4232,0.6624,0.0138,0.6624,0.4619,0.002349213,0.637138128,0.539751291,0.00301314,0.593340457,0.220113367,0.033706091,0.706330597,0.616602223,0.616670193,0.616578014 +232,0.3901,0.0203,0.3901,0.3114,0.3178,0.0687,0.3178,0.363,0.6624,0.0296,0.6624,0.3161,0.025419714,0.509942234,0.364952117,0.071307533,0.568504334,0.21019949,0.067622408,0.520428538,0.617689705,0.617727946,0.617907801 +233,0.3901,0.0341,0.3901,0.109,0.3178,0.0981,0.3178,0.1806,0.6624,0.0849,0.6624,0.1138,0.058809057,0.282011777,0.308240444,0.104445308,0.306727648,0.153333008,0.17168577,0.25320223,0.646507975,0.646498837,0.646719858 +234,0.3901,0.0718,0.3901,0,0.3178,0.1428,0.3178,0,0.6624,0.2129,0.6624,0,0.140464246,0,0.24397713,0.178153262,0,0.130465731,0.429364324,0,0.689523925,0.689655172,0.689716312 +235,0.3901,0.1569,0.3901,0,0.3178,0.1886,0.3178,0,0.6624,0.3401,0.6624,0,0.338828415,0,0.160066932,0.295357883,0,0.063504189,0.642948687,0,0.689765587,0.689655172,0.689716312 +236,0.3901,0.1861,0.3901,0,0.3178,0.0455,0.3178,0,0.6624,0.3487,0.6624,0,0.403424114,0,0.206176162,0.114362463,0,0.125471741,0.678964555,0,0.677138714,0.677173683,0.677304965 +237,0.3901,0.1315,0.3901,0,0.3178,0.1484,0.3178,0,0.6624,0.3144,0.6624,0,0.382502914,0,0.229102075,0.231769681,0,0.195113361,0.532498121,0,0.652307878,0.652422255,0.65248227 +238,0.3901,0.1463,0.3901,0,0.3178,0.1426,0.3178,0,0.6624,0.386,0.6624,0,0.389041603,0,0.192775786,0.207796887,0,0.23948063,0.677794218,0,0.611466892,0.611592977,0.611702128 +239,0.3901,0.1285,0.3901,0,0.3178,0.1579,0.3178,0,0.6624,0.3647,0.6624,0,0.3803505,0,0.183335111,0.258410692,0,0.296441138,0.691874802,0,0.565732238,0.565686482,0.565602837 +240,0.3901,0.1069,0.3901,0,0.3178,0.1479,0.3178,0,0.6624,0.3353,0.6624,0,0.289933115,0,0.137859643,0.243095577,0,0.177257091,0.699401915,0,0.519393427,0.519356886,0.519503546 +241,0.3901,0.136,0.3901,0,0.3178,0.1693,0.3178,0,0.6624,0.3501,0.6624,0,0.315427333,0,0.084138379,0.274803817,0,0.148058385,0.718370974,0,0.486104398,0.486143431,0.486258865 +242,0.3901,0.1734,0.3901,0,0.3178,0.3006,0.3178,0,0.6624,0.3708,0.6624,0,0.413454682,0,0.213552058,0.433208376,0,0.109275922,0.700574815,0,0.469127598,0.469007827,0.468971631 +243,0.3901,0.1678,0.3901,0,0.3178,0.225,0.3178,0,0.6624,0.4118,0.6624,0,0.379670739,0,0.323283702,0.332038134,0,0.164830625,0.762360513,0,0.462240213,0.462238206,0.462322695 +244,0.3901,0.1565,0.3901,0,0.3178,0.2714,0.3178,0,0.6624,0.4473,0.6624,0,0.372016937,0,0.204186902,0.389134824,0,0.16150026,0.870534658,0,0.462602707,0.462661307,0.462765957 +245,0.3901,0.2762,0.3901,0,0.3178,0.3333,0.3178,0,0.6624,0.3735,0.6624,0,0.533230722,0,0.269460559,0.501860023,0,0.388051033,0.829701543,0,0.476921218,0.476835202,0.476950355 +246,0.3901,0.2992,0.3901,0,0.3178,0.2885,0.3178,0,0.6624,0.2641,0.6624,0,0.559709728,0,0.451925099,0.384678572,0,0.629839301,0.694203913,0,0.52060174,0.52062619,0.520833333 +247,0.3901,0.2145,0.3901,0,0.3178,0.1549,0.3178,0,0.6624,0.2381,0.6624,0,0.392397463,0,0.559710622,0.246748239,0,0.879858136,0.636787057,0,0.60022958,0.600169241,0.600620567 +248,0.3901,0.1484,0.3901,0,0.3178,0.0467,0.3178,0,0.6624,0.3623,0.6624,0,0.246410802,0,0.492618084,0.088999912,0,0.755990088,0.785576642,0,0.644876752,0.644806431,0.644946809 +249,0.3901,0.1407,0.3901,0.109,0.3178,0.0434,0.3178,0.1325,0.6624,0.3712,0.6624,0.1791,0.206950858,0.241210476,0.387375861,0.105640069,0.158013523,0.616167545,0.778141201,0.290976077,0.654543258,0.654749313,0.654698582 +250,0.3901,0.1245,0.3901,0.3235,0.3178,0.1744,0.3178,0.3044,0.6624,0.2961,0.6624,0.347,0.196065307,0.465222418,0.370672822,0.298146397,0.286300719,0.798244238,0.645206273,0.564218819,0.659980667,0.660038079,0.660460993 +251,0.3901,0.096,0.3901,0.3563,0.3178,0.0759,0.3178,0.3022,0.6624,0.2881,0.6624,0.4265,0.145341292,0.506199479,0.520363033,0.163800865,0.416147053,0.622791171,0.589344859,0.639770865,0.665115998,0.665115295,0.665336879 +252,0.3901,0.1166,0.3901,0.3784,0.3178,0.04,0.3178,0.4041,0.6624,0.1706,0.6624,0.3306,0.101395622,0.566710174,0.6584903,0.116298989,0.398162782,0.375435352,0.39519158,0.500069618,0.664149348,0.664057542,0.664450355 +253,0.3901,0.1044,0.3901,0.3346,0.3178,0.0816,0.3178,0.2614,0.6624,0.1698,0.6624,0.3834,0.086076871,0.433936596,0.579901576,0.220251709,0.365732104,0.236882731,0.385340095,0.380476654,0.657805703,0.657711022,0.658244681 +254,0.3901,0.2326,0.3901,0.2609,0.3178,0.1738,0.3178,0.2753,0.6624,0.1955,0.6624,0.2391,0.191405714,0.379352331,0.621176779,0.398240268,0.328983128,0.509845316,0.443078369,0.370686889,0.653214113,0.653268458,0.653368794 +255,0.3901,0.1805,0.3901,0.2381,0.3178,0.119,0.3178,0.1934,0.6624,0.3019,0.6624,0.2144,0.160513535,0.35280031,0.898490191,0.356975317,0.275281847,1,0.535503388,0.306617081,0.646205897,0.646287286,0.646276596 +256,0.3901,0.1597,0.3901,0.1307,0.3178,0.0979,0.3178,0.2166,0.6624,0.34,0.6624,0.0893,0.124228887,0.193886682,0.937764466,0.289872289,0.259687007,0.885226965,0.605705738,0.111397766,0.646507975,0.646498837,0.646719858 +257,0.3901,0.1483,0.3901,0.0266,0.3178,0.044,0.3178,0.0182,0.6624,0.4315,0.6624,0.0033,0.087120563,0.102469601,0.934247494,0.197817445,0.019180359,0.833556056,0.741962791,0,0.675990817,0.675904379,0.675975177 +258,0.3901,0.1784,0.3901,0,0.3178,0.1346,0.3178,0,0.6624,0.5071,0.6624,0,0.147102803,0,0.984330416,0.392012477,0,0.997785449,0.791446865,0,0.718946351,0.718849164,0.719414894 +259,0.3901,0.2497,0.3901,0,0.3178,0.2903,0.3178,0,0.6624,0.3505,0.6624,0,0.212808251,0,1,0.556888342,0,1,0.657197833,0,0.712965201,0.712925746,0.71320922 +260,0.3901,0.1879,0.3901,0,0.3178,0.4373,0.3178,0,0.6624,0.473,0.6624,0,0.202867627,0,1,0.619576454,0,1,0.732649088,0,0.690369744,0.690289824,0.690602837 +261,0.3901,0.3712,0.3901,0,0.3178,0.6209,0.3178,0,0.6624,0.438,0.6624,0,0.416482389,0,1,0.701148629,0,1,0.644316316,0,0.657866119,0.657711022,0.658244681 +262,0.3901,0.3268,0.3901,0,0.3178,0.3763,0.3178,0,0.6624,0.4976,0.6624,0,0.427124679,0,1,0.519282937,0,1,0.766804516,0,0.609956501,0.609900571,0.609929078 +263,0.3901,0.4796,0.3901,0,0.3178,0.3135,0.3178,0,0.6624,0.5917,0.6624,0,0.539691865,0,1,0.442616165,0,1,0.82458663,0,0.549963751,0.549820182,0.550088653 +264,0.3901,0.4519,0.3901,0,0.3178,0.487,0.3178,0,0.6624,0.5097,0.6624,0,0.260195226,0,1,0.4927454,0,1,0.786526084,0,0.495589657,0.495663211,0.496010638 +265,0.3901,0.5536,0.3901,0,0.3178,0.64,0.3178,0,0.6624,0.4291,0.6624,0,0.216492117,0,1,0.625216007,0,1,0.639156282,0,0.4610319,0.460968902,0.460992908 +266,0.3901,0.5864,0.3901,0,0.3178,0.6807,0.3178,0,0.6624,0.3328,0.6624,0,0.214984268,0,1,0.661117792,0,1,0.516517222,0,0.439101015,0.439179183,0.438829787 +267,0.3901,0.6644,0.3901,0,0.3178,0.5887,0.3178,0,0.6624,0.3521,0.6624,0,0.352891088,0,1,0.618125498,0,1,0.549280345,0,0.428407443,0.428390099,0.428191489 +268,0.3901,0.7506,0.3901,0,0.3178,0.2931,0.3178,0,0.6624,0.2979,0.6624,0,0.442067266,0,1,0.368625552,0,1,0.507342696,0,0.425688739,0.425639941,0.425975177 +269,0.3901,0.5882,0.3901,0,0.3178,0.1128,0.3178,0,0.6624,0.3221,0.6624,0,0.371072769,0,1,0.214122772,0,1,0.475048184,0,0.437771871,0.437909879,0.437943262 +270,0.3901,0.5954,0.3901,0,0.3178,0.0639,0.3178,0,0.6624,0.3993,0.6624,0,0.399746835,0,1,0.143449828,0,1,0.624332368,0,0.478189947,0.478104506,0.478280142 +271,0.3901,0.3232,0.3901,0,0.3178,0.0905,0.3178,0,0.6624,0.393,0.6624,0,0.24813661,0,1,0.136806577,0,1,0.72884357,0,0.558482359,0.558493759,0.558953901 +272,0.3901,0.297,0.3901,0,0.3178,0.1307,0.3178,0,0.6624,0.2839,0.6624,0,0.282510638,0,1,0.165759057,0,1,0.579252362,0,0.602887869,0.602707849,0.603280142 +273,0.3899,0.1826,0.3899,0.1008,0.3177,0.3306,0.3177,0.1563,0.6622,0.2003,0.6622,0.0817,0.182465851,0.236937389,1,0.299337328,0.362588108,0.560800374,0.442220718,0.255904913,0.607358627,0.607361963,0.607712766 +274,0.3898,0.1408,0.3898,0.3571,0.3176,0.2714,0.3176,0.4284,0.6621,0.1738,0.6621,0.3005,0.131159633,0.612088859,0.958232522,0.191371769,0.682959735,0.373580128,0.422047854,0.593546093,0.60482117,0.604823355,0.605053192 +275,0.3896,0.1367,0.3896,0.5425,0.3175,0.3441,0.3175,0.5777,0.6619,0.1747,0.6619,0.3797,0.143900737,0.780409455,0.730005682,0.303414434,0.831908643,0.360524356,0.3751598,0.751739025,0.605546158,0.605669558,0.605496454 +276,0.3895,0.2209,0.3895,0.6327,0.3174,0.1898,0.3174,0.6501,0.6617,0.165,0.6617,0.4315,0.198314294,0.858942092,0.920607209,0.21737963,0.910569906,0.537046909,0.259621054,0.79437846,0.6030087,0.602919399,0.603280142 +277,0.3893,0.2392,0.3893,0.6563,0.3173,0.2485,0.3173,0.6632,0.6615,0.2132,0.6615,0.4191,0.218283534,0.897629023,0.974759162,0.276159108,0.94185859,0.58096838,0.343196511,0.823120117,0.596121315,0.596149778,0.596187943 +278,0.3892,0.2848,0.3892,0.6462,0.3172,0.1227,0.3172,0.6461,0.6614,0.2082,0.6614,0.4222,0.254532039,0.900672555,1,0.185802132,0.896925211,0.582921743,0.438845277,0.863766789,0.59159014,0.591707214,0.591755319 +279,0.389,0.2453,0.389,0.5642,0.3171,0.2346,0.3171,0.5617,0.6612,0.4143,0.6612,0.4058,0.247006446,0.795192599,0.99453032,0.283673108,0.775765479,0.68333137,0.596738219,0.748500109,0.58518608,0.585149143,0.585106383 +280,0.3889,0.2811,0.3889,0.3954,0.317,0.1022,0.317,0.3732,0.661,0.4471,0.661,0.3121,0.209499329,0.584593952,1,0.122582026,0.593517125,0.626590669,0.588526428,0.574264288,0.585669406,0.585572245,0.585992908 +281,0.3887,0.3158,0.3887,0.1551,0.3169,0.3814,0.3169,0.1768,0.6608,0.3686,0.6608,0.0905,0.383485586,0.310923249,0.932848334,0.395263761,0.305663049,0.687052906,0.538321972,0.267084718,0.614971001,0.614977787,0.615248227 +282,0.3886,0.3149,0.3886,0,0.3167,0.1815,0.3167,0,0.6607,0.3004,0.6607,0,0.426643223,0,0.928340018,0.225260541,0,0.999099612,0.471244842,0,0.668861769,0.668923207,0.668882979 +283,0.3884,0.3414,0.3884,0,0.3166,0.1595,0.3166,0,0.6605,0.3144,0.6605,0,0.368312597,0,0.959610164,0.244742572,0,1,0.457496494,0,0.669465926,0.669557859,0.669769504 +284,0.3883,0.2419,0.3883,0,0.3165,0.1428,0.3165,0,0.6603,0.3457,0.6603,0,0.233646572,0,0.994261146,0.196254939,0,1,0.486181587,0,0.653576607,0.653691559,0.653812057 +285,0.3881,0.1498,0.3881,0,0.3164,0.1519,0.3164,0,0.6601,0.4419,0.6601,0,0.174997136,0,0.985978961,0.17046386,0,1,0.631752074,0,0.627658289,0.627670827,0.627659575 +286,0.388,0.2856,0.388,0,0.3163,0.2419,0.3163,0,0.66,0.3133,0.66,0,0.394229263,0,0.99136734,0.286830157,0,1,0.574119985,0,0.584763171,0.584726042,0.584663121 +287,0.3878,0.4486,0.3878,0,0.3162,0.3086,0.3162,0,0.6598,0.1992,0.6598,0,0.462068379,0,0.628719449,0.333986431,0,0.995685935,0.437746197,0,0.53117448,0.531203723,0.531471631 +288,0.3876,0.3611,0.3876,0,0.3161,0.4669,0.3161,0,0.6596,0.2688,0.6596,0,0.333746761,0,0.774292469,0.38871792,0,0.996052384,0.521710396,0,0.481029483,0.481066215,0.480939716 +289,0.5428,0.0554,0.5428,0,0.368,0.0509,0.368,0,0.613,0.2436,0.613,0,0.102929287,0,0.28655833,0.067501307,0,0.306544006,0.360672176,0,0.436865636,0.436852126,0.436613475 +290,0.5423,0.0335,0.5423,0,0.3678,0.0245,0.3678,0,0.613,0.2548,0.613,0,0.070069149,0,0.244399473,0.03964423,0,0.445659459,0.358865291,0,0.414934751,0.414850857,0.414893617 +291,0.5418,0.0298,0.5418,0,0.3677,0.0196,0.3677,0,0.6131,0.148,0.6131,0,0.069911592,0,0.244833529,0.040781193,0,0.689976454,0.262341768,0,0.401764137,0.401734716,0.401595745 +292,0.5412,0.0084,0.5412,0,0.3675,0.0156,0.3675,0,0.6131,0.1111,0.6131,0,0.014961205,0,0.244127989,0.03616431,0,0.791790605,0.221059725,0,0.397655872,0.397715253,0.397606383 +293,0.5407,0.0085,0.5407,0,0.3674,0,0.3674,0,0.6131,0.125,0.6131,0,0.020019906,0,0.211876005,0.014359617,0,0.465516508,0.230596468,0,0.406053649,0.405965729,0.406028369 +294,0.5402,0.0021,0.5402,0.0049,0.3672,0,0.3672,0.0008,0.6131,0.1131,0.6131,0.0136,0.007520093,0.004839725,0.289745718,0.007557144,0,0.460135877,0.226175949,0.008954303,0.436019816,0.436005923,0.436170213 +295,0.5397,0.0029,0.5397,0.0941,0.367,0.0049,0.367,0.0735,0.6131,0.1255,0.6131,0.0987,0.007531909,0.163497344,0.223146796,0.016487908,0.124448769,0.405033797,0.204162121,0.166514278,0.500966651,0.500951978,0.500886525 +296,0.5392,0.0095,0.5392,0.2171,0.3669,0.0036,0.3669,0.1971,0.6131,0.1218,0.6131,0.2353,0.020222772,0.366256326,0.399918079,0.017013889,0.339877576,0.214261025,0.217606798,0.377554804,0.557455292,0.557436006,0.557624114 +297,0.5387,0.0202,0.5387,0.338,0.3667,0,0.3667,0.352,0.6131,0.1588,0.6131,0.3624,0.012131217,0.51266861,0.372137129,0.01705572,0.548357666,0.205175936,0.246868596,0.564755321,0.585065249,0.585149143,0.585106383 +298,0.5382,0.0118,0.5382,0.4496,0.3666,0.003,0.3666,0.4415,0.6131,0.1834,0.6131,0.4693,0.015408306,0.641467035,0.271962106,0.021653213,0.667341054,0.148014396,0.319478989,0.682289004,0.602162881,0.602073197,0.602393617 +299,0.5377,0.0115,0.5377,0.6574,0.3664,0.0112,0.3664,0.6511,0.6131,0.1882,0.6131,0.6499,0.012474523,0.944623053,0.297082424,0.024686296,0.929904997,0.127350539,0.321994692,0.959149838,0.614850169,0.614766237,0.615248227 +300,0.5372,0.0167,0.5372,0.5304,0.3662,0.0051,0.3662,0.5241,0.6131,0.2792,0.6131,0.5302,0.03286979,0.763183296,0.365212739,0.016091846,0.713555157,0.460607886,0.464787126,0.736581981,0.623489609,0.623651365,0.623670213 +301,0.5367,0.0139,0.5367,0.518,0.3661,0.0277,0.3661,0.5291,0.6131,0.2951,0.6131,0.5243,0.021454006,0.752946496,0.472586632,0.040691424,0.725884199,1,0.486889899,0.747741342,0.624818753,0.624920669,0.625 +302,0.5362,0.0296,0.5362,0.5066,0.3659,0.0879,0.3659,0.5035,0.6131,0.3901,0.6131,0.5014,0.082228646,0.733274221,0.558043897,0.089652121,0.732926846,1,0.637303412,0.747792244,0.627235379,0.627247726,0.627216312 +303,0.5357,0.0675,0.5357,0.4998,0.3658,0.2124,0.3658,0.5097,0.6131,0.4318,0.6131,0.5092,0.147074938,0.716671348,0.273781955,0.210959673,0.731348395,0.453748465,0.659193039,0.715080202,0.624033349,0.624074466,0.624113475 +304,0.5352,0.0874,0.5352,0.4264,0.3656,0.1334,0.3656,0.4509,0.6131,0.3482,0.6131,0.3765,0.160640761,0.693377793,0.213523984,0.137134001,0.705526233,0.311781704,0.529499769,0.698079467,0.620952151,0.621112757,0.621010638 +305,0.5347,0.0934,0.5347,0.2974,0.3655,0.0398,0.3655,0.3258,0.6131,0.3334,0.6131,0.2584,0.129200593,0.586790562,0.138957962,0.050490655,0.63049984,0.185062319,0.503858209,0.581993341,0.620770904,0.620689655,0.621010638 +306,0.5342,0.0969,0.5342,0.1493,0.3653,0.0497,0.3653,0.1867,0.6131,0.3284,0.6131,0.1442,0.114053294,0.403389722,0.092829756,0.061868861,0.513354957,0.176666498,0.515562952,0.306327373,0.615756404,0.61582399,0.616134752 +307,0.5337,0.1098,0.5337,0.0488,0.3651,0.0749,0.3651,0.0732,0.6131,0.358,0.6131,0.0591,0.127998903,0.22100696,0.117127135,0.085354745,0.287998051,0.125957608,0.495559037,0.070040196,0.604639923,0.604823355,0.605053192 +308,0.5332,0.1264,0.5332,0,0.365,0.0365,0.365,0,0.6131,0.4554,0.6131,0,0.103152841,0,0.117953621,0.060099483,0,0.039143719,0.6747877,0,0.595275495,0.595303575,0.595301418 +309,0.5327,0.1441,0.5327,0,0.3648,0.0602,0.3648,0,0.6131,0.455,0.6131,0,0.143746465,0,0.147683203,0.090489812,0,0.059764139,0.623450279,0,0.603129531,0.60313095,0.603280142 +310,0.5322,0.1966,0.5322,0,0.3647,0.0289,0.3647,0,0.6131,0.3671,0.6131,0,0.192906633,0,0.37370503,0.039535411,0,0.138283253,0.560451567,0,0.585850653,0.585783795,0.585992908 +311,0.5316,0.1432,0.5316,0,0.3645,0.0601,0.3645,0,0.6131,0.3246,0.6131,0,0.18569909,0,0.575402319,0.076915391,0,0.194575399,0.552035093,0,0.539088932,0.539031098,0.539007092 +312,0.5311,0.1587,0.5311,0,0.3643,0.0983,0.3643,0,0.6131,0.3508,0.6131,0,0.17065762,0,0.666500807,0.12334802,0,0.305845827,0.653798878,0,0.48622523,0.486143431,0.486258865 +313,0.5306,0.2148,0.5306,0,0.3642,0.1068,0.3642,0,0.6131,0.3604,0.6131,0,0.201032296,0,0.954202414,0.123919778,0,0.3628833,0.672906995,0,0.4459884,0.445948805,0.445921986 +314,0.5301,0.2955,0.5301,0,0.364,0.1037,0.364,0,0.6132,0.3634,0.6132,0,0.236418411,0,0.979016721,0.103414245,0,0.396931976,0.68204242,0,0.421640889,0.421832029,0.421985816 +315,0.5296,0.332,0.5296,0,0.3639,0.0938,0.3639,0,0.6132,0.3532,0.6132,0,0.301238269,0,0.955985069,0.089088917,0,0.432177484,0.731578231,0,0.406839053,0.406811932,0.406914894 +316,0.5291,0.4087,0.5291,0,0.3637,0.1876,0.3637,0,0.6132,0.2717,0.6132,0,0.39020884,0,0.993632317,0.210339248,0,0.387375653,0.558156729,0,0.399347511,0.399407658,0.399379433 +317,0.5286,0.349,0.5286,0,0.3636,0.1478,0.3636,0,0.6132,0.2064,0.6132,0,0.380123615,0,0.918339968,0.176655948,0,0.334295839,0.441318661,0,0.400253746,0.400253861,0.400265957 +318,0.5281,0.1797,0.5281,0.026,0.3634,0.1886,0.3634,0.0121,0.6132,0.1902,0.6132,0.0409,0.235861972,0.049373325,0.466329932,0.192031875,0.022724975,0.339601845,0.45386827,0.152818382,0.406295312,0.40617728,0.406471631 +319,0.5276,0.1659,0.5276,0.1018,0.3632,0.1399,0.3632,0.13,0.6132,0.1876,0.6132,0.0873,0.183815897,0.458189815,0.338065684,0.108884692,0.487261832,0.352346093,0.440796673,0.420681775,0.429494925,0.429659403,0.429521277 +320,0.5271,0.1331,0.5271,0.2433,0.3631,0.0987,0.3631,0.2585,0.6132,0.0837,0.6132,0.1897,0.089953058,0.603047133,0.594026804,0.081454344,0.610282898,0.403067827,0.192150861,0.466695249,0.47341711,0.473450391,0.473404255 +321,0.5266,0.128,0.5266,0.3818,0.3629,0.0154,0.3629,0.3965,0.6132,0.0755,0.6132,0.3086,0.054063726,0.670013547,0.604393601,0.015007132,0.726192355,0.381297648,0.196360469,0.658982933,0.525132915,0.525068754,0.525265957 +322,0.5261,0.0712,0.5261,0.4982,0.3628,0.0061,0.3628,0.4937,0.6132,0.0858,0.6132,0.3997,0.020784948,0.770968735,0.401578367,0.012040151,0.772229612,0.591825485,0.164881259,0.673514366,0.567363461,0.567378887,0.567375887 +323,0.5256,0.0862,0.5256,0.5353,0.3626,0.0043,0.3626,0.5335,0.6132,0.0808,0.6132,0.5139,0.016812757,0.697871029,0.580888927,0.009310487,0.794491172,0.598218679,0.114012696,0.597352088,0.596483809,0.596572879,0.596631206 +324,0.5251,0.1196,0.5251,0.5261,0.3624,0.0594,0.3624,0.539,0.6132,0.1086,0.6132,0.582,0.068726257,0.74565649,0.828314841,0.043812402,0.794821799,0.682179809,0.12996468,0.606385469,0.615152248,0.615189338,0.615248227 +325,0.5246,0.1109,0.5246,0.5122,0.3623,0.0492,0.3623,0.5061,0.6132,0.2391,0.6132,0.6627,0.071737021,0.684711933,0.73906374,0.039249744,0.753941178,0.780026496,0.252119541,0.737015903,0.626329145,0.626401523,0.62677305 +326,0.5241,0.1518,0.5241,0.6212,0.3621,0.0035,0.3621,0.6245,0.6132,0.277,0.6132,0.7799,0.073892027,0.868428469,1,0.011705987,0.874346674,1,0.298006117,0.994849503,0.629954084,0.629786334,0.630319149 +327,0.5236,0.1656,0.5236,0.4165,0.362,0.0012,0.362,0.3972,0.6132,0.2761,0.6132,0.5856,0.059361372,0.639644206,0.995629609,0.015990097,0.549309194,0.671295524,0.283086956,0.914367557,0.632310295,0.632324942,0.632535461 +328,0.5231,0.2013,0.5231,0.3874,0.3618,0.0066,0.3618,0.3532,0.6132,0.347,0.6132,0.4619,0.084108204,0.702865779,0.998854637,0.028533269,0.520966053,0.786381781,0.340696096,0.89767617,0.632310295,0.632324942,0.632535461 +329,0.5226,0.1814,0.5226,0.2828,0.3617,0,0.3617,0.2343,0.6132,0.4828,0.6132,0.3078,0.061644688,0.633072138,0.977961302,0.015878014,0.335467786,0.738582492,0.539063335,0.852163374,0.636781054,0.636767506,0.636968085 +330,0.5221,0.175,0.5221,0.1567,0.3615,0.044,0.3615,0.1124,0.6132,0.3649,0.6132,0.1234,0.08750321,0.476917625,0.963040888,0.057438612,0.174902946,0.750400543,0.430850416,0.733914018,0.636781054,0.636767506,0.636968085 +331,0.5215,0.2286,0.5215,0.0604,0.3613,0.0109,0.3613,0.0397,0.6132,0.2706,0.6132,0.0769,0.110712282,0.242785856,1,0.082583472,0.041037187,1,0.307669967,0.490603566,0.627899952,0.627882378,0.628102837 +332,0.521,0.0939,0.521,0.0018,0.3612,0.0113,0.3612,0,0.6132,0.2094,0.6132,0.0408,0.06268514,0,0.791789591,0.030916506,0,0.591982544,0.280342639,0,0.616179314,0.616247091,0.616134752 +333,0.5205,0.1196,0.5205,0,0.361,0.0207,0.361,0,0.6132,0.2086,0.6132,0,0.079687506,0,0.690502524,0.035293765,0,0.387329578,0.32381013,0,0.622100048,0.62217051,0.622340426 +334,0.52,0.1163,0.52,0,0.3609,0.0913,0.3609,0,0.6132,0.2564,0.6132,0,0.209309652,0,0.371470213,0.118508779,0,0.186375141,0.345559239,0,0.604519091,0.604611805,0.604609929 +335,0.5195,0.1461,0.5195,0,0.3607,0.2797,0.3607,0,0.6132,0.3102,0.6132,0,0.347161263,0,0.235487819,0.293499112,0,0.287831694,0.48878479,0,0.554917835,0.554897398,0.554964539 +336,0.519,0.2864,0.519,0,0.3605,0.5674,0.3605,0,0.6132,0.3171,0.6132,0,0.426779628,0,0.24946785,0.531790853,0,0.560889304,0.432373047,0,0.501510392,0.50158663,0.50177305 +337,0.5185,0.2711,0.5185,0,0.3604,0.2931,0.3604,0,0.6132,0.1866,0.6132,0,0.34032023,0,0.653070331,0.393169761,0,0.617837012,0.343333662,0,0.457044466,0.456949439,0.457003546 +338,0.518,0.1829,0.518,0,0.3602,0.2742,0.3602,0,0.6133,0.1478,0.6133,0,0.209819675,0,0.869526088,0.371684939,0,0.72388792,0.284313917,0,0.428407443,0.428390099,0.428191489 +339,0.5175,0.1844,0.5175,0,0.3601,0.5432,0.3601,0,0.6133,0.1773,0.6133,0,0.228416383,0,0.928739488,0.457418025,0,0.751158357,0.241683677,0,0.409255679,0.409138989,0.409131206 +340,0.517,0.2522,0.517,0,0.3599,0.33,0.3599,0,0.6133,0.1432,0.6133,0,0.207252786,0,0.845790386,0.43018651,0,0.829544604,0.22548914,0,0.397655872,0.397715253,0.397606383 +341,0.5165,0.2607,0.5165,0,0.3598,0.2193,0.3598,0,0.6133,0.1329,0.6133,0,0.195063695,0,0.479269803,0.330451816,0,0.775633276,0.221389622,0,0.392278879,0.392214936,0.392287234 +342,0.516,0.2212,0.516,0.0973,0.3596,0.2581,0.3596,0.0752,0.6133,0.0723,0.6133,0.059,0.195275858,0.248310834,0.218139723,0.33224842,0.115721382,0.579433203,0.13964197,0.231346116,0.386237313,0.386291517,0.38608156 +343,0.5155,0.1456,0.5155,0.1144,0.3594,0.164,0.3594,0.138,0.6133,0.0453,0.6133,0.1168,0.109856688,0.525692761,0.150333703,0.206480548,0.31754446,0.140880883,0.076125711,0.655412436,0.399830836,0.39983076,0.399822695 +344,0.515,0.0674,0.515,0.2496,0.3593,0.0309,0.3593,0.2598,0.6133,0.0091,0.6133,0.2575,0.020254515,0.707271993,0.119932413,0.052579988,0.485493958,0.044088483,0.006525885,0.772856474,0.434630256,0.434736619,0.434840426 +345,0.5145,0.0287,0.5145,0.4063,0.3591,0,0.3591,0.4016,0.6133,0.0063,0.6133,0.416,0.006522118,0.818332374,0.115701422,0.002567487,0.668443859,0.057944506,0.002153539,0.882645607,0.478250363,0.478316057,0.478280142 +346,0.514,0.0344,0.514,0.5217,0.359,0,0.359,0.5187,0.6133,0.0061,0.6133,0.5489,0.00640721,0.858387113,0.094033748,0.001303967,0.821421921,0.033942148,0.001924694,0.91635406,0.516916385,0.516818278,0.516843972 +347,0.5135,0.0279,0.5135,0.6837,0.3588,0,0.3588,0.6685,0.6133,0.0053,0.6133,0.7417,0.005469657,0.990906656,0.089679062,0.002256513,0.980414927,0.069912314,0.009007787,1,0.541868052,0.541781257,0.542109929 +348,0.513,0.0209,0.513,0.6141,0.3586,0,0.3586,0.5887,0.6133,0.0099,0.6133,0.6676,0.005807847,0.866961598,0.052571714,0.000736253,0.781377852,0.003317539,0.00634783,0.915979266,0.558724021,0.55870531,0.558953901 +349,0.5125,0.0305,0.5125,0.6254,0.3585,0,0.3585,0.5841,0.6133,0.0158,0.6133,0.61,0.009198739,0.88501215,0.048186928,0.002049996,0.801012933,0,0.028446689,0.920965672,0.568753021,0.568648191,0.568705674 +350,0.5119,0.0314,0.5119,0.6295,0.3583,0,0.3583,0.5947,0.6133,0.017,0.6133,0.527,0.010839716,0.867754877,0.028566901,0.006953634,0.824292362,0.009132199,0.045451026,0.90958482,0.570323828,0.570340597,0.570478723 +351,0.5114,0.0375,0.5114,0.5713,0.3582,0.0108,0.3582,0.5658,0.6133,0.0292,0.6133,0.4364,0.029926123,0.866189599,0.090105362,0.019025767,0.844137788,0.069604456,0.042708278,0.542909801,0.571532141,0.571609901,0.571808511 +352,0.5109,0.0911,0.5109,0.4664,0.358,0.0329,0.358,0.4846,0.6133,0.015,0.6133,0.4434,0.054838117,0.855623722,0.175722048,0.048079811,0.831098139,0.020941624,0.044498995,0.443953484,0.574552924,0.57457161,0.574468085 +353,0.5104,0.1296,0.5104,0.3225,0.3578,0.0352,0.3578,0.357,0.6133,0.0328,0.6133,0.29,0.07538908,0.792096496,0.200383514,0.06945663,0.765474975,0.040855758,0.071649931,0.638964295,0.579990334,0.579860377,0.580230497 +354,0.5099,0.1024,0.5099,0.1542,0.3577,0.0063,0.3577,0.1974,0.6133,0.0373,0.6133,0.1523,0.08161626,0.6482867,0.156256527,0.038182136,0.617378116,0.041342147,0.087772548,0.638399243,0.58240696,0.582398985,0.582446809 +355,0.5094,0.0762,0.5094,0.0734,0.3575,0.0553,0.3575,0.0874,0.6133,0.0424,0.6133,0.0676,0.07382483,0.326692373,0.046422366,0.084147491,0.315512568,0.045055497,0.085680999,0.305667967,0.573042533,0.573090755,0.573138298 +356,0.5089,0.104,0.5089,0,0.3574,0.0847,0.3574,0,0.6133,0.0541,0.6133,0,0.161338687,0,0.067104608,0.132098615,0,0.146847129,0.085918419,0,0.562167714,0.562090121,0.562056738 +357,0.5084,0.1042,0.5084,0,0.3572,0.1265,0.3572,0,0.6133,0.04,0.6133,0,0.15919514,0,0.039689653,0.163268238,0,0.123765454,0.058647409,0,0.57280087,0.572667654,0.573138298 +358,0.5079,0.087,0.5079,0,0.3571,0.1107,0.3571,0,0.6133,0.0466,0.6133,0,0.108535186,0,0.065212756,0.142740086,0,0.338499755,0.067917563,0,0.561080232,0.561032367,0.561170213 +359,0.5074,0.0581,0.5074,0,0.3569,0.1212,0.3569,0,0.6133,0.0512,0.6133,0,0.071472719,0,0.217857033,0.138909176,0,0.244642153,0.092894673,0,0.522353794,0.522318595,0.522606383 +360,0.5069,0.0925,0.5069,0,0.3567,0.2,0.3567,0,0.6133,0.0627,0.6133,0,0.111822933,0,0.349852622,0.214631125,0,0.414055526,0.148355186,0,0.476739971,0.476835202,0.476950355 +361,0.5064,0.0786,0.5064,0,0.3566,0.1856,0.3566,0,0.6134,0.0398,0.6134,0,0.110325836,0,0.327212632,0.184857607,0,0.563972533,0.099001825,0,0.440188497,0.440236937,0.440159575 +362,0.5059,0.0609,0.5059,0,0.3564,0.1325,0.3564,0,0.6134,0.0292,0.6134,0,0.093629137,0,0.378330529,0.166632116,0,0.674354196,0.125508308,0,0.416082649,0.416120161,0.416223404 +363,0.5054,0.0554,0.5054,0,0.3563,0.1046,0.3563,0,0.6134,0.0325,0.6134,0,0.047552854,0,0.675056875,0.142442837,0,0.82370317,0.152086809,0,0.402549541,0.402580918,0.402925532 +364,0.5049,0.0389,0.5049,0,0.3561,0.0672,0.3561,0,0.6134,0.0299,0.6134,0,0.035386208,0,0.779412627,0.093350187,0,1,0.082653493,0,0.395903818,0.395811297,0.395833333 +365,0.5044,0.0278,0.5044,0,0.3559,0.043,0.3559,0,0.6134,0.0299,0.6134,0,0.044179618,0,0.970574141,0.075678729,0,1,0.051712863,0,0.396749638,0.39686905,0.396719858 +366,0.5039,0.0018,0.5039,0.0359,0.3558,0.046,0.3558,0.0118,0.6134,0.0385,0.6134,0.0436,0.050887093,0.096717402,0.811164498,0.057695933,0.069058806,1,0.053232022,0.136604279,0.400495408,0.400676962,0.40070922 +367,0.5034,0.0034,0.5034,0.1068,0.3556,0.005,0.3556,0.1206,0.6134,0.0259,0.6134,0.1378,0.011802151,0.445279241,0.798115969,0.012516349,0.452267677,0.873755574,0.056437861,0.427904367,0.418861769,0.418870319,0.418882979 +368,0.5029,0.0048,0.5029,0.2425,0.3555,0,0.3555,0.2677,0.6134,0.0286,0.6134,0.248,0.010198699,0.683956683,0.860122562,0,0.708063066,0.443921745,0.056191221,0.709809661,0.456440309,0.456526338,0.456560284 +369,0.5023,0.0012,0.5023,0.3923,0.3553,0,0.3553,0.4168,0.6134,0.0205,0.6134,0.3691,0.002185003,0.78157872,0.587973356,4.14E-06,0.817111433,0.803598762,0.017246964,0.820502579,0.507068632,0.507086947,0.507092199 +370,0.5018,0.0087,0.5018,0.5074,0.3552,0,0.3552,0.5283,0.6134,0.0351,0.6134,0.4759,0.003054135,0.843060255,0.593473434,0,0.858579099,0.628719926,0.012483159,0.880974174,0.549117931,0.54918553,0.549202128 +371,0.5013,0.0083,0.5013,0.6026,0.355,0,0.355,0.6076,0.6134,0.0482,0.6134,0.47,0.001627549,0.880451083,0.41860193,0.000109725,0.877711237,0.17581363,0.018060023,0.881064296,0.581138231,0.581129681,0.581117021 +372,0.5008,0.0145,0.5008,0.6293,0.3548,0,0.3548,0.6221,0.6134,0.0367,0.6134,0.521,0.002265822,0.880549073,0.187907904,0.002390011,0.876857698,0.130292937,0.002811063,0.880626679,0.605062832,0.605034906,0.605496454 +373,0.5003,0.0189,0.5003,0.6032,0.3547,0,0.3547,0.5993,0.6134,0.0405,0.6134,0.5412,0.004129499,0.82160759,0.064052969,0.002647798,0.859360158,0.097917542,0.005518335,0.911264956,0.622160464,0.62217051,0.622340426 +374,0.4998,0.0219,0.4998,0.5956,0.3545,0,0.3545,0.5694,0.6134,0.0526,0.6134,0.4555,0.007144081,0.804832161,0.088177927,0.004862648,0.765307427,0.012381938,0.051187784,0.865523696,0.628383277,0.62851703,0.628546099 +375,0.4993,0.0499,0.4993,0.5497,0.3544,0,0.3544,0.5184,0.6134,0.1268,0.6134,0.4178,0.020478513,0.803928673,0.069377817,0.013637004,0.728534877,0.009062566,0.125595883,0.733185232,0.632612373,0.632748043,0.632978723 +376,0.4988,0.077,0.4988,0.4475,0.3542,0,0.3542,0.4624,0.6134,0.2036,0.6134,0.3587,0.078456752,0.806182385,0.043587331,0.040330511,0.784437716,0.061906025,0.230736941,0.637027204,0.63738521,0.637613709,0.637411348 +377,0.4983,0.0979,0.4983,0.3146,0.354,0,0.354,0.3444,0.6134,0.1319,0.6134,0.2848,0.145345926,0.754471779,0.033999901,0.068920702,0.731807947,0.021825396,0.1605739,0.685909629,0.646145481,0.646287286,0.646276596 +378,0.4978,0.1186,0.4978,0.1529,0.3539,0.1888,0.3539,0.1995,0.6134,0.1342,0.6134,0.134,0.250567436,0.6176669,0.015773797,0.280011445,0.514961958,0,0.161806598,0.586301327,0.652549541,0.652633806,0.65248227 +379,0.4973,0.1807,0.4973,0.0686,0.3537,0.2795,0.3537,0.0905,0.6134,0.1234,0.6134,0.0714,0.293726653,0.340904981,0.018532129,0.338294953,0.294265181,0,0.174860343,0.342638254,0.64517883,0.645229533,0.645390071 +380,0.4968,0.0655,0.4968,0,0.3536,0.0233,0.3536,0,0.6134,0.176,0.6134,0,0.129458889,0,0.00505148,0.041073062,0,0,0.268521637,0.0000196,0.637143548,0.637190607,0.637411348 +381,0.4963,0.0918,0.4963,0,0.3534,0.1062,0.3534,0,0.6134,0.1566,0.6134,0,0.165676624,0,0.010476673,0.148222417,0,0.053382203,0.233442634,0,0.645843403,0.645864185,0.645833333 +382,0.4958,0.0698,0.4958,0,0.3533,0.222,0.3533,0,0.6134,0.1314,0.6134,0,0.198202223,0,0.014508187,0.238910809,0,0.098121733,0.265107542,0,0.617025133,0.617093294,0.617021277 +383,0.4953,0.0486,0.4953,0,0.3531,0.175,0.3531,0,0.6134,0.1383,0.6134,0,0.161508367,0,0.045076083,0.196971089,0,0.138786927,0.306821913,0,0.554253262,0.554262746,0.554521277 +384,0.4948,0.0422,0.4948,0,0.3529,0.1053,0.3529,0,0.6135,0.1693,0.6135,0,0.127100974,0,0.161075637,0.140977368,0,0.392001361,0.321119994,0,0.494139681,0.494182357,0.494237589 +385,0.1649,0.0966,0.1649,0,0.215,0.0302,0.215,0,0.5349,0.0151,0.5349,0,0.023907624,0,0.417306423,0.034292813,0,1,0.020571349,0,0.59618173,0.596149778,0.596187943 +386,0.1649,0.1738,0.1649,0,0.215,0.0737,0.215,0,0.5349,0.0282,0.5349,0,0.068487756,0,0.915883303,0.079222478,0,0.99107337,0.025771072,0,0.567544708,0.567590438,0.567375887 +387,0.1649,0.1676,0.1649,0,0.215,0.1417,0.215,0,0.5349,0.0371,0.5349,0,0.080683127,0,0.804368138,0.145942792,0,0.662275672,0.027744928,0,0.549238763,0.54918553,0.549202128 +388,0.1649,0.0604,0.1649,0,0.215,0.2023,0.215,0,0.5349,0.0232,0.5349,0,0.085766658,0,0.669743061,0.214158848,0,0.993282795,0.03124867,0,0.539632673,0.53966575,0.539893617 +389,0.1649,0.0876,0.1649,0,0.215,0.2069,0.215,0,0.5349,0.0179,0.5349,0,0.109562613,0,0.857402027,0.223272532,0,0.995654464,0.023975259,0,0.543318028,0.543473662,0.543439716 +390,0.1649,0.0716,0.1649,0.0316,0.215,0.201,0.215,0.0168,0.5349,0.0059,0.5349,0,0.104910389,0.048925817,0.622618437,0.21813342,0.028234283,0.676141143,0.014987183,0.005167271,0.568088449,0.568013539,0.568262411 +391,0.1649,0.0503,0.1649,0.0805,0.215,0.0923,0.215,0.1067,0.5349,0.0101,0.5349,0.086,0.044781681,0.382301807,0.735658586,0.081565261,0.424099892,0.372645557,0.038940638,0.238480106,0.627537458,0.627670827,0.627659575 +392,0.1649,0.1238,0.1649,0.2149,0.215,0.131,0.215,0.2393,0.5349,0.004,0.5349,0.2077,0.098245755,0.654169679,0.725578904,0.137218773,0.562330484,0.44511205,0.011610627,0.511969805,0.706319478,0.706367675,0.706560284 +393,0.1649,0.0824,0.1649,0.3659,0.215,0.1469,0.215,0.3837,0.5349,0.0017,0.5349,0.3529,0.071114846,0.757350922,0.579348803,0.114812493,0.752826154,0.30573538,0.009155178,0.727080345,0.767520541,0.767717368,0.767730497 +394,0.1649,0.0601,0.1649,0.4898,0.215,0.115,0.215,0.4951,0.5349,0.0039,0.5349,0.4723,0.032162994,0.805259585,0.530722499,0.09734036,0.810123205,0.275747657,0.007694993,0.788729906,0.816698888,0.816797123,0.816932624 +395,0.1649,0.1055,0.1649,0.5831,0.215,0.1406,0.215,0.5785,0.5349,0.0134,0.5349,0.5436,0.091004223,0.82989347,0.433776796,0.143119335,0.837365151,0.264700264,0.025805254,0.830189049,0.859956501,0.859953459,0.86037234 +396,0.1649,0.0853,0.1649,0.6085,0.215,0.2261,0.215,0.6126,0.5349,0.0451,0.5349,0.5843,0.092592314,0.849625409,0.373571277,0.198024914,0.863726378,0.238614678,0.089819893,0.84804672,0.894755921,0.894647768,0.894946809 +397,0.1649,0.1433,0.1649,0.5999,0.215,0.1885,0.215,0.6174,0.5349,0.0418,0.5349,0.5893,0.173794836,0.837577999,0.433625162,0.168830335,0.871693909,0.227770433,0.055512808,0.841647446,0.921640889,0.921726253,0.921985816 +398,0.1649,0.1712,0.1649,0.5772,0.215,0.1281,0.215,0.6044,0.5349,0.129,0.5349,0.5534,0.132632583,0.814279378,0.79791081,0.134183258,0.845688641,0.409148991,0.191790685,0.798665047,0.944719671,0.944785276,0.945035461 +399,0.1649,0.1848,0.1649,0.5188,0.215,0.1351,0.215,0.5663,0.5349,0.0866,0.5349,0.5003,0.152588874,0.773287952,1,0.130121231,0.795576215,0.439282239,0.096225865,0.698141456,0.94961334,0.949650941,0.949911348 +400,0.1649,0.1469,0.1649,0.4201,0.215,0.1776,0.215,0.4586,0.5349,0.0651,0.5349,0.4107,0.137453303,0.696662486,1,0.176341489,0.707151115,0.486715198,0.051740754,0.596123815,0.951486225,0.951554897,0.951684397 +401,0.1649,0.1033,0.1649,0.3017,0.215,0.1491,0.215,0.3374,0.5349,0.0463,0.5349,0.2813,0.096672967,0.611576557,1,0.148207724,0.601497173,0.705397964,0.054552019,0.579768598,0.949734171,0.949650941,0.949911348 +402,0.1649,0.218,0.1649,0.1691,0.215,0.267,0.215,0.2068,0.5349,0.0428,0.5349,0.1628,0.246728316,0.466124952,1,0.235715553,0.509555697,0.762290359,0.041651979,0.466523498,0.942665539,0.942669769,0.943262411 +403,0.1649,0.0872,0.1649,0.0705,0.215,0.0681,0.215,0.0937,0.5349,0.0372,0.5349,0.0507,0.117695704,0.194905758,1,0.059019528,0.3035146,0.570949793,0.034362815,0.137939692,0.920734654,0.9206685,0.921099291 +404,0.1649,0.0529,0.1649,0,0.215,0.0314,0.215,0,0.5349,0.0362,0.5349,0,0.100484103,0,1,0.037133232,0,0.491913617,0.057075974,0,0.891795553,0.89189761,0.892287234 +405,0.1649,0.0325,0.1649,0,0.215,0.0175,0.215,0,0.5349,0.0411,0.5349,0,0.059404828,0,0.998141885,0.026813105,0,0.682712853,0.099441372,0,0.880497825,0.880685424,0.880762411 +406,0.1649,0.0519,0.1649,0,0.215,0.0503,0.215,0,0.5349,0.0617,0.5349,0,0.107082434,0,0.723340154,0.06148164,0,0.634384334,0.148364067,0,0.845517158,0.845568014,0.845744681 +407,0.1649,0.0295,0.1649,0,0.215,0.0333,0.215,0,0.5349,0.0466,0.5349,0,0.067474082,0,0.636288285,0.048424825,0,0.577560782,0.103087641,0,0.764741421,0.764755659,0.765070922 +408,0.1649,0.0343,0.1649,0,0.215,0.1177,0.215,0,0.5349,0.0177,0.5349,0,0.076981142,0,0.689040303,0.100923747,0,1,0.047065575,0,0.684871919,0.684789507,0.685283688 +409,0.1649,0.04,0.1649,0,0.215,0.1587,0.215,0,0.5349,0.0209,0.5349,0,0.088664487,0,0.95889777,0.190048918,0,1,0.038112242,0,0.628262446,0.628305479,0.628546099 +410,0.1649,0.102,0.1649,0,0.215,0.2127,0.215,0,0.5349,0.0415,0.5349,0,0.196175486,0,0.973448098,0.253231585,0,1,0.042202726,0,0.59159014,0.591707214,0.591755319 +411,0.1649,0.1432,0.1649,0,0.215,0.2058,0.215,0,0.5349,0.0451,0.5349,0,0.255708128,0,0.82672441,0.296434999,0,0.279786944,0.042854957,0,0.567846786,0.567801989,0.567819149 +412,0.1649,0.1592,0.1649,0,0.215,0.1181,0.215,0,0.5349,0.0462,0.5349,0,0.142633662,0,0.596264303,0.179559961,0,0.178385884,0.059922714,0,0.553044949,0.552993442,0.553191489 +413,0.1649,0.1248,0.1649,0,0.215,0.11,0.215,0,0.5349,0.053,0.5349,0,0.161802918,0,0.586191595,0.127627045,0,0.15827696,0.076737471,0,0.554374094,0.554474297,0.554521277 +414,0.1649,0.1249,0.1649,0.0259,0.215,0.0505,0.215,0.0003,0.5349,0.0455,0.5349,0.0083,0.191856578,0.034566909,0.498638719,0.061767213,0.001520546,0.067278281,0.060737375,0.138037294,0.576788304,0.576687117,0.57712766 +415,0.1649,0.088,0.1649,0.096,0.215,0.0136,0.215,0.0996,0.5349,0.0247,0.5349,0.0608,0.145739317,0.34051609,0.377310753,0.021560257,0.306335449,0.000539267,0.037652876,0.473481745,0.639076849,0.639094563,0.639184397 +416,0.1649,0.0553,0.1649,0.2133,0.215,0.0031,0.215,0.2184,0.5349,0.0244,0.5349,0.0906,0.063441776,0.547159135,0.388509452,0.00647525,0.54831779,0.000329843,0.050226711,0.462442458,0.719973417,0.719906918,0.720301418 +417,0.1649,0.0608,0.1649,0.3624,0.215,0.0035,0.215,0.3801,0.5349,0.0266,0.5349,0.157,0.107709236,0.747829616,0.260568708,0.003027687,0.758825243,0.023841623,0.04504494,0.412879914,0.784859836,0.784852972,0.785017731 +418,0.1649,0.0483,0.1649,0.4795,0.215,0.0187,0.215,0.497,0.5349,0.0347,0.5349,0.3141,0.077111453,0.776483536,0.065477707,0.016431429,0.81982255,0.04393246,0.124877751,0.471285522,0.842194297,0.842183203,0.842198582 +419,0.1649,0.0521,0.1649,0.5633,0.215,0.0611,0.215,0.566,0.5349,0.0441,0.5349,0.3079,0.041601107,0.7407341,0.070179462,0.04828972,0.813200533,0.017215969,0.188969538,0.488849372,0.891855969,0.89189761,0.892287234 +420,0.1649,0.1347,0.1649,0.5708,0.215,0.1496,0.215,0.5632,0.5349,0.0817,0.5349,0.4452,0.034508858,0.721973896,0.095890448,0.122549281,0.76173687,0.032446075,0.224277183,0.530159354,0.925869986,0.925957267,0.92641844 +421,0.1649,0.3076,0.1649,0.534,0.215,0.199,0.215,0.5305,0.5349,0.0563,0.5349,0.4428,0.153099567,0.781870365,0.205791622,0.199565381,0.770466328,0.120509699,0.177167088,0.664518833,0.949311262,0.949439391,0.949468085 +422,0.1649,0.3513,0.1649,0.5641,0.215,0.2721,0.215,0.5783,0.5349,0.0923,0.5349,0.4834,0.191757113,0.821734905,0.377977192,0.273406863,0.844895959,0.295387983,0.146371976,0.715889216,0.970517158,0.970594457,0.970744681 +423,0.1649,0.5379,0.1649,0.5537,0.215,0.2836,0.215,0.5735,0.5349,0.0596,0.5349,0.4119,0.377724767,0.827906728,0.513582945,0.281844467,0.849149346,0.440620959,0.133162469,0.748334169,0.983929435,0.983922149,0.984042553 +424,0.1649,0.5602,0.1649,0.457,0.215,0.2746,0.215,0.4853,0.5349,0.054,0.5349,0.3376,0.354122341,0.795335829,0.714232802,0.308719426,0.822357357,0.799556851,0.152271077,0.724883318,0.99401885,0.994076581,0.994237589 +425,0.1649,0.573,0.1649,0.3439,0.215,0.2808,0.215,0.4051,0.5349,0.0413,0.5349,0.1446,0.322912455,0.916427732,0.975401282,0.337165982,0.947162032,1,0.119346462,0.805045307,1,1,1 +426,0.1649,0.5305,0.1649,0.1642,0.215,0.2359,0.215,0.2135,0.5349,0.0691,0.5349,0.0666,0.23743692,0.592885971,1,0.277880848,0.630017042,1,0.124509253,0.148911506,0.991723055,0.991749524,0.992021277 +427,0.1649,0.4565,0.1649,0.0638,0.215,0.1028,0.215,0.0909,0.5349,0.0799,0.5349,0.0064,0.273301721,0.291396022,1,0.126930207,0.36169523,1,0.183063909,0.001705564,0.968946351,0.968902052,0.969414894 +428,0.1649,0.3317,0.1649,0,0.215,0.0481,0.215,0,0.5349,0.0853,0.5349,0,0.196990103,0,1,0.092703208,0,1,0.188168913,0,0.939221846,0.939284959,0.93927305 +429,0.1649,0.2588,0.1649,0,0.215,0.1203,0.215,0,0.5349,0.1128,0.5349,0,0.243232921,0,1,0.192564219,0,1,0.278062165,0,0.92218463,0.922360905,0.922429078 +430,0.1649,0.3635,0.1649,0,0.215,0.1436,0.215,0,0.5349,0.136,0.5349,0,0.398288399,0,1,0.21815072,0,1,0.305683553,0,0.888533108,0.88872435,0.888741135 +431,0.1649,0.358,0.1649,0,0.215,0.1599,0.215,0,0.5349,0.2111,0.5349,0,0.299076855,0,1,0.2167622,0,1,0.479759544,0,0.812409377,0.812354559,0.8125 +432,0.1649,0.5364,0.1649,0,0.215,0.2532,0.215,0,0.5349,0.1774,0.5349,0,0.428693622,0,1,0.351906925,0,1,0.506558478,0,0.736768971,0.736830971,0.736702128 +433,0.1649,0.5554,0.1649,0,0.215,0.285,0.215,0,0.5349,0.1791,0.5349,0,0.446920902,0,1,0.369857788,0,1,0.434830606,0,0.68360319,0.683731754,0.683510638 +434,0.1649,0.6115,0.1649,0,0.215,0.2766,0.215,0,0.5349,0.2365,0.5349,0,0.520143688,0,1,0.392075658,0,1,0.462207615,0,0.650555824,0.65072985,0.65070922 +435,0.1649,0.5166,0.1649,0,0.215,0.2303,0.215,0,0.5349,0.265,0.5349,0,0.462805867,0,1,0.345716238,0,1,0.454005748,0,0.629712422,0.629786334,0.629875887 +436,0.1649,0.2835,0.1649,0,0.215,0.1009,0.215,0,0.5349,0.2695,0.5349,0,0.200760424,0,1,0.15580602,0,1,0.439529955,0,0.617085549,0.617093294,0.617464539 +437,0.1649,0.2476,0.1649,0,0.215,0.0649,0.215,0,0.5349,0.2045,0.5349,0,0.218583316,0,1,0.107753277,0,1,0.371108502,0,0.616420976,0.616458642,0.616578014 +438,0.1649,0.1892,0.1649,0.0054,0.215,0.0957,0.215,0.0003,0.5349,0.1657,0.5349,0.0115,0.230784699,0.014356065,1,0.144820839,0.001643444,1,0.310442865,0.043553945,0.637989367,0.63803681,0.638297872 +439,0.1649,0.1257,0.1649,0.0826,0.215,0.0842,0.215,0.1088,0.5349,0.1622,0.5349,0.0819,0.115110144,0.408010691,1,0.133617148,0.337741107,1,0.284077495,0.292382002,0.694478009,0.694520838,0.694592199 +440,0.1649,0.0923,0.1649,0.2036,0.215,0.0415,0.215,0.2241,0.5349,0.0704,0.5349,0.1882,0.09064839,0.500300586,1,0.057466157,0.492300063,1,0.125205591,0.4777928,0.777489125,0.77766025,0.777925532 +441,0.1649,0.0996,0.1649,0.3215,0.215,0.0653,0.215,0.3379,0.5349,0.0518,0.5349,0.2889,0.101875342,0.572936118,1,0.040974785,0.621728003,1,0.104450181,0.384502202,0.835729821,0.835625132,0.835992908 +442,0.1649,0.029,0.1649,0.4199,0.215,0.0273,0.215,0.4303,0.5349,0.0807,0.5349,0.4314,0.037748117,0.643825829,0.982930124,0.012773825,0.708128691,0.776718855,0.160246581,0.471451998,0.882672789,0.88258938,0.882978723 +443,0.1649,0.0736,0.1649,0.5034,0.215,0.0701,0.215,0.5516,0.5349,0.0721,0.5349,0.5286,0.090113364,0.691235483,0.944338918,0.058362749,0.803988457,0.69870472,0.151949063,0.701848865,0.931005317,0.931034483,0.931294326 +444,0.1649,0.0823,0.1649,0.5322,0.215,0.0938,0.215,0.5807,0.5349,0.0992,0.5349,0.6059,0.058706414,0.728465676,0.89212358,0.091590725,0.831256807,0.408814937,0.221775517,0.788343072,0.967858869,0.967844299,0.968085106 +445,0.1649,0.0944,0.1649,0.5403,0.215,0.1569,0.215,0.5564,0.5349,0.0835,0.5349,0.5827,0.104665354,0.751403451,0.815032542,0.209645316,0.791470885,0.291341901,0.176887646,0.826405048,0.990998067,0.991114872,0.991578014 +446,0.1649,0.3264,0.1649,0.4716,0.215,0.2171,0.215,0.4414,0.5349,0.1483,0.5349,0.5847,0.134735078,0.733063757,0.996589541,0.28378588,0.524960578,0.436626196,0.233327001,0.807368279,0.991723055,0.991749524,0.992021277 +447,0.1649,0.3717,0.1649,0.3179,0.215,0.6722,0.215,0.2005,0.5349,0.2132,0.5349,0.5537,0.23368378,0.4913477,1,0.584838092,0.310497671,1,0.35360831,0.779829025,0.968463026,0.968478951,0.968528369 +448,0.1649,0.3871,0.1649,0.1481,0.215,0.1198,0.215,0.201,0.5349,0.2665,0.5349,0.4275,0.193673953,0.276577056,1,0.138526395,0.359608442,1,0.321805239,0.748753369,0.923272112,0.923418659,0.923758865 +449,0.1649,0.265,0.1649,0.1209,0.215,0,0.215,0.2205,0.5349,0.2383,0.5349,0.3,0.128874421,0.364836365,1,0.015718777,0.300126106,1,0.392843694,0.63640517,0.889016433,0.8889359,0.889184397 +450,0.1649,0.1447,0.1649,0.1182,0.215,0,0.215,0.1106,0.5349,0.2359,0.5349,0.1539,0.148247615,0.360952109,0.782070756,0.003871796,0.122339971,0.919652998,0.395749539,0.481694907,0.874275012,0.874338904,0.874556738 +451,0.1649,0.0631,0.1649,0.0209,0.215,0.0081,0.215,0.0083,0.5349,0.2236,0.5349,0.0663,0.134407207,0.105237834,0.525878906,0.010777082,0.011056531,0.142133504,0.319491208,0.215907306,0.852042049,0.852126084,0.852393617 +452,0.1649,0.0738,0.1649,0,0.215,0.0061,0.215,0,0.5349,0.2269,0.5349,0,0.151918814,0,0.24867934,0.026775681,0,0.167484552,0.262148351,0,0.830715321,0.830759467,0.831117021 +453,0.1649,0.108,0.1649,0,0.215,0.0388,0.215,0,0.5349,0.2488,0.5349,0,0.219351977,0,0.086771652,0.062072091,0,0.497421801,0.302593887,0,0.824371677,0.824624498,0.824911348 +454,0.1649,0.154,0.1649,0,0.215,0.0381,0.215,0,0.5349,0.3402,0.5349,0,0.300874442,0,0.376271904,0.077332281,0,0.109956294,0.542058647,0,0.79760754,0.797546012,0.79787234 +455,0.1649,0.0907,0.1649,0,0.215,0.0832,0.215,0,0.5349,0.3945,0.5349,0,0.170339525,0,0.577430666,0.142371073,0,0.281535387,0.614292502,0,0.729942001,0.729849799,0.730053192 +456,0.1649,0.1312,0.1649,0,0.215,0.0742,0.215,0,0.5349,0.2117,0.5349,0,0.226485148,0,0.698540628,0.106692657,0,0.597258151,0.355144262,0,0.659195263,0.659191877,0.659574468 +457,0.1649,0.2031,0.1649,0,0.215,0.0598,0.215,0,0.5349,0.161,0.5349,0,0.203092501,0,1,0.115914375,0,0.858946085,0.352015317,0,0.604942001,0.604823355,0.605053192 +458,0.1649,0.0693,0.1649,0,0.215,0.0785,0.215,0,0.5349,0.1218,0.5349,0,0.073014692,0,0.553786516,0.092836194,0,0.573802888,0.315606326,0,0.565853069,0.565898033,0.566046099 +459,0.1649,0.0595,0.1649,0,0.215,0.0612,0.215,0,0.5349,0.1712,0.5349,0,0.048557453,0,0.182125241,0.061029151,0,0.097973824,0.356773734,0,0.541082649,0.540935054,0.541223404 +460,0.1649,0.1433,0.1649,0,0.215,0.1281,0.215,0,0.5349,0.1274,0.5349,0,0.081252858,0,0.084433675,0.155295983,0,0.00937932,0.261457473,0,0.525857902,0.525914957,0.52570922 +461,0.1649,0.1611,0.1649,0,0.215,0.1147,0.215,0,0.5349,0.1015,0.5349,0,0.056756094,0,0.155232966,0.160338864,0,0.056475923,0.23646307,0,0.525012083,0.524857203,0.525265957 +462,0.1649,0.1142,0.1649,0.0124,0.215,0.0704,0.215,0,0.5349,0.1133,0.5349,0.1712,0.039480805,0.034734808,0.344614059,0.101018563,0,0.220993727,0.273359031,0.333132505,0.543499275,0.543685213,0.543882979 +463,0.1649,0.0537,0.1649,0.0858,0.215,0.0337,0.215,0.0708,0.5349,0.0853,0.5349,0.0746,0.033044539,0.288021117,0.550334752,0.058161687,0.090551943,0.317995071,0.163404182,0.64150548,0.588629773,0.588745505,0.588652482 +464,0.1649,0.0204,0.1649,0.1993,0.215,0.0069,0.215,0.1866,0.5349,0.0704,0.5349,0.2154,0.010854188,0.448916018,0.546161592,0.029836489,0.332579553,0.352932483,0.141204849,0.82897234,0.643426776,0.643537127,0.643617021 +465,0.1649,0.012,0.1649,0.3012,0.215,0.0129,0.215,0.3088,0.5349,0.0809,0.5349,0.3946,0.004625168,0.554099262,0.459402621,0.019468248,0.387813836,0.457070947,0.147696659,0.880127192,0.675326245,0.675481278,0.675531915 +466,0.1649,0.0131,0.1649,0.4181,0.215,0,0.215,0.41,0.5349,0.0827,0.5349,0.5318,0.001710013,0.669843435,0.331966072,0.002571994,0.513942123,0.341971219,0.179438919,0.91497761,0.697498792,0.697694098,0.697695036 +467,0.1649,0.0392,0.1649,0.5171,0.215,0,0.215,0.4767,0.5349,0.0657,0.5349,0.5926,0.009030138,0.758770585,0.416693121,0.006532928,0.623589337,0.5023458,0.093943827,0.908989847,0.719188014,0.719272266,0.719414894 +468,0.1649,0.0337,0.1649,0.5313,0.215,0,0.215,0.5248,0.5349,0.1638,0.5349,0.5996,0.013189962,0.790840447,0.331713498,0.003781874,0.71173346,0.4322474,0.266508639,0.903005779,0.734171097,0.734292363,0.734485816 +469,0.1649,0.0232,0.1649,0.5773,0.215,0.0038,0.215,0.5645,0.5349,0.1372,0.5349,0.604,0.024710197,0.82169652,0.148988813,0.005695872,0.800025225,0.254680365,0.177739739,0.881454289,0.743233446,0.743389042,0.743351064 +470,0.1649,0.0262,0.1649,0.5196,0.215,0.0344,0.215,0.5172,0.5349,0.2062,0.5349,0.5363,0.046252828,0.744971216,0.400914371,0.026595816,0.767799616,0.131301835,0.240302816,0.755365968,0.756343644,0.756293632,0.756648936 +471,0.1649,0.0394,0.1649,0.4946,0.215,0.042,0.215,0.5145,0.5349,0.293,0.5349,0.4946,0.048311885,0.759233892,0.346616268,0.023692181,0.753026187,0.060074352,0.398055136,0.758140385,0.76099565,0.760947747,0.761524823 +472,0.1649,0.0395,0.1649,0.4443,0.215,0.0601,0.215,0.4684,0.5349,0.3,0.5349,0.4206,0.052704442,0.769900858,0.04904097,0.048752945,0.782815218,0.113629326,0.276938498,0.67558521,0.766855969,0.766871166,0.767287234 +473,0.1649,0.0734,0.1649,0.3279,0.215,0.0188,0.215,0.3687,0.5349,0.3075,0.5349,0.3049,0.071964227,0.745966792,0.101872809,0.03249548,0.766022027,0.113960475,0.386607349,0.673641264,0.772897535,0.772794584,0.773049645 +474,0.1649,0.0658,0.1649,0.1745,0.215,0.0076,0.215,0.2197,0.5349,0.268,0.5349,0.1543,0.08904288,0.641563058,0.160282776,0.035651691,0.655197084,0.033726703,0.300646275,0.584378064,0.770722571,0.770679078,0.770833333 +475,0.1649,0.0757,0.1649,0.071,0.215,0,0.215,0.0928,0.5349,0.2591,0.5349,0.0691,0.144742221,0.330304802,0.192567304,0.005692022,0.279427737,0.062466234,0.317055255,0.406945348,0.748550024,0.748677808,0.749113475 +476,0.1649,0.0515,0.1649,0.0002,0.215,0.0888,0.215,0,0.5349,0.1143,0.5349,0.0478,0.078745119,0,0.225619927,0.109765127,0,0.179941356,0.209791765,0,0.721906718,0.721810874,0.722074468 +477,0.1649,0.0704,0.1649,0,0.215,0.14,0.215,0,0.5349,0.1777,0.5349,0,0.173726961,0,0.187185794,0.140384704,0,0.267715991,0.318446577,0,0.717435959,0.71757986,0.717641844 +478,0.1649,0.0026,0.1649,0,0.215,0,0.215,0,0.5349,0.0053,0.5349,0,0.001307457,0,0.172808588,0.000122102,0,0.264530391,0.007717164,0,0.692544708,0.692616882,0.692819149 +479,0.1649,0.0211,0.1649,0,0.215,0,0.215,0,0.5349,0.1874,0.5349,0,0.082256749,0,0.071840972,0.029596476,0,0.12061806,0.388096631,0,0.632189464,0.632113391,0.632535461 +480,0.1649,0.0279,0.1649,0,0.215,0.0349,0.215,0,0.5349,0.2378,0.5349,0,0.074167073,0,0.126893818,0.048897166,0,0.179285884,0.479969114,0,0.56863219,0.568648191,0.568705674 \ No newline at end of file diff --git a/Example_Systems/VREStor_Example/Vre_and_stor_data.csv b/test/Inputfiles/Vre_and_stor_data.csv similarity index 100% rename from Example_Systems/VREStor_Example/Vre_and_stor_data.csv rename to test/Inputfiles/Vre_and_stor_data.csv diff --git a/Example_Systems/VREStor_Example/Vre_and_stor_solar_variability.csv b/test/Inputfiles/Vre_and_stor_solar_variability.csv similarity index 100% rename from Example_Systems/VREStor_Example/Vre_and_stor_solar_variability.csv rename to test/Inputfiles/Vre_and_stor_solar_variability.csv diff --git a/Example_Systems/VREStor_Example/Vre_and_stor_wind_variability.csv b/test/Inputfiles/Vre_and_stor_wind_variability.csv similarity index 100% rename from Example_Systems/VREStor_Example/Vre_and_stor_wind_variability.csv rename to test/Inputfiles/Vre_and_stor_wind_variability.csv diff --git a/test/Inputfiles/resources/storage.csv b/test/Inputfiles/resources/storage.csv index e4942e8046..fb7d016568 100644 --- a/test/Inputfiles/resources/storage.csv +++ b/test/Inputfiles/resources/storage.csv @@ -1,4 +1,4 @@ -Resource,Zone,Type,LDS,Self_Disch,Eff_Up,Eff_Down,Min_Duration,Max_Duration,New_Build,Can_Retire,Existing_Cap_MW,Existing_Cap_MWh,Cap_Size,Min_Cap_MW,Max_Cap_MW,Min_Cap_MWh,Max_Cap_MWh,Inv_Cost_Per_MWyr,Fixed_Om_Cost_Per_MWyr,Inv_Cost_Per_MWhyr,Fixed_Om_Cost_Per_MWhyr,Var_Om_Cost_Per_MWh,Reg_Cost,Rsv_Cost,Reg_Max,Rsv_Max,Region,Cluster,Resource_Type,Mga +Resource,Zone,Model,LDS,Self_Disch,Eff_Up,Eff_Down,Min_Duration,Max_Duration,New_Build,Can_Retire,Existing_Cap_MW,Existing_Cap_MWh,Cap_Size,Min_Cap_MW,Max_Cap_MW,Min_Cap_MWh,Max_Cap_MWh,Inv_Cost_Per_MWyr,Fixed_Om_Cost_Per_MWyr,Inv_Cost_Per_MWhyr,Fixed_Om_Cost_Per_MWhyr,Var_Om_Cost_Per_MWh,Reg_Cost,Rsv_Cost,Reg_Max,Rsv_Max,Region,Cluster,Resource_Type,Mga NENGREST_hydroelectric_pumped_storage_1,1,1,0,0,0.866,0.866,0,200,0,0,1768.002,280635.2381,294.67,0,0,0,-1,0,40113,0,0,0,0,0,0.083333333,0.166666667,NENGREST,1,hydroelectric_pumped_storage,0 NENG_CT_hydroelectric_pumped_storage_1,2,1,0,0,0.866,0.866,0,200,0,0,30.999,4920.47619,10.33,0,0,0,-1,0,40113,0,0,0,0,0,0.083333333,0.166666667,NENG_CT,1,hydroelectric_pumped_storage,0 NENGREST_battery_mid_0,1,1,0,0,0.92,0.92,1,10,1,1,0,0,1,0,-1,0,-1,19584,4895,22494,5622,0.15,0,0,0.083333333,0.166666667,NENGREST,0,battery_mid,0 diff --git a/test/Inputfiles/resources/thermal.csv b/test/Inputfiles/resources/thermal.csv index cf29957666..a754352ec5 100644 --- a/test/Inputfiles/resources/thermal.csv +++ b/test/Inputfiles/resources/thermal.csv @@ -1,4 +1,4 @@ -Resource,Zone,Type,MGA,Resource_Type,Min_Power,Ramp_Up_Percentage,Ramp_Dn_Percentage,Existing_Cap_MW,Cap_Size,Min_Cap_MW,Max_Cap_MW,New_Build,Can_Retire,Fuel,Inv_Cost_Per_MWyr,Fixed_Om_Cost_Per_MWyr,Var_Om_Cost_Per_MWh,Up_Time,Down_Time,Start_Cost_Per_MW,Start_Fuel_Mmbtu_Per_MW,Heat_Rate_Mmbtu_Per_MWh,Reg_Cost,Rsv_Cost,Reg_Max,Rsv_Max,Region,Cluster +Resource,Zone,Model,MGA,Resource_Type,Min_Power,Ramp_Up_Percentage,Ramp_Dn_Percentage,Existing_Cap_MW,Cap_Size,Min_Cap_MW,Max_Cap_MW,New_Build,Can_Retire,Fuel,Inv_Cost_Per_MWyr,Fixed_Om_Cost_Per_MWyr,Var_Om_Cost_Per_MWh,Up_Time,Down_Time,Start_Cost_Per_MW,Start_Fuel_Mmbtu_Per_MW,Heat_Rate_Mmbtu_Per_MWh,Reg_Cost,Rsv_Cost,Reg_Max,Rsv_Max,Region,Cluster NENGREST_biomass_1,1,1,1,biomass,0.45,1,1,106.062,3.21,0,0,0,0,None,0,122976,5.08,0,0,0,0,14.58,0,0,0.083333333,0.166666667,NENGREST,1 NENGREST_natural_gas_fired_combined_cycle_1,1,1,1,natural_gas_fired_combined_cycle,0.468,0.64,0.64,7077.3,471.82,0,0,0,1,NENGREST_NG,0,10287,3.55,6,6,91,2,7.43,0,0,0.053333333,0.106666667,NENGREST,1 NENGREST_natural_gas_fired_combined_cycle_2,1,1,1,natural_gas_fired_combined_cycle,0.507,0.64,0.64,2684.803,244.07,0,0,0,1,NENGREST_NG,0,16291,4.5,6,6,91,2,8.29,0,0,0.053333333,0.106666667,NENGREST,2 diff --git a/test/Inputfiles/resources/vre_stor.csv b/test/Inputfiles/resources/vre_stor.csv new file mode 100644 index 0000000000..40f29685d8 --- /dev/null +++ b/test/Inputfiles/resources/vre_stor.csv @@ -0,0 +1,65 @@ +Resource,Zone,New_Build,Can_Retire,Existing_Cap_MW,Existing_Cap_MWh,Cap_Size,Max_Cap_MW,Max_Cap_MWh,Min_Cap_MW,Min_Cap_MWh,Inv_Cost_per_MWyr,Inv_Cost_per_MWhyr,Fixed_OM_Cost_per_MWyr,Fixed_OM_Cost_per_MWhyr,Var_OM_Cost_per_MWh,Self_Disch,capex_mw,interconnect_annuity,regional_cost_multiplier,cap_recovery_years,wacc_real,variable_CF,region,cluster,technology +EIC_storage_metalair_advanced_0,1,1,1,0,0,1,-1,-1,-1,0,0,0,0,0,0.15,0,0,0,1.03,25,0.026,0,EIC,0,Storage_MetalAir_Advanced +EIC_landbasedwind_class1_moderate_0,1,1,1,0,0,1,-1,-1,0,0,14198,0,0,0,0.15,0,879445.731,14197.521,1.266,30,0.03,0.46646145,EIC,0,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_1,1,1,1,0,0,1,-1,-1,0,0,17082,0,0,0,0.15,0,879445.731,17082.104,1.266,30,0.03,0.506161809,EIC,1,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_2,1,1,1,0,0,1,-1,-1,0,0,17267,0,0,0,0.15,0,879445.731,17266.619,1.266,30,0.03,0.428973228,EIC,2,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_3,1,1,1,0,0,1,-1,-1,0,0,25483,0,0,0,0.15,0,879445.731,25482.635,1.266,30,0.03,0.470765114,EIC,3,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_4,1,1,1,0,0,1,-1,-1,0,0,16488,0,0,0,0.15,0,879445.731,16487.938,1.266,30,0.03,0.369812936,EIC,4,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_5,1,1,1,0,0,1,-1,-1,0,0,25720,0,0,0,0.15,0,879445.731,25719.606,1.266,30,0.03,0.434300929,EIC,5,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_6,1,1,1,0,0,1,-1,-1,0,0,21224,0,0,0,0.15,0,879445.731,21223.571,1.266,30,0.03,0.325287282,EIC,6,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_7,1,1,1,0,0,1,-1,-1,0,0,32633,0,0,0,0.15,0,879445.731,32632.921,1.266,30,0.03,0.405135185,EIC,7,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_8,1,1,1,0,0,1,-1,-1,0,0,28526,0,0,0,0.15,0,879445.731,28526.156,1.266,30,0.03,0.301312625,EIC,8,LandbasedWind_Class1_Moderate_ +EIC_landbasedwind_class1_moderate_9,1,1,1,0,0,1,-1,-1,0,0,244462,0,0,0,0.15,0,879445.731,244461.674,1.266,30,0.03,0.479932398,EIC,9,LandbasedWind_Class1_Moderate_ +EIC_utilitypv_class1_moderate_0,1,1,1,0,0,1,-1,-1,0,0,8863,0,0,0,0.15,0,630556.245,8863.386,1.017,30,0.026,0.26517567,EIC,0,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_1,1,1,1,0,0,1,-1,-1,0,0,4464,0,0,0,0.15,0,630556.245,4464.156,1.017,30,0.026,0.246608377,EIC,1,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_2,1,1,1,0,0,1,-1,-1,0,0,14630,0,0,0,0.15,0,630556.245,14629.711,1.017,30,0.026,0.262942463,EIC,2,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_3,1,1,1,0,0,1,-1,-1,0,0,10126,0,0,0,0.15,0,630556.245,10125.593,1.017,30,0.026,0.247017696,EIC,3,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_4,1,1,1,0,0,1,-1,-1,0,0,16248,0,0,0,0.15,0,630556.245,16248.012,1.017,30,0.026,0.250704974,EIC,4,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_5,1,1,1,0,0,1,-1,-1,0,0,22825,0,0,0,0.15,0,630556.245,22825.004,1.017,30,0.026,0.268118054,EIC,5,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_6,1,1,1,0,0,1,-1,-1,0,0,24566,0,0,0,0.15,0,630556.245,24565.988,1.017,30,0.026,0.258166939,EIC,6,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_7,1,1,1,0,0,1,-1,-1,0,0,21181,0,0,0,0.15,0,630556.245,21180.786,1.017,30,0.026,0.245459273,EIC,7,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_8,1,1,1,0,0,1,-1,-1,0,0,32414,0,0,0,0.15,0,630556.245,32414.229,1.017,30,0.026,0.247877195,EIC,8,UtilityPV_Class1_Moderate_ +EIC_utilitypv_class1_moderate_9,1,1,1,0,0,1,-1,-1,0,0,148669,0,0,0,0.15,0,630556.245,148668.665,1.017,30,0.026,0.270195067,EIC,9,UtilityPV_Class1_Moderate_ +TRE_storage_metalair_advanced_0,2,1,1,0,0,1,-1,-1,-1,0,0,0,0,0,0.15,0,0,0,1,25,0.026,0,TRE,0,Storage_MetalAir_Advanced +TRE_landbasedwind_class1_moderate_0,2,1,1,0,0,1,-1,-1,0,0,14393,0,0,0,0.15,0,879445.731,14392.776,0.933,30,0.03,0.468758494,TRE,0,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_1,2,1,1,0,0,1,-1,-1,0,0,20298,0,0,0,0.15,0,879445.731,20297.809,0.933,30,0.03,0.50884968,TRE,1,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_2,2,1,1,0,0,1,-1,-1,0,0,14755,0,0,0,0.15,0,879445.731,14755.103,0.933,30,0.03,0.428581536,TRE,2,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_3,2,1,1,0,0,1,-1,-1,0,0,23630,0,0,0,0.15,0,879445.731,23630.35,0.933,30,0.03,0.463753909,TRE,3,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_4,2,1,1,0,0,1,-1,-1,0,0,12498,0,0,0,0.15,0,879445.731,12498.46,0.933,30,0.03,0.393514663,TRE,4,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_5,2,1,1,0,0,1,-1,-1,0,0,23788,0,0,0,0.15,0,879445.731,23787.558,0.933,30,0.03,0.431482643,TRE,5,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_6,2,1,1,0,0,1,-1,-1,0,0,15633,0,0,0,0.15,0,879445.731,15633.08,0.933,30,0.03,0.37748757,TRE,6,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_7,2,1,1,0,0,1,-1,-1,0,0,29021,0,0,0,0.15,0,879445.731,29020.777,0.933,30,0.03,0.418603808,TRE,7,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_8,2,1,1,0,0,1,-1,-1,0,0,40897,0,0,0,0.15,0,879445.731,40896.604,0.933,30,0.03,0.350026488,TRE,8,LandbasedWind_Class1_Moderate_ +TRE_landbasedwind_class1_moderate_9,2,1,1,0,0,1,-1,-1,0,0,146712,0,0,0,0.15,0,879445.731,146712.274,0.933,30,0.03,0.489716798,TRE,9,LandbasedWind_Class1_Moderate_ +TRE_utilitypv_class1_moderate_0,2,1,1,0,0,1,-1,-1,0,0,6412,0,0,0,0.15,0,630556.245,6412.182,0.968,30,0.026,0.254278213,TRE,0,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_1,2,1,1,0,0,1,-1,-1,0,0,8461,0,0,0,0.15,0,630556.245,8460.982,0.968,30,0.026,0.262568802,TRE,1,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_2,2,1,1,0,0,1,-1,-1,0,0,10479,0,0,0,0.15,0,630556.245,10478.698,0.968,30,0.026,0.252687842,TRE,2,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_3,2,1,1,0,0,1,-1,-1,0,0,14103,0,0,0,0.15,0,630556.245,14103.154,0.968,30,0.026,0.264333636,TRE,3,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_4,2,1,1,0,0,1,-1,-1,0,0,14224,0,0,0,0.15,0,630556.245,14224.435,0.968,30,0.026,0.253560722,TRE,4,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_5,2,1,1,0,0,1,-1,-1,0,0,18539,0,0,0,0.15,0,630556.245,18539.404,0.968,30,0.026,0.26726374,TRE,5,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_6,2,1,1,0,0,1,-1,-1,0,0,22325,0,0,0,0.15,0,630556.245,22324.625,0.968,30,0.026,0.265551984,TRE,6,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_7,2,1,1,0,0,1,-1,-1,0,0,17464,0,0,0,0.15,0,630556.245,17463.888,0.968,30,0.026,0.251154423,TRE,7,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_8,2,1,1,0,0,1,-1,-1,0,0,74721,0,0,0,0.15,0,630556.245,74721.211,0.968,30,0.026,0.276522815,TRE,8,UtilityPV_Class1_Moderate_ +TRE_utilitypv_class1_moderate_9,2,1,1,0,0,1,-1,-1,0,0,29582,0,0,0,0.15,0,630556.245,29582.346,0.968,30,0.026,0.252619147,TRE,9,UtilityPV_Class1_Moderate_ +WECC_storage_metalair_advanced_0,3,1,1,0,0,1,-1,-1,-1,0,0,0,0,0,0.15,0,0,0,1.042,25,0.026,0,WECC,0,Storage_MetalAir_Advanced +WECC_landbasedwind_class1_moderate_0,3,1,1,0,0,1,-1,-1,0,0,20294,0,0,0,0.15,0,879445.731,20294.121,1.657,30,0.03,0.42223382,WECC,0,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_1,3,1,1,0,0,1,-1,-1,0,0,19872,0,0,0,0.15,0,879445.731,19872.298,1.657,30,0.03,0.511292398,WECC,1,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_2,3,1,1,0,0,1,-1,-1,0,0,27185,0,0,0,0.15,0,879445.731,27184.562,1.657,30,0.03,0.365831107,WECC,2,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_3,3,1,1,0,0,1,-1,-1,0,0,19137,0,0,0,0.15,0,879445.731,19137.494,1.657,30,0.03,0.310294747,WECC,3,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_4,3,1,1,0,0,1,-1,-1,0,0,26039,0,0,0,0.15,0,879445.731,26038.936,1.657,30,0.03,0.289241701,WECC,4,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_5,3,1,1,0,0,1,-1,-1,0,0,133609,0,0,0,0.15,0,879445.731,133608.575,1.657,30,0.03,0.465454966,WECC,5,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_6,3,1,1,0,0,1,-1,-1,0,0,29900,0,0,0,0.15,0,879445.731,29899.759,1.657,30,0.03,0.244902343,WECC,6,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_7,3,1,1,0,0,1,-1,-1,0,0,160193,0,0,0,0.15,0,879445.731,160192.842,1.657,30,0.03,0.443443388,WECC,7,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_8,3,1,1,0,0,1,-1,-1,0,0,38235,0,0,0,0.15,0,879445.731,38235.186,1.657,30,0.03,0.225780696,WECC,8,LandbasedWind_Class1_Moderate_ +WECC_landbasedwind_class1_moderate_9,3,1,1,0,0,1,-1,-1,0,0,274991,0,0,0,0.15,0,879445.731,274991.331,1.657,30,0.03,0.472337902,WECC,9,LandbasedWind_Class1_Moderate_ +WECC_utilitypv_class1_moderate_0,3,1,1,0,0,1,-1,-1,0,0,10320,0,0,0,0.15,0,630556.245,10320.26,1.059,30,0.026,0.29553619,WECC,0,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_1,3,1,1,0,0,1,-1,-1,0,0,6016,0,0,0,0.15,0,630556.245,6015.782,1.059,30,0.026,0.271998376,WECC,1,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_2,3,1,1,0,0,1,-1,-1,0,0,19411,0,0,0,0.15,0,630556.245,19411.252,1.059,30,0.026,0.290274531,WECC,2,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_3,3,1,1,0,0,1,-1,-1,0,0,3992,0,0,0,0.15,0,630556.245,3991.741,1.059,30,0.026,0.23989968,WECC,3,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_4,3,1,1,0,0,1,-1,-1,0,0,25714,0,0,0,0.15,0,630556.245,25713.501,1.059,30,0.026,0.286481887,WECC,4,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_5,3,1,1,0,0,1,-1,-1,0,0,8052,0,0,0,0.15,0,630556.245,8051.656,1.059,30,0.026,0.229081407,WECC,5,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_6,3,1,1,0,0,1,-1,-1,0,0,33457,0,0,0,0.15,0,630556.245,33456.861,1.059,30,0.026,0.283349633,WECC,6,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_7,3,1,1,0,0,1,-1,-1,0,0,16842,0,0,0,0.15,0,630556.245,16841.98,1.059,30,0.026,0.233366475,WECC,7,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_8,3,1,1,0,0,1,-1,-1,0,0,105939,0,0,0,0.15,0,630556.245,105939.452,1.059,30,0.026,0.278691798,WECC,8,UtilityPV_Class1_Moderate_ +WECC_utilitypv_class1_moderate_9,3,1,1,0,0,1,-1,-1,0,0,28290,0,0,0,0.15,0,630556.245,28289.909,1.059,30,0.026,0.222730413,WECC,9,UtilityPV_Class1_Moderate_ +,,63,63,0,0,63,-63,-63,-3,0,2312492,0,0,0,9.45,0,45300059.28,2312489.489,72.072,1875,1.758,20.06394904,,, \ No newline at end of file diff --git a/test/PiecewiseFuel_CO2/Generators_data.csv b/test/PiecewiseFuel_CO2/Generators_data_.csv similarity index 100% rename from test/PiecewiseFuel_CO2/Generators_data.csv rename to test/PiecewiseFuel_CO2/Generators_data_.csv diff --git a/test/PiecewiseFuel_CO2/piecewisefuel_usage_data.csv b/test/PiecewiseFuel_CO2/piecewisefuel_usage_data.csv new file mode 100644 index 0000000000..600a368eb7 --- /dev/null +++ b/test/PiecewiseFuel_CO2/piecewisefuel_usage_data.csv @@ -0,0 +1,2 @@ +Resource,PWFU_Fuel_Usage_Zero_Load_MMBTU_per_h,PWFU_Heat_Rate_MMBTU_per_MWh_1,PWFU_Heat_Rate_MMBTU_per_MWh_2,PWFU_Load_Point_MW_1,PWFU_Load_Point_MW_2 +natural_gas_combined_cycle_ccs,400,6,7.2,160,250 \ No newline at end of file diff --git a/test/PiecewiseFuel_CO2/resources/thermal.csv b/test/PiecewiseFuel_CO2/resources/thermal.csv new file mode 100644 index 0000000000..5c4686ae37 --- /dev/null +++ b/test/PiecewiseFuel_CO2/resources/thermal.csv @@ -0,0 +1,3 @@ +Resource,Zone,Model,Can_Retire,Existing_Cap_MW,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Fixed_OM_Cost_per_MWyr,Var_OM_Cost_per_MWh,Heat_Rate_MMBTU_per_MWh,Fuel,Cap_Size,Start_Cost_per_MW,Start_Fuel_MMBTU_per_MW,Up_Time,Down_Time,Ramp_Up_Percentage,Ramp_Dn_Percentage,Min_Power,Resource_Type,region,cluster,CO2_Capture_Fraction,CO2_Capture_Fraction_Startup,CCS_Disposal_Cost_per_Metric_Ton,Biomass +natural_gas_combined_cycle_ccs,1,1,1,15000,-1,0,0,0,5,0,NG,250,91,2,6,6,0.64,0.64,0.468,natural_gas_fired_combined_cycle_ccs,NE,1,0.9,0.6,20,0 +biomass_ccs,1,1,1,300,-1,0,0,0,10,10,Biomass,300,91,2,6,6,0.64,0.64,0.468,biomass_ccs,NE,1,0.9,0.6,20,1 \ No newline at end of file diff --git a/test/PiecewiseFuel_CO2/resources/vre.csv b/test/PiecewiseFuel_CO2/resources/vre.csv new file mode 100644 index 0000000000..5abc06a8cb --- /dev/null +++ b/test/PiecewiseFuel_CO2/resources/vre.csv @@ -0,0 +1,2 @@ +Resource,Zone,Num_VRE_Bins,New_Build,Can_Retire,Existing_Cap_MW,Max_Cap_MW,Min_Cap_MW,Inv_Cost_per_MWyr,Fixed_OM_Cost_per_MWyr,Var_OM_Cost_per_MWh,Cap_Size,Resource_Type,region,cluster +onshore_wind,1,1,0,1,15000,-1,0,0,0,0,100,onshore_wind_turbine,NE,1 \ No newline at end of file diff --git a/test/test_electrolyzer.jl b/test/test_electrolyzer.jl index f527d65e8d..6bd4115bcb 100644 --- a/test/test_electrolyzer.jl +++ b/test/test_electrolyzer.jl @@ -27,12 +27,15 @@ genx_setup = Dict( "CO2Cap" => 0, "IncludeLossesInESR" => 0, "PrintModel" => 0, + "ResourcePath" => "resources", + "PolicyPath" => "policies", ) # Run the case and get the objective value and tolerance EP, _, _ = redirect_stdout(devnull) do run_genx_case_testing(test_path, genx_setup) end + obj_test = objective_value(EP) optimal_tol_rel = get_attribute(EP, "ipm_optimality_tolerance") optimal_tol = optimal_tol_rel * obj_test # Convert to absolute tolerance diff --git a/test/test_piecewisefuel_CO2.jl b/test/test_piecewisefuel_CO2.jl index b4a39d54a9..f0dd75ab18 100644 --- a/test/test_piecewisefuel_CO2.jl +++ b/test/test_piecewisefuel_CO2.jl @@ -21,6 +21,8 @@ genx_setup = Dict( "EnableJuMPStringNames" => false, "MultiStage" => 0, "PrintModel" => 0, + "ResourcePath" => "resources", + "PolicyPath" => "policies", ) # Run the case and get the objective value and tolerance diff --git a/test/test_resource_loader.jl b/test/test_resource_loader.jl index bfdb8d721d..a05ac7517e 100644 --- a/test/test_resource_loader.jl +++ b/test/test_resource_loader.jl @@ -1,8 +1,10 @@ using GenX +using Gurobi using HiGHS - +using Logging, LoggingExtras optimizer = HiGHS.Optimizer +# optimizer = Gurobi.Optimizer # case = "Example_Systems/Electrolyzer_Example" case = "test/Inputfiles" @@ -12,27 +14,53 @@ setup = configure_settings(genx_settings) settings_path = GenX.get_settings_path(case) -TDRpath = joinpath(case, setup["TimeDomainReductionFolder"]) - -if setup["TimeDomainReduction"] == 1 - prevent_doubled_timedomainreduction(case) - if !time_domain_reduced_files_exist(TDRpath) - println("Clustering Time Series Data (Grouped)...") - cluster_inputs(case, settings_path, setup) - else - println("Time Series Data Already Clustered.") - end -end - println("Configuring Solver") OPTIMIZER = configure_solver(settings_path, optimizer) +# const ModelScalingFactor = 1e+3 +# scale_factor = setup["ParameterScale"] == 1 ? ModelScalingFactor : 1 + +# # get path to resources data +# resources_folder = setup["ResourcePath"] +# resources_folder = joinpath(case,resources_folder) + +# # load resources data and scale it if necessary +# resources = GenX.load_scaled_resources_data(resources_folder, scale_factor) + +# # add policies-related attributes to resource dataframe +# policy_folder = setup["PolicyPath"] +# policy_folder = joinpath(case, policy_folder) +# GenX._add_policies_to_resources!(policy_folder, resources) + +inputs = load_inputs(setup, case); + +gen = inputs["RESOURCES"]; + +time_elapsed = @elapsed EP = generate_model(setup, inputs, OPTIMIZER) +println("Time to generate model: $time_elapsed") + +@profview generate_model(setup, inputs, OPTIMIZER) + +println("Solving Model") +EP, solve_time = solve_model(EP, setup) + println("Loading Inputs") -input_data = load_inputs(setup, case) +function test_1(setup, case) + warnerror_logger = ConsoleLogger(stderr, Logging.Error) -rs = input_data["RESOURCES"]; + with_logger(warnerror_logger) do + redirect_stdout(devnull) do + input_data = load_inputs(setup, case) + end + end +end + +function test_2(setup, input_data, OPTIMIZER) + redirect_stdout(devnull) do + EP = generate_model(setup, input_data, OPTIMIZER) + end +end -# println("Generating the Optimization Model") -time_elapsed = @elapsed EP = generate_model(setup, input_data, OPTIMIZER) -println("Time elapsed for model building is") -println(time_elapsed) \ No newline at end of file +using BenchmarkTools +@benchmark test_1($setup, $case) +@benchmark test_2($setup, $input_data, $OPTIMIZER) \ No newline at end of file